gd-bs 5.7.9 → 5.8.2

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.
@@ -0,0 +1,185 @@
1
+ /* Tippy Tooltip primary theme color */
2
+
3
+ .tippy-box[data-theme~='primary'] {
4
+ background-color: #0078d4;
5
+ }
6
+
7
+ .tippy-box[data-theme~='primary'][data-placement^='top']>.tippy-arrow::before {
8
+ border-top-color: #0078d4;
9
+ }
10
+
11
+ .tippy-box[data-theme~='primary'][data-placement^='bottom']>.tippy-arrow::before {
12
+ border-bottom-color: #0078d4;
13
+ }
14
+
15
+ .tippy-box[data-theme~='primary'][data-placement^='left']>.tippy-arrow::before {
16
+ border-left-color: #0078d4;
17
+ }
18
+
19
+ .tippy-box[data-theme~='primary'][data-placement^='right']>.tippy-arrow::before {
20
+ border-right-color: #0078d4;
21
+ }
22
+
23
+
24
+ /* Tippy Tooltip secondary theme color */
25
+
26
+ .tippy-box[data-theme~='secondary'] {
27
+ background-color: #6c757d;
28
+ }
29
+
30
+ .tippy-box[data-theme~='secondary'][data-placement^='top']>.tippy-arrow::before {
31
+ border-top-color: #6c757d;
32
+ }
33
+
34
+ .tippy-box[data-theme~='secondary'][data-placement^='bottom']>.tippy-arrow::before {
35
+ border-bottom-color: #6c757d;
36
+ }
37
+
38
+ .tippy-box[data-theme~='secondary'][data-placement^='left']>.tippy-arrow::before {
39
+ border-left-color: #6c757d;
40
+ }
41
+
42
+ .tippy-box[data-theme~='secondary'][data-placement^='right']>.tippy-arrow::before {
43
+ border-right-color: #6c757d;
44
+ }
45
+
46
+
47
+ /* Tippy Tooltip success theme color */
48
+
49
+ .tippy-box[data-theme~='success'] {
50
+ background-color: #198754;
51
+ }
52
+
53
+ .tippy-box[data-theme~='success'][data-placement^='top']>.tippy-arrow::before {
54
+ border-top-color: #198754;
55
+ }
56
+
57
+ .tippy-box[data-theme~='success'][data-placement^='bottom']>.tippy-arrow::before {
58
+ border-bottom-color: #198754;
59
+ }
60
+
61
+ .tippy-box[data-theme~='success'][data-placement^='left']>.tippy-arrow::before {
62
+ border-left-color: #198754;
63
+ }
64
+
65
+ .tippy-box[data-theme~='success'][data-placement^='right']>.tippy-arrow::before {
66
+ border-right-color: #198754;
67
+ }
68
+
69
+
70
+ /* Tippy Tooltip info theme color */
71
+
72
+ .tippy-box[data-theme~='info'] {
73
+ background-color: #0dcaf0;
74
+ color: #000;
75
+ }
76
+
77
+ .tippy-box[data-theme~='info'][data-placement^='top']>.tippy-arrow::before {
78
+ border-top-color: #0dcaf0;
79
+ }
80
+
81
+ .tippy-box[data-theme~='info'][data-placement^='bottom']>.tippy-arrow::before {
82
+ border-bottom-color: #0dcaf0;
83
+ }
84
+
85
+ .tippy-box[data-theme~='info'][data-placement^='left']>.tippy-arrow::before {
86
+ border-left-color: #0dcaf0;
87
+ }
88
+
89
+ .tippy-box[data-theme~='info'][data-placement^='right']>.tippy-arrow::before {
90
+ border-right-color: #0dcaf0;
91
+ }
92
+
93
+
94
+ /* Tippy Tooltip warning theme color */
95
+
96
+ .tippy-box[data-theme~='warning'] {
97
+ background-color: #ffc107;
98
+ color: #000;
99
+ }
100
+
101
+ .tippy-box[data-theme~='warning'][data-placement^='top']>.tippy-arrow::before {
102
+ border-top-color: #ffc107;
103
+ }
104
+
105
+ .tippy-box[data-theme~='warning'][data-placement^='bottom']>.tippy-arrow::before {
106
+ border-bottom-color: #ffc107;
107
+ }
108
+
109
+ .tippy-box[data-theme~='warning'][data-placement^='left']>.tippy-arrow::before {
110
+ border-left-color: #ffc107;
111
+ }
112
+
113
+ .tippy-box[data-theme~='warning'][data-placement^='right']>.tippy-arrow::before {
114
+ border-right-color: #ffc107;
115
+ }
116
+
117
+
118
+ /* Tippy Tooltip danger theme color */
119
+
120
+ .tippy-box[data-theme~='danger'] {
121
+ background-color: #dc3545;
122
+ }
123
+
124
+ .tippy-box[data-theme~='danger'][data-placement^='top']>.tippy-arrow::before {
125
+ border-top-color: #dc3545;
126
+ }
127
+
128
+ .tippy-box[data-theme~='danger'][data-placement^='bottom']>.tippy-arrow::before {
129
+ border-bottom-color: #dc3545;
130
+ }
131
+
132
+ .tippy-box[data-theme~='danger'][data-placement^='left']>.tippy-arrow::before {
133
+ border-left-color: #dc3545;
134
+ }
135
+
136
+ .tippy-box[data-theme~='danger'][data-placement^='right']>.tippy-arrow::before {
137
+ border-right-color: #dc3545;
138
+ }
139
+
140
+
141
+ /* Tippy Tooltip light theme color - override Tippy default to match Bootstrap */
142
+
143
+ .tippy-box[data-theme~='light'] {
144
+ background-color: #f8f9fa !important;
145
+ color: #000 !important;
146
+ }
147
+
148
+ .tippy-box[data-theme~='light'][data-placement^='top']>.tippy-arrow::before {
149
+ border-top-color: #f8f9fa !important;
150
+ }
151
+
152
+ .tippy-box[data-theme~='light'][data-placement^='bottom']>.tippy-arrow::before {
153
+ border-bottom-color: #f8f9fa !important;
154
+ }
155
+
156
+ .tippy-box[data-theme~='light'][data-placement^='left']>.tippy-arrow::before {
157
+ border-left-color: #f8f9fa !important;
158
+ }
159
+
160
+ .tippy-box[data-theme~='light'][data-placement^='right']>.tippy-arrow::before {
161
+ border-right-color: #f8f9fa !important;
162
+ }
163
+
164
+
165
+ /* Tippy Tooltip dark theme color */
166
+
167
+ .tippy-box[data-theme~='dark'] {
168
+ background-color: #212529;
169
+ }
170
+
171
+ .tippy-box[data-theme~='dark'][data-placement^='top']>.tippy-arrow::before {
172
+ border-top-color: #212529;
173
+ }
174
+
175
+ .tippy-box[data-theme~='dark'][data-placement^='bottom']>.tippy-arrow::before {
176
+ border-bottom-color: #212529;
177
+ }
178
+
179
+ .tippy-box[data-theme~='dark'][data-placement^='left']>.tippy-arrow::before {
180
+ border-left-color: #212529;
181
+ }
182
+
183
+ .tippy-box[data-theme~='dark'][data-placement^='right']>.tippy-arrow::before {
184
+ border-right-color: #212529;
185
+ }