blue-react 9.1.6 → 9.1.7
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 +9 -7
- package/dist/style.min.css +4 -4
- package/dist/style.scss +1 -1
- package/dist/styles/_general.scss +5 -5
- package/dist/styles/_variables.scss +7 -1
- package/package.json +1 -1
package/dist/style.scss
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
@include blue-custom-scrollbar(
|
|
2
2
|
transparent,
|
|
3
|
-
rgba(
|
|
4
|
-
rgba(
|
|
5
|
-
rgba(
|
|
3
|
+
rgba(var(--blue-scrollbar-thumb-color-rgb), 0.5),
|
|
4
|
+
rgba(var(--blue-scrollbar-thumb-color-rgb), 0.6),
|
|
5
|
+
rgba(var(--blue-scrollbar-thumb-color-rgb), 0.7)
|
|
6
6
|
);
|
|
7
7
|
|
|
8
8
|
* {
|
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
|
|
12
12
|
@media screen and (min-width: 768px) {
|
|
13
13
|
::-webkit-scrollbar {
|
|
14
|
-
height:
|
|
14
|
+
height: var(--blue-scrollbar-size);
|
|
15
15
|
overflow: visible;
|
|
16
|
-
width:
|
|
16
|
+
width: var(--blue-scrollbar-size);
|
|
17
17
|
}
|
|
18
18
|
::-webkit-scrollbar-thumb {
|
|
19
19
|
background-clip: padding-box;
|
|
@@ -23,9 +23,12 @@ $theme-colors: map-merge(
|
|
|
23
23
|
// Alpha value (RGBA) e.g. for header background.
|
|
24
24
|
$shimmering: 0.8 !default;
|
|
25
25
|
|
|
26
|
-
// Thumb color of scrollbar
|
|
26
|
+
// Thumb color of scrollbar.
|
|
27
27
|
$scrollbar-thumb-color: white !default;
|
|
28
28
|
|
|
29
|
+
// Thumb color of scrollbar as RGB (like `255, 255, 255`).
|
|
30
|
+
$scrollbar-thumb-color-rgb: red($scrollbar-thumb-color), green($scrollbar-thumb-color), blue($scrollbar-thumb-color) !default;
|
|
31
|
+
|
|
29
32
|
// Default size for many components, like sidebar menu items.
|
|
30
33
|
$normal-size: 3rem !default;
|
|
31
34
|
|
|
@@ -87,6 +90,9 @@ $actions-control-bg-hover: $bla-button-bg-hover !default;
|
|
|
87
90
|
$scrollbar-size: 10px;
|
|
88
91
|
|
|
89
92
|
:root {
|
|
93
|
+
--blue-scrollbar-thumb-color-rgb: #{$scrollbar-thumb-color-rgb};
|
|
94
|
+
--blue-scrollbar-size: #{$scrollbar-size};
|
|
95
|
+
|
|
90
96
|
--blue-sidebar-width: #{$bla-sidebar-width};
|
|
91
97
|
--blue-sidebar-color: #{$sidebar-color};
|
|
92
98
|
--blue-theme: var(--theme, #{$theme});
|