@danske/sapphire-css 45.1.0 → 46.0.0
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,13 @@
|
|
|
1
|
+
.sapphire-bulk-actions-bar {
|
|
2
|
+
display: flex;
|
|
3
|
+
align-items: center;
|
|
4
|
+
justify-content: space-between;
|
|
5
|
+
padding: var(--sapphire-semantic-size-spacing-sm)
|
|
6
|
+
var(--sapphire-semantic-size-spacing-md);
|
|
7
|
+
/* the bg color here is a hack until the design of this changes */
|
|
8
|
+
background: var(--sapphire-semantic-color-background-neutral-subtle);
|
|
9
|
+
position: sticky;
|
|
10
|
+
top: 0;
|
|
11
|
+
left: 0;
|
|
12
|
+
z-index: 3;
|
|
13
|
+
}
|
|
@@ -452,23 +452,6 @@ tbody .sapphire-table__row--highlighted > .sapphire-table__cell:first-child {
|
|
|
452
452
|
);
|
|
453
453
|
}
|
|
454
454
|
|
|
455
|
-
/**
|
|
456
|
-
* Selection actions. Optionally shown when a table uses multiple selection.
|
|
457
|
-
*/
|
|
458
|
-
.sapphire-table__selection-action-bar {
|
|
459
|
-
display: flex;
|
|
460
|
-
align-items: center;
|
|
461
|
-
justify-content: space-between;
|
|
462
|
-
padding: var(--sapphire-semantic-size-spacing-sm)
|
|
463
|
-
var(--sapphire-semantic-size-spacing-lg);
|
|
464
|
-
/* the bg color here is a hack until the design of this changes */
|
|
465
|
-
background: var(--sapphire-semantic-color-background-neutral-subtle);
|
|
466
|
-
position: sticky;
|
|
467
|
-
top: 0;
|
|
468
|
-
left: 0;
|
|
469
|
-
z-index: 3;
|
|
470
|
-
}
|
|
471
|
-
|
|
472
455
|
/**
|
|
473
456
|
* Footer.
|
|
474
457
|
* Normally used as a container for the pagination.
|
|
@@ -476,6 +459,7 @@ tbody .sapphire-table__row--highlighted > .sapphire-table__cell:first-child {
|
|
|
476
459
|
.sapphire-table__footer {
|
|
477
460
|
position: relative;
|
|
478
461
|
z-index: 2; /* Setting to two because body rows are positioned relative */
|
|
462
|
+
margin: var(--sapphire-semantic-size-spacing-sm) 0;
|
|
479
463
|
}
|
|
480
464
|
|
|
481
465
|
.sapphire-table__footer--sticky {
|
|
@@ -40,7 +40,6 @@ declare const styles: {
|
|
|
40
40
|
readonly "sapphire-table--without-last-divider": string;
|
|
41
41
|
readonly "sapphire-table__row--interactive": string;
|
|
42
42
|
readonly "sapphire-table__row--highlighted": string;
|
|
43
|
-
readonly "sapphire-table__selection-action-bar": string;
|
|
44
43
|
readonly "sapphire-table__footer": string;
|
|
45
44
|
readonly "sapphire-table__footer--sticky": string;
|
|
46
45
|
readonly "sapphire-table__footer--virtualized": string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@danske/sapphire-css",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "46.0.0",
|
|
4
4
|
"description": "CSS implementation of the Sapphire Design System from Danske Bank A/S",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -69,5 +69,5 @@
|
|
|
69
69
|
"dependencies": {
|
|
70
70
|
"@danske/sapphire-design-tokens": "^42.2.1"
|
|
71
71
|
},
|
|
72
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "b745d009a1799e0912fcaeb52973104d566326c0"
|
|
73
73
|
}
|