Skip to:
Content

bbPress.org

Changeset 5343


Ignore:
Timestamp:
04/27/2014 11:10:59 PM (12 years ago)
Author:
netweb
Message:

Updated base admin styles SCSS

Fixes #2583

Location:
trunk/src/includes/admin/styles
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/admin/styles/_admin.scss

    r5285 r5343  
    3232
    3333input[type=checkbox]:checked:before {
    34     color: $form-checked;
     34    color: $form-checked;
    3535}
    3636
    3737input[type=radio]:checked:before {
    38     background: $form-checked;
     38    background: $form-checked;
    3939}
    4040
     
    151151.nav-tab-active,
    152152.nav-tab-active:hover {
     153    background-color: $body-background;
    153154    border-bottom-color: $body-background;
    154155}
     
    387388.wp-pointer .wp-pointer-content h3 {
    388389    background-color: $highlight-color;
     390    border-color: darken( $highlight-color, 5% );
    389391}
    390392
     
    432434    background: $highlight-color;
    433435}
     436
     437.theme-section.current,
     438.theme-filter.current {
     439    border-bottom-color: $menu-background;
     440}
     441
     442body.more-filters-opened .more-filters,
     443body.more-filters-opened .more-filters:before {
     444    color: $menu-text;
     445    background-color: $menu-background;
     446}
     447
     448body.more-filters-opened .more-filters:hover,
     449body.more-filters-opened .more-filters:focus,
     450body.more-filters-opened .more-filters:hover:before,
     451body.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
    434475
    435476/* jQuery UI Slider */
     
    440481    background: $button-color;
    441482    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);
    443483    box-shadow: inset 0 1px 0 lighten( $button-color, 15% ), 0 1px 0 rgba(0,0,0,.15);
    444484}
  • trunk/src/includes/admin/styles/_mixins.scss

    r5285 r5343  
    11/*
    2  * Button mixin- creates 3d-ish button effect with correct 
     2 * Button mixin- creates 3d-ish button effect with correct
    33 * highlights/shadows, based on a base color.
    44 */
     
    77    border-color: darken( $button-color, 10% );
    88    color: $text-color;
    9     -webkit-box-shadow: inset 0 1px 0 lighten( $button-color, 15% ), 0 1px 0 rgba(0,0,0,.15);
    109    box-shadow: inset 0 1px 0 lighten( $button-color, 15% ), 0 1px 0 rgba(0,0,0,.15);
    1110
     
    1514        border-color: darken( $button-color, 15% );
    1615        color: $text-color;
    17         -webkit-box-shadow: inset 0 1px 0 lighten( $button-color, 10% ), 0 1px 0 rgba(0,0,0,.15);
    1816        box-shadow: inset 0 1px 0 lighten( $button-color, 10% ), 0 1px 0 rgba(0,0,0,.15);
    1917    }
     
    2321        border-color: darken( $button-color, 15% );
    2422        color: $text-color;
    25         -webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
    2623        box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
    2724    }
     
    2926    &[disabled],
    3027    &:disabled,
    31     &.button-primary-disabled {
     28    &.button-primary-disabled,
     29    &.disabled {
    3230        color: hsl( hue( $button-color ), 10%, 80% ) !important;
    3331        background: darken( $button-color, 8% ) !important;
Note: See TracChangeset for help on using the changeset viewer.