diff options
author | Thais Siqueira <thais.siqueira@gmail.com> | 2017-01-19 16:23:38 -0200 |
---|---|---|
committer | Thais Siqueira <thais.siqueira@gmail.com> | 2017-01-19 16:24:58 -0200 |
commit | f611ab80133efdea8cf1e303636c1a850b5d52d0 (patch) | |
tree | 6bee0d248c1a2aa0c91e9c868463eabc18e04735 | |
parent | a05b42935725a032196157a9200fb4f7019ae132 (diff) |
[#828] Changes color and size of tooltip
with @tayanefernandes
-rw-r--r-- | web-ui/app/scss/_mixins.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web-ui/app/scss/_mixins.scss b/web-ui/app/scss/_mixins.scss index d3aa0220..6509bdcf 100644 --- a/web-ui/app/scss/_mixins.scss +++ b/web-ui/app/scss/_mixins.scss @@ -6,14 +6,14 @@ } @mixin tooltip($top: 8px, $left: 40px) { - background: rgba(0, 0, 0, 0.7); + background: $dark_slate_gray; color: $white; position: absolute; z-index: 2; left: $left; top: $top; font-size: 0.8rem; - padding: 2px 10px; + padding: 4px 10px; white-space: nowrap; @include border-radius(2px); } |