blue-react 8.6.0 → 8.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/style.css +8 -10
- package/dist/style.min.css +4 -4
- package/dist/style.scss +1 -1
- package/dist/styles/_search.scss +0 -1
- package/dist/styles/_variables.scss +5 -7
- package/package.json +1 -1
package/dist/style.scss
CHANGED
package/dist/styles/_search.scss
CHANGED
|
@@ -99,18 +99,16 @@ $actions-control-bg-hover: $bla-button-bg-hover !default;
|
|
|
99
99
|
$scrollbar-size: 10px;
|
|
100
100
|
|
|
101
101
|
:root {
|
|
102
|
-
--theme: #{$theme};
|
|
103
|
-
|
|
104
102
|
--blue-sidebar-width: #{$bla-sidebar-width};
|
|
105
103
|
--blue-sidebar-color-h: #{$blue-sidebar-color-h};
|
|
106
104
|
--blue-sidebar-color-s: #{$blue-sidebar-color-s};
|
|
107
105
|
--blue-sidebar-color-l: #{$blue-sidebar-color-l};
|
|
108
106
|
--blue-sidebar-color: #{$blue-sidebar-color};
|
|
109
|
-
--blue-theme: #{$theme};
|
|
107
|
+
--blue-theme: var(--theme, #{$theme});
|
|
110
108
|
--blue-shimmering: 0.8;
|
|
111
109
|
|
|
112
|
-
--blue-app-bg: #{$app-bg};
|
|
113
|
-
--blue-sidebar-bg: #{$sidebar-bg};
|
|
114
|
-
--blue-header-bg: #{$header-bg};
|
|
115
|
-
--action-link-bg-color: var(--theme);
|
|
110
|
+
--blue-app-bg: var(--blue-theme, #{$app-bg});
|
|
111
|
+
--blue-sidebar-bg: var(--blue-theme, #{$sidebar-bg});
|
|
112
|
+
--blue-header-bg: var(--blue-theme, #{$header-bg});
|
|
113
|
+
--action-link-bg-color: var(--blue-theme);
|
|
116
114
|
}
|