Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-03-10 00:07:57 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-03-10 00:07:57 +0300
commit5aa96ff14229dba7e35f213354963febf3ad2833 (patch)
tree544f3233c05f7f1aa723ea9f13036f2f45d91745 /app/assets/stylesheets/vendors
parent7ebcead8cfd2edb810dd0cbda816b6cfbd170fe3 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/stylesheets/vendors')
-rw-r--r--app/assets/stylesheets/vendors/tribute.scss41
1 files changed, 41 insertions, 0 deletions
diff --git a/app/assets/stylesheets/vendors/tribute.scss b/app/assets/stylesheets/vendors/tribute.scss
new file mode 100644
index 00000000000..95b1d80a586
--- /dev/null
+++ b/app/assets/stylesheets/vendors/tribute.scss
@@ -0,0 +1,41 @@
+.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;
+ }
+ }
+ }
+}