mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-12 11:07:06 +00:00
100 lines
2.3 KiB
SCSS
Executable File
Vendored
100 lines
2.3 KiB
SCSS
Executable File
Vendored
.common-user {
|
|
position: relative;
|
|
white-space: normal;
|
|
.common-user-loading {
|
|
position: absolute;
|
|
top: 2px;
|
|
bottom: 0;
|
|
right: 10px;
|
|
display: flex;
|
|
align-items: center;
|
|
.common-loading {
|
|
width: 14px;
|
|
height: 14px;
|
|
}
|
|
}
|
|
&.hidden-input {
|
|
.ivu-select-selection {
|
|
padding: 0 4px;
|
|
.ivu-select-input {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.common-user-transfer {
|
|
.user-input-option {
|
|
display: flex;
|
|
align-items: center;
|
|
.user-input-avatar {
|
|
display: flex;
|
|
align-items: center;
|
|
.avatar {
|
|
width: 26px;
|
|
height: 26px;
|
|
line-height: 26px;
|
|
}
|
|
}
|
|
.user-input-bot {
|
|
font-size: 16px;
|
|
margin-left: 10px;
|
|
margin-right: -6px;
|
|
color: $primary-color;
|
|
}
|
|
.user-input-disable {
|
|
font-size: 12px;
|
|
margin-left: 10px;
|
|
margin-right: -6px;
|
|
color: #ff0000;
|
|
}
|
|
.user-input-nickname {
|
|
margin-left: 10px;
|
|
flex: 1;
|
|
}
|
|
.user-input-userid {
|
|
margin-left: 10px;
|
|
font-size: 12px;
|
|
color: #cccccc;
|
|
transition: margin 0.1s;
|
|
}
|
|
}
|
|
.ivu-select-item {
|
|
&.ivu-select-item-selected {
|
|
&:after {
|
|
top: 8px;
|
|
}
|
|
.user-input-option {
|
|
.user-input-userid {
|
|
margin-right: 16px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.user-drop-prepend {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: sticky;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 1;
|
|
transform: translateY(-5px);
|
|
background-color: #ffffff;
|
|
padding: 5px 15px;
|
|
border-bottom: 1px solid #f1f1f1;
|
|
.user-drop-text {
|
|
flex: 1;
|
|
color: #c5c8ce;
|
|
line-height: 20px;
|
|
font-size: 12px;
|
|
padding: 0 4px;
|
|
}
|
|
.user-drop-check {
|
|
margin-right: 0;
|
|
transform: scale(0.9);
|
|
transform-origin: right center;
|
|
}
|
|
}
|
|
}
|