Make WordPress Core

Ticket #34904: 34904.14.diff

File 34904.14.diff, 1.7 KB (added by afercia, 5 years ago)
  • src/wp-includes/css/buttons.css

     
    146146        outline-offset: 0;
    147147}
    148148
    149 .wp-core-ui .button.active,
    150 .wp-core-ui .button.active:hover,
     149/* :active state */
    151150.wp-core-ui .button:active,
    152151.wp-core-ui .button-secondary:active {
    153152        background: #f3f5f6;
     
    155154        box-shadow: none;
    156155}
    157156
     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
    158166.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;
    161171}
    162172
    163173.wp-core-ui .button[disabled],
     
    258268        background: #00669b;
    259269        border-color: #00669b;
    260270        box-shadow: none;
     271        color: #fff;
    261272}
    262273
    263274.wp-core-ui .button-primary[disabled],
     
    307318        z-index: 1;
    308319}
    309320
     321/* pressed state e.g. a selected setting */
    310322.wp-core-ui .button-group > .button.active {
    311323        background-color: #e2e4e7;
    312         box-shadow: inset 0 1px 0 0 #999;
     324        color: #00669b;
    313325        border-color: #016087;
     326        box-shadow: inset 0 2px 5px -3px #016087;
    314327}
    315328
     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
    316336/* ----------------------------------------------------------------------------
    317337  5.0 - Responsive Button Styles
    318338---------------------------------------------------------------------------- */