From 3a886735097d81e80c8edab92038ae41ec487714 Mon Sep 17 00:00:00 2001 From: kinfkong <kinfkong@126.com> Date: Tue, 15 Jan 2019 14:42:43 +0800 Subject: [PATCH] fix #388 --- src/themes/dark-theme.scss | 4 ++++ src/themes/light-theme.scss | 5 +++++ src/themes/magenta-theme.scss | 5 +++++ 3 files changed, 14 insertions(+) diff --git a/src/themes/dark-theme.scss b/src/themes/dark-theme.scss index 1598df0..897e836 100644 --- a/src/themes/dark-theme.scss +++ b/src/themes/dark-theme.scss @@ -82,3 +82,7 @@ $dark-theme: mat-dark-theme($dark-primary, $dark-accent, $dark-warn); @include angular-material-theme($dark-theme); @include dark-app-colors } + +.dark-theme .cli.mat-elevation-z12 { + box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 8) +} diff --git a/src/themes/light-theme.scss b/src/themes/light-theme.scss index 4641876..6c0a9b8 100644 --- a/src/themes/light-theme.scss +++ b/src/themes/light-theme.scss @@ -84,3 +84,8 @@ $app-bg-color: white; .light-theme .mat-form-field.mat-focused.mat-primary .mat-select-arrow { color: rgba(0, 0, 0, .54); } + + +.light-theme .cli.mat-elevation-z12 { + box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.8) +} diff --git a/src/themes/magenta-theme.scss b/src/themes/magenta-theme.scss index 06682ab..3bb2d13 100644 --- a/src/themes/magenta-theme.scss +++ b/src/themes/magenta-theme.scss @@ -171,3 +171,8 @@ $app-bg-color: white; color: $tmo-white; @include magenta-app-colors } + + +.magenta-theme .cli.mat-elevation-z12 { + box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.8); +}