Changeset 3767:24b9ef042f0a for admin
- Timestamp:
- 06/29/18 14:21:03 (7 years ago)
- Branch:
- default
- Location:
- admin/style
- Files:
-
- 5 edited
-
default.css (modified) (6 diffs)
-
scss/partials/_content.scss (modified) (1 diff)
-
scss/partials/_forms.scss (modified) (4 diffs)
-
scss/partials/_markup.scss (modified) (1 diff)
-
scss/themes/_light.scss (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
admin/style/default.css
r3765 r3767 851 851 852 852 code { 853 color: #323232; 853 854 background: #fefacd; } 854 855 … … 979 980 width: 99%; } 980 981 981 input.invalid, textarea.invalid, select.invalid, input:not([type=file]):invalid:not(:focus) {982 color: #ae323b;983 box-shadow: 0 0 0 3px rgba(174, 50, 59, 0.3); }984 985 input.invalid, textarea.invalid, input:not([type=file]):invalid:not(:focus) {986 border: 1px solid #ae323b;987 background: #ffbaba; }988 989 982 input[type=text], 990 983 input[type=password], … … 1019 1012 border-color: #dbdbdb; } 1020 1013 1014 input:invalid:not(:required), textarea:invalid:not(:required), select:invalid:not(:required), input:not([type=file]):invalid:not(:focus):not(:required) { 1015 color: #000; 1016 box-shadow: 0 0 0 3px rgba(174, 50, 59, 0.3); } 1017 1018 input:invalid:not(:required), textarea:invalid:not(:required), input:not([type=file]):invalid:not(:focus):not(:required) { 1019 border: 1px solid #ae323b; 1020 background: #ffbaba; } 1021 1021 1022 input:focus, textarea:focus { 1022 1023 border-color: #bee74b; } … … 1136 1137 1137 1138 @keyframes kf-missing { 1138 0% {1139 background-color: inherit; }1140 1139 50% { 1141 background-color: #ffbaba; } 1142 100% { 1143 background-color: inherit; } } 1140 background-color: #ffbaba; } } 1144 1141 .focus { 1145 1142 background-color: inherit; … … 1148 1145 1149 1146 @keyframes kf-focus { 1150 0% {1151 background-color: inherit; }1152 1147 50% { 1153 background-color: #bee74b; } 1154 100% { 1155 background-color: inherit; } } 1148 background-color: #bee74b; } } 1156 1149 .no-more-info { 1157 1150 display: none; } … … 1756 1749 transition: unset; } 1757 1750 .part-tabs li.part-tabs-active a { 1751 color: #d33800; 1758 1752 background: #fff; 1759 1753 font-weight: bold; -
admin/style/scss/partials/_content.scss
r3765 r3767 35 35 } 36 36 &.part-tabs-active a { 37 color: $tabs-active-color; 37 38 background: $tabs-active-background; 38 39 font-weight: bold; -
admin/style/scss/partials/_forms.scss
r3763 r3767 72 72 width: 99%; 73 73 } 74 input.invalid, textarea.invalid, select.invalid, input:not([type=file]):invalid:not(:focus) {75 color: $invalid-input-color;76 box-shadow: 0 0 0 3px $invalid-input-shadow;77 }78 input.invalid, textarea.invalid, input:not([type=file]):invalid:not(:focus) {79 border: 1px solid $invalid-input-border;80 background: $invalid-input-background;81 }82 74 input[type=text], 83 75 input[type=password], … … 112 104 border-color: $input-border; 113 105 } 106 // Special for invalid but not required fields 107 input:invalid:not(:required), textarea:invalid:not(:required), select:invalid:not(:required), input:not([type=file]):invalid:not(:focus):not(:required) { 108 color: $invalid-input-color; 109 box-shadow: 0 0 0 3px $invalid-input-shadow; 110 } 111 input:invalid:not(:required), textarea:invalid:not(:required), input:not([type=file]):invalid:not(:focus):not(:required) { 112 border: 1px solid $invalid-input-border; 113 background: $invalid-input-background; 114 } 115 // 114 116 input:focus, textarea:focus { 115 117 border-color: $input-focus; … … 239 241 } 240 242 @keyframes kf-missing { 241 0% {242 background-color: inherit;243 }244 243 50% { 245 244 background-color: $error-background; 246 }247 100% {248 background-color: inherit;249 245 } 250 246 } … … 255 251 } 256 252 @keyframes kf-focus { 257 0% {258 background-color: inherit;259 }260 253 50% { 261 254 background-color: $input-focus; 262 }263 100% {264 background-color: inherit;265 255 } 266 256 } -
admin/style/scss/partials/_markup.scss
r3764 r3767 143 143 144 144 code { 145 color: $code-color; 145 146 background: $code-background; 146 147 } -
admin/style/scss/themes/_light.scss
r3764 r3767 143 143 $hr-color: shade($gray-very-light, 10%); // #dbdbdb 144 144 145 $code-color: $body-color; 145 146 $code-background: $code; // #fefacd 146 147 … … 158 159 $legend-background: $white; // #ffffff 159 160 160 $invalid-input-color: $ error-alt; // #ae323b161 $invalid-input-color: $black; // #000000 161 162 $invalid-input-border: $error-alt; // #ae323b 162 163 $invalid-input-background: $error; // #ffbaba … … 168 169 $input-shadow: $gray-very-light; // #f3f3f3 169 170 $input-focus: $link-outline; // #bee74b 170 171 $required-color: $error-alt; // #ae323b172 171 173 172 $form-note-color: $gray-dark; // #676e78
Note: See TracChangeset
for help on using the changeset viewer.
