From 03610f2dd6833b3b6358790d044b852c154b4bf3 Mon Sep 17 00:00:00 2001 From: Stefan Malzner Date: Fri, 15 Dec 2017 14:00:17 +0100 Subject: feat(Recipes): Add `hasHostedOption` to enable hosted & self hosted services --- src/styles/content-tabs.scss | 12 +++++++----- src/styles/input.scss | 4 ++++ 2 files changed, 11 insertions(+), 5 deletions(-) (limited to 'src/styles') 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 @@ flex: 1; // border: 1px solid $theme-gray-lightest; color: $theme-gray-dark; - background: $theme-gray-lightest; - border-bottom: 1px solid $theme-gray-lighter; - box-shadow: inset 0px -3px 10px rgba(black, 0.05); - transition: all $theme-transition-time; + background: linear-gradient($theme-gray-lightest 80%, darken($theme-gray-lightest, 3%)); + border-right: 1px solid $theme-gray-lighter; + transition: background $theme-transition-time; + + &:last-of-type { + border-right: 0; + } &.is-active { background: $theme-brand-primary; color: #FFF; - border-bottom: 1px solid $theme-brand-primary; box-shadow: none; } } 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 @@ padding: 8px; // font-size: 18px; color: $theme-gray; + + &::placeholder { + color: lighten($theme-gray-light, 10%); + } } .franz-form__input-prefix, -- cgit v1.2.3-54-g00ecf