Ticket #35571: 35571.2.patch
File 35571.2.patch, 3.7 KB (added by , 9 years ago) |
---|
-
src/wp-includes/css/buttons.css
162 162 .wp-core-ui .button-secondary:active { 163 163 background: #eee; 164 164 border-color: #999; 165 166 167 168 169 165 -webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); 166 box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); 167 -webkit-transform: translateY(1px); 168 -ms-transform: translateY(1px); 169 transform: translateY(1px); 170 170 } 171 171 172 172 .wp-core-ui .button.active:focus { … … 224 224 background: #0085ba; 225 225 border-color: #0073aa #006799 #006799; 226 226 -webkit-box-shadow: 0 1px 0 #006799; 227 228 227 box-shadow: 0 1px 0 #006799; 228 color: #fff; 229 229 text-decoration: none; 230 230 text-shadow: 0 -1px 1px #006799, 231 231 1px 0 1px #006799, … … 256 256 .wp-core-ui .button-primary:active { 257 257 background: #0073aa; 258 258 border-color: #006799; 259 260 261 259 -webkit-box-shadow: inset 0 2px 0 #006799; 260 box-shadow: inset 0 2px 0 #006799; 261 vertical-align: top; 262 262 } 263 263 264 264 .wp-core-ui .button-primary[disabled], -
src/wp-includes/css/jquery-ui-dialog.css
200 200 color: #555; 201 201 border-color: #cccccc; 202 202 background: #f7f7f7; 203 -webkit-box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba( 0, 0, 0, 0.08 );204 box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba( 0, 0, 0, 0.08 );205 vertical-align: top;203 -webkit-box-shadow: 0 1px 0 #cccccc; 204 box-shadow: 0 1px 0 #cccccc; 205 vertical-align: top; 206 206 } 207 207 208 208 .ui-button:active, … … 212 212 213 213 /* Remove the dotted border on :focus and the extra padding in Firefox */ 214 214 .ui-button::-moz-focus-inner { 215 border-width: 1px 0; 216 border-style: solid none; 217 border-color: transparent; 215 border-width: 0; 216 border-style: none; 218 217 padding: 0; 219 218 } 220 219 … … 226 225 } 227 226 228 227 .ui-button:focus { 229 -webkit-box-shadow: 230 0 0 0 1px #5b9dd9, 231 0 0 2px 1px rgba( 30, 140, 190, 0.8 ); 232 box-shadow: 233 0 0 0 1px #5b9dd9, 234 0 0 2px 1px rgba( 30, 140, 190, 0.8 ); 228 border-color: #5b9dd9; 229 -webkit-box-shadow: 0 0 3px rgba( 0, 115, 170, .8 ); 230 box-shadow: 0 0 3px rgba( 0, 115, 170, .8 ); 235 231 } 236 232 237 233 .ui-button:active { 238 234 background: #eee; 239 235 border-color: #999; 240 color: #32373c;241 236 -webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); 242 237 box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); 238 -webkit-transform: translateY(1px); 239 -ms-transform: translateY(1px); 240 transform: translateY(1px); 243 241 } 244 242 245 243 .ui-button[disabled], … … 251 249 box-shadow: none !important; 252 250 text-shadow: 0 1px 0 #fff !important; 253 251 cursor: default; 252 -webkit-transform: none !important; 253 -ms-transform: none !important; 254 transform: none !important; 254 255 } 255 256 256 257 @media screen and ( max-width: 782px ) { 257 258 258 259 .ui-button { 259 padding: 10px 14px;260 line-height: 1;260 padding: 6px 14px; 261 line-height: normal; 261 262 font-size: 14px; 262 263 vertical-align: middle; 263 264 height: auto; … … 280 281 281 282 .ui-dialog-titlebar { 282 283 background: #fcfcfc; 283 border-bottom: 1px solid #d dd;284 border-bottom: 1px solid #dfdfdf; 284 285 height: 36px; 285 286 font-size: 18px; 286 287 font-weight: 600; … … 332 333 333 334 .ui-dialog-buttonpane { 334 335 background: #fcfcfc; 335 border-top: 1px solid #d dd;336 border-top: 1px solid #dfdfdf; 336 337 padding: 16px; 337 338 } 338 339