@gooddata/sdk-ui-dashboard 11.19.0-alpha.7 → 11.19.0-alpha.9

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.
@@ -55,10 +55,26 @@
55
55
  padding: 4px 5px 4px 10px;
56
56
  border-radius: 4px;
57
57
  border-width: 1px;
58
- border-color: var(--gd-palette-complementary-3);
59
58
  box-shadow: 0 2px 10px 0 rgb(0 0 0 / 10%);
60
59
  animation: gd-kda-dialog-enter-minimized 200ms cubic-bezier(0.22, 1, 0.36, 1) 50ms both;
61
60
  }
61
+
62
+ &#{&}--done {
63
+ background: var(--gd-toastMessage-success-backgroundColor);
64
+ border-color: var(--gd-toastMessage-success-borderColor);
65
+ color: var(--gd-toastMessage-success-textColor);
66
+ }
67
+
68
+ &#{&}--error {
69
+ background: var(--gd-toastMessage-error-backgroundColor);
70
+ border-color: var(--gd-toastMessage-error-borderColor);
71
+ color: var(--gd-toastMessage-error-textColor);
72
+ }
73
+
74
+ &#{&}--step1,
75
+ &#{&}--step2 {
76
+ border-color: var(--gd-palette-complementary-3);
77
+ }
62
78
  }
63
79
 
64
80
  // Align expanded dialog actions with the header title row.
@@ -85,11 +101,20 @@
85
101
  &__button {
86
102
  display: flex;
87
103
  cursor: pointer;
104
+
105
+ &__open {
106
+ margin-right: 7px;
107
+ }
88
108
  }
89
109
 
90
110
  &__divider {
91
111
  width: 1px;
92
112
  background-color: var(--gd-palette-complementary-3);
113
+
114
+ &.done,
115
+ &.error {
116
+ background-color: var(--gd-palette-complementary-0-t70);
117
+ }
93
118
  }
94
119
 
95
120
  &--size-small {
@@ -158,6 +183,15 @@
158
183
  text-overflow: ellipsis;
159
184
  }
160
185
  }
186
+ &.gd-kda-dialog--minimized--done,
187
+ &.gd-kda-dialog--minimized--error {
188
+ .gd-kda-floating-status-bar {
189
+ &__text {
190
+ color: var(--gd-palette-complementary-0);
191
+ font-weight: 700;
192
+ }
193
+ }
194
+ }
161
195
 
162
196
  //dialog sections - structure
163
197
  .gd-kda-dialog-sections {