Changeset 5343
- Timestamp:
- 04/27/2014 11:10:59 PM (12 years ago)
- Location:
- trunk/src/includes/admin/styles
- Files:
-
- 2 edited
-
_admin.scss (modified) (5 diffs)
-
_mixins.scss (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/styles/_admin.scss
r5285 r5343 32 32 33 33 input[type=checkbox]:checked:before { 34 color: $form-checked;34 color: $form-checked; 35 35 } 36 36 37 37 input[type=radio]:checked:before { 38 background: $form-checked;38 background: $form-checked; 39 39 } 40 40 … … 151 151 .nav-tab-active, 152 152 .nav-tab-active:hover { 153 background-color: $body-background; 153 154 border-bottom-color: $body-background; 154 155 } … … 387 388 .wp-pointer .wp-pointer-content h3 { 388 389 background-color: $highlight-color; 390 border-color: darken( $highlight-color, 5% ); 389 391 } 390 392 … … 432 434 background: $highlight-color; 433 435 } 436 437 .theme-section.current, 438 .theme-filter.current { 439 border-bottom-color: $menu-background; 440 } 441 442 body.more-filters-opened .more-filters, 443 body.more-filters-opened .more-filters:before { 444 color: $menu-text; 445 background-color: $menu-background; 446 } 447 448 body.more-filters-opened .more-filters:hover, 449 body.more-filters-opened .more-filters:focus, 450 body.more-filters-opened .more-filters:hover:before, 451 body.more-filters-opened .more-filters:focus:before { 452 background-color: $menu-highlight-background; 453 color: $menu-highlight-text; 454 } 455 456 /* Widgets */ 457 458 .widgets-chooser li.widgets-chooser-selected { 459 background-color: $menu-highlight-background; 460 color: $menu-highlight-text; 461 } 462 463 .widgets-chooser li.widgets-chooser-selected:before, 464 .widgets-chooser li.widgets-chooser-selected:focus:before { 465 color: $menu-highlight-text; 466 } 467 468 /* Customize */ 469 470 #customize-theme-controls .widget-area-select .selected { 471 background-color: $menu-highlight-background; 472 color: $menu-highlight-text; 473 } 474 434 475 435 476 /* jQuery UI Slider */ … … 440 481 background: $button-color; 441 482 border-color: darken( $button-color, 10% ); 442 -webkit-box-shadow: inset 0 1px 0 lighten( $button-color, 15% ), 0 1px 0 rgba(0,0,0,.15);443 483 box-shadow: inset 0 1px 0 lighten( $button-color, 15% ), 0 1px 0 rgba(0,0,0,.15); 444 484 } -
trunk/src/includes/admin/styles/_mixins.scss
r5285 r5343 1 1 /* 2 * Button mixin- creates 3d-ish button effect with correct 2 * Button mixin- creates 3d-ish button effect with correct 3 3 * highlights/shadows, based on a base color. 4 4 */ … … 7 7 border-color: darken( $button-color, 10% ); 8 8 color: $text-color; 9 -webkit-box-shadow: inset 0 1px 0 lighten( $button-color, 15% ), 0 1px 0 rgba(0,0,0,.15);10 9 box-shadow: inset 0 1px 0 lighten( $button-color, 15% ), 0 1px 0 rgba(0,0,0,.15); 11 10 … … 15 14 border-color: darken( $button-color, 15% ); 16 15 color: $text-color; 17 -webkit-box-shadow: inset 0 1px 0 lighten( $button-color, 10% ), 0 1px 0 rgba(0,0,0,.15);18 16 box-shadow: inset 0 1px 0 lighten( $button-color, 10% ), 0 1px 0 rgba(0,0,0,.15); 19 17 } … … 23 21 border-color: darken( $button-color, 15% ); 24 22 color: $text-color; 25 -webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );26 23 box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); 27 24 } … … 29 26 &[disabled], 30 27 &:disabled, 31 &.button-primary-disabled { 28 &.button-primary-disabled, 29 &.disabled { 32 30 color: hsl( hue( $button-color ), 10%, 80% ) !important; 33 31 background: darken( $button-color, 8% ) !important;
Note: See TracChangeset
for help on using the changeset viewer.