summaryrefslogtreecommitdiffstats
path: root/webapp/sass
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/sass')
-rw-r--r--webapp/sass/components/_suggestion-list.scss30
1 files changed, 30 insertions, 0 deletions
diff --git a/webapp/sass/components/_suggestion-list.scss b/webapp/sass/components/_suggestion-list.scss
index 8bee49ce6..c995d5ebf 100644
--- a/webapp/sass/components/_suggestion-list.scss
+++ b/webapp/sass/components/_suggestion-list.scss
@@ -44,3 +44,33 @@
.suggestion-list--bottom {
position: relative;
}
+
+.suggestion-list__divider {
+ line-height: 21px;
+ margin: 5px 0px 0px 5px;
+ position: relative;
+
+ &:first-child {
+ margin-top: 5px;
+ }
+
+ > span {
+ color: rgba(51,51,51,0.7);
+ background: #f2f4f8;
+ display: inline-block;
+ padding-right: 10px;
+ position: relative;
+ z-index: 5;
+ }
+
+ &:before {
+ @include opacity(.2);
+ background: $dark-gray;
+ content: '';
+ height: 1px;
+ left: 0;
+ position: absolute;
+ top: 10px;
+ width: 100%;
+ }
+}