@appscode/design-system 1.0.43-alpha.96 → 1.0.43-alpha.97
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.
|
@@ -951,9 +951,9 @@ $border_color_4: transparent transparent #585d6e transparent;
|
|
|
951
951
|
position: fixed;
|
|
952
952
|
bottom: 0px;
|
|
953
953
|
height: 300px;
|
|
954
|
+
border-top: 1px solid var(--ac-white-light);
|
|
954
955
|
width: 100%;
|
|
955
956
|
background-color: $ac-white;
|
|
956
|
-
border-top: 1px solid var(--ac-white-light);
|
|
957
957
|
|
|
958
958
|
color: $ac-white;
|
|
959
959
|
z-index: 999;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
.ac-terminal {
|
|
2
|
+
padding: 0;
|
|
2
3
|
position: fixed;
|
|
3
4
|
width: calc(100% - 270px);
|
|
4
5
|
bottom: 0;
|
|
5
|
-
// background-color: #3a3a3a;
|
|
6
6
|
background-color: $ac-white;
|
|
7
7
|
color: $ac-white;
|
|
8
8
|
font-size: 13px;
|
|
@@ -168,11 +168,17 @@
|
|
|
168
168
|
|
|
169
169
|
.right-content {
|
|
170
170
|
.status-message {
|
|
171
|
+
background-color: #666666 !important;
|
|
172
|
+
text-align: center;
|
|
173
|
+
padding: 4px 20px;
|
|
174
|
+
border-radius: 4px;
|
|
175
|
+
color: #ffffff !important;
|
|
176
|
+
text-transform: uppercase;
|
|
171
177
|
&.is-success {
|
|
172
|
-
color: #27b064;
|
|
178
|
+
background-color: #27b064;
|
|
173
179
|
}
|
|
174
180
|
&.is-failed {
|
|
175
|
-
|
|
181
|
+
background: $ac-red;
|
|
176
182
|
}
|
|
177
183
|
}
|
|
178
184
|
}
|
package/components/_buttons.scss
CHANGED