gd-bs 6.4.5 → 6.4.6
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/_custom.scss +1 -16
- package/src/styles/_dataTables.scss +25 -0
package/package.json
CHANGED
package/src/styles/_custom.scss
CHANGED
|
@@ -338,7 +338,7 @@
|
|
|
338
338
|
--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23faf9f8'/%3e%3c/svg%3e");
|
|
339
339
|
}
|
|
340
340
|
}
|
|
341
|
-
|
|
341
|
+
:not(.btn-group).invert, .btn-group.invert::after, img.invert {
|
|
342
342
|
filter: invert(1);
|
|
343
343
|
}
|
|
344
344
|
.line-limit-1 {
|
|
@@ -542,26 +542,11 @@
|
|
|
542
542
|
svg.icon-svg path {
|
|
543
543
|
fill: currentColor;
|
|
544
544
|
}
|
|
545
|
-
/* Fix extra top margin in Firefox */
|
|
546
|
-
table.dataTable {
|
|
547
|
-
margin-top: 0rem !important;
|
|
548
|
-
}
|
|
549
545
|
.table {
|
|
550
546
|
--bs-table-striped-bg: color-mix(in srgb, var(--sp-black, #000000), transparent 95%);
|
|
551
547
|
--bs-table-active-bg: color-mix(in srgb, var(--sp-black, #000000), transparent 90%);
|
|
552
548
|
--bs-table-hover-bg: color-mix(in srgb, var(--sp-black, #000000), transparent 92%);
|
|
553
549
|
}
|
|
554
|
-
.table>:not(caption)>*>* {
|
|
555
|
-
color: var(--sp-neutral-dark, #201f1e);
|
|
556
|
-
}
|
|
557
|
-
/* Match the table header to the table footer; size & color */
|
|
558
|
-
.table>:not(:last-child)>:last-child>* {
|
|
559
|
-
border-bottom: 3px solid var(--sp-neutral-quaternary, #d2d0ce);
|
|
560
|
-
}
|
|
561
|
-
/* Match the table footer to the table header; size & color */
|
|
562
|
-
.tbl-footer {
|
|
563
|
-
border-bottom: 2px solid var(--sp-neutral-quaternary, #d2d0ce);
|
|
564
|
-
}
|
|
565
550
|
/* Add the default text color */
|
|
566
551
|
.text-body {
|
|
567
552
|
color: var(--sp-primary-text, #333333) !important;
|
|
@@ -8,6 +8,31 @@ div.dataTables_wrapper div.dataTables_length select {
|
|
|
8
8
|
width: 3.75rem;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
+
/* Fix extra top margin in Firefox */
|
|
12
|
+
table.dataTable {
|
|
13
|
+
margin-top: 0rem !important;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
/* Match table striping to the theme */
|
|
17
|
+
table.dataTable.table-striped>tbody>tr:nth-of-type(2n+1)>* {
|
|
18
|
+
box-shadow: inset 0 0 0 9999px color-mix(in srgb, var(--sp-black, #000000), transparent 95%);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
/* Table text color */
|
|
22
|
+
.table>:not(caption)>*>* {
|
|
23
|
+
color: var(--sp-neutral-dark, #201f1e);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
/* Match the table header to the table footer; size & color */
|
|
27
|
+
.table>:not(:last-child)>:last-child>* {
|
|
28
|
+
border-bottom: 3px solid var(--sp-neutral-quaternary, #d2d0ce);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
/* Match the table footer to the table header; size & color */
|
|
32
|
+
.tbl-footer {
|
|
33
|
+
border-bottom: 2px solid var(--sp-neutral-quaternary, #d2d0ce);
|
|
34
|
+
}
|
|
35
|
+
|
|
11
36
|
/* Be sure to escape any characters, such as # to %23 when specifying hex color values in background-image */
|
|
12
37
|
/* DataTables sorting with Bootstrap Icons */
|
|
13
38
|
table.dataTable thead .sorting,
|