summaryrefslogtreecommitdiffstats
path: root/web/sass-files/sass/partials/_mentions.scss
diff options
context:
space:
mode:
Diffstat (limited to 'web/sass-files/sass/partials/_mentions.scss')
-rw-r--r--web/sass-files/sass/partials/_mentions.scss55
1 files changed, 55 insertions, 0 deletions
diff --git a/web/sass-files/sass/partials/_mentions.scss b/web/sass-files/sass/partials/_mentions.scss
new file mode 100644
index 000000000..11cd4e9e4
--- /dev/null
+++ b/web/sass-files/sass/partials/_mentions.scss
@@ -0,0 +1,55 @@
+.mention {
+ color: #fff;
+ background: $primary-color;
+ position: relative;
+ z-index: 10;
+ padding-bottom: 1px;
+ @include border-radius(3px);
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+.mentions--top {
+ position: absolute;
+ z-index:99999;
+ .mentions-box {
+ position:absolute;
+ background-color:#fff;
+ border:1px solid #ddd;
+ overflow:scroll;
+ bottom:0;
+ }
+}
+
+.mentions-name {
+ position:relative;
+ width:100%;
+ background-color:#fff;
+ height:37px;
+ padding:2px;
+ z-index:101;
+}
+
+.mentions-name:hover {
+ background-color:#e8eaed;
+}
+
+.mentions-text {
+ font-color:black;
+}
+
+.mention-img {
+ margin-right:10px;
+ height:32px;
+ width:32px;
+ border-radius: 10%;
+}
+
+.mention-highlight {
+ background-color:#fff2bb;
+}
+
+.mention-link {
+ color:$primary-color;
+}