Changeset 3346 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/sass/forms/_fields.scss
- Timestamp:
- 06/14/2016 08:36:02 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/sass/forms/_fields.scss
r3345 r3346 30 30 textarea { 31 31 -webkit-appearance: none; 32 background-color: #fff; 32 33 border: 1px solid $color__border-input; 33 34 -webkit-box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.07 ); 34 35 box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.07 ); 35 background-color: #fff;36 36 color: $color__text-input; 37 37 -webkit-transition: 0.05s border-color ease-in-out; … … 90 90 input[type="checkbox"], 91 91 input[type="radio"] { 92 background: #fff; 92 93 border: 1px solid #b4b9be; 93 background: #fff; 94 -webkit-box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.1 ); 95 box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.1 ); 96 clear: none; 94 97 color: #555; 95 clear: none;96 98 cursor: pointer; 97 99 display: inline-block; 100 height: 25px; 98 101 line-height: 0; 99 102 margin: -4px 4px 0 0; 103 min-width: 16px; 100 104 padding: 0 !important; 101 105 text-align: center; 102 vertical-align: middle;103 min-width: 16px;104 -webkit-box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.1 );105 box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.1 );106 106 -webkit-transition: .05s border-color ease-in-out; 107 107 transition: .05s border-color ease-in-out; 108 height: 25px;108 vertical-align: middle; 109 109 width: 25px; 110 110 } … … 117 117 -webkit-border-radius: 50%; 118 118 border-radius: 50%; 119 line-height: 10px; 119 120 margin-right: 4px; 120 line-height: 10px;121 121 } 122 122 123 123 input[type="checkbox"]:checked:before, 124 124 input[type="radio"]:checked:before { 125 display: inline-block; 125 126 float: left; 126 display: inline-block; 127 font: normal 21px/1 dashicons; 128 -moz-osx-font-smoothing: grayscale; 129 -webkit-font-smoothing: antialiased; 130 speak: none; 127 131 vertical-align: middle; 128 132 width: 16px; 129 font: normal 21px/1 dashicons;130 speak: none;131 -webkit-font-smoothing: antialiased;132 -moz-osx-font-smoothing: grayscale;133 133 } 134 134 135 135 input[type="checkbox"]:checked:before { 136 color: #1e8cbe; 136 137 content: "\f147"; 137 color: #1e8cbe;138 138 font: normal 30px/1 dashicons; 139 139 margin: -3px -5px; … … 141 141 142 142 input[type="radio"]:checked:before { 143 content: "\2022"; 144 text-indent: -9999px; 143 background-color: #1e8cbe; 145 144 -webkit-border-radius: 50px; 146 145 border-radius: 50px; 146 content: "\2022"; 147 147 font-size: 24px; 148 height: 9px; 149 line-height: 16px; 150 margin: 7px; 151 text-indent: -9999px; 152 vertical-align: middle; 148 153 width: 9px; 149 height: 9px;150 margin: 7px;151 line-height: 16px;152 background-color: #1e8cbe;153 vertical-align: middle;154 154 } 155 155 … … 187 187 input, 188 188 select { 189 -webkit-border-radius: 0; 190 border-radius: 0; 189 191 font-size: 16px; 190 padding: 3px 5px; 191 -webkit-border-radius: 0; 192 border-radius: 0; /* Reset mobile webkit's default element styling */ 192 padding: 3px 5px; /* Reset mobile webkit's default element styling */ 193 193 } 194 194 195 195 textarea { 196 line-height: 1.4; 196 197 overflow: auto; 197 198 padding: 2px 6px; 198 line-height: 1.4;199 199 resize: vertical; 200 200 }
Note: See TracChangeset
for help on using the changeset viewer.