ant-design/components/mention/style/index.less

112 lines
2.3 KiB
Plaintext
Raw Normal View History

2016-07-04 10:31:27 +08:00
@import "../../style/themes/default";
@import "../../style/mixins/index";
2017-01-11 21:45:09 +08:00
@import '../../input/style/mixin';
2016-07-04 10:31:27 +08:00
.@{ant-prefix}-mention-wrapper {
2016-07-04 10:31:27 +08:00
position: relative;
display: inline-block;
width: 100%;
2016-07-21 15:40:13 +08:00
vertical-align: middle;
2016-11-14 12:21:58 +08:00
&-active .@{ant-prefix}-mention-editor {
2016-07-05 09:48:27 +08:00
.active;
2016-07-04 10:31:27 +08:00
}
.@{ant-prefix}-mention-editor {
2016-07-04 10:31:27 +08:00
.input;
padding: 0;
2016-07-21 15:40:13 +08:00
display: block;
2016-07-04 10:31:27 +08:00
}
.@{ant-prefix}-mention-editor-wrapper {
2016-07-04 10:31:27 +08:00
overflow-y: auto;
height: auto;
}
.public-DraftEditorPlaceholder-root {
position: absolute;
.public-DraftEditorPlaceholder-inner {
color: @input-placeholder-color;
opacity: 1;
outline: none;
white-space: pre-wrap;
word-wrap: break-word;
height: auto;
padding: 4px 7px;
}
}
2016-07-05 09:48:27 +08:00
.DraftEditor-editorContainer .public-DraftEditor-content {
2016-07-04 10:31:27 +08:00
height: auto;
padding: 4px 7px;
}
}
2016-07-04 10:31:27 +08:00
.@{ant-prefix}-mention-dropdown {
margin-top: 1.5em;
max-height: 250px;
min-width: 120px;
background-color: @component-background;
box-shadow: @box-shadow-base;
border-radius: @border-radius-base;
box-sizing: border-box;
z-index: @zindex-dropdown;
left: -9999px;
top: -9999px;
position: absolute;
outline: none;
overflow-x: hidden;
overflow-y: auto;
font-size: @font-size-base;
&-notfound.@{ant-prefix}-mention-dropdown-item {
color: @disabled-color;
2016-07-04 10:31:27 +08:00
.@{iconfont-css-prefix}-loading {
color: @primary-color;
2016-11-14 12:21:58 +08:00
text-align: center;
display: block;
2016-07-04 10:31:27 +08:00
}
}
&-item {
position: relative;
display: block;
padding: 7px 16px;
font-weight: normal;
2016-11-08 20:50:59 +08:00
color: @text-color;
white-space: nowrap;
cursor: pointer;
text-overflow: ellipsis;
overflow: hidden;
transition: background 0.3s ease;
2016-07-04 10:31:27 +08:00
&:hover,
&.focus,
&-active {
background-color: @primary-1;
}
2016-07-04 10:31:27 +08:00
&-disabled {
color: @disabled-color;
cursor: not-allowed;
&:hover {
color: @disabled-color;
background-color: @component-background;
2016-07-04 10:31:27 +08:00
cursor: not-allowed;
}
}
2016-07-04 10:31:27 +08:00
&-selected {
&,
&:hover {
background-color: @background-color-base;
font-weight: bold;
2016-11-08 20:50:59 +08:00
color: @text-color;
2016-07-04 10:31:27 +08:00
}
}
2016-07-04 10:31:27 +08:00
&-divider {
height: 1px;
margin: 1px 0;
overflow: hidden;
2016-11-14 12:21:58 +08:00
background-color: @border-color-split;
line-height: 0;
2016-07-04 10:31:27 +08:00
}
}
2016-07-21 15:40:13 +08:00
}