blue-react 9.1.3 → 9.1.5
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 +11 -18
- package/dist/style.min.css +3 -3
- package/dist/style.scss +1 -1
- package/dist/styles/_tooltips.scss +9 -12
- package/dist/styles/mixins/_sidebar.scss +0 -6
- package/package.json +1 -1
package/dist/style.scss
CHANGED
|
@@ -53,16 +53,13 @@
|
|
|
53
53
|
text-align: center;
|
|
54
54
|
|
|
55
55
|
min-width: 3em;
|
|
56
|
-
max-width: 21em;
|
|
57
|
-
white-space: nowrap;
|
|
58
|
-
overflow: hidden;
|
|
59
|
-
text-overflow: ellipsis;
|
|
56
|
+
max-width: var(--bs-tooltip-max-width, 21em);
|
|
60
57
|
|
|
61
|
-
padding: 1ch 1.5ch;
|
|
62
|
-
border-radius: 0.3em;
|
|
58
|
+
padding: var(--bs-tooltip-padding-y, 1ch) var(--bs-tooltip-padding-x, 1.5ch);
|
|
59
|
+
border-radius: var(--bs-tooltip-border-radius, 0.3em);
|
|
63
60
|
box-shadow: 0 1em 2em -0.5em rgba(0, 0, 0, 0.35);
|
|
64
|
-
background: #353539;
|
|
65
|
-
color: #fff;
|
|
61
|
+
background: var(--bs-tooltip-bg, #353539);
|
|
62
|
+
color: var(--bs-tooltip-color, #fff);
|
|
66
63
|
z-index: 1000;
|
|
67
64
|
}
|
|
68
65
|
// show the [data-tooltip]
|
|
@@ -76,7 +73,7 @@
|
|
|
76
73
|
&::before {
|
|
77
74
|
bottom: 100%;
|
|
78
75
|
border-bottom-width: 0;
|
|
79
|
-
border-top-color: #353539;
|
|
76
|
+
border-top-color: var(--bs-tooltip-bg, #353539);
|
|
80
77
|
}
|
|
81
78
|
&::after {
|
|
82
79
|
bottom: calc(100% + 5px);
|
|
@@ -92,7 +89,7 @@
|
|
|
92
89
|
&::before {
|
|
93
90
|
top: 100%;
|
|
94
91
|
border-top-width: 0;
|
|
95
|
-
border-bottom-color: #353539;
|
|
92
|
+
border-bottom-color: var(--bs-tooltip-bg, #353539);
|
|
96
93
|
}
|
|
97
94
|
&::after {
|
|
98
95
|
top: calc(100% + 5px);
|
|
@@ -129,7 +126,7 @@
|
|
|
129
126
|
&::before {
|
|
130
127
|
top: 50%;
|
|
131
128
|
border-right-width: 0;
|
|
132
|
-
border-left-color: #353539;
|
|
129
|
+
border-left-color: var(--bs-tooltip-bg, #353539);
|
|
133
130
|
left: calc(0em - 5px);
|
|
134
131
|
transform: translate(0.5em, -50%);
|
|
135
132
|
}
|
|
@@ -144,7 +141,7 @@
|
|
|
144
141
|
&::before {
|
|
145
142
|
top: 50%;
|
|
146
143
|
border-left-width: 0;
|
|
147
|
-
border-right-color: #353539;
|
|
144
|
+
border-right-color: var(--bs-tooltip-bg, #353539);
|
|
148
145
|
right: calc(0em - 5px);
|
|
149
146
|
transform: translate(-0.5em, -50%);
|
|
150
147
|
}
|