From 30a2e9819ea5ed53bdf9ea99833ecab837db0a67 Mon Sep 17 00:00:00 2001 From: Alex P Date: Mon, 3 Oct 2016 16:04:09 -0700 Subject: [PATCH] Polish - Custom scrollbar - bottom border on hosts table --- .../enterprise_style/_enterprise-custom.scss | 29 ++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/ui/src/style/enterprise_style/_enterprise-custom.scss b/ui/src/style/enterprise_style/_enterprise-custom.scss index 1c454f262..14970dbd5 100644 --- a/ui/src/style/enterprise_style/_enterprise-custom.scss +++ b/ui/src/style/enterprise_style/_enterprise-custom.scss @@ -668,9 +668,33 @@ table .monotype { background: -webkit-linear-gradient(top, $g2-kevlar 0%, $g0-obsidian 100%); background: linear-gradient(to bottom, $g2-kevlar 0%, $g0-obsidian 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$g2-kevlar', endColorstr='$g0-obsidian',GradientType=0 ); - color: $g17-whisper; + &::-webkit-scrollbar { + width: 14px; + height: 14px; + + &-button { + background-color: $g0-obsidian; + } + &-track { + background-color: $g0-obsidian; + } + &-track-piece { + background: $g0-obsidian; + } + &-thumb { + background-color: $c-pool; + border: 4px solid $g0-obsidian; + border-radius: 7px; + } + &-corner { + background-color: $g0-obsidian; + } + &-resizer { + background-color: $c-pool; + } + } .enterprise-header { background-color: $g0-obsidian; } @@ -704,6 +728,9 @@ table .monotype { td { color: $g14-chromium; } + tbody tr:last-child td { + border-bottom: 2px solid $g5-pepper; + } } } }