@workday/canvas-kit-css 14.0.0-alpha.1174-next.0 → 14.0.0-alpha.1180-next.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/badge.css +2 -2
- package/button.css +34 -7
- package/loading-dots.css +2 -2
- package/modal.css +2 -2
- package/package.json +2 -2
- package/popup.css +2 -2
- package/skeleton.css +2 -2
- package/tooltip.css +2 -2
package/badge.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@keyframes animation-
|
|
1
|
+
@keyframes animation-3032pp {
|
|
2
2
|
from {
|
|
3
3
|
transform: scale(0.85);
|
|
4
4
|
}
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
.cnvs-count-badge {
|
|
13
13
|
box-sizing: border-box;
|
|
14
14
|
align-items: center;
|
|
15
|
-
animation: animation-
|
|
15
|
+
animation: animation-3032pp 0.2s ease;
|
|
16
16
|
background: var(--cnvs-sys-color-static-red-default);
|
|
17
17
|
border-radius: var(--cnvs-sys-shape-round);
|
|
18
18
|
color: var(--cnvs-sys-color-text-inverse);
|
package/button.css
CHANGED
|
@@ -509,10 +509,10 @@
|
|
|
509
509
|
color: var(--cnvs-sys-color-text-primary-default);
|
|
510
510
|
cursor: pointer;
|
|
511
511
|
border-radius: var(--cnvs-sys-shape-half);
|
|
512
|
-
|
|
513
|
-
padding: 0 2px;
|
|
512
|
+
padding: 0 0.125rem;
|
|
514
513
|
margin: 0 -2px;
|
|
515
514
|
transition: color 0.15s,background-color 0.15s;
|
|
515
|
+
word-break: break-word;
|
|
516
516
|
}
|
|
517
517
|
|
|
518
518
|
.cnvs-hyperlink:hover, .cnvs-hyperlink.hover {
|
|
@@ -521,7 +521,7 @@
|
|
|
521
521
|
}
|
|
522
522
|
|
|
523
523
|
.cnvs-hyperlink:focus, .cnvs-hyperlink.focus, .cnvs-hyperlink:focus-visible {
|
|
524
|
-
box-shadow: 0 0 0
|
|
524
|
+
box-shadow: 0 0 0 0.125rem var(--cnvs-brand-common-focus-outline);
|
|
525
525
|
outline: none;
|
|
526
526
|
}
|
|
527
527
|
|
|
@@ -541,7 +541,7 @@
|
|
|
541
541
|
}
|
|
542
542
|
|
|
543
543
|
.cnvs-hyperlink.variant-inverse:focus, .cnvs-hyperlink.variant-inverse.focus, .cnvs-hyperlink.variant-inverse:focus-visible {
|
|
544
|
-
box-shadow: 0 0 0
|
|
544
|
+
box-shadow: 0 0 0 0.125rem var(--cnvs-sys-color-text-inverse);
|
|
545
545
|
}
|
|
546
546
|
|
|
547
547
|
.cnvs-hyperlink.variant-inverse:active, .cnvs-hyperlink.variant-inverse.active {
|
|
@@ -550,14 +550,37 @@
|
|
|
550
550
|
}
|
|
551
551
|
|
|
552
552
|
|
|
553
|
+
.cnvs-hyperlink.variant-standalone {
|
|
554
|
+
text-decoration: none;
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
|
|
558
|
+
.cnvs-hyperlink.variant-standalone-inverse {
|
|
559
|
+
text-decoration: none;
|
|
560
|
+
color: var(--cnvs-sys-color-text-inverse);
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
.cnvs-hyperlink.variant-standalone-inverse:hover, .cnvs-hyperlink.variant-standalone-inverse.hover {
|
|
564
|
+
color: var(--cnvs-sys-color-text-inverse);
|
|
565
|
+
background: rgba(255, 255, 255, 0.1);
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
.cnvs-hyperlink.variant-standalone-inverse:focus, .cnvs-hyperlink.variant-standalone-inverse.focus, .cnvs-hyperlink.variant-standalone-inverse:focus-visible {
|
|
569
|
+
box-shadow: 0 0 0 0.125rem var(--cnvs-sys-color-text-inverse);
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
.cnvs-hyperlink.variant-standalone-inverse:active, .cnvs-hyperlink.variant-standalone-inverse.active {
|
|
573
|
+
color: var(--cnvs-sys-color-text-primary-stronger);
|
|
574
|
+
background: var(--cnvs-sys-color-bg-alt-soft);
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
|
|
553
578
|
.cnvs-external-hyperlink {
|
|
554
579
|
box-sizing: border-box;
|
|
555
|
-
display: inline-flex;
|
|
556
|
-
flex-direction: row;
|
|
557
|
-
align-items: center;
|
|
558
580
|
}
|
|
559
581
|
|
|
560
582
|
.cnvs-external-hyperlink [data-part="external-hyperlink-icon"] {
|
|
583
|
+
vertical-align: text-top;
|
|
561
584
|
--cnvs-system-icon-color: currentColor;
|
|
562
585
|
--cnvs-svg-size: 1em;
|
|
563
586
|
width: calc(1em - 0.0625rem);
|
|
@@ -570,6 +593,10 @@
|
|
|
570
593
|
min-height: var(--cnvs-sys-space-x4);
|
|
571
594
|
}
|
|
572
595
|
|
|
596
|
+
.cnvs-external-hyperlink [data-part="external-hyperlink-icon"] :dir(rtl) {
|
|
597
|
+
transform: rotate(270deg);
|
|
598
|
+
}
|
|
599
|
+
|
|
573
600
|
|
|
574
601
|
.cnvs-primary-button {
|
|
575
602
|
box-sizing: border-box;
|
package/loading-dots.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@keyframes animation-
|
|
1
|
+
@keyframes animation-3jrodc {
|
|
2
2
|
0%, 80%, 100% {
|
|
3
3
|
transform: scale(0);
|
|
4
4
|
}
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
outline: 0.125rem solid transparent;
|
|
27
27
|
transform: scale(0);
|
|
28
28
|
display: inline-block;
|
|
29
|
-
animation-name: animation-
|
|
29
|
+
animation-name: animation-3jrodc;
|
|
30
30
|
animation-duration: calc(var(--cnvs-loading-dots-animation-duration-ms) * 35);
|
|
31
31
|
animation-iteration-count: infinite;
|
|
32
32
|
animation-timing-function: ease-in-out;
|
package/modal.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@keyframes animation-
|
|
1
|
+
@keyframes animation-21zqxo {
|
|
2
2
|
0% {
|
|
3
3
|
background: none;
|
|
4
4
|
}
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
height: 100vh;
|
|
19
19
|
background: var(--cnvs-sys-color-bg-overlay);
|
|
20
20
|
animation-duration: 0.3s;
|
|
21
|
-
animation-name: animation-
|
|
21
|
+
animation-name: animation-21zqxo;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
.wd-no-animation .cnvs-modal-overlay-container {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@workday/canvas-kit-css",
|
|
3
|
-
"version": "14.0.0-alpha.
|
|
3
|
+
"version": "14.0.0-alpha.1180-next.0",
|
|
4
4
|
"description": "The parent module that contains all Workday Canvas Kit CSS components",
|
|
5
5
|
"author": "Workday, Inc. (https://www.workday.com)",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"components",
|
|
26
26
|
"workday"
|
|
27
27
|
],
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "5993dbdcabeebd9877c0abc60d63a29abd3129fd"
|
|
29
29
|
}
|
package/popup.css
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
@keyframes animation-
|
|
6
|
+
@keyframes animation-vwc1j {
|
|
7
7
|
0% {
|
|
8
8
|
opacity: 1;
|
|
9
9
|
transform: translate(var(--cnvs-translate-position-x), var(--cnvs-translate-position-y));
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
padding: var(--cnvs-sys-space-x6);
|
|
32
32
|
max-height: var(--cnvs-popup-card-max-height);
|
|
33
33
|
overflow-y: auto;
|
|
34
|
-
animation-name: animation-
|
|
34
|
+
animation-name: animation-vwc1j;
|
|
35
35
|
animation-duration: 150ms;
|
|
36
36
|
animation-timing-function: ease-out;
|
|
37
37
|
transform-origin: var(--cnvs-popup-card-transform-origin-vertical) var(--cnvs-popup-card-transform-origin-horizontal);
|
package/skeleton.css
CHANGED
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
|
|
39
|
-
@keyframes animation-
|
|
39
|
+
@keyframes animation-uupk7 {
|
|
40
40
|
from {
|
|
41
41
|
opacity: 0.4;
|
|
42
42
|
}
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
|
|
50
50
|
.cnvs-skeleton {
|
|
51
51
|
box-sizing: border-box;
|
|
52
|
-
animation: animation-
|
|
52
|
+
animation: animation-uupk7 0.8s linear infinite alternate;
|
|
53
53
|
position: relative;
|
|
54
54
|
overflow: hidden;
|
|
55
55
|
height: 100%;
|
package/tooltip.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@keyframes animation-
|
|
1
|
+
@keyframes animation-46mcmo {
|
|
2
2
|
0% {
|
|
3
3
|
opacity: 0;
|
|
4
4
|
transform: translate(var(--cnvs-tooltip-translate-position-x), var(--cnvs-tooltip-translate-position-y));
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
position: relative;
|
|
23
23
|
padding: var(--cnvs-sys-space-x3);
|
|
24
24
|
color: var(--cnvs-sys-color-text-inverse);
|
|
25
|
-
animation-name: animation-
|
|
25
|
+
animation-name: animation-46mcmo;
|
|
26
26
|
animation-duration: 150ms;
|
|
27
27
|
animation-timing-function: ease-out;
|
|
28
28
|
transform-origin: var(--cnvs-tooltip-container-tooltip-transform-origin-vertical) var(--cnvs-tooltip-container-tooltip-transform-origin-horizontal);
|