Changeset 13272 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support-2024/sass/forms/_fields.scss
- Timestamp:
- 03/05/2024 02:45:07 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support-2024/sass/forms/_fields.scss
r10412 r13272 18 18 input[type="number"], 19 19 input[type="password"], 20 input[type="search"],21 20 input[type="radio"], 22 21 input[type="tel"], … … 28 27 textarea { 29 28 background-color: #fff; 30 border: 1px solid $color__border-input;31 box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.07);32 color: $color__text-input;29 border: 1px solid var(--wp--preset--color--light-grey-1); 30 box-shadow: var(--wp--custom--form--color--box-shadow); 31 color: var(--wp--custom--form--color--text); 33 32 transition: 0.05s border-color ease-in-out; 34 33 -webkit-appearance: none; 35 34 36 35 &:focus { 37 color: $color__text-input-focus;36 color: var(--wp--custom--form--color--text); 38 37 } 39 38 } … … 71 70 input[type="text"], 72 71 input[type="email"], 73 input[type="search"],74 72 input[type="password"], 75 73 input[type="number"] { … … 126 124 127 125 input[type="checkbox"]:checked::before { 128 color: #1e8cbe;126 color: var(--wp--preset--color--blueberry-1); 129 127 content: "\f147"; 130 128 font: 400 30px/1 dashicons; … … 133 131 134 132 input[type="radio"]:checked::before { 135 background-color: #1e8cbe;133 background-color: var(--wp--preset--color--blueberry-1); 136 134 border-radius: 50px; 137 135 content: "\2022"; … … 203 201 textarea.readonly, 204 202 textarea[readonly] { 205 background-color: $color__background-pre;203 background-color: var(--wp--preset--color--light-grey-1); 206 204 } 207 205 … … 255 253 input[type="text"], 256 254 input[type="email"], 257 input[type="search"],258 255 input[type="password"], 259 256 input[type="number"] {
Note: See TracChangeset
for help on using the changeset viewer.