67 lines
852 B
SCSS
67 lines
852 B
SCSS
.ajax-users-select {
|
|
width: 400px;
|
|
|
|
&.input-large {
|
|
width: 210px;
|
|
}
|
|
|
|
&.input-clamp {
|
|
max-width: 100%;
|
|
}
|
|
}
|
|
|
|
.group-result {
|
|
.group-image {
|
|
float: left;
|
|
}
|
|
|
|
.group-name {
|
|
font-weight: $gl-font-weight-bold;
|
|
}
|
|
|
|
.group-path {
|
|
color: $gray-300;
|
|
}
|
|
}
|
|
|
|
.project-result {
|
|
.project-name {
|
|
font-weight: $gl-font-weight-bold;
|
|
}
|
|
|
|
.project-path {
|
|
color: $gray-300;
|
|
}
|
|
}
|
|
|
|
.user-result {
|
|
min-height: 24px;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.user-image {
|
|
float: left;
|
|
}
|
|
|
|
&.no-username {
|
|
.user-name {
|
|
line-height: 24px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.namespace-result {
|
|
.namespace-kind {
|
|
color: $gray-300;
|
|
font-weight: $gl-font-weight-normal;
|
|
}
|
|
|
|
.namespace-path {
|
|
margin-left: 10px;
|
|
font-weight: $gl-font-weight-bold;
|
|
}
|
|
}
|
|
|
|
.ajax-users-dropdown {
|
|
min-width: 250px !important;
|
|
}
|