gd-bs 6.3.7 → 6.3.8
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/build/bs.js +1 -1
- package/dist/gd-bs-icons.js +1 -1
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.js +1 -1
- package/dist/gd-bs.min.js +1 -1
- package/package.json +1 -1
- package/src/styles/_tippy.scss +6 -0
package/package.json
CHANGED
package/src/styles/_tippy.scss
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
.tippy-box[data-theme~='primary'] {
|
|
4
4
|
background-color: var(--sp-theme-primary, #0078d4);
|
|
5
|
+
color: var(--sp-white, #ffffff);
|
|
5
6
|
}
|
|
6
7
|
|
|
7
8
|
.tippy-box[data-theme~='primary'][data-placement^='top']>.tippy-arrow::before {
|
|
@@ -24,6 +25,7 @@
|
|
|
24
25
|
|
|
25
26
|
.tippy-box[data-theme~='secondary'] {
|
|
26
27
|
background-color: var(--sp-neutral-secondary, #605e5c);
|
|
28
|
+
color: var(--sp-white, #ffffff);
|
|
27
29
|
}
|
|
28
30
|
|
|
29
31
|
.tippy-box[data-theme~='secondary'][data-placement^='top']>.tippy-arrow::before {
|
|
@@ -46,6 +48,7 @@
|
|
|
46
48
|
|
|
47
49
|
.tippy-box[data-theme~='success'] {
|
|
48
50
|
background-color: var(--sp-success-icon, #107c10);
|
|
51
|
+
color: var(--sp-white, #ffffff);
|
|
49
52
|
}
|
|
50
53
|
|
|
51
54
|
.tippy-box[data-theme~='success'][data-placement^='top']>.tippy-arrow::before {
|
|
@@ -114,6 +117,7 @@
|
|
|
114
117
|
|
|
115
118
|
.tippy-box[data-theme~='danger'] {
|
|
116
119
|
background-color: var(--sp-error-icon, #a80000);
|
|
120
|
+
color: var(--sp-white, #ffffff);
|
|
117
121
|
}
|
|
118
122
|
|
|
119
123
|
.tippy-box[data-theme~='danger'][data-placement^='top']>.tippy-arrow::before {
|
|
@@ -159,6 +163,7 @@
|
|
|
159
163
|
|
|
160
164
|
.tippy-box[data-theme~='dark'] {
|
|
161
165
|
background-color: var(--sp-neutral-dark, #201f1e);
|
|
166
|
+
color: var(--sp-white, #ffffff);
|
|
162
167
|
}
|
|
163
168
|
|
|
164
169
|
.tippy-box[data-theme~='dark'][data-placement^='top']>.tippy-arrow::before {
|
|
@@ -181,6 +186,7 @@
|
|
|
181
186
|
|
|
182
187
|
.tippy-box[data-theme~='sharepoint'] {
|
|
183
188
|
background-color: var(--sp-theme-dark, #005a9e);
|
|
189
|
+
color: var(--sp-white, #ffffff);
|
|
184
190
|
}
|
|
185
191
|
|
|
186
192
|
.tippy-box[data-theme~='sharepoint'][data-placement^='top']>.tippy-arrow::before {
|