summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwinh <winnie@gitlab.com>2017-07-27 11:18:11 +0200
committerwinh <winnie@gitlab.com>2017-08-01 14:52:47 +0200
commit5fc985776b10ff3f601a569428d916a7a5a99793 (patch)
tree842236201b806f053ef6ac281829574a18ada5de
parent1ec24154aabc2e25fc0c9f742ea23a075a1d9ed8 (diff)
downloadgitlab-ce-winh-markdown-autocomplete-dropdown-style.tar.gz
Make Markdown autocomplete dropdown style consistentwinh-markdown-autocomplete-dropdown-style
-rw-r--r--app/assets/stylesheets/framework/markdown_area.scss25
1 files changed, 25 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework/markdown_area.scss b/app/assets/stylesheets/framework/markdown_area.scss
index a2de4598167..fcd4c72b430 100644
--- a/app/assets/stylesheets/framework/markdown_area.scss
+++ b/app/assets/stylesheets/framework/markdown_area.scss
@@ -185,3 +185,28 @@
text-overflow: ellipsis;
}
}
+
+// TODO: fallback to global style
+.atwho-view {
+ .atwho-view-ul {
+ padding: 8px 1px;
+
+ li {
+ padding: 8px 16px;
+ border: 0;
+
+ &.cur {
+ background-color: $gray-darker;
+ color: $gl-text-color;
+
+ small {
+ color: inherit;
+ }
+ }
+
+ strong {
+ color: $gl-text-color;
+ }
+ }
+ }
+}