@appscode/design-system 1.0.43-alpha.118 → 1.0.43-alpha.119
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/components/_ac-input.scss +10 -12
- package/components/_preview-modal.scss +10 -0
- package/package.json +1 -1
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
input,
|
|
33
33
|
.ac-card,
|
|
34
34
|
textarea {
|
|
35
|
-
border: 1px solid $ac-primary;
|
|
35
|
+
border: 1px solid $ac-primary !important;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
p {
|
|
@@ -177,8 +177,8 @@
|
|
|
177
177
|
top: -9px;
|
|
178
178
|
font-weight: 500;
|
|
179
179
|
color: $ac-color-value;
|
|
180
|
-
&.is-required{
|
|
181
|
-
&:after{
|
|
180
|
+
&.is-required {
|
|
181
|
+
&:after {
|
|
182
182
|
width: calc(100% + 10px);
|
|
183
183
|
}
|
|
184
184
|
}
|
|
@@ -378,13 +378,13 @@
|
|
|
378
378
|
}
|
|
379
379
|
|
|
380
380
|
.ac-textarea {
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
381
|
+
.ac-label {
|
|
382
|
+
&.is-required {
|
|
383
|
+
&:after {
|
|
384
|
+
width: calc(100% + 10px);
|
|
385
|
+
}
|
|
385
386
|
}
|
|
386
387
|
}
|
|
387
|
-
}
|
|
388
388
|
textarea {
|
|
389
389
|
border: 1px solid $ac-label-text;
|
|
390
390
|
background-color: transparent;
|
|
@@ -393,7 +393,6 @@
|
|
|
393
393
|
&.bg-white {
|
|
394
394
|
background-color: transparent;
|
|
395
395
|
}
|
|
396
|
-
|
|
397
396
|
|
|
398
397
|
&:focus {
|
|
399
398
|
outline: none;
|
|
@@ -658,7 +657,7 @@ input#captcha {
|
|
|
658
657
|
padding-top: 0;
|
|
659
658
|
padding-left: 40px;
|
|
660
659
|
height: auto;
|
|
661
|
-
|
|
660
|
+
|
|
662
661
|
&::before {
|
|
663
662
|
width: 30px;
|
|
664
663
|
height: 16.2px;
|
|
@@ -798,11 +797,10 @@ input#captcha {
|
|
|
798
797
|
label {
|
|
799
798
|
color: $ac-label-text;
|
|
800
799
|
}
|
|
801
|
-
.button.is-information:focus{
|
|
800
|
+
.button.is-information:focus {
|
|
802
801
|
background-color: $dark-bg-light;
|
|
803
802
|
}
|
|
804
803
|
}
|
|
805
|
-
|
|
806
804
|
}
|
|
807
805
|
// dark theme end
|
|
808
806
|
/****************************************
|