42 lines
756 B
SCSS
42 lines
756 B
SCSS
|
.tribute-container {
|
||
|
background: $white-light;
|
||
|
border: 1px solid $gl-gray-100;
|
||
|
border-radius: $border-radius-base;
|
||
|
box-shadow: 0 0 5px $issue-boards-card-shadow;
|
||
|
color: $black;
|
||
|
margin-top: $gl-padding-12;
|
||
|
max-height: 200px;
|
||
|
min-width: 120px;
|
||
|
overflow-y: auto;
|
||
|
z-index: 11110 !important;
|
||
|
|
||
|
ul {
|
||
|
list-style: none;
|
||
|
margin-bottom: 0;
|
||
|
padding: $gl-padding-8 1px;
|
||
|
}
|
||
|
|
||
|
li {
|
||
|
cursor: pointer;
|
||
|
padding: $gl-padding-8 $gl-padding;
|
||
|
white-space: nowrap;
|
||
|
|
||
|
small {
|
||
|
color: $gl-gray-500;
|
||
|
}
|
||
|
|
||
|
&.highlight {
|
||
|
background-color: $gray-darker;
|
||
|
|
||
|
.avatar {
|
||
|
@include disable-all-animation;
|
||
|
border: 1px solid $white-light;
|
||
|
}
|
||
|
|
||
|
small {
|
||
|
color: inherit;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|