Ticket #34904: 34904.14.diff
File 34904.14.diff, 1.7 KB (added by , 5 years ago) |
---|
-
src/wp-includes/css/buttons.css
146 146 outline-offset: 0; 147 147 } 148 148 149 .wp-core-ui .button.active, 150 .wp-core-ui .button.active:hover, 149 /* :active state */ 151 150 .wp-core-ui .button:active, 152 151 .wp-core-ui .button-secondary:active { 153 152 background: #f3f5f6; … … 155 154 box-shadow: none; 156 155 } 157 156 157 /* pressed state e.g. a selected setting */ 158 .wp-core-ui .button.active, 159 .wp-core-ui .button.active:hover { 160 background-color: #e2e4e7; 161 color: #00669b; 162 border-color: #016087; 163 box-shadow: inset 0 2px 5px -3px #016087; 164 } 165 158 166 .wp-core-ui .button.active:focus { 159 border-color: #7e8993; 160 box-shadow: 0 0 0 1px #7e8993; 167 border-color: #007cba; 168 box-shadow: 169 inset 0 2px 5px -3px #016087, 170 0 0 0 1px #007cba; 161 171 } 162 172 163 173 .wp-core-ui .button[disabled], … … 258 268 background: #00669b; 259 269 border-color: #00669b; 260 270 box-shadow: none; 271 color: #fff; 261 272 } 262 273 263 274 .wp-core-ui .button-primary[disabled], … … 307 318 z-index: 1; 308 319 } 309 320 321 /* pressed state e.g. a selected setting */ 310 322 .wp-core-ui .button-group > .button.active { 311 323 background-color: #e2e4e7; 312 box-shadow: inset 0 1px 0 0 #999;324 color: #00669b; 313 325 border-color: #016087; 326 box-shadow: inset 0 2px 5px -3px #016087; 314 327 } 315 328 329 .wp-core-ui .button-group > .button.active:focus { 330 border-color: #007cba; 331 box-shadow: 332 inset 0 2px 5px -3px #016087, 333 0 0 0 1px #007cba; 334 } 335 316 336 /* ---------------------------------------------------------------------------- 317 337 5.0 - Responsive Button Styles 318 338 ---------------------------------------------------------------------------- */