anentrypoint-design 1.0.23 → 1.0.24
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/dist/247420.css +31 -0
- package/dist/247420.js +24 -24
- package/package.json +1 -1
- package/src/css/app-shell/states-interactions.css +31 -0
package/dist/247420.css
CHANGED
|
@@ -5850,7 +5850,38 @@
|
|
|
5850
5850
|
max-width: 320px;
|
|
5851
5851
|
box-shadow: var(--shadow-overlay);
|
|
5852
5852
|
z-index: var(--z-toast);
|
|
5853
|
+
display: flex;
|
|
5854
|
+
align-items: flex-start;
|
|
5855
|
+
gap: var(--space-3);
|
|
5856
|
+
}
|
|
5857
|
+
|
|
5858
|
+
.ds-247420 .toast-action {
|
|
5859
|
+
flex: none;
|
|
5860
|
+
background: transparent;
|
|
5861
|
+
border: 1px solid var(--rule);
|
|
5862
|
+
border-radius: var(--r-1);
|
|
5863
|
+
color: var(--fg-0);
|
|
5864
|
+
padding: var(--space-1) var(--space-2);
|
|
5865
|
+
font: inherit;
|
|
5866
|
+
font-weight: 600;
|
|
5867
|
+
cursor: pointer;
|
|
5868
|
+
white-space: nowrap;
|
|
5869
|
+
}
|
|
5870
|
+
.ds-247420 .toast-action:hover { background: var(--bg-3); }
|
|
5871
|
+
.ds-247420 .toast-action:disabled { opacity: 0.6; cursor: default; }
|
|
5872
|
+
|
|
5873
|
+
.ds-247420 .toast-dismiss {
|
|
5874
|
+
flex: none;
|
|
5875
|
+
margin-left: auto;
|
|
5876
|
+
background: transparent;
|
|
5877
|
+
border: none;
|
|
5878
|
+
color: var(--fg-2);
|
|
5879
|
+
font-size: 1.1em;
|
|
5880
|
+
line-height: 1;
|
|
5881
|
+
padding: var(--space-1);
|
|
5882
|
+
cursor: pointer;
|
|
5853
5883
|
}
|
|
5884
|
+
.ds-247420 .toast-dismiss:hover { color: var(--fg-0); }
|
|
5854
5885
|
|
|
5855
5886
|
@keyframes toast-slide-in {
|
|
5856
5887
|
from {
|