diff --git a/src/styles-new/_constants-snow.scss b/src/styles-new/_constants-snow.scss index f9aafa3b75..7f5afa7343 100644 --- a/src/styles-new/_constants-snow.scss +++ b/src/styles-new/_constants-snow.scss @@ -258,7 +258,8 @@ $colorMiniTabFgHov: #fff; // Mobile $colorMobilePaneLeft: darken($colorBodyBg, 2%); -$colorMobilePaneLeftTreeItemBg: pullForward($colorMobilePaneLeft, 3%); +$colorMobilePaneLeftTreeItemBg: rgba($colorBodyFg, 0.1); //pullForward($colorMobilePaneLeft, 3%); +$colorMobilePaneLeftTreeItemFg: $colorItemTreeFg; $colorMobileSelectListTreeItemBg: rgba(#000, 0.05); // Datetime Picker, Calendar diff --git a/src/styles-new/_mixins.scss b/src/styles-new/_mixins.scss index 0d72f4c720..a1575f3d1b 100644 --- a/src/styles-new/_mixins.scss +++ b/src/styles-new/_mixins.scss @@ -79,7 +79,7 @@ background-color: rgba($c, $a) !important; } -/************************** CONTROLS */ +/************************** CONTROLS, BUTTONS */ @mixin nice-input($bg: $colorInputBg, $fg: $colorInputFg, $shdw: rgba(black, 0.5) 0 0px 2px) { appearance: none; background: $bg; @@ -99,6 +99,13 @@ } } +@mixin button($bg: $colorBtnBg, $fg: $colorBtnFg, $radius: $controlCr, $shdw: none) { + background: $bg; + color: $fg; + border-radius: $radius; + box-shadow: $shdw; +} + /************************** MATH */ @function percentToDecimal($p) { @return $p / 100%; diff --git a/src/ui/components/controls/pane.vue b/src/ui/components/controls/pane.vue index 41fb97573a..f8c83b8eea 100644 --- a/src/ui/components/controls/pane.vue +++ b/src/ui/components/controls/pane.vue @@ -24,8 +24,6 @@ + +