aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/content-tabs.scss
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2017-12-15 14:44:46 +0100
committerLibravatar GitHub <noreply@github.com>2017-12-15 14:44:46 +0100
commitdc1dd2e857114fac2462f18ea774ddacb287fa81 (patch)
tree32b701de50c505abc95ceddc7c429df85c81f041 /src/styles/content-tabs.scss
parentRemove IME handlers (diff)
parentMerge pull request #475 from meetfranz/feature/service-improvements (diff)
downloadferdium-app-dc1dd2e857114fac2462f18ea774ddacb287fa81.tar.gz
ferdium-app-dc1dd2e857114fac2462f18ea774ddacb287fa81.tar.zst
ferdium-app-dc1dd2e857114fac2462f18ea774ddacb287fa81.zip
Merge branch 'develop' into feature/macOS-copy-paste
Diffstat (limited to 'src/styles/content-tabs.scss')
-rw-r--r--src/styles/content-tabs.scss12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/styles/content-tabs.scss b/src/styles/content-tabs.scss
index aa3c8594b..47dfea2c4 100644
--- a/src/styles/content-tabs.scss
+++ b/src/styles/content-tabs.scss
@@ -12,15 +12,17 @@
12 flex: 1; 12 flex: 1;
13 // border: 1px solid $theme-gray-lightest; 13 // border: 1px solid $theme-gray-lightest;
14 color: $theme-gray-dark; 14 color: $theme-gray-dark;
15 background: $theme-gray-lightest; 15 background: linear-gradient($theme-gray-lightest 80%, darken($theme-gray-lightest, 3%));
16 border-bottom: 1px solid $theme-gray-lighter; 16 border-right: 1px solid $theme-gray-lighter;
17 box-shadow: inset 0px -3px 10px rgba(black, 0.05); 17 transition: background $theme-transition-time;
18 transition: all $theme-transition-time; 18
19 &:last-of-type {
20 border-right: 0;
21 }
19 22
20 &.is-active { 23 &.is-active {
21 background: $theme-brand-primary; 24 background: $theme-brand-primary;
22 color: #FFF; 25 color: #FFF;
23 border-bottom: 1px solid $theme-brand-primary;
24 box-shadow: none; 26 box-shadow: none;
25 } 27 }
26 } 28 }