aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2017-12-15 14:00:17 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2017-12-15 14:00:17 +0100
commit03610f2dd6833b3b6358790d044b852c154b4bf3 (patch)
treea48a18458304a10f63c16ed108ccd2d87b91823b /src/styles
parentfix(Recipes): Enable `urlInputPrefix` for team and customURL (diff)
downloadferdium-app-03610f2dd6833b3b6358790d044b852c154b4bf3.tar.gz
ferdium-app-03610f2dd6833b3b6358790d044b852c154b4bf3.tar.zst
ferdium-app-03610f2dd6833b3b6358790d044b852c154b4bf3.zip
feat(Recipes): Add `hasHostedOption` to enable hosted & self hosted services
Diffstat (limited to 'src/styles')
-rw-r--r--src/styles/content-tabs.scss12
-rw-r--r--src/styles/input.scss4
2 files changed, 11 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 }
diff --git a/src/styles/input.scss b/src/styles/input.scss
index 814dce5f8..7042f56e8 100644
--- a/src/styles/input.scss
+++ b/src/styles/input.scss
@@ -47,6 +47,10 @@
47 padding: 8px; 47 padding: 8px;
48 // font-size: 18px; 48 // font-size: 18px;
49 color: $theme-gray; 49 color: $theme-gray;
50
51 &::placeholder {
52 color: lighten($theme-gray-light, 10%);
53 }
50 } 54 }
51 55
52 .franz-form__input-prefix, 56 .franz-form__input-prefix,