debian-mirror-gitlab/app/assets/stylesheets/vendors/tribute.scss

42 lines
738 B
SCSS
Raw Normal View History

2020-04-08 14:13:33 +05:30
.tribute-container {
2020-04-22 19:07:51 +05:30
background: $white;
2020-11-24 15:15:51 +05:30
border: 1px solid $gray-100;
2020-04-08 14:13:33 +05:30
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 {
2020-11-24 15:15:51 +05:30
color: $gray-500;
2020-04-08 14:13:33 +05:30
}
&.highlight {
background-color: $gray-darker;
.avatar {
@include disable-all-animation;
2020-04-22 19:07:51 +05:30
border: 1px solid $white;
2020-04-08 14:13:33 +05:30
}
small {
color: inherit;
}
}
}
}