@gitlab/ui 85.0.1 → 85.1.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.
- package/CHANGELOG.md +14 -0
- package/dist/components/base/table/constants.js +1 -1
- package/dist/components/base/table/table.js +1 -1
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/package.json +1 -1
- package/src/components/base/card/card.scss +9 -3
- package/src/components/base/table/constants.js +0 -1
- package/src/components/base/table/table.vue +1 -0
- package/src/directives/outside/outside.md +0 -2
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
.gl-card {
|
|
2
|
-
|
|
2
|
+
background-color: var(--gl-background-color-default);
|
|
3
3
|
@include gl-border-solid;
|
|
4
4
|
@include gl-display-flex;
|
|
5
5
|
@include gl-flex-direction-column;
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
.gl-card-header,
|
|
14
14
|
.gl-card-footer {
|
|
15
15
|
@include gl-border-1;
|
|
16
|
-
|
|
16
|
+
border-color: var(--gl-border-color-default);
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
.gl-card-header,
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
@include gl-border-b-solid;
|
|
27
27
|
border-top-left-radius: calc($gl-border-radius-base - $gl-border-size-1);
|
|
28
28
|
border-top-right-radius: calc($gl-border-radius-base - $gl-border-size-1);
|
|
29
|
+
color: var(--gl-text-color-heading);
|
|
29
30
|
}
|
|
30
31
|
|
|
31
32
|
.gl-card-footer {
|
|
@@ -36,5 +37,10 @@
|
|
|
36
37
|
|
|
37
38
|
.gl-card-header,
|
|
38
39
|
.gl-card-footer {
|
|
39
|
-
|
|
40
|
+
background-color: var(--gl-background-color-subtle);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.gl-card-body,
|
|
44
|
+
.gl-card-footer {
|
|
45
|
+
color: var(--gl-text-color-default);
|
|
40
46
|
}
|
|
@@ -50,7 +50,5 @@ export default {
|
|
|
50
50
|
|
|
51
51
|
## Caveats
|
|
52
52
|
|
|
53
|
-
- If a click event is stopped (e.g., via `event.stopPropagation()`) before it
|
|
54
|
-
bubbles up to the `document`, it cannot be detected by `GlOutsideDirective`.
|
|
55
53
|
- Clicks cannot be detected across document boundaries (e.g., across an
|
|
56
54
|
`iframe` boundary), in either direction.
|