plugin updates
This commit is contained in:
@@ -115,20 +115,20 @@ textarea:focus {
|
||||
.button:hover,
|
||||
.button.focus,
|
||||
.button:focus {
|
||||
border-color: darken( #7e8993, 5% );
|
||||
color: darken( #32373c, 5% );
|
||||
border-color: color.adjust(#7e8993, $lightness: -5%);
|
||||
color: color.adjust(#32373c, $lightness: -5%);
|
||||
}
|
||||
|
||||
.button.focus,
|
||||
.button:focus {
|
||||
border-color: #7e8993;
|
||||
color: darken( #32373c, 5% );
|
||||
color: color.adjust(#32373c, $lightness: -5%);
|
||||
box-shadow: 0 0 0 1px #32373c;
|
||||
}
|
||||
|
||||
.button:active {
|
||||
border-color: #7e8993;
|
||||
color: darken( #32373c, 5% );
|
||||
color: color.adjust(#32373c, $lightness: -5%);
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
@@ -136,7 +136,7 @@ textarea:focus {
|
||||
.button.active:focus,
|
||||
.button.active:hover {
|
||||
border-color: $button-color;
|
||||
color: darken( #32373c, 5% );
|
||||
color: color.adjust(#32373c, $lightness: -5%);
|
||||
box-shadow: inset 0 2px 5px -3px $button-color;
|
||||
}
|
||||
|
||||
@@ -154,16 +154,16 @@ textarea:focus {
|
||||
.button.hover,
|
||||
.button:hover,
|
||||
.button-secondary:hover{
|
||||
border-color: darken($highlight-color, 10);
|
||||
color: darken($highlight-color, 10);
|
||||
border-color: color.adjust($highlight-color, $lightness: -10%);
|
||||
color: color.adjust($highlight-color, $lightness: -10%);
|
||||
}
|
||||
|
||||
.button.focus,
|
||||
.button:focus,
|
||||
.button-secondary:focus {
|
||||
border-color: lighten($highlight-color, 10);
|
||||
color: darken($highlight-color, 20);;
|
||||
box-shadow: 0 0 0 1px lighten($highlight-color, 10);
|
||||
border-color: color.adjust($highlight-color, $lightness: 10%);
|
||||
color: color.adjust($highlight-color, $lightness: -20%);
|
||||
box-shadow: 0 0 0 1px color.adjust($highlight-color, $lightness: 10%);
|
||||
}
|
||||
|
||||
.button-primary {
|
||||
@@ -225,14 +225,14 @@ textarea:focus {
|
||||
}
|
||||
|
||||
.wrap .page-title-action:hover {
|
||||
color: darken($highlight-color, 10);
|
||||
border-color: darken($highlight-color, 10);
|
||||
color: color.adjust($highlight-color, $lightness: -10%);
|
||||
border-color: color.adjust($highlight-color, $lightness: -10%);
|
||||
}
|
||||
|
||||
.wrap .page-title-action:focus {
|
||||
border-color: lighten($highlight-color, 10);
|
||||
color: darken($highlight-color, 20);;
|
||||
box-shadow: 0 0 0 1px lighten($highlight-color, 10);
|
||||
border-color: color.adjust($highlight-color, $lightness: 10%);
|
||||
color: color.adjust($highlight-color, $lightness: -20%);
|
||||
box-shadow: 0 0 0 1px color.adjust($highlight-color, $lightness: 10%);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -539,7 +539,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
.wp-pointer .wp-pointer-content h3 {
|
||||
background-color: $highlight-color;
|
||||
border-color: darken( $highlight-color, 5% );
|
||||
border-color: color.adjust($highlight-color, $lightness: -5%);
|
||||
}
|
||||
|
||||
.wp-pointer .wp-pointer-content h3:before {
|
||||
@@ -632,7 +632,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||
|
||||
.nav-menus-php .item-edit:focus:before {
|
||||
box-shadow:
|
||||
0 0 0 1px lighten($button-color, 10),
|
||||
0 0 0 1px color.adjust($button-color, $lightness: 10%),
|
||||
0 0 2px 1px $button-color;
|
||||
}
|
||||
|
||||
@@ -711,7 +711,7 @@ div#wp-responsive-toggle a:before {
|
||||
#customize-save-button-wrapper .save:focus,
|
||||
#publish-settings:focus {
|
||||
box-shadow:
|
||||
0 0 0 1px lighten($button-color, 10),
|
||||
0 0 0 1px color.adjust($button-color, $lightness: 10%),
|
||||
0 0 2px 1px $button-color;
|
||||
}
|
||||
|
||||
@@ -772,7 +772,7 @@ div#wp-responsive-toggle a:before {
|
||||
.wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
|
||||
.wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
|
||||
box-shadow:
|
||||
0 0 0 1px lighten($button-color, 10),
|
||||
0 0 0 1px color.adjust($button-color, $lightness: 10%),
|
||||
0 0 2px 1px $button-color;
|
||||
}
|
||||
|
||||
|
||||
@@ -9,8 +9,8 @@
|
||||
|
||||
&:hover,
|
||||
&:focus {
|
||||
background: lighten( $button-color, 3% );
|
||||
border-color: darken( $button-color, 3% );
|
||||
background: color.adjust($button-color, $lightness: 3%);
|
||||
border-color: color.adjust($button-color, $lightness: -3%);
|
||||
color: $button-text-color;
|
||||
}
|
||||
|
||||
@@ -21,8 +21,8 @@
|
||||
}
|
||||
|
||||
&:active {
|
||||
background: darken( $button-color, 5% );
|
||||
border-color: darken( $button-color, 5% );
|
||||
background: color.adjust($button-color, $lightness: -5%);
|
||||
border-color: color.adjust($button-color, $lightness: -5%);
|
||||
color: $button-text-color;
|
||||
}
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
&.active:hover {
|
||||
background: $button-color;
|
||||
color: $button-text-color;
|
||||
border-color: darken( $button-color, 15% );
|
||||
box-shadow: inset 0 2px 5px -3px darken( $button-color, 50% );
|
||||
border-color: color.adjust($button-color, $lightness: -15%);
|
||||
box-shadow: inset 0 2px 5px -3px color.adjust($button-color, $lightness: -50%);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@ $scheme-name: "default" !default;
|
||||
|
||||
$text-color: #fff !default;
|
||||
$base-color: #23282d !default;
|
||||
$icon-color: hsl( hue( $base-color ), 7%, 95% ) !default;
|
||||
$icon-color: hsl(color.channel($base-color, "hue", $space: hsl), 7%, 95%) !default;
|
||||
$highlight-color: #0073aa !default;
|
||||
$notification-color: #d54e21 !default;
|
||||
|
||||
@@ -16,7 +16,7 @@ $notification-color: #d54e21 !default;
|
||||
$body-background: #f1f1f1 !default;
|
||||
|
||||
$link: #0073aa !default;
|
||||
$link-focus: lighten( $link, 10% ) !default;
|
||||
$link-focus: color.adjust($link, $lightness: 10%) !default;
|
||||
|
||||
$button-color: $highlight-color !default;
|
||||
$button-text-color: $text-color !default;
|
||||
@@ -38,8 +38,8 @@ $menu-current-icon: $menu-highlight-icon !default;
|
||||
$menu-current-background: $menu-highlight-background !default;
|
||||
|
||||
$menu-submenu-text: mix( $base-color, $text-color, 30% ) !default;
|
||||
$menu-submenu-background: darken( $base-color, 7% ) !default;
|
||||
$menu-submenu-background-alt: desaturate( lighten( $menu-background, 7% ), 7% ) !default;
|
||||
$menu-submenu-background: color.adjust($base-color, $lightness: -7%) !default;
|
||||
$menu-submenu-background-alt: color.adjust(color.adjust($menu-background, $lightness: 7%), $saturation: -7%) !default;
|
||||
|
||||
$menu-submenu-focus-text: $highlight-color !default;
|
||||
$menu-submenu-current-text: $text-color !default;
|
||||
@@ -54,8 +54,8 @@ $menu-collapse-icon: $menu-icon !default;
|
||||
$menu-collapse-focus-text: $text-color !default;
|
||||
$menu-collapse-focus-icon: $menu-highlight-icon !default;
|
||||
|
||||
$adminbar-avatar-frame: lighten( $menu-background, 7% ) !default;
|
||||
$adminbar-input-background: lighten( $menu-background, 7% ) !default;
|
||||
$adminbar-avatar-frame: color.adjust($menu-background, $lightness: 7%) !default;
|
||||
$adminbar-input-background: color.adjust($menu-background, $lightness: 7%) !default;
|
||||
|
||||
$adminbar-recovery-exit-text: $menu-bubble-text !default;
|
||||
$adminbar-recovery-exit-background: $menu-bubble-background !default;
|
||||
|
||||
@@ -16,7 +16,7 @@ a {
|
||||
color: #0073aa;
|
||||
}
|
||||
a:hover, a:active, a:focus {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
#post-body .misc-pub-post-status:before,
|
||||
@@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
|
||||
color: #0073aa;
|
||||
}
|
||||
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
.media-modal .delete-attachment,
|
||||
@@ -63,7 +63,7 @@ input[type=radio]:checked::before {
|
||||
|
||||
.wp-core-ui input[type=reset]:hover,
|
||||
.wp-core-ui input[type=reset]:active {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
input[type=text]:focus,
|
||||
@@ -98,25 +98,25 @@ textarea:focus {
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus {
|
||||
border-color: #717c87;
|
||||
color: #262a2e;
|
||||
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
}
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus {
|
||||
border-color: #7e8993;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: 0 0 0 1px #32373c;
|
||||
}
|
||||
.wp-core-ui .button:active {
|
||||
border-color: #7e8993;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: none;
|
||||
}
|
||||
.wp-core-ui .button.active,
|
||||
.wp-core-ui .button.active:focus,
|
||||
.wp-core-ui .button.active:hover {
|
||||
border-color: #e1a948;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: inset 0 2px 5px -3px #e1a948;
|
||||
}
|
||||
.wp-core-ui .button.active:focus {
|
||||
@@ -130,15 +130,15 @@ textarea:focus {
|
||||
.wp-core-ui .button.hover,
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button-secondary:hover {
|
||||
border-color: #064054;
|
||||
color: #064054;
|
||||
border-color: rgb(5.7446808511, 63.829787234, 84.2553191489);
|
||||
color: rgb(5.7446808511, 63.829787234, 84.2553191489);
|
||||
}
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
border-color: #0c88b4;
|
||||
color: #021c25;
|
||||
box-shadow: 0 0 0 1px #0c88b4;
|
||||
border-color: rgb(12.2553191489, 136.170212766, 179.7446808511);
|
||||
color: rgb(2.4893617021, 27.6595744681, 36.5106382979);
|
||||
box-shadow: 0 0 0 1px rgb(12.2553191489, 136.170212766, 179.7446808511);
|
||||
}
|
||||
.wp-core-ui .button-primary:hover {
|
||||
color: #fff;
|
||||
@@ -149,23 +149,23 @@ textarea:focus {
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||
background: #e3af55;
|
||||
border-color: #dfa33b;
|
||||
background: rgb(227.1549295775, 175.1774647887, 85.1450704225);
|
||||
border-color: rgb(222.8450704225, 162.8225352113, 58.8549295775);
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary:focus {
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #e1a948;
|
||||
}
|
||||
.wp-core-ui .button-primary:active {
|
||||
background: #dd9f32;
|
||||
border-color: #dd9f32;
|
||||
background: rgb(221.4084507042, 158.7042253521, 50.0915492958);
|
||||
border-color: rgb(221.4084507042, 158.7042253521, 50.0915492958);
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||
background: #e1a948;
|
||||
color: #fff;
|
||||
border-color: #bd831f;
|
||||
box-shadow: inset 0 2px 5px -3px #241906;
|
||||
border-color: rgb(189.4436619718, 131.4718309859, 31.0563380282);
|
||||
box-shadow: inset 0 2px 5px -3px rgb(36.0845070423, 25.0422535211, 5.9154929577);
|
||||
}
|
||||
.wp-core-ui .button-group > .button.active {
|
||||
border-color: #e1a948;
|
||||
@@ -203,14 +203,14 @@ textarea:focus {
|
||||
}
|
||||
|
||||
.wrap .page-title-action:hover {
|
||||
color: #064054;
|
||||
border-color: #064054;
|
||||
color: rgb(5.7446808511, 63.829787234, 84.2553191489);
|
||||
border-color: rgb(5.7446808511, 63.829787234, 84.2553191489);
|
||||
}
|
||||
|
||||
.wrap .page-title-action:focus {
|
||||
border-color: #0c88b4;
|
||||
color: #021c25;
|
||||
box-shadow: 0 0 0 1px #0c88b4;
|
||||
border-color: rgb(12.2553191489, 136.170212766, 179.7446808511);
|
||||
color: rgb(2.4893617021, 27.6595744681, 36.5106382979);
|
||||
box-shadow: 0 0 0 1px rgb(12.2553191489, 136.170212766, 179.7446808511);
|
||||
}
|
||||
|
||||
.view-switch a.current:before {
|
||||
@@ -403,7 +403,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
||||
background: #74b6ce;
|
||||
background: rgb(116.162375, 182.0949364754, 205.537625);
|
||||
}
|
||||
|
||||
#wpadminbar .ab-submenu .ab-item,
|
||||
@@ -460,7 +460,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||
color: #fff;
|
||||
background: #6eb9d4;
|
||||
background: rgb(109.571875, 185.228125, 212.128125);
|
||||
}
|
||||
|
||||
/* Admin Bar: recovery mode */
|
||||
@@ -479,13 +479,13 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
|
||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||
color: #fff;
|
||||
background-color: #cb9841;
|
||||
background-color: rgb(202.5, 152.1, 64.8);
|
||||
}
|
||||
|
||||
/* Admin Bar: my account */
|
||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||
border-color: #6eb9d4;
|
||||
background-color: #6eb9d4;
|
||||
border-color: rgb(109.571875, 185.228125, 212.128125);
|
||||
background-color: rgb(109.571875, 185.228125, 212.128125);
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
||||
@@ -503,7 +503,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
/* Pointers */
|
||||
.wp-pointer .wp-pointer-content h3 {
|
||||
background-color: #096484;
|
||||
border-color: #07526c;
|
||||
border-color: rgb(7.3723404255, 81.914893617, 108.1276595745);
|
||||
}
|
||||
|
||||
.wp-pointer .wp-pointer-content h3:before {
|
||||
@@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||
|
||||
/* Nav Menus */
|
||||
.nav-menus-php .item-edit:focus:before {
|
||||
box-shadow: 0 0 0 1px #e8be74, 0 0 2px 1px #e1a948;
|
||||
box-shadow: 0 0 0 1px rgb(232.1830985915, 189.5915492958, 115.8169014085), 0 0 2px 1px #e1a948;
|
||||
}
|
||||
|
||||
/* Responsive Component */
|
||||
@@ -653,7 +653,7 @@ div#wp-responsive-toggle a:before {
|
||||
.wp-core-ui #available-menu-items .item-add:focus:before,
|
||||
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||
.wp-core-ui #publish-settings:focus {
|
||||
box-shadow: 0 0 0 1px #e8be74, 0 0 2px 1px #e1a948;
|
||||
box-shadow: 0 0 0 1px rgb(232.1830985915, 189.5915492958, 115.8169014085), 0 0 2px 1px #e1a948;
|
||||
}
|
||||
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
|
||||
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
||||
@@ -702,7 +702,7 @@ div#wp-responsive-toggle a:before {
|
||||
}
|
||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
|
||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
|
||||
box-shadow: 0 0 0 1px #e8be74, 0 0 2px 1px #e1a948;
|
||||
box-shadow: 0 0 0 1px rgb(232.1830985915, 189.5915492958, 115.8169014085), 0 0 2px 1px #e1a948;
|
||||
}
|
||||
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
|
||||
border-bottom-color: #e1a948;
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -16,7 +16,7 @@ a {
|
||||
color: #0073aa;
|
||||
}
|
||||
a:hover, a:active, a:focus {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
#post-body .misc-pub-post-status:before,
|
||||
@@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
|
||||
color: #0073aa;
|
||||
}
|
||||
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
.media-modal .delete-attachment,
|
||||
@@ -63,7 +63,7 @@ input[type=radio]:checked::before {
|
||||
|
||||
.wp-core-ui input[type=reset]:hover,
|
||||
.wp-core-ui input[type=reset]:active {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
input[type=text]:focus,
|
||||
@@ -98,25 +98,25 @@ textarea:focus {
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus {
|
||||
border-color: #717c87;
|
||||
color: #262a2e;
|
||||
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
}
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus {
|
||||
border-color: #7e8993;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: 0 0 0 1px #32373c;
|
||||
}
|
||||
.wp-core-ui .button:active {
|
||||
border-color: #7e8993;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: none;
|
||||
}
|
||||
.wp-core-ui .button.active,
|
||||
.wp-core-ui .button.active:focus,
|
||||
.wp-core-ui .button.active:hover {
|
||||
border-color: #e1a948;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: inset 0 2px 5px -3px #e1a948;
|
||||
}
|
||||
.wp-core-ui .button.active:focus {
|
||||
@@ -130,15 +130,15 @@ textarea:focus {
|
||||
.wp-core-ui .button.hover,
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button-secondary:hover {
|
||||
border-color: #064054;
|
||||
color: #064054;
|
||||
border-color: rgb(5.7446808511, 63.829787234, 84.2553191489);
|
||||
color: rgb(5.7446808511, 63.829787234, 84.2553191489);
|
||||
}
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
border-color: #0c88b4;
|
||||
color: #021c25;
|
||||
box-shadow: 0 0 0 1px #0c88b4;
|
||||
border-color: rgb(12.2553191489, 136.170212766, 179.7446808511);
|
||||
color: rgb(2.4893617021, 27.6595744681, 36.5106382979);
|
||||
box-shadow: 0 0 0 1px rgb(12.2553191489, 136.170212766, 179.7446808511);
|
||||
}
|
||||
.wp-core-ui .button-primary:hover {
|
||||
color: #fff;
|
||||
@@ -149,23 +149,23 @@ textarea:focus {
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||
background: #e3af55;
|
||||
border-color: #dfa33b;
|
||||
background: rgb(227.1549295775, 175.1774647887, 85.1450704225);
|
||||
border-color: rgb(222.8450704225, 162.8225352113, 58.8549295775);
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary:focus {
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #e1a948;
|
||||
}
|
||||
.wp-core-ui .button-primary:active {
|
||||
background: #dd9f32;
|
||||
border-color: #dd9f32;
|
||||
background: rgb(221.4084507042, 158.7042253521, 50.0915492958);
|
||||
border-color: rgb(221.4084507042, 158.7042253521, 50.0915492958);
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||
background: #e1a948;
|
||||
color: #fff;
|
||||
border-color: #bd831f;
|
||||
box-shadow: inset 0 2px 5px -3px #241906;
|
||||
border-color: rgb(189.4436619718, 131.4718309859, 31.0563380282);
|
||||
box-shadow: inset 0 2px 5px -3px rgb(36.0845070423, 25.0422535211, 5.9154929577);
|
||||
}
|
||||
.wp-core-ui .button-group > .button.active {
|
||||
border-color: #e1a948;
|
||||
@@ -203,14 +203,14 @@ textarea:focus {
|
||||
}
|
||||
|
||||
.wrap .page-title-action:hover {
|
||||
color: #064054;
|
||||
border-color: #064054;
|
||||
color: rgb(5.7446808511, 63.829787234, 84.2553191489);
|
||||
border-color: rgb(5.7446808511, 63.829787234, 84.2553191489);
|
||||
}
|
||||
|
||||
.wrap .page-title-action:focus {
|
||||
border-color: #0c88b4;
|
||||
color: #021c25;
|
||||
box-shadow: 0 0 0 1px #0c88b4;
|
||||
border-color: rgb(12.2553191489, 136.170212766, 179.7446808511);
|
||||
color: rgb(2.4893617021, 27.6595744681, 36.5106382979);
|
||||
box-shadow: 0 0 0 1px rgb(12.2553191489, 136.170212766, 179.7446808511);
|
||||
}
|
||||
|
||||
.view-switch a.current:before {
|
||||
@@ -403,7 +403,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
||||
background: #74b6ce;
|
||||
background: rgb(116.162375, 182.0949364754, 205.537625);
|
||||
}
|
||||
|
||||
#wpadminbar .ab-submenu .ab-item,
|
||||
@@ -460,7 +460,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||
color: #fff;
|
||||
background: #6eb9d4;
|
||||
background: rgb(109.571875, 185.228125, 212.128125);
|
||||
}
|
||||
|
||||
/* Admin Bar: recovery mode */
|
||||
@@ -479,13 +479,13 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
|
||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||
color: #fff;
|
||||
background-color: #cb9841;
|
||||
background-color: rgb(202.5, 152.1, 64.8);
|
||||
}
|
||||
|
||||
/* Admin Bar: my account */
|
||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||
border-color: #6eb9d4;
|
||||
background-color: #6eb9d4;
|
||||
border-color: rgb(109.571875, 185.228125, 212.128125);
|
||||
background-color: rgb(109.571875, 185.228125, 212.128125);
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
||||
@@ -503,7 +503,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
/* Pointers */
|
||||
.wp-pointer .wp-pointer-content h3 {
|
||||
background-color: #096484;
|
||||
border-color: #07526c;
|
||||
border-color: rgb(7.3723404255, 81.914893617, 108.1276595745);
|
||||
}
|
||||
|
||||
.wp-pointer .wp-pointer-content h3:before {
|
||||
@@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||
|
||||
/* Nav Menus */
|
||||
.nav-menus-php .item-edit:focus:before {
|
||||
box-shadow: 0 0 0 1px #e8be74, 0 0 2px 1px #e1a948;
|
||||
box-shadow: 0 0 0 1px rgb(232.1830985915, 189.5915492958, 115.8169014085), 0 0 2px 1px #e1a948;
|
||||
}
|
||||
|
||||
/* Responsive Component */
|
||||
@@ -653,7 +653,7 @@ div#wp-responsive-toggle a:before {
|
||||
.wp-core-ui #available-menu-items .item-add:focus:before,
|
||||
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||
.wp-core-ui #publish-settings:focus {
|
||||
box-shadow: 0 0 0 1px #e8be74, 0 0 2px 1px #e1a948;
|
||||
box-shadow: 0 0 0 1px rgb(232.1830985915, 189.5915492958, 115.8169014085), 0 0 2px 1px #e1a948;
|
||||
}
|
||||
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
|
||||
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
||||
@@ -702,7 +702,7 @@ div#wp-responsive-toggle a:before {
|
||||
}
|
||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
|
||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
|
||||
box-shadow: 0 0 0 1px #e8be74, 0 0 2px 1px #e1a948;
|
||||
box-shadow: 0 0 0 1px rgb(232.1830985915, 189.5915492958, 115.8169014085), 0 0 2px 1px #e1a948;
|
||||
}
|
||||
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
|
||||
border-bottom-color: #e1a948;
|
||||
|
||||
2
wp/wp-admin/css/colors/blue/colors.min.css
vendored
2
wp/wp-admin/css/colors/blue/colors.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -1,3 +1,5 @@
|
||||
@use "sass:color";
|
||||
|
||||
$scheme-name: "blue";
|
||||
$base-color: #52accc;
|
||||
$icon-color: #e5f8ff;
|
||||
|
||||
@@ -16,7 +16,7 @@ a {
|
||||
color: #0073aa;
|
||||
}
|
||||
a:hover, a:active, a:focus {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
#post-body .misc-pub-post-status:before,
|
||||
@@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
|
||||
color: #0073aa;
|
||||
}
|
||||
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
.media-modal .delete-attachment,
|
||||
@@ -63,7 +63,7 @@ input[type=radio]:checked::before {
|
||||
|
||||
.wp-core-ui input[type=reset]:hover,
|
||||
.wp-core-ui input[type=reset]:active {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
input[type=text]:focus,
|
||||
@@ -98,25 +98,25 @@ textarea:focus {
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus {
|
||||
border-color: #717c87;
|
||||
color: #262a2e;
|
||||
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
}
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus {
|
||||
border-color: #7e8993;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: 0 0 0 1px #32373c;
|
||||
}
|
||||
.wp-core-ui .button:active {
|
||||
border-color: #7e8993;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: none;
|
||||
}
|
||||
.wp-core-ui .button.active,
|
||||
.wp-core-ui .button.active:focus,
|
||||
.wp-core-ui .button.active:hover {
|
||||
border-color: #c7a589;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: inset 0 2px 5px -3px #c7a589;
|
||||
}
|
||||
.wp-core-ui .button.active:focus {
|
||||
@@ -128,23 +128,23 @@ textarea:focus {
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||
background: #ccad93;
|
||||
border-color: #c29d7f;
|
||||
background: rgb(203.924137931, 172.9137931034, 147.375862069);
|
||||
border-color: rgb(194.075862069, 157.0862068966, 126.624137931);
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary:focus {
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #c7a589;
|
||||
}
|
||||
.wp-core-ui .button-primary:active {
|
||||
background: #bf9878;
|
||||
border-color: #bf9878;
|
||||
background: rgb(190.7931034483, 151.8103448276, 119.7068965517);
|
||||
border-color: rgb(190.7931034483, 151.8103448276, 119.7068965517);
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||
background: #c7a589;
|
||||
color: #fff;
|
||||
border-color: #ae7d55;
|
||||
box-shadow: inset 0 2px 5px -3px #37271a;
|
||||
border-color: rgb(174.3793103448, 125.4310344828, 85.1206896552);
|
||||
box-shadow: inset 0 2px 5px -3px rgb(54.9310344828, 39.1034482759, 26.0689655172);
|
||||
}
|
||||
.wp-core-ui .button-group > .button.active {
|
||||
border-color: #c7a589;
|
||||
@@ -229,23 +229,23 @@ textarea:focus {
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||
background: #46403c;
|
||||
background: rgb(69.7436363636, 64.2581818182, 59.5563636364);
|
||||
}
|
||||
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
border-left-color: #46403c;
|
||||
border-left-color: rgb(69.7436363636, 64.2581818182, 59.5563636364);
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu .wp-submenu-head {
|
||||
color: #cdcbc9;
|
||||
color: rgb(205.2, 203.1, 201.3);
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||
color: #cdcbc9;
|
||||
color: rgb(205.2, 203.1, 201.3);
|
||||
}
|
||||
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
@@ -308,7 +308,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#adminmenu li:hover a .awaiting-mod,
|
||||
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||
color: #fff;
|
||||
background: #46403c;
|
||||
background: rgb(69.7436363636, 64.2581818182, 59.5563636364);
|
||||
}
|
||||
|
||||
/* Admin Menu: collapse button */
|
||||
@@ -347,7 +347,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||
color: #c7a589;
|
||||
background: #46403c;
|
||||
background: rgb(69.7436363636, 64.2581818182, 59.5563636364);
|
||||
}
|
||||
|
||||
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
||||
@@ -365,19 +365,19 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
/* Admin Bar: submenu */
|
||||
#wpadminbar .menupop .ab-sub-wrapper {
|
||||
background: #46403c;
|
||||
background: rgb(69.7436363636, 64.2581818182, 59.5563636364);
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
||||
background: #656463;
|
||||
background: rgb(101.2318636364, 100.2821643357, 99.4681363636);
|
||||
}
|
||||
|
||||
#wpadminbar .ab-submenu .ab-item,
|
||||
#wpadminbar .quicklinks .menupop ul li a,
|
||||
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
|
||||
color: #cdcbc9;
|
||||
color: rgb(205.2, 203.1, 201.3);
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks li .blavatar,
|
||||
@@ -427,7 +427,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||
color: #fff;
|
||||
background: #6c645c;
|
||||
background: rgb(108.2563636364, 99.7418181818, 92.4436363636);
|
||||
}
|
||||
|
||||
/* Admin Bar: recovery mode */
|
||||
@@ -446,13 +446,13 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
|
||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||
color: #fff;
|
||||
background-color: #8e946a;
|
||||
background-color: rgb(142.2, 147.6, 106.2);
|
||||
}
|
||||
|
||||
/* Admin Bar: my account */
|
||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||
border-color: #6c645c;
|
||||
background-color: #6c645c;
|
||||
border-color: rgb(108.2563636364, 99.7418181818, 92.4436363636);
|
||||
background-color: rgb(108.2563636364, 99.7418181818, 92.4436363636);
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
||||
@@ -464,13 +464,13 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .username {
|
||||
color: #cdcbc9;
|
||||
color: rgb(205.2, 203.1, 201.3);
|
||||
}
|
||||
|
||||
/* Pointers */
|
||||
.wp-pointer .wp-pointer-content h3 {
|
||||
background-color: #c7a589;
|
||||
border-color: #bf9878;
|
||||
border-color: rgb(190.7931034483, 151.8103448276, 119.7068965517);
|
||||
}
|
||||
|
||||
.wp-pointer .wp-pointer-content h3:before {
|
||||
@@ -553,7 +553,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||
|
||||
/* Nav Menus */
|
||||
.nav-menus-php .item-edit:focus:before {
|
||||
box-shadow: 0 0 0 1px #d7bfac, 0 0 2px 1px #c7a589;
|
||||
box-shadow: 0 0 0 1px rgb(215.4137931034, 191.3793103448, 171.5862068966), 0 0 2px 1px #c7a589;
|
||||
}
|
||||
|
||||
/* Responsive Component */
|
||||
@@ -567,7 +567,7 @@ div#wp-responsive-toggle a:before {
|
||||
}
|
||||
|
||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
||||
background: #46403c;
|
||||
background: rgb(69.7436363636, 64.2581818182, 59.5563636364);
|
||||
}
|
||||
|
||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
|
||||
@@ -620,7 +620,7 @@ div#wp-responsive-toggle a:before {
|
||||
.wp-core-ui #available-menu-items .item-add:focus:before,
|
||||
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||
.wp-core-ui #publish-settings:focus {
|
||||
box-shadow: 0 0 0 1px #d7bfac, 0 0 2px 1px #c7a589;
|
||||
box-shadow: 0 0 0 1px rgb(215.4137931034, 191.3793103448, 171.5862068966), 0 0 2px 1px #c7a589;
|
||||
}
|
||||
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
|
||||
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
||||
@@ -669,7 +669,7 @@ div#wp-responsive-toggle a:before {
|
||||
}
|
||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
|
||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
|
||||
box-shadow: 0 0 0 1px #d7bfac, 0 0 2px 1px #c7a589;
|
||||
box-shadow: 0 0 0 1px rgb(215.4137931034, 191.3793103448, 171.5862068966), 0 0 2px 1px #c7a589;
|
||||
}
|
||||
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
|
||||
border-bottom-color: #c7a589;
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -16,7 +16,7 @@ a {
|
||||
color: #0073aa;
|
||||
}
|
||||
a:hover, a:active, a:focus {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
#post-body .misc-pub-post-status:before,
|
||||
@@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
|
||||
color: #0073aa;
|
||||
}
|
||||
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
.media-modal .delete-attachment,
|
||||
@@ -63,7 +63,7 @@ input[type=radio]:checked::before {
|
||||
|
||||
.wp-core-ui input[type=reset]:hover,
|
||||
.wp-core-ui input[type=reset]:active {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
input[type=text]:focus,
|
||||
@@ -98,25 +98,25 @@ textarea:focus {
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus {
|
||||
border-color: #717c87;
|
||||
color: #262a2e;
|
||||
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
}
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus {
|
||||
border-color: #7e8993;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: 0 0 0 1px #32373c;
|
||||
}
|
||||
.wp-core-ui .button:active {
|
||||
border-color: #7e8993;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: none;
|
||||
}
|
||||
.wp-core-ui .button.active,
|
||||
.wp-core-ui .button.active:focus,
|
||||
.wp-core-ui .button.active:hover {
|
||||
border-color: #c7a589;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: inset 0 2px 5px -3px #c7a589;
|
||||
}
|
||||
.wp-core-ui .button.active:focus {
|
||||
@@ -128,23 +128,23 @@ textarea:focus {
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||
background: #ccad93;
|
||||
border-color: #c29d7f;
|
||||
background: rgb(203.924137931, 172.9137931034, 147.375862069);
|
||||
border-color: rgb(194.075862069, 157.0862068966, 126.624137931);
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary:focus {
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #c7a589;
|
||||
}
|
||||
.wp-core-ui .button-primary:active {
|
||||
background: #bf9878;
|
||||
border-color: #bf9878;
|
||||
background: rgb(190.7931034483, 151.8103448276, 119.7068965517);
|
||||
border-color: rgb(190.7931034483, 151.8103448276, 119.7068965517);
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||
background: #c7a589;
|
||||
color: #fff;
|
||||
border-color: #ae7d55;
|
||||
box-shadow: inset 0 2px 5px -3px #37271a;
|
||||
border-color: rgb(174.3793103448, 125.4310344828, 85.1206896552);
|
||||
box-shadow: inset 0 2px 5px -3px rgb(54.9310344828, 39.1034482759, 26.0689655172);
|
||||
}
|
||||
.wp-core-ui .button-group > .button.active {
|
||||
border-color: #c7a589;
|
||||
@@ -229,23 +229,23 @@ textarea:focus {
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||
background: #46403c;
|
||||
background: rgb(69.7436363636, 64.2581818182, 59.5563636364);
|
||||
}
|
||||
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
border-right-color: #46403c;
|
||||
border-right-color: rgb(69.7436363636, 64.2581818182, 59.5563636364);
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu .wp-submenu-head {
|
||||
color: #cdcbc9;
|
||||
color: rgb(205.2, 203.1, 201.3);
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||
color: #cdcbc9;
|
||||
color: rgb(205.2, 203.1, 201.3);
|
||||
}
|
||||
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
@@ -308,7 +308,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#adminmenu li:hover a .awaiting-mod,
|
||||
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||
color: #fff;
|
||||
background: #46403c;
|
||||
background: rgb(69.7436363636, 64.2581818182, 59.5563636364);
|
||||
}
|
||||
|
||||
/* Admin Menu: collapse button */
|
||||
@@ -347,7 +347,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||
color: #c7a589;
|
||||
background: #46403c;
|
||||
background: rgb(69.7436363636, 64.2581818182, 59.5563636364);
|
||||
}
|
||||
|
||||
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
||||
@@ -365,19 +365,19 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
/* Admin Bar: submenu */
|
||||
#wpadminbar .menupop .ab-sub-wrapper {
|
||||
background: #46403c;
|
||||
background: rgb(69.7436363636, 64.2581818182, 59.5563636364);
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
||||
background: #656463;
|
||||
background: rgb(101.2318636364, 100.2821643357, 99.4681363636);
|
||||
}
|
||||
|
||||
#wpadminbar .ab-submenu .ab-item,
|
||||
#wpadminbar .quicklinks .menupop ul li a,
|
||||
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
|
||||
color: #cdcbc9;
|
||||
color: rgb(205.2, 203.1, 201.3);
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks li .blavatar,
|
||||
@@ -427,7 +427,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||
color: #fff;
|
||||
background: #6c645c;
|
||||
background: rgb(108.2563636364, 99.7418181818, 92.4436363636);
|
||||
}
|
||||
|
||||
/* Admin Bar: recovery mode */
|
||||
@@ -446,13 +446,13 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
|
||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||
color: #fff;
|
||||
background-color: #8e946a;
|
||||
background-color: rgb(142.2, 147.6, 106.2);
|
||||
}
|
||||
|
||||
/* Admin Bar: my account */
|
||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||
border-color: #6c645c;
|
||||
background-color: #6c645c;
|
||||
border-color: rgb(108.2563636364, 99.7418181818, 92.4436363636);
|
||||
background-color: rgb(108.2563636364, 99.7418181818, 92.4436363636);
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
||||
@@ -464,13 +464,13 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .username {
|
||||
color: #cdcbc9;
|
||||
color: rgb(205.2, 203.1, 201.3);
|
||||
}
|
||||
|
||||
/* Pointers */
|
||||
.wp-pointer .wp-pointer-content h3 {
|
||||
background-color: #c7a589;
|
||||
border-color: #bf9878;
|
||||
border-color: rgb(190.7931034483, 151.8103448276, 119.7068965517);
|
||||
}
|
||||
|
||||
.wp-pointer .wp-pointer-content h3:before {
|
||||
@@ -553,7 +553,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||
|
||||
/* Nav Menus */
|
||||
.nav-menus-php .item-edit:focus:before {
|
||||
box-shadow: 0 0 0 1px #d7bfac, 0 0 2px 1px #c7a589;
|
||||
box-shadow: 0 0 0 1px rgb(215.4137931034, 191.3793103448, 171.5862068966), 0 0 2px 1px #c7a589;
|
||||
}
|
||||
|
||||
/* Responsive Component */
|
||||
@@ -567,7 +567,7 @@ div#wp-responsive-toggle a:before {
|
||||
}
|
||||
|
||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
||||
background: #46403c;
|
||||
background: rgb(69.7436363636, 64.2581818182, 59.5563636364);
|
||||
}
|
||||
|
||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
|
||||
@@ -620,7 +620,7 @@ div#wp-responsive-toggle a:before {
|
||||
.wp-core-ui #available-menu-items .item-add:focus:before,
|
||||
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||
.wp-core-ui #publish-settings:focus {
|
||||
box-shadow: 0 0 0 1px #d7bfac, 0 0 2px 1px #c7a589;
|
||||
box-shadow: 0 0 0 1px rgb(215.4137931034, 191.3793103448, 171.5862068966), 0 0 2px 1px #c7a589;
|
||||
}
|
||||
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
|
||||
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
||||
@@ -669,7 +669,7 @@ div#wp-responsive-toggle a:before {
|
||||
}
|
||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
|
||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
|
||||
box-shadow: 0 0 0 1px #d7bfac, 0 0 2px 1px #c7a589;
|
||||
box-shadow: 0 0 0 1px rgb(215.4137931034, 191.3793103448, 171.5862068966), 0 0 2px 1px #c7a589;
|
||||
}
|
||||
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
|
||||
border-bottom-color: #c7a589;
|
||||
|
||||
2
wp/wp-admin/css/colors/coffee/colors.min.css
vendored
2
wp/wp-admin/css/colors/coffee/colors.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -1,3 +1,5 @@
|
||||
@use "sass:color";
|
||||
|
||||
$scheme-name: "coffee";
|
||||
$base-color: #59524c;
|
||||
$highlight-color: #c7a589;
|
||||
|
||||
@@ -16,7 +16,7 @@ a {
|
||||
color: #0073aa;
|
||||
}
|
||||
a:hover, a:active, a:focus {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
#post-body .misc-pub-post-status:before,
|
||||
@@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
|
||||
color: #0073aa;
|
||||
}
|
||||
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
.media-modal .delete-attachment,
|
||||
@@ -63,7 +63,7 @@ input[type=radio]:checked::before {
|
||||
|
||||
.wp-core-ui input[type=reset]:hover,
|
||||
.wp-core-ui input[type=reset]:active {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
input[type=text]:focus,
|
||||
@@ -98,25 +98,25 @@ textarea:focus {
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus {
|
||||
border-color: #717c87;
|
||||
color: #262a2e;
|
||||
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
}
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus {
|
||||
border-color: #7e8993;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: 0 0 0 1px #32373c;
|
||||
}
|
||||
.wp-core-ui .button:active {
|
||||
border-color: #7e8993;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: none;
|
||||
}
|
||||
.wp-core-ui .button.active,
|
||||
.wp-core-ui .button.active:focus,
|
||||
.wp-core-ui .button.active:hover {
|
||||
border-color: #a3b745;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: inset 0 2px 5px -3px #a3b745;
|
||||
}
|
||||
.wp-core-ui .button.active:focus {
|
||||
@@ -130,15 +130,15 @@ textarea:focus {
|
||||
.wp-core-ui .button.hover,
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button-secondary:hover {
|
||||
border-color: #829237;
|
||||
color: #829237;
|
||||
border-color: rgb(130.0119047619, 145.9642857143, 55.0357142857);
|
||||
color: rgb(130.0119047619, 145.9642857143, 55.0357142857);
|
||||
}
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
border-color: #b6c669;
|
||||
color: #616d29;
|
||||
box-shadow: 0 0 0 1px #b6c669;
|
||||
border-color: rgb(181.8928571429, 198.3214285714, 104.6785714286);
|
||||
color: rgb(97.0238095238, 108.9285714286, 41.0714285714);
|
||||
box-shadow: 0 0 0 1px rgb(181.8928571429, 198.3214285714, 104.6785714286);
|
||||
}
|
||||
.wp-core-ui .button-primary:hover {
|
||||
color: #fff;
|
||||
@@ -149,23 +149,23 @@ textarea:focus {
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||
background: #a9bd4f;
|
||||
border-color: #99ac41;
|
||||
background: rgb(169.2845238095, 188.5464285714, 78.7535714286);
|
||||
border-color: rgb(153.1035714286, 171.8892857143, 64.8107142857);
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary:focus {
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #a3b745;
|
||||
}
|
||||
.wp-core-ui .button-primary:active {
|
||||
background: #93a43e;
|
||||
border-color: #93a43e;
|
||||
background: rgb(146.505952381, 164.4821428571, 62.0178571429);
|
||||
border-color: rgb(146.505952381, 164.4821428571, 62.0178571429);
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||
background: #a3b745;
|
||||
color: #fff;
|
||||
border-color: #727f30;
|
||||
box-shadow: inset 0 2px 5px -3px black;
|
||||
border-color: rgb(113.5178571429, 127.4464285714, 48.0535714286);
|
||||
box-shadow: inset 0 2px 5px -3px hsl(70.5263157895, 45.2380952381%, -0.5882352941%);
|
||||
}
|
||||
.wp-core-ui .button-group > .button.active {
|
||||
border-color: #a3b745;
|
||||
@@ -203,14 +203,14 @@ textarea:focus {
|
||||
}
|
||||
|
||||
.wrap .page-title-action:hover {
|
||||
color: #829237;
|
||||
border-color: #829237;
|
||||
color: rgb(130.0119047619, 145.9642857143, 55.0357142857);
|
||||
border-color: rgb(130.0119047619, 145.9642857143, 55.0357142857);
|
||||
}
|
||||
|
||||
.wrap .page-title-action:focus {
|
||||
border-color: #b6c669;
|
||||
color: #616d29;
|
||||
box-shadow: 0 0 0 1px #b6c669;
|
||||
border-color: rgb(181.8928571429, 198.3214285714, 104.6785714286);
|
||||
color: rgb(97.0238095238, 108.9285714286, 41.0714285714);
|
||||
box-shadow: 0 0 0 1px rgb(181.8928571429, 198.3214285714, 104.6785714286);
|
||||
}
|
||||
|
||||
.view-switch a.current:before {
|
||||
@@ -262,23 +262,23 @@ textarea:focus {
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||
background: #413256;
|
||||
background: rgb(64.9802325581, 49.9238372093, 86.3761627907);
|
||||
}
|
||||
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
border-left-color: #413256;
|
||||
border-left-color: rgb(64.9802325581, 49.9238372093, 86.3761627907);
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu .wp-submenu-head {
|
||||
color: #cbc5d3;
|
||||
color: rgb(203.1, 197.4, 211.2);
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||
color: #cbc5d3;
|
||||
color: rgb(203.1, 197.4, 211.2);
|
||||
}
|
||||
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
@@ -341,7 +341,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#adminmenu li:hover a .awaiting-mod,
|
||||
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||
color: #fff;
|
||||
background: #413256;
|
||||
background: rgb(64.9802325581, 49.9238372093, 86.3761627907);
|
||||
}
|
||||
|
||||
/* Admin Menu: collapse button */
|
||||
@@ -380,7 +380,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||
color: #a3b745;
|
||||
background: #413256;
|
||||
background: rgb(64.9802325581, 49.9238372093, 86.3761627907);
|
||||
}
|
||||
|
||||
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
||||
@@ -398,19 +398,19 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
/* Admin Bar: submenu */
|
||||
#wpadminbar .menupop .ab-sub-wrapper {
|
||||
background: #413256;
|
||||
background: rgb(64.9802325581, 49.9238372093, 86.3761627907);
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
||||
background: #64537c;
|
||||
background: rgb(100.2840283114, 83.3456627907, 124.3543372093);
|
||||
}
|
||||
|
||||
#wpadminbar .ab-submenu .ab-item,
|
||||
#wpadminbar .quicklinks .menupop ul li a,
|
||||
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
|
||||
color: #cbc5d3;
|
||||
color: rgb(203.1, 197.4, 211.2);
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks li .blavatar,
|
||||
@@ -460,7 +460,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||
color: #fff;
|
||||
background: #634c84;
|
||||
background: rgb(99.0197674419, 76.0761627907, 131.6238372093);
|
||||
}
|
||||
|
||||
/* Admin Bar: recovery mode */
|
||||
@@ -479,13 +479,13 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
|
||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||
color: #fff;
|
||||
background-color: #bf6413;
|
||||
background-color: rgb(190.8, 99.9, 18.9);
|
||||
}
|
||||
|
||||
/* Admin Bar: my account */
|
||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||
border-color: #634c84;
|
||||
background-color: #634c84;
|
||||
border-color: rgb(99.0197674419, 76.0761627907, 131.6238372093);
|
||||
background-color: rgb(99.0197674419, 76.0761627907, 131.6238372093);
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
||||
@@ -497,13 +497,13 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .username {
|
||||
color: #cbc5d3;
|
||||
color: rgb(203.1, 197.4, 211.2);
|
||||
}
|
||||
|
||||
/* Pointers */
|
||||
.wp-pointer .wp-pointer-content h3 {
|
||||
background-color: #a3b745;
|
||||
border-color: #93a43e;
|
||||
border-color: rgb(146.505952381, 164.4821428571, 62.0178571429);
|
||||
}
|
||||
|
||||
.wp-pointer .wp-pointer-content h3:before {
|
||||
@@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||
|
||||
/* Nav Menus */
|
||||
.nav-menus-php .item-edit:focus:before {
|
||||
box-shadow: 0 0 0 1px #b6c669, 0 0 2px 1px #a3b745;
|
||||
box-shadow: 0 0 0 1px rgb(181.8928571429, 198.3214285714, 104.6785714286), 0 0 2px 1px #a3b745;
|
||||
}
|
||||
|
||||
/* Responsive Component */
|
||||
@@ -600,7 +600,7 @@ div#wp-responsive-toggle a:before {
|
||||
}
|
||||
|
||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
||||
background: #413256;
|
||||
background: rgb(64.9802325581, 49.9238372093, 86.3761627907);
|
||||
}
|
||||
|
||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
|
||||
@@ -653,7 +653,7 @@ div#wp-responsive-toggle a:before {
|
||||
.wp-core-ui #available-menu-items .item-add:focus:before,
|
||||
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||
.wp-core-ui #publish-settings:focus {
|
||||
box-shadow: 0 0 0 1px #b6c669, 0 0 2px 1px #a3b745;
|
||||
box-shadow: 0 0 0 1px rgb(181.8928571429, 198.3214285714, 104.6785714286), 0 0 2px 1px #a3b745;
|
||||
}
|
||||
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
|
||||
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
||||
@@ -702,7 +702,7 @@ div#wp-responsive-toggle a:before {
|
||||
}
|
||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
|
||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
|
||||
box-shadow: 0 0 0 1px #b6c669, 0 0 2px 1px #a3b745;
|
||||
box-shadow: 0 0 0 1px rgb(181.8928571429, 198.3214285714, 104.6785714286), 0 0 2px 1px #a3b745;
|
||||
}
|
||||
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
|
||||
border-bottom-color: #a3b745;
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -16,7 +16,7 @@ a {
|
||||
color: #0073aa;
|
||||
}
|
||||
a:hover, a:active, a:focus {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
#post-body .misc-pub-post-status:before,
|
||||
@@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
|
||||
color: #0073aa;
|
||||
}
|
||||
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
.media-modal .delete-attachment,
|
||||
@@ -63,7 +63,7 @@ input[type=radio]:checked::before {
|
||||
|
||||
.wp-core-ui input[type=reset]:hover,
|
||||
.wp-core-ui input[type=reset]:active {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
input[type=text]:focus,
|
||||
@@ -98,25 +98,25 @@ textarea:focus {
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus {
|
||||
border-color: #717c87;
|
||||
color: #262a2e;
|
||||
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
}
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus {
|
||||
border-color: #7e8993;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: 0 0 0 1px #32373c;
|
||||
}
|
||||
.wp-core-ui .button:active {
|
||||
border-color: #7e8993;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: none;
|
||||
}
|
||||
.wp-core-ui .button.active,
|
||||
.wp-core-ui .button.active:focus,
|
||||
.wp-core-ui .button.active:hover {
|
||||
border-color: #a3b745;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: inset 0 2px 5px -3px #a3b745;
|
||||
}
|
||||
.wp-core-ui .button.active:focus {
|
||||
@@ -130,15 +130,15 @@ textarea:focus {
|
||||
.wp-core-ui .button.hover,
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button-secondary:hover {
|
||||
border-color: #829237;
|
||||
color: #829237;
|
||||
border-color: rgb(130.0119047619, 145.9642857143, 55.0357142857);
|
||||
color: rgb(130.0119047619, 145.9642857143, 55.0357142857);
|
||||
}
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
border-color: #b6c669;
|
||||
color: #616d29;
|
||||
box-shadow: 0 0 0 1px #b6c669;
|
||||
border-color: rgb(181.8928571429, 198.3214285714, 104.6785714286);
|
||||
color: rgb(97.0238095238, 108.9285714286, 41.0714285714);
|
||||
box-shadow: 0 0 0 1px rgb(181.8928571429, 198.3214285714, 104.6785714286);
|
||||
}
|
||||
.wp-core-ui .button-primary:hover {
|
||||
color: #fff;
|
||||
@@ -149,23 +149,23 @@ textarea:focus {
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||
background: #a9bd4f;
|
||||
border-color: #99ac41;
|
||||
background: rgb(169.2845238095, 188.5464285714, 78.7535714286);
|
||||
border-color: rgb(153.1035714286, 171.8892857143, 64.8107142857);
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary:focus {
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #a3b745;
|
||||
}
|
||||
.wp-core-ui .button-primary:active {
|
||||
background: #93a43e;
|
||||
border-color: #93a43e;
|
||||
background: rgb(146.505952381, 164.4821428571, 62.0178571429);
|
||||
border-color: rgb(146.505952381, 164.4821428571, 62.0178571429);
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||
background: #a3b745;
|
||||
color: #fff;
|
||||
border-color: #727f30;
|
||||
box-shadow: inset 0 2px 5px -3px black;
|
||||
border-color: rgb(113.5178571429, 127.4464285714, 48.0535714286);
|
||||
box-shadow: inset 0 2px 5px -3px hsl(70.5263157895, 45.2380952381%, -0.5882352941%);
|
||||
}
|
||||
.wp-core-ui .button-group > .button.active {
|
||||
border-color: #a3b745;
|
||||
@@ -203,14 +203,14 @@ textarea:focus {
|
||||
}
|
||||
|
||||
.wrap .page-title-action:hover {
|
||||
color: #829237;
|
||||
border-color: #829237;
|
||||
color: rgb(130.0119047619, 145.9642857143, 55.0357142857);
|
||||
border-color: rgb(130.0119047619, 145.9642857143, 55.0357142857);
|
||||
}
|
||||
|
||||
.wrap .page-title-action:focus {
|
||||
border-color: #b6c669;
|
||||
color: #616d29;
|
||||
box-shadow: 0 0 0 1px #b6c669;
|
||||
border-color: rgb(181.8928571429, 198.3214285714, 104.6785714286);
|
||||
color: rgb(97.0238095238, 108.9285714286, 41.0714285714);
|
||||
box-shadow: 0 0 0 1px rgb(181.8928571429, 198.3214285714, 104.6785714286);
|
||||
}
|
||||
|
||||
.view-switch a.current:before {
|
||||
@@ -262,23 +262,23 @@ textarea:focus {
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||
background: #413256;
|
||||
background: rgb(64.9802325581, 49.9238372093, 86.3761627907);
|
||||
}
|
||||
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
border-right-color: #413256;
|
||||
border-right-color: rgb(64.9802325581, 49.9238372093, 86.3761627907);
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu .wp-submenu-head {
|
||||
color: #cbc5d3;
|
||||
color: rgb(203.1, 197.4, 211.2);
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||
color: #cbc5d3;
|
||||
color: rgb(203.1, 197.4, 211.2);
|
||||
}
|
||||
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
@@ -341,7 +341,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#adminmenu li:hover a .awaiting-mod,
|
||||
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||
color: #fff;
|
||||
background: #413256;
|
||||
background: rgb(64.9802325581, 49.9238372093, 86.3761627907);
|
||||
}
|
||||
|
||||
/* Admin Menu: collapse button */
|
||||
@@ -380,7 +380,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||
color: #a3b745;
|
||||
background: #413256;
|
||||
background: rgb(64.9802325581, 49.9238372093, 86.3761627907);
|
||||
}
|
||||
|
||||
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
||||
@@ -398,19 +398,19 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
/* Admin Bar: submenu */
|
||||
#wpadminbar .menupop .ab-sub-wrapper {
|
||||
background: #413256;
|
||||
background: rgb(64.9802325581, 49.9238372093, 86.3761627907);
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
||||
background: #64537c;
|
||||
background: rgb(100.2840283114, 83.3456627907, 124.3543372093);
|
||||
}
|
||||
|
||||
#wpadminbar .ab-submenu .ab-item,
|
||||
#wpadminbar .quicklinks .menupop ul li a,
|
||||
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
|
||||
color: #cbc5d3;
|
||||
color: rgb(203.1, 197.4, 211.2);
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks li .blavatar,
|
||||
@@ -460,7 +460,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||
color: #fff;
|
||||
background: #634c84;
|
||||
background: rgb(99.0197674419, 76.0761627907, 131.6238372093);
|
||||
}
|
||||
|
||||
/* Admin Bar: recovery mode */
|
||||
@@ -479,13 +479,13 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
|
||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||
color: #fff;
|
||||
background-color: #bf6413;
|
||||
background-color: rgb(190.8, 99.9, 18.9);
|
||||
}
|
||||
|
||||
/* Admin Bar: my account */
|
||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||
border-color: #634c84;
|
||||
background-color: #634c84;
|
||||
border-color: rgb(99.0197674419, 76.0761627907, 131.6238372093);
|
||||
background-color: rgb(99.0197674419, 76.0761627907, 131.6238372093);
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
||||
@@ -497,13 +497,13 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .username {
|
||||
color: #cbc5d3;
|
||||
color: rgb(203.1, 197.4, 211.2);
|
||||
}
|
||||
|
||||
/* Pointers */
|
||||
.wp-pointer .wp-pointer-content h3 {
|
||||
background-color: #a3b745;
|
||||
border-color: #93a43e;
|
||||
border-color: rgb(146.505952381, 164.4821428571, 62.0178571429);
|
||||
}
|
||||
|
||||
.wp-pointer .wp-pointer-content h3:before {
|
||||
@@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||
|
||||
/* Nav Menus */
|
||||
.nav-menus-php .item-edit:focus:before {
|
||||
box-shadow: 0 0 0 1px #b6c669, 0 0 2px 1px #a3b745;
|
||||
box-shadow: 0 0 0 1px rgb(181.8928571429, 198.3214285714, 104.6785714286), 0 0 2px 1px #a3b745;
|
||||
}
|
||||
|
||||
/* Responsive Component */
|
||||
@@ -600,7 +600,7 @@ div#wp-responsive-toggle a:before {
|
||||
}
|
||||
|
||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
||||
background: #413256;
|
||||
background: rgb(64.9802325581, 49.9238372093, 86.3761627907);
|
||||
}
|
||||
|
||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
|
||||
@@ -653,7 +653,7 @@ div#wp-responsive-toggle a:before {
|
||||
.wp-core-ui #available-menu-items .item-add:focus:before,
|
||||
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||
.wp-core-ui #publish-settings:focus {
|
||||
box-shadow: 0 0 0 1px #b6c669, 0 0 2px 1px #a3b745;
|
||||
box-shadow: 0 0 0 1px rgb(181.8928571429, 198.3214285714, 104.6785714286), 0 0 2px 1px #a3b745;
|
||||
}
|
||||
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
|
||||
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
||||
@@ -702,7 +702,7 @@ div#wp-responsive-toggle a:before {
|
||||
}
|
||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
|
||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
|
||||
box-shadow: 0 0 0 1px #b6c669, 0 0 2px 1px #a3b745;
|
||||
box-shadow: 0 0 0 1px rgb(181.8928571429, 198.3214285714, 104.6785714286), 0 0 2px 1px #a3b745;
|
||||
}
|
||||
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
|
||||
border-bottom-color: #a3b745;
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,3 +1,5 @@
|
||||
@use "sass:color";
|
||||
|
||||
$scheme-name: "ectoplasm";
|
||||
$base-color: #523f6d;
|
||||
$icon-color: #ece6f6;
|
||||
|
||||
@@ -16,7 +16,7 @@ a {
|
||||
color: #0073aa;
|
||||
}
|
||||
a:hover, a:active, a:focus {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
#post-body .misc-pub-post-status:before,
|
||||
@@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
|
||||
color: #0073aa;
|
||||
}
|
||||
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
.media-modal .delete-attachment,
|
||||
@@ -63,7 +63,7 @@ input[type=radio]:checked::before {
|
||||
|
||||
.wp-core-ui input[type=reset]:hover,
|
||||
.wp-core-ui input[type=reset]:active {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
input[type=text]:focus,
|
||||
@@ -98,25 +98,25 @@ textarea:focus {
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus {
|
||||
border-color: #717c87;
|
||||
color: #262a2e;
|
||||
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
}
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus {
|
||||
border-color: #7e8993;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: 0 0 0 1px #32373c;
|
||||
}
|
||||
.wp-core-ui .button:active {
|
||||
border-color: #7e8993;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: none;
|
||||
}
|
||||
.wp-core-ui .button.active,
|
||||
.wp-core-ui .button.active:focus,
|
||||
.wp-core-ui .button.active:hover {
|
||||
border-color: #04a4cc;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: inset 0 2px 5px -3px #04a4cc;
|
||||
}
|
||||
.wp-core-ui .button.active:focus {
|
||||
@@ -130,15 +130,15 @@ textarea:focus {
|
||||
.wp-core-ui .button.hover,
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button-secondary:hover {
|
||||
border-color: #037c9a;
|
||||
color: #037c9a;
|
||||
border-color: rgb(3.0192307692, 123.7884615385, 153.9807692308);
|
||||
color: rgb(3.0192307692, 123.7884615385, 153.9807692308);
|
||||
}
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
border-color: #09cafa;
|
||||
color: #025468;
|
||||
box-shadow: 0 0 0 1px #09cafa;
|
||||
border-color: rgb(8.8269230769, 201.9038461538, 250.1730769231);
|
||||
color: rgb(2.0384615385, 83.5769230769, 103.9615384615);
|
||||
box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231);
|
||||
}
|
||||
.wp-core-ui .button-primary:hover {
|
||||
color: #fff;
|
||||
@@ -149,23 +149,23 @@ textarea:focus {
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||
background: #04b0db;
|
||||
border-color: #0498bd;
|
||||
background: rgb(4.2942307692, 176.0634615385, 219.0057692308);
|
||||
border-color: rgb(3.7057692308, 151.9365384615, 188.9942307692);
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary:focus {
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #04a4cc;
|
||||
}
|
||||
.wp-core-ui .button-primary:active {
|
||||
background: #0490b3;
|
||||
border-color: #0490b3;
|
||||
background: rgb(3.5096153846, 143.8942307692, 178.9903846154);
|
||||
border-color: rgb(3.5096153846, 143.8942307692, 178.9903846154);
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||
background: #04a4cc;
|
||||
color: #fff;
|
||||
border-color: #036881;
|
||||
box-shadow: inset 0 2px 5px -3px black;
|
||||
border-color: rgb(2.5288461538, 103.6826923077, 128.9711538462);
|
||||
box-shadow: inset 0 2px 5px -3px hsl(192, 96.1538461538%, -9.2156862745%);
|
||||
}
|
||||
.wp-core-ui .button-group > .button.active {
|
||||
border-color: #04a4cc;
|
||||
@@ -203,14 +203,14 @@ textarea:focus {
|
||||
}
|
||||
|
||||
.wrap .page-title-action:hover {
|
||||
color: #037c9a;
|
||||
border-color: #037c9a;
|
||||
color: rgb(3.0192307692, 123.7884615385, 153.9807692308);
|
||||
border-color: rgb(3.0192307692, 123.7884615385, 153.9807692308);
|
||||
}
|
||||
|
||||
.wrap .page-title-action:focus {
|
||||
border-color: #09cafa;
|
||||
color: #025468;
|
||||
box-shadow: 0 0 0 1px #09cafa;
|
||||
border-color: rgb(8.8269230769, 201.9038461538, 250.1730769231);
|
||||
color: rgb(2.0384615385, 83.5769230769, 103.9615384615);
|
||||
box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231);
|
||||
}
|
||||
|
||||
.view-switch a.current:before {
|
||||
@@ -271,14 +271,14 @@ textarea:focus {
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu .wp-submenu-head {
|
||||
color: #686868;
|
||||
color: rgb(104.4, 104.4, 104.4);
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||
color: #686868;
|
||||
color: rgb(104.4, 104.4, 104.4);
|
||||
}
|
||||
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
@@ -403,14 +403,14 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
||||
background: #f7f7f7;
|
||||
background: rgb(246.85, 246.85, 246.85);
|
||||
}
|
||||
|
||||
#wpadminbar .ab-submenu .ab-item,
|
||||
#wpadminbar .quicklinks .menupop ul li a,
|
||||
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
|
||||
color: #686868;
|
||||
color: rgb(104.4, 104.4, 104.4);
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks li .blavatar,
|
||||
@@ -460,7 +460,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||
color: #333;
|
||||
background: #f7f7f7;
|
||||
background: rgb(246.85, 246.85, 246.85);
|
||||
}
|
||||
|
||||
/* Admin Bar: recovery mode */
|
||||
@@ -479,13 +479,13 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
|
||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||
color: #fff;
|
||||
background-color: #c14606;
|
||||
background-color: rgb(192.6, 70.2, 6.3);
|
||||
}
|
||||
|
||||
/* Admin Bar: my account */
|
||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||
border-color: #f7f7f7;
|
||||
background-color: #f7f7f7;
|
||||
border-color: rgb(246.85, 246.85, 246.85);
|
||||
background-color: rgb(246.85, 246.85, 246.85);
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
||||
@@ -497,13 +497,13 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .username {
|
||||
color: #686868;
|
||||
color: rgb(104.4, 104.4, 104.4);
|
||||
}
|
||||
|
||||
/* Pointers */
|
||||
.wp-pointer .wp-pointer-content h3 {
|
||||
background-color: #04a4cc;
|
||||
border-color: #0490b3;
|
||||
border-color: rgb(3.5096153846, 143.8942307692, 178.9903846154);
|
||||
}
|
||||
|
||||
.wp-pointer .wp-pointer-content h3:before {
|
||||
@@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||
|
||||
/* Nav Menus */
|
||||
.nav-menus-php .item-edit:focus:before {
|
||||
box-shadow: 0 0 0 1px #09cafa, 0 0 2px 1px #04a4cc;
|
||||
box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231), 0 0 2px 1px #04a4cc;
|
||||
}
|
||||
|
||||
/* Responsive Component */
|
||||
@@ -653,7 +653,7 @@ div#wp-responsive-toggle a:before {
|
||||
.wp-core-ui #available-menu-items .item-add:focus:before,
|
||||
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||
.wp-core-ui #publish-settings:focus {
|
||||
box-shadow: 0 0 0 1px #09cafa, 0 0 2px 1px #04a4cc;
|
||||
box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231), 0 0 2px 1px #04a4cc;
|
||||
}
|
||||
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
|
||||
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
||||
@@ -702,7 +702,7 @@ div#wp-responsive-toggle a:before {
|
||||
}
|
||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
|
||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
|
||||
box-shadow: 0 0 0 1px #09cafa, 0 0 2px 1px #04a4cc;
|
||||
box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231), 0 0 2px 1px #04a4cc;
|
||||
}
|
||||
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
|
||||
border-bottom-color: #04a4cc;
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -16,7 +16,7 @@ a {
|
||||
color: #0073aa;
|
||||
}
|
||||
a:hover, a:active, a:focus {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
#post-body .misc-pub-post-status:before,
|
||||
@@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
|
||||
color: #0073aa;
|
||||
}
|
||||
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
.media-modal .delete-attachment,
|
||||
@@ -63,7 +63,7 @@ input[type=radio]:checked::before {
|
||||
|
||||
.wp-core-ui input[type=reset]:hover,
|
||||
.wp-core-ui input[type=reset]:active {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
input[type=text]:focus,
|
||||
@@ -98,25 +98,25 @@ textarea:focus {
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus {
|
||||
border-color: #717c87;
|
||||
color: #262a2e;
|
||||
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
}
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus {
|
||||
border-color: #7e8993;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: 0 0 0 1px #32373c;
|
||||
}
|
||||
.wp-core-ui .button:active {
|
||||
border-color: #7e8993;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: none;
|
||||
}
|
||||
.wp-core-ui .button.active,
|
||||
.wp-core-ui .button.active:focus,
|
||||
.wp-core-ui .button.active:hover {
|
||||
border-color: #04a4cc;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: inset 0 2px 5px -3px #04a4cc;
|
||||
}
|
||||
.wp-core-ui .button.active:focus {
|
||||
@@ -130,15 +130,15 @@ textarea:focus {
|
||||
.wp-core-ui .button.hover,
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button-secondary:hover {
|
||||
border-color: #037c9a;
|
||||
color: #037c9a;
|
||||
border-color: rgb(3.0192307692, 123.7884615385, 153.9807692308);
|
||||
color: rgb(3.0192307692, 123.7884615385, 153.9807692308);
|
||||
}
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
border-color: #09cafa;
|
||||
color: #025468;
|
||||
box-shadow: 0 0 0 1px #09cafa;
|
||||
border-color: rgb(8.8269230769, 201.9038461538, 250.1730769231);
|
||||
color: rgb(2.0384615385, 83.5769230769, 103.9615384615);
|
||||
box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231);
|
||||
}
|
||||
.wp-core-ui .button-primary:hover {
|
||||
color: #fff;
|
||||
@@ -149,23 +149,23 @@ textarea:focus {
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||
background: #04b0db;
|
||||
border-color: #0498bd;
|
||||
background: rgb(4.2942307692, 176.0634615385, 219.0057692308);
|
||||
border-color: rgb(3.7057692308, 151.9365384615, 188.9942307692);
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary:focus {
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #04a4cc;
|
||||
}
|
||||
.wp-core-ui .button-primary:active {
|
||||
background: #0490b3;
|
||||
border-color: #0490b3;
|
||||
background: rgb(3.5096153846, 143.8942307692, 178.9903846154);
|
||||
border-color: rgb(3.5096153846, 143.8942307692, 178.9903846154);
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||
background: #04a4cc;
|
||||
color: #fff;
|
||||
border-color: #036881;
|
||||
box-shadow: inset 0 2px 5px -3px black;
|
||||
border-color: rgb(2.5288461538, 103.6826923077, 128.9711538462);
|
||||
box-shadow: inset 0 2px 5px -3px hsl(192, 96.1538461538%, -9.2156862745%);
|
||||
}
|
||||
.wp-core-ui .button-group > .button.active {
|
||||
border-color: #04a4cc;
|
||||
@@ -203,14 +203,14 @@ textarea:focus {
|
||||
}
|
||||
|
||||
.wrap .page-title-action:hover {
|
||||
color: #037c9a;
|
||||
border-color: #037c9a;
|
||||
color: rgb(3.0192307692, 123.7884615385, 153.9807692308);
|
||||
border-color: rgb(3.0192307692, 123.7884615385, 153.9807692308);
|
||||
}
|
||||
|
||||
.wrap .page-title-action:focus {
|
||||
border-color: #09cafa;
|
||||
color: #025468;
|
||||
box-shadow: 0 0 0 1px #09cafa;
|
||||
border-color: rgb(8.8269230769, 201.9038461538, 250.1730769231);
|
||||
color: rgb(2.0384615385, 83.5769230769, 103.9615384615);
|
||||
box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231);
|
||||
}
|
||||
|
||||
.view-switch a.current:before {
|
||||
@@ -271,14 +271,14 @@ textarea:focus {
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu .wp-submenu-head {
|
||||
color: #686868;
|
||||
color: rgb(104.4, 104.4, 104.4);
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||
color: #686868;
|
||||
color: rgb(104.4, 104.4, 104.4);
|
||||
}
|
||||
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
@@ -403,14 +403,14 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
||||
background: #f7f7f7;
|
||||
background: rgb(246.85, 246.85, 246.85);
|
||||
}
|
||||
|
||||
#wpadminbar .ab-submenu .ab-item,
|
||||
#wpadminbar .quicklinks .menupop ul li a,
|
||||
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
|
||||
color: #686868;
|
||||
color: rgb(104.4, 104.4, 104.4);
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks li .blavatar,
|
||||
@@ -460,7 +460,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||
color: #333;
|
||||
background: #f7f7f7;
|
||||
background: rgb(246.85, 246.85, 246.85);
|
||||
}
|
||||
|
||||
/* Admin Bar: recovery mode */
|
||||
@@ -479,13 +479,13 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
|
||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||
color: #fff;
|
||||
background-color: #c14606;
|
||||
background-color: rgb(192.6, 70.2, 6.3);
|
||||
}
|
||||
|
||||
/* Admin Bar: my account */
|
||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||
border-color: #f7f7f7;
|
||||
background-color: #f7f7f7;
|
||||
border-color: rgb(246.85, 246.85, 246.85);
|
||||
background-color: rgb(246.85, 246.85, 246.85);
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
||||
@@ -497,13 +497,13 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .username {
|
||||
color: #686868;
|
||||
color: rgb(104.4, 104.4, 104.4);
|
||||
}
|
||||
|
||||
/* Pointers */
|
||||
.wp-pointer .wp-pointer-content h3 {
|
||||
background-color: #04a4cc;
|
||||
border-color: #0490b3;
|
||||
border-color: rgb(3.5096153846, 143.8942307692, 178.9903846154);
|
||||
}
|
||||
|
||||
.wp-pointer .wp-pointer-content h3:before {
|
||||
@@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||
|
||||
/* Nav Menus */
|
||||
.nav-menus-php .item-edit:focus:before {
|
||||
box-shadow: 0 0 0 1px #09cafa, 0 0 2px 1px #04a4cc;
|
||||
box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231), 0 0 2px 1px #04a4cc;
|
||||
}
|
||||
|
||||
/* Responsive Component */
|
||||
@@ -653,7 +653,7 @@ div#wp-responsive-toggle a:before {
|
||||
.wp-core-ui #available-menu-items .item-add:focus:before,
|
||||
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||
.wp-core-ui #publish-settings:focus {
|
||||
box-shadow: 0 0 0 1px #09cafa, 0 0 2px 1px #04a4cc;
|
||||
box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231), 0 0 2px 1px #04a4cc;
|
||||
}
|
||||
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
|
||||
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
||||
@@ -702,7 +702,7 @@ div#wp-responsive-toggle a:before {
|
||||
}
|
||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
|
||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
|
||||
box-shadow: 0 0 0 1px #09cafa, 0 0 2px 1px #04a4cc;
|
||||
box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231), 0 0 2px 1px #04a4cc;
|
||||
}
|
||||
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
|
||||
border-bottom-color: #04a4cc;
|
||||
|
||||
2
wp/wp-admin/css/colors/light/colors.min.css
vendored
2
wp/wp-admin/css/colors/light/colors.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -1,3 +1,5 @@
|
||||
@use "sass:color";
|
||||
|
||||
$scheme-name: "light";
|
||||
$base-color: #e5e5e5;
|
||||
$icon-color: #999;
|
||||
@@ -19,7 +21,7 @@ $menu-collapse-text: #777;
|
||||
$menu-collapse-focus-icon: #555;
|
||||
|
||||
$dashboard-accent-1: $highlight-color;
|
||||
$dashboard-accent-2: desaturate( lighten( $highlight-color, 7% ), 15% );
|
||||
$dashboard-accent-2: color.adjust(color.adjust($highlight-color, $lightness: 7%), $saturation: -15%);
|
||||
$dashboard-icon-background: $text-color;
|
||||
|
||||
@import "../_admin.scss";
|
||||
|
||||
@@ -16,7 +16,7 @@ a {
|
||||
color: #0073aa;
|
||||
}
|
||||
a:hover, a:active, a:focus {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
#post-body .misc-pub-post-status:before,
|
||||
@@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
|
||||
color: #0073aa;
|
||||
}
|
||||
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
.media-modal .delete-attachment,
|
||||
@@ -63,7 +63,7 @@ input[type=radio]:checked::before {
|
||||
|
||||
.wp-core-ui input[type=reset]:hover,
|
||||
.wp-core-ui input[type=reset]:active {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
input[type=text]:focus,
|
||||
@@ -98,25 +98,25 @@ textarea:focus {
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus {
|
||||
border-color: #717c87;
|
||||
color: #262a2e;
|
||||
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
}
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus {
|
||||
border-color: #7e8993;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: 0 0 0 1px #32373c;
|
||||
}
|
||||
.wp-core-ui .button:active {
|
||||
border-color: #7e8993;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: none;
|
||||
}
|
||||
.wp-core-ui .button.active,
|
||||
.wp-core-ui .button.active:focus,
|
||||
.wp-core-ui .button.active:hover {
|
||||
border-color: #e14d43;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: inset 0 2px 5px -3px #e14d43;
|
||||
}
|
||||
.wp-core-ui .button.active:focus {
|
||||
@@ -130,15 +130,15 @@ textarea:focus {
|
||||
.wp-core-ui .button.hover,
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button-secondary:hover {
|
||||
border-color: #d02c21;
|
||||
color: #d02c21;
|
||||
border-color: rgb(207.8348623853, 44.2201834862, 33.1651376147);
|
||||
color: rgb(207.8348623853, 44.2201834862, 33.1651376147);
|
||||
}
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
border-color: #e8776f;
|
||||
color: #a4231a;
|
||||
box-shadow: 0 0 0 1px #e8776f;
|
||||
border-color: rgb(232.0183486239, 118.6422018349, 110.9816513761);
|
||||
color: rgb(163.8532110092, 34.8623853211, 26.1467889908);
|
||||
box-shadow: 0 0 0 1px rgb(232.0183486239, 118.6422018349, 110.9816513761);
|
||||
}
|
||||
.wp-core-ui .button-primary:hover {
|
||||
color: #fff;
|
||||
@@ -149,23 +149,23 @@ textarea:focus {
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||
background: #e35950;
|
||||
border-color: #df4136;
|
||||
background: rgb(227.1055045872, 89.4926605505, 80.1944954128);
|
||||
border-color: rgb(222.8944954128, 64.5073394495, 53.8055045872);
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary:focus {
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #e14d43;
|
||||
}
|
||||
.wp-core-ui .button-primary:active {
|
||||
background: #dd382d;
|
||||
border-color: #dd382d;
|
||||
background: rgb(221.4908256881, 56.1788990826, 45.0091743119);
|
||||
border-color: rgb(221.4908256881, 56.1788990826, 45.0091743119);
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||
background: #e14d43;
|
||||
color: #fff;
|
||||
border-color: #ba281e;
|
||||
box-shadow: inset 0 2px 5px -3px #200705;
|
||||
border-color: rgb(185.8440366972, 39.5412844037, 29.6559633028);
|
||||
box-shadow: inset 0 2px 5px -3px rgb(31.9082568807, 6.7889908257, 5.0917431193);
|
||||
}
|
||||
.wp-core-ui .button-group > .button.active {
|
||||
border-color: #e14d43;
|
||||
@@ -203,14 +203,14 @@ textarea:focus {
|
||||
}
|
||||
|
||||
.wrap .page-title-action:hover {
|
||||
color: #d02c21;
|
||||
border-color: #d02c21;
|
||||
color: rgb(207.8348623853, 44.2201834862, 33.1651376147);
|
||||
border-color: rgb(207.8348623853, 44.2201834862, 33.1651376147);
|
||||
}
|
||||
|
||||
.wrap .page-title-action:focus {
|
||||
border-color: #e8776f;
|
||||
color: #a4231a;
|
||||
box-shadow: 0 0 0 1px #e8776f;
|
||||
border-color: rgb(232.0183486239, 118.6422018349, 110.9816513761);
|
||||
color: rgb(163.8532110092, 34.8623853211, 26.1467889908);
|
||||
box-shadow: 0 0 0 1px rgb(232.0183486239, 118.6422018349, 110.9816513761);
|
||||
}
|
||||
|
||||
.view-switch a.current:before {
|
||||
@@ -262,23 +262,23 @@ textarea:focus {
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||
background: #26292c;
|
||||
background: rgb(37.5230769231, 40.9974358974, 43.7769230769);
|
||||
}
|
||||
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
border-left-color: #26292c;
|
||||
border-left-color: rgb(37.5230769231, 40.9974358974, 43.7769230769);
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu .wp-submenu-head {
|
||||
color: #c3c4c5;
|
||||
color: rgb(194.7, 196.2, 197.4);
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||
color: #c3c4c5;
|
||||
color: rgb(194.7, 196.2, 197.4);
|
||||
}
|
||||
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
@@ -341,7 +341,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#adminmenu li:hover a .awaiting-mod,
|
||||
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||
color: #fff;
|
||||
background: #26292c;
|
||||
background: rgb(37.5230769231, 40.9974358974, 43.7769230769);
|
||||
}
|
||||
|
||||
/* Admin Menu: collapse button */
|
||||
@@ -380,7 +380,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||
color: #e14d43;
|
||||
background: #26292c;
|
||||
background: rgb(37.5230769231, 40.9974358974, 43.7769230769);
|
||||
}
|
||||
|
||||
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
||||
@@ -398,19 +398,19 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
/* Admin Bar: submenu */
|
||||
#wpadminbar .menupop .ab-sub-wrapper {
|
||||
background: #26292c;
|
||||
background: rgb(37.5230769231, 40.9974358974, 43.7769230769);
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
||||
background: #4c4c4d;
|
||||
background: rgb(75.8214230769, 76.4087307692, 76.8785769231);
|
||||
}
|
||||
|
||||
#wpadminbar .ab-submenu .ab-item,
|
||||
#wpadminbar .quicklinks .menupop ul li a,
|
||||
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
|
||||
color: #c3c4c5;
|
||||
color: rgb(194.7, 196.2, 197.4);
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks li .blavatar,
|
||||
@@ -460,7 +460,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||
color: #fff;
|
||||
background: #464d52;
|
||||
background: rgb(70.4769230769, 77.0025641026, 82.2230769231);
|
||||
}
|
||||
|
||||
/* Admin Bar: recovery mode */
|
||||
@@ -479,13 +479,13 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
|
||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||
color: #fff;
|
||||
background-color: #5f97a8;
|
||||
background-color: rgb(94.5, 151.2, 168.3);
|
||||
}
|
||||
|
||||
/* Admin Bar: my account */
|
||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||
border-color: #464d52;
|
||||
background-color: #464d52;
|
||||
border-color: rgb(70.4769230769, 77.0025641026, 82.2230769231);
|
||||
background-color: rgb(70.4769230769, 77.0025641026, 82.2230769231);
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
||||
@@ -497,13 +497,13 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .username {
|
||||
color: #c3c4c5;
|
||||
color: rgb(194.7, 196.2, 197.4);
|
||||
}
|
||||
|
||||
/* Pointers */
|
||||
.wp-pointer .wp-pointer-content h3 {
|
||||
background-color: #e14d43;
|
||||
border-color: #dd382d;
|
||||
border-color: rgb(221.4908256881, 56.1788990826, 45.0091743119);
|
||||
}
|
||||
|
||||
.wp-pointer .wp-pointer-content h3:before {
|
||||
@@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||
|
||||
/* Nav Menus */
|
||||
.nav-menus-php .item-edit:focus:before {
|
||||
box-shadow: 0 0 0 1px #e8776f, 0 0 2px 1px #e14d43;
|
||||
box-shadow: 0 0 0 1px rgb(232.0183486239, 118.6422018349, 110.9816513761), 0 0 2px 1px #e14d43;
|
||||
}
|
||||
|
||||
/* Responsive Component */
|
||||
@@ -600,7 +600,7 @@ div#wp-responsive-toggle a:before {
|
||||
}
|
||||
|
||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
||||
background: #26292c;
|
||||
background: rgb(37.5230769231, 40.9974358974, 43.7769230769);
|
||||
}
|
||||
|
||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
|
||||
@@ -653,7 +653,7 @@ div#wp-responsive-toggle a:before {
|
||||
.wp-core-ui #available-menu-items .item-add:focus:before,
|
||||
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||
.wp-core-ui #publish-settings:focus {
|
||||
box-shadow: 0 0 0 1px #e8776f, 0 0 2px 1px #e14d43;
|
||||
box-shadow: 0 0 0 1px rgb(232.0183486239, 118.6422018349, 110.9816513761), 0 0 2px 1px #e14d43;
|
||||
}
|
||||
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
|
||||
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
||||
@@ -702,7 +702,7 @@ div#wp-responsive-toggle a:before {
|
||||
}
|
||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
|
||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
|
||||
box-shadow: 0 0 0 1px #e8776f, 0 0 2px 1px #e14d43;
|
||||
box-shadow: 0 0 0 1px rgb(232.0183486239, 118.6422018349, 110.9816513761), 0 0 2px 1px #e14d43;
|
||||
}
|
||||
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
|
||||
border-bottom-color: #e14d43;
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -16,7 +16,7 @@ a {
|
||||
color: #0073aa;
|
||||
}
|
||||
a:hover, a:active, a:focus {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
#post-body .misc-pub-post-status:before,
|
||||
@@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
|
||||
color: #0073aa;
|
||||
}
|
||||
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
.media-modal .delete-attachment,
|
||||
@@ -63,7 +63,7 @@ input[type=radio]:checked::before {
|
||||
|
||||
.wp-core-ui input[type=reset]:hover,
|
||||
.wp-core-ui input[type=reset]:active {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
input[type=text]:focus,
|
||||
@@ -98,25 +98,25 @@ textarea:focus {
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus {
|
||||
border-color: #717c87;
|
||||
color: #262a2e;
|
||||
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
}
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus {
|
||||
border-color: #7e8993;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: 0 0 0 1px #32373c;
|
||||
}
|
||||
.wp-core-ui .button:active {
|
||||
border-color: #7e8993;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: none;
|
||||
}
|
||||
.wp-core-ui .button.active,
|
||||
.wp-core-ui .button.active:focus,
|
||||
.wp-core-ui .button.active:hover {
|
||||
border-color: #e14d43;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: inset 0 2px 5px -3px #e14d43;
|
||||
}
|
||||
.wp-core-ui .button.active:focus {
|
||||
@@ -130,15 +130,15 @@ textarea:focus {
|
||||
.wp-core-ui .button.hover,
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button-secondary:hover {
|
||||
border-color: #d02c21;
|
||||
color: #d02c21;
|
||||
border-color: rgb(207.8348623853, 44.2201834862, 33.1651376147);
|
||||
color: rgb(207.8348623853, 44.2201834862, 33.1651376147);
|
||||
}
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
border-color: #e8776f;
|
||||
color: #a4231a;
|
||||
box-shadow: 0 0 0 1px #e8776f;
|
||||
border-color: rgb(232.0183486239, 118.6422018349, 110.9816513761);
|
||||
color: rgb(163.8532110092, 34.8623853211, 26.1467889908);
|
||||
box-shadow: 0 0 0 1px rgb(232.0183486239, 118.6422018349, 110.9816513761);
|
||||
}
|
||||
.wp-core-ui .button-primary:hover {
|
||||
color: #fff;
|
||||
@@ -149,23 +149,23 @@ textarea:focus {
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||
background: #e35950;
|
||||
border-color: #df4136;
|
||||
background: rgb(227.1055045872, 89.4926605505, 80.1944954128);
|
||||
border-color: rgb(222.8944954128, 64.5073394495, 53.8055045872);
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary:focus {
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #e14d43;
|
||||
}
|
||||
.wp-core-ui .button-primary:active {
|
||||
background: #dd382d;
|
||||
border-color: #dd382d;
|
||||
background: rgb(221.4908256881, 56.1788990826, 45.0091743119);
|
||||
border-color: rgb(221.4908256881, 56.1788990826, 45.0091743119);
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||
background: #e14d43;
|
||||
color: #fff;
|
||||
border-color: #ba281e;
|
||||
box-shadow: inset 0 2px 5px -3px #200705;
|
||||
border-color: rgb(185.8440366972, 39.5412844037, 29.6559633028);
|
||||
box-shadow: inset 0 2px 5px -3px rgb(31.9082568807, 6.7889908257, 5.0917431193);
|
||||
}
|
||||
.wp-core-ui .button-group > .button.active {
|
||||
border-color: #e14d43;
|
||||
@@ -203,14 +203,14 @@ textarea:focus {
|
||||
}
|
||||
|
||||
.wrap .page-title-action:hover {
|
||||
color: #d02c21;
|
||||
border-color: #d02c21;
|
||||
color: rgb(207.8348623853, 44.2201834862, 33.1651376147);
|
||||
border-color: rgb(207.8348623853, 44.2201834862, 33.1651376147);
|
||||
}
|
||||
|
||||
.wrap .page-title-action:focus {
|
||||
border-color: #e8776f;
|
||||
color: #a4231a;
|
||||
box-shadow: 0 0 0 1px #e8776f;
|
||||
border-color: rgb(232.0183486239, 118.6422018349, 110.9816513761);
|
||||
color: rgb(163.8532110092, 34.8623853211, 26.1467889908);
|
||||
box-shadow: 0 0 0 1px rgb(232.0183486239, 118.6422018349, 110.9816513761);
|
||||
}
|
||||
|
||||
.view-switch a.current:before {
|
||||
@@ -262,23 +262,23 @@ textarea:focus {
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||
background: #26292c;
|
||||
background: rgb(37.5230769231, 40.9974358974, 43.7769230769);
|
||||
}
|
||||
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
border-right-color: #26292c;
|
||||
border-right-color: rgb(37.5230769231, 40.9974358974, 43.7769230769);
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu .wp-submenu-head {
|
||||
color: #c3c4c5;
|
||||
color: rgb(194.7, 196.2, 197.4);
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||
color: #c3c4c5;
|
||||
color: rgb(194.7, 196.2, 197.4);
|
||||
}
|
||||
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
@@ -341,7 +341,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#adminmenu li:hover a .awaiting-mod,
|
||||
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||
color: #fff;
|
||||
background: #26292c;
|
||||
background: rgb(37.5230769231, 40.9974358974, 43.7769230769);
|
||||
}
|
||||
|
||||
/* Admin Menu: collapse button */
|
||||
@@ -380,7 +380,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||
color: #e14d43;
|
||||
background: #26292c;
|
||||
background: rgb(37.5230769231, 40.9974358974, 43.7769230769);
|
||||
}
|
||||
|
||||
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
||||
@@ -398,19 +398,19 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
/* Admin Bar: submenu */
|
||||
#wpadminbar .menupop .ab-sub-wrapper {
|
||||
background: #26292c;
|
||||
background: rgb(37.5230769231, 40.9974358974, 43.7769230769);
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
||||
background: #4c4c4d;
|
||||
background: rgb(75.8214230769, 76.4087307692, 76.8785769231);
|
||||
}
|
||||
|
||||
#wpadminbar .ab-submenu .ab-item,
|
||||
#wpadminbar .quicklinks .menupop ul li a,
|
||||
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
|
||||
color: #c3c4c5;
|
||||
color: rgb(194.7, 196.2, 197.4);
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks li .blavatar,
|
||||
@@ -460,7 +460,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||
color: #fff;
|
||||
background: #464d52;
|
||||
background: rgb(70.4769230769, 77.0025641026, 82.2230769231);
|
||||
}
|
||||
|
||||
/* Admin Bar: recovery mode */
|
||||
@@ -479,13 +479,13 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
|
||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||
color: #fff;
|
||||
background-color: #5f97a8;
|
||||
background-color: rgb(94.5, 151.2, 168.3);
|
||||
}
|
||||
|
||||
/* Admin Bar: my account */
|
||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||
border-color: #464d52;
|
||||
background-color: #464d52;
|
||||
border-color: rgb(70.4769230769, 77.0025641026, 82.2230769231);
|
||||
background-color: rgb(70.4769230769, 77.0025641026, 82.2230769231);
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
||||
@@ -497,13 +497,13 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .username {
|
||||
color: #c3c4c5;
|
||||
color: rgb(194.7, 196.2, 197.4);
|
||||
}
|
||||
|
||||
/* Pointers */
|
||||
.wp-pointer .wp-pointer-content h3 {
|
||||
background-color: #e14d43;
|
||||
border-color: #dd382d;
|
||||
border-color: rgb(221.4908256881, 56.1788990826, 45.0091743119);
|
||||
}
|
||||
|
||||
.wp-pointer .wp-pointer-content h3:before {
|
||||
@@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||
|
||||
/* Nav Menus */
|
||||
.nav-menus-php .item-edit:focus:before {
|
||||
box-shadow: 0 0 0 1px #e8776f, 0 0 2px 1px #e14d43;
|
||||
box-shadow: 0 0 0 1px rgb(232.0183486239, 118.6422018349, 110.9816513761), 0 0 2px 1px #e14d43;
|
||||
}
|
||||
|
||||
/* Responsive Component */
|
||||
@@ -600,7 +600,7 @@ div#wp-responsive-toggle a:before {
|
||||
}
|
||||
|
||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
||||
background: #26292c;
|
||||
background: rgb(37.5230769231, 40.9974358974, 43.7769230769);
|
||||
}
|
||||
|
||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
|
||||
@@ -653,7 +653,7 @@ div#wp-responsive-toggle a:before {
|
||||
.wp-core-ui #available-menu-items .item-add:focus:before,
|
||||
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||
.wp-core-ui #publish-settings:focus {
|
||||
box-shadow: 0 0 0 1px #e8776f, 0 0 2px 1px #e14d43;
|
||||
box-shadow: 0 0 0 1px rgb(232.0183486239, 118.6422018349, 110.9816513761), 0 0 2px 1px #e14d43;
|
||||
}
|
||||
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
|
||||
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
||||
@@ -702,7 +702,7 @@ div#wp-responsive-toggle a:before {
|
||||
}
|
||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
|
||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
|
||||
box-shadow: 0 0 0 1px #e8776f, 0 0 2px 1px #e14d43;
|
||||
box-shadow: 0 0 0 1px rgb(232.0183486239, 118.6422018349, 110.9816513761), 0 0 2px 1px #e14d43;
|
||||
}
|
||||
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
|
||||
border-bottom-color: #e14d43;
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,3 +1,5 @@
|
||||
@use "sass:color";
|
||||
|
||||
$scheme-name: "midnight";
|
||||
$base-color: #363b3f;
|
||||
$highlight-color: #e14d43;
|
||||
|
||||
@@ -16,7 +16,7 @@ a {
|
||||
color: #3858e9;
|
||||
}
|
||||
a:hover, a:active, a:focus {
|
||||
color: #183ad6;
|
||||
color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
|
||||
}
|
||||
|
||||
#post-body .misc-pub-post-status:before,
|
||||
@@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
|
||||
color: #3858e9;
|
||||
}
|
||||
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
||||
color: #183ad6;
|
||||
color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
|
||||
}
|
||||
|
||||
.media-modal .delete-attachment,
|
||||
@@ -63,7 +63,7 @@ input[type=radio]:checked::before {
|
||||
|
||||
.wp-core-ui input[type=reset]:hover,
|
||||
.wp-core-ui input[type=reset]:active {
|
||||
color: #183ad6;
|
||||
color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
|
||||
}
|
||||
|
||||
input[type=text]:focus,
|
||||
@@ -98,25 +98,25 @@ textarea:focus {
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus {
|
||||
border-color: #717c87;
|
||||
color: #262a2e;
|
||||
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
}
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus {
|
||||
border-color: #7e8993;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: 0 0 0 1px #32373c;
|
||||
}
|
||||
.wp-core-ui .button:active {
|
||||
border-color: #7e8993;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: none;
|
||||
}
|
||||
.wp-core-ui .button.active,
|
||||
.wp-core-ui .button.active:focus,
|
||||
.wp-core-ui .button.active:hover {
|
||||
border-color: #3858e9;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: inset 0 2px 5px -3px #3858e9;
|
||||
}
|
||||
.wp-core-ui .button.active:focus {
|
||||
@@ -130,15 +130,15 @@ textarea:focus {
|
||||
.wp-core-ui .button.hover,
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button-secondary:hover {
|
||||
border-color: #183ad6;
|
||||
color: #183ad6;
|
||||
border-color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
|
||||
color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
|
||||
}
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
border-color: #667fee;
|
||||
color: #132ea8;
|
||||
box-shadow: 0 0 0 1px #667fee;
|
||||
border-color: rgb(101.9230769231, 126.5384615385, 238.0769230769);
|
||||
color: rgb(18.6153846154, 45.6923076923, 168.3846153846);
|
||||
box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769);
|
||||
}
|
||||
.wp-core-ui .button-primary:hover {
|
||||
color: #fff;
|
||||
@@ -149,23 +149,23 @@ textarea:focus {
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||
background: #4664eb;
|
||||
border-color: #2a4ce7;
|
||||
background: rgb(69.7769230769, 99.5615384615, 234.5230769231);
|
||||
border-color: rgb(42.2230769231, 76.4384615385, 231.4769230769);
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary:focus {
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #3858e9;
|
||||
}
|
||||
.wp-core-ui .button-primary:active {
|
||||
background: #2145e6;
|
||||
border-color: #2145e6;
|
||||
background: rgb(33.0384615385, 68.7307692308, 230.4615384615);
|
||||
border-color: rgb(33.0384615385, 68.7307692308, 230.4615384615);
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||
background: #3858e9;
|
||||
color: #fff;
|
||||
border-color: #1534bf;
|
||||
box-shadow: inset 0 2px 5px -3px #03081f;
|
||||
border-color: rgb(21.1538461538, 51.9230769231, 191.3461538462);
|
||||
box-shadow: inset 0 2px 5px -3px rgb(3.3846153846, 8.3076923077, 30.6153846154);
|
||||
}
|
||||
.wp-core-ui .button-group > .button.active {
|
||||
border-color: #3858e9;
|
||||
@@ -203,14 +203,14 @@ textarea:focus {
|
||||
}
|
||||
|
||||
.wrap .page-title-action:hover {
|
||||
color: #183ad6;
|
||||
border-color: #183ad6;
|
||||
color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
|
||||
border-color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
|
||||
}
|
||||
|
||||
.wrap .page-title-action:focus {
|
||||
border-color: #667fee;
|
||||
color: #132ea8;
|
||||
box-shadow: 0 0 0 1px #667fee;
|
||||
border-color: rgb(101.9230769231, 126.5384615385, 238.0769230769);
|
||||
color: rgb(18.6153846154, 45.6923076923, 168.3846153846);
|
||||
box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769);
|
||||
}
|
||||
|
||||
.view-switch a.current:before {
|
||||
@@ -262,23 +262,23 @@ textarea:focus {
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||
background: #0c0c0c;
|
||||
background: rgb(12.15, 12.15, 12.15);
|
||||
}
|
||||
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
border-left-color: #0c0c0c;
|
||||
border-left-color: rgb(12.15, 12.15, 12.15);
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu .wp-submenu-head {
|
||||
color: #bcbcbc;
|
||||
color: rgb(187.5, 187.5, 187.5);
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||
color: #bcbcbc;
|
||||
color: rgb(187.5, 187.5, 187.5);
|
||||
}
|
||||
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
@@ -341,7 +341,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#adminmenu li:hover a .awaiting-mod,
|
||||
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||
color: #fff;
|
||||
background: #0c0c0c;
|
||||
background: rgb(12.15, 12.15, 12.15);
|
||||
}
|
||||
|
||||
/* Admin Menu: collapse button */
|
||||
@@ -380,7 +380,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||
color: #33f078;
|
||||
background: #0c0c0c;
|
||||
background: rgb(12.15, 12.15, 12.15);
|
||||
}
|
||||
|
||||
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
||||
@@ -398,19 +398,19 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
/* Admin Bar: submenu */
|
||||
#wpadminbar .menupop .ab-sub-wrapper {
|
||||
background: #0c0c0c;
|
||||
background: rgb(12.15, 12.15, 12.15);
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
||||
background: #303030;
|
||||
background: rgb(47.85, 47.85, 47.85);
|
||||
}
|
||||
|
||||
#wpadminbar .ab-submenu .ab-item,
|
||||
#wpadminbar .quicklinks .menupop ul li a,
|
||||
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
|
||||
color: #bcbcbc;
|
||||
color: rgb(187.5, 187.5, 187.5);
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks li .blavatar,
|
||||
@@ -460,7 +460,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||
color: #fff;
|
||||
background: #303030;
|
||||
background: rgb(47.85, 47.85, 47.85);
|
||||
}
|
||||
|
||||
/* Admin Bar: recovery mode */
|
||||
@@ -479,13 +479,13 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
|
||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||
color: #fff;
|
||||
background-color: #324fd2;
|
||||
background-color: rgb(50.4, 79.2, 209.7);
|
||||
}
|
||||
|
||||
/* Admin Bar: my account */
|
||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||
border-color: #303030;
|
||||
background-color: #303030;
|
||||
border-color: rgb(47.85, 47.85, 47.85);
|
||||
background-color: rgb(47.85, 47.85, 47.85);
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
||||
@@ -497,13 +497,13 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .username {
|
||||
color: #bcbcbc;
|
||||
color: rgb(187.5, 187.5, 187.5);
|
||||
}
|
||||
|
||||
/* Pointers */
|
||||
.wp-pointer .wp-pointer-content h3 {
|
||||
background-color: #3858e9;
|
||||
border-color: #2145e6;
|
||||
border-color: rgb(33.0384615385, 68.7307692308, 230.4615384615);
|
||||
}
|
||||
|
||||
.wp-pointer .wp-pointer-content h3:before {
|
||||
@@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||
|
||||
/* Nav Menus */
|
||||
.nav-menus-php .item-edit:focus:before {
|
||||
box-shadow: 0 0 0 1px #667fee, 0 0 2px 1px #3858e9;
|
||||
box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769), 0 0 2px 1px #3858e9;
|
||||
}
|
||||
|
||||
/* Responsive Component */
|
||||
@@ -600,7 +600,7 @@ div#wp-responsive-toggle a:before {
|
||||
}
|
||||
|
||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
||||
background: #0c0c0c;
|
||||
background: rgb(12.15, 12.15, 12.15);
|
||||
}
|
||||
|
||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
|
||||
@@ -653,7 +653,7 @@ div#wp-responsive-toggle a:before {
|
||||
.wp-core-ui #available-menu-items .item-add:focus:before,
|
||||
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||
.wp-core-ui #publish-settings:focus {
|
||||
box-shadow: 0 0 0 1px #667fee, 0 0 2px 1px #3858e9;
|
||||
box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769), 0 0 2px 1px #3858e9;
|
||||
}
|
||||
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
|
||||
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
||||
@@ -702,7 +702,7 @@ div#wp-responsive-toggle a:before {
|
||||
}
|
||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
|
||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
|
||||
box-shadow: 0 0 0 1px #667fee, 0 0 2px 1px #3858e9;
|
||||
box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769), 0 0 2px 1px #3858e9;
|
||||
}
|
||||
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
|
||||
border-bottom-color: #3858e9;
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -16,7 +16,7 @@ a {
|
||||
color: #3858e9;
|
||||
}
|
||||
a:hover, a:active, a:focus {
|
||||
color: #183ad6;
|
||||
color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
|
||||
}
|
||||
|
||||
#post-body .misc-pub-post-status:before,
|
||||
@@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
|
||||
color: #3858e9;
|
||||
}
|
||||
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
||||
color: #183ad6;
|
||||
color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
|
||||
}
|
||||
|
||||
.media-modal .delete-attachment,
|
||||
@@ -63,7 +63,7 @@ input[type=radio]:checked::before {
|
||||
|
||||
.wp-core-ui input[type=reset]:hover,
|
||||
.wp-core-ui input[type=reset]:active {
|
||||
color: #183ad6;
|
||||
color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
|
||||
}
|
||||
|
||||
input[type=text]:focus,
|
||||
@@ -98,25 +98,25 @@ textarea:focus {
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus {
|
||||
border-color: #717c87;
|
||||
color: #262a2e;
|
||||
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
}
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus {
|
||||
border-color: #7e8993;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: 0 0 0 1px #32373c;
|
||||
}
|
||||
.wp-core-ui .button:active {
|
||||
border-color: #7e8993;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: none;
|
||||
}
|
||||
.wp-core-ui .button.active,
|
||||
.wp-core-ui .button.active:focus,
|
||||
.wp-core-ui .button.active:hover {
|
||||
border-color: #3858e9;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: inset 0 2px 5px -3px #3858e9;
|
||||
}
|
||||
.wp-core-ui .button.active:focus {
|
||||
@@ -130,15 +130,15 @@ textarea:focus {
|
||||
.wp-core-ui .button.hover,
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button-secondary:hover {
|
||||
border-color: #183ad6;
|
||||
color: #183ad6;
|
||||
border-color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
|
||||
color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
|
||||
}
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
border-color: #667fee;
|
||||
color: #132ea8;
|
||||
box-shadow: 0 0 0 1px #667fee;
|
||||
border-color: rgb(101.9230769231, 126.5384615385, 238.0769230769);
|
||||
color: rgb(18.6153846154, 45.6923076923, 168.3846153846);
|
||||
box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769);
|
||||
}
|
||||
.wp-core-ui .button-primary:hover {
|
||||
color: #fff;
|
||||
@@ -149,23 +149,23 @@ textarea:focus {
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||
background: #4664eb;
|
||||
border-color: #2a4ce7;
|
||||
background: rgb(69.7769230769, 99.5615384615, 234.5230769231);
|
||||
border-color: rgb(42.2230769231, 76.4384615385, 231.4769230769);
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary:focus {
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #3858e9;
|
||||
}
|
||||
.wp-core-ui .button-primary:active {
|
||||
background: #2145e6;
|
||||
border-color: #2145e6;
|
||||
background: rgb(33.0384615385, 68.7307692308, 230.4615384615);
|
||||
border-color: rgb(33.0384615385, 68.7307692308, 230.4615384615);
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||
background: #3858e9;
|
||||
color: #fff;
|
||||
border-color: #1534bf;
|
||||
box-shadow: inset 0 2px 5px -3px #03081f;
|
||||
border-color: rgb(21.1538461538, 51.9230769231, 191.3461538462);
|
||||
box-shadow: inset 0 2px 5px -3px rgb(3.3846153846, 8.3076923077, 30.6153846154);
|
||||
}
|
||||
.wp-core-ui .button-group > .button.active {
|
||||
border-color: #3858e9;
|
||||
@@ -203,14 +203,14 @@ textarea:focus {
|
||||
}
|
||||
|
||||
.wrap .page-title-action:hover {
|
||||
color: #183ad6;
|
||||
border-color: #183ad6;
|
||||
color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
|
||||
border-color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
|
||||
}
|
||||
|
||||
.wrap .page-title-action:focus {
|
||||
border-color: #667fee;
|
||||
color: #132ea8;
|
||||
box-shadow: 0 0 0 1px #667fee;
|
||||
border-color: rgb(101.9230769231, 126.5384615385, 238.0769230769);
|
||||
color: rgb(18.6153846154, 45.6923076923, 168.3846153846);
|
||||
box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769);
|
||||
}
|
||||
|
||||
.view-switch a.current:before {
|
||||
@@ -262,23 +262,23 @@ textarea:focus {
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||
background: #0c0c0c;
|
||||
background: rgb(12.15, 12.15, 12.15);
|
||||
}
|
||||
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
border-right-color: #0c0c0c;
|
||||
border-right-color: rgb(12.15, 12.15, 12.15);
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu .wp-submenu-head {
|
||||
color: #bcbcbc;
|
||||
color: rgb(187.5, 187.5, 187.5);
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||
color: #bcbcbc;
|
||||
color: rgb(187.5, 187.5, 187.5);
|
||||
}
|
||||
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
@@ -341,7 +341,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#adminmenu li:hover a .awaiting-mod,
|
||||
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||
color: #fff;
|
||||
background: #0c0c0c;
|
||||
background: rgb(12.15, 12.15, 12.15);
|
||||
}
|
||||
|
||||
/* Admin Menu: collapse button */
|
||||
@@ -380,7 +380,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||
color: #33f078;
|
||||
background: #0c0c0c;
|
||||
background: rgb(12.15, 12.15, 12.15);
|
||||
}
|
||||
|
||||
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
||||
@@ -398,19 +398,19 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
/* Admin Bar: submenu */
|
||||
#wpadminbar .menupop .ab-sub-wrapper {
|
||||
background: #0c0c0c;
|
||||
background: rgb(12.15, 12.15, 12.15);
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
||||
background: #303030;
|
||||
background: rgb(47.85, 47.85, 47.85);
|
||||
}
|
||||
|
||||
#wpadminbar .ab-submenu .ab-item,
|
||||
#wpadminbar .quicklinks .menupop ul li a,
|
||||
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
|
||||
color: #bcbcbc;
|
||||
color: rgb(187.5, 187.5, 187.5);
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks li .blavatar,
|
||||
@@ -460,7 +460,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||
color: #fff;
|
||||
background: #303030;
|
||||
background: rgb(47.85, 47.85, 47.85);
|
||||
}
|
||||
|
||||
/* Admin Bar: recovery mode */
|
||||
@@ -479,13 +479,13 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
|
||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||
color: #fff;
|
||||
background-color: #324fd2;
|
||||
background-color: rgb(50.4, 79.2, 209.7);
|
||||
}
|
||||
|
||||
/* Admin Bar: my account */
|
||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||
border-color: #303030;
|
||||
background-color: #303030;
|
||||
border-color: rgb(47.85, 47.85, 47.85);
|
||||
background-color: rgb(47.85, 47.85, 47.85);
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
||||
@@ -497,13 +497,13 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .username {
|
||||
color: #bcbcbc;
|
||||
color: rgb(187.5, 187.5, 187.5);
|
||||
}
|
||||
|
||||
/* Pointers */
|
||||
.wp-pointer .wp-pointer-content h3 {
|
||||
background-color: #3858e9;
|
||||
border-color: #2145e6;
|
||||
border-color: rgb(33.0384615385, 68.7307692308, 230.4615384615);
|
||||
}
|
||||
|
||||
.wp-pointer .wp-pointer-content h3:before {
|
||||
@@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||
|
||||
/* Nav Menus */
|
||||
.nav-menus-php .item-edit:focus:before {
|
||||
box-shadow: 0 0 0 1px #667fee, 0 0 2px 1px #3858e9;
|
||||
box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769), 0 0 2px 1px #3858e9;
|
||||
}
|
||||
|
||||
/* Responsive Component */
|
||||
@@ -600,7 +600,7 @@ div#wp-responsive-toggle a:before {
|
||||
}
|
||||
|
||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
||||
background: #0c0c0c;
|
||||
background: rgb(12.15, 12.15, 12.15);
|
||||
}
|
||||
|
||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
|
||||
@@ -653,7 +653,7 @@ div#wp-responsive-toggle a:before {
|
||||
.wp-core-ui #available-menu-items .item-add:focus:before,
|
||||
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||
.wp-core-ui #publish-settings:focus {
|
||||
box-shadow: 0 0 0 1px #667fee, 0 0 2px 1px #3858e9;
|
||||
box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769), 0 0 2px 1px #3858e9;
|
||||
}
|
||||
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
|
||||
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
||||
@@ -702,7 +702,7 @@ div#wp-responsive-toggle a:before {
|
||||
}
|
||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
|
||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
|
||||
box-shadow: 0 0 0 1px #667fee, 0 0 2px 1px #3858e9;
|
||||
box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769), 0 0 2px 1px #3858e9;
|
||||
}
|
||||
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
|
||||
border-bottom-color: #3858e9;
|
||||
|
||||
2
wp/wp-admin/css/colors/modern/colors.min.css
vendored
2
wp/wp-admin/css/colors/modern/colors.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -1,3 +1,5 @@
|
||||
@use "sass:color";
|
||||
|
||||
$scheme-name: "modern";
|
||||
$base-color: #1e1e1e;
|
||||
$highlight-color: #3858e9;
|
||||
@@ -5,7 +7,7 @@ $menu-submenu-focus-text: #33f078;
|
||||
$notification-color: $highlight-color;
|
||||
|
||||
$link: $highlight-color;
|
||||
$link-focus: darken($highlight-color, 10%);
|
||||
$link-focus: color.adjust($highlight-color, $lightness: -10%);
|
||||
|
||||
$custom-welcome-panel: "false";
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ a {
|
||||
color: #0073aa;
|
||||
}
|
||||
a:hover, a:active, a:focus {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
#post-body .misc-pub-post-status:before,
|
||||
@@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
|
||||
color: #0073aa;
|
||||
}
|
||||
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
.media-modal .delete-attachment,
|
||||
@@ -63,7 +63,7 @@ input[type=radio]:checked::before {
|
||||
|
||||
.wp-core-ui input[type=reset]:hover,
|
||||
.wp-core-ui input[type=reset]:active {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
input[type=text]:focus,
|
||||
@@ -98,25 +98,25 @@ textarea:focus {
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus {
|
||||
border-color: #717c87;
|
||||
color: #262a2e;
|
||||
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
}
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus {
|
||||
border-color: #7e8993;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: 0 0 0 1px #32373c;
|
||||
}
|
||||
.wp-core-ui .button:active {
|
||||
border-color: #7e8993;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: none;
|
||||
}
|
||||
.wp-core-ui .button.active,
|
||||
.wp-core-ui .button.active:focus,
|
||||
.wp-core-ui .button.active:hover {
|
||||
border-color: #9ebaa0;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: inset 0 2px 5px -3px #9ebaa0;
|
||||
}
|
||||
.wp-core-ui .button.active:focus {
|
||||
@@ -128,23 +128,23 @@ textarea:focus {
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||
background: #a7c0a9;
|
||||
border-color: #95b497;
|
||||
background: rgb(166.9403614458, 192.3596385542, 168.7560240964);
|
||||
border-color: rgb(149.0596385542, 179.6403614458, 151.2439759036);
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary:focus {
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #9ebaa0;
|
||||
}
|
||||
.wp-core-ui .button-primary:active {
|
||||
background: #8faf91;
|
||||
border-color: #8faf91;
|
||||
background: rgb(143.0993975904, 175.4006024096, 145.406626506);
|
||||
border-color: rgb(143.0993975904, 175.4006024096, 145.406626506);
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||
background: #9ebaa0;
|
||||
color: #fff;
|
||||
border-color: #719a74;
|
||||
box-shadow: inset 0 2px 5px -3px #253426;
|
||||
border-color: rgb(113.2981927711, 154.2018072289, 116.2198795181);
|
||||
box-shadow: inset 0 2px 5px -3px rgb(36.9939759036, 52.0060240964, 38.0662650602);
|
||||
}
|
||||
.wp-core-ui .button-group > .button.active {
|
||||
border-color: #9ebaa0;
|
||||
@@ -229,23 +229,23 @@ textarea:focus {
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||
background: #627c83;
|
||||
background: rgb(98.2714285714, 123.5412244898, 131.0285714286);
|
||||
}
|
||||
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
border-left-color: #627c83;
|
||||
border-left-color: rgb(98.2714285714, 123.5412244898, 131.0285714286);
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu .wp-submenu-head {
|
||||
color: #d5dde0;
|
||||
color: rgb(213, 221.1, 223.5);
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||
color: #d5dde0;
|
||||
color: rgb(213, 221.1, 223.5);
|
||||
}
|
||||
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
@@ -308,7 +308,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#adminmenu li:hover a .awaiting-mod,
|
||||
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||
color: #fff;
|
||||
background: #627c83;
|
||||
background: rgb(98.2714285714, 123.5412244898, 131.0285714286);
|
||||
}
|
||||
|
||||
/* Admin Menu: collapse button */
|
||||
@@ -347,7 +347,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||
color: #9ebaa0;
|
||||
background: #627c83;
|
||||
background: rgb(98.2714285714, 123.5412244898, 131.0285714286);
|
||||
}
|
||||
|
||||
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
||||
@@ -365,19 +365,19 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
/* Admin Bar: submenu */
|
||||
#wpadminbar .menupop .ab-sub-wrapper {
|
||||
background: #627c83;
|
||||
background: rgb(98.2714285714, 123.5412244898, 131.0285714286);
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
||||
background: #8f9a9e;
|
||||
background: rgb(142.7255, 154.4890142857, 157.9745);
|
||||
}
|
||||
|
||||
#wpadminbar .ab-submenu .ab-item,
|
||||
#wpadminbar .quicklinks .menupop ul li a,
|
||||
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
|
||||
color: #d5dde0;
|
||||
color: rgb(213, 221.1, 223.5);
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks li .blavatar,
|
||||
@@ -427,7 +427,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||
color: #fff;
|
||||
background: #879ea5;
|
||||
background: rgb(135.4, 158.4657142857, 165.3);
|
||||
}
|
||||
|
||||
/* Admin Bar: recovery mode */
|
||||
@@ -446,13 +446,13 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
|
||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||
color: #fff;
|
||||
background-color: #998d7a;
|
||||
background-color: rgb(153, 141.3, 122.4);
|
||||
}
|
||||
|
||||
/* Admin Bar: my account */
|
||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||
border-color: #879ea5;
|
||||
background-color: #879ea5;
|
||||
border-color: rgb(135.4, 158.4657142857, 165.3);
|
||||
background-color: rgb(135.4, 158.4657142857, 165.3);
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
||||
@@ -464,13 +464,13 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .username {
|
||||
color: #d5dde0;
|
||||
color: rgb(213, 221.1, 223.5);
|
||||
}
|
||||
|
||||
/* Pointers */
|
||||
.wp-pointer .wp-pointer-content h3 {
|
||||
background-color: #9ebaa0;
|
||||
border-color: #8faf91;
|
||||
border-color: rgb(143.0993975904, 175.4006024096, 145.406626506);
|
||||
}
|
||||
|
||||
.wp-pointer .wp-pointer-content h3:before {
|
||||
@@ -553,7 +553,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||
|
||||
/* Nav Menus */
|
||||
.nav-menus-php .item-edit:focus:before {
|
||||
box-shadow: 0 0 0 1px #bccfbd, 0 0 2px 1px #9ebaa0;
|
||||
box-shadow: 0 0 0 1px rgb(187.8012048193, 207.1987951807, 189.186746988), 0 0 2px 1px #9ebaa0;
|
||||
}
|
||||
|
||||
/* Responsive Component */
|
||||
@@ -567,7 +567,7 @@ div#wp-responsive-toggle a:before {
|
||||
}
|
||||
|
||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
||||
background: #627c83;
|
||||
background: rgb(98.2714285714, 123.5412244898, 131.0285714286);
|
||||
}
|
||||
|
||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
|
||||
@@ -620,7 +620,7 @@ div#wp-responsive-toggle a:before {
|
||||
.wp-core-ui #available-menu-items .item-add:focus:before,
|
||||
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||
.wp-core-ui #publish-settings:focus {
|
||||
box-shadow: 0 0 0 1px #bccfbd, 0 0 2px 1px #9ebaa0;
|
||||
box-shadow: 0 0 0 1px rgb(187.8012048193, 207.1987951807, 189.186746988), 0 0 2px 1px #9ebaa0;
|
||||
}
|
||||
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
|
||||
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
||||
@@ -669,7 +669,7 @@ div#wp-responsive-toggle a:before {
|
||||
}
|
||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
|
||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
|
||||
box-shadow: 0 0 0 1px #bccfbd, 0 0 2px 1px #9ebaa0;
|
||||
box-shadow: 0 0 0 1px rgb(187.8012048193, 207.1987951807, 189.186746988), 0 0 2px 1px #9ebaa0;
|
||||
}
|
||||
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
|
||||
border-bottom-color: #9ebaa0;
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -16,7 +16,7 @@ a {
|
||||
color: #0073aa;
|
||||
}
|
||||
a:hover, a:active, a:focus {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
#post-body .misc-pub-post-status:before,
|
||||
@@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
|
||||
color: #0073aa;
|
||||
}
|
||||
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
.media-modal .delete-attachment,
|
||||
@@ -63,7 +63,7 @@ input[type=radio]:checked::before {
|
||||
|
||||
.wp-core-ui input[type=reset]:hover,
|
||||
.wp-core-ui input[type=reset]:active {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
input[type=text]:focus,
|
||||
@@ -98,25 +98,25 @@ textarea:focus {
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus {
|
||||
border-color: #717c87;
|
||||
color: #262a2e;
|
||||
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
}
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus {
|
||||
border-color: #7e8993;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: 0 0 0 1px #32373c;
|
||||
}
|
||||
.wp-core-ui .button:active {
|
||||
border-color: #7e8993;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: none;
|
||||
}
|
||||
.wp-core-ui .button.active,
|
||||
.wp-core-ui .button.active:focus,
|
||||
.wp-core-ui .button.active:hover {
|
||||
border-color: #9ebaa0;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: inset 0 2px 5px -3px #9ebaa0;
|
||||
}
|
||||
.wp-core-ui .button.active:focus {
|
||||
@@ -128,23 +128,23 @@ textarea:focus {
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||
background: #a7c0a9;
|
||||
border-color: #95b497;
|
||||
background: rgb(166.9403614458, 192.3596385542, 168.7560240964);
|
||||
border-color: rgb(149.0596385542, 179.6403614458, 151.2439759036);
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary:focus {
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #9ebaa0;
|
||||
}
|
||||
.wp-core-ui .button-primary:active {
|
||||
background: #8faf91;
|
||||
border-color: #8faf91;
|
||||
background: rgb(143.0993975904, 175.4006024096, 145.406626506);
|
||||
border-color: rgb(143.0993975904, 175.4006024096, 145.406626506);
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||
background: #9ebaa0;
|
||||
color: #fff;
|
||||
border-color: #719a74;
|
||||
box-shadow: inset 0 2px 5px -3px #253426;
|
||||
border-color: rgb(113.2981927711, 154.2018072289, 116.2198795181);
|
||||
box-shadow: inset 0 2px 5px -3px rgb(36.9939759036, 52.0060240964, 38.0662650602);
|
||||
}
|
||||
.wp-core-ui .button-group > .button.active {
|
||||
border-color: #9ebaa0;
|
||||
@@ -229,23 +229,23 @@ textarea:focus {
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||
background: #627c83;
|
||||
background: rgb(98.2714285714, 123.5412244898, 131.0285714286);
|
||||
}
|
||||
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
border-right-color: #627c83;
|
||||
border-right-color: rgb(98.2714285714, 123.5412244898, 131.0285714286);
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu .wp-submenu-head {
|
||||
color: #d5dde0;
|
||||
color: rgb(213, 221.1, 223.5);
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||
color: #d5dde0;
|
||||
color: rgb(213, 221.1, 223.5);
|
||||
}
|
||||
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
@@ -308,7 +308,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#adminmenu li:hover a .awaiting-mod,
|
||||
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||
color: #fff;
|
||||
background: #627c83;
|
||||
background: rgb(98.2714285714, 123.5412244898, 131.0285714286);
|
||||
}
|
||||
|
||||
/* Admin Menu: collapse button */
|
||||
@@ -347,7 +347,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||
color: #9ebaa0;
|
||||
background: #627c83;
|
||||
background: rgb(98.2714285714, 123.5412244898, 131.0285714286);
|
||||
}
|
||||
|
||||
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
||||
@@ -365,19 +365,19 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
/* Admin Bar: submenu */
|
||||
#wpadminbar .menupop .ab-sub-wrapper {
|
||||
background: #627c83;
|
||||
background: rgb(98.2714285714, 123.5412244898, 131.0285714286);
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
||||
background: #8f9a9e;
|
||||
background: rgb(142.7255, 154.4890142857, 157.9745);
|
||||
}
|
||||
|
||||
#wpadminbar .ab-submenu .ab-item,
|
||||
#wpadminbar .quicklinks .menupop ul li a,
|
||||
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
|
||||
color: #d5dde0;
|
||||
color: rgb(213, 221.1, 223.5);
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks li .blavatar,
|
||||
@@ -427,7 +427,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||
color: #fff;
|
||||
background: #879ea5;
|
||||
background: rgb(135.4, 158.4657142857, 165.3);
|
||||
}
|
||||
|
||||
/* Admin Bar: recovery mode */
|
||||
@@ -446,13 +446,13 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
|
||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||
color: #fff;
|
||||
background-color: #998d7a;
|
||||
background-color: rgb(153, 141.3, 122.4);
|
||||
}
|
||||
|
||||
/* Admin Bar: my account */
|
||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||
border-color: #879ea5;
|
||||
background-color: #879ea5;
|
||||
border-color: rgb(135.4, 158.4657142857, 165.3);
|
||||
background-color: rgb(135.4, 158.4657142857, 165.3);
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
||||
@@ -464,13 +464,13 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .username {
|
||||
color: #d5dde0;
|
||||
color: rgb(213, 221.1, 223.5);
|
||||
}
|
||||
|
||||
/* Pointers */
|
||||
.wp-pointer .wp-pointer-content h3 {
|
||||
background-color: #9ebaa0;
|
||||
border-color: #8faf91;
|
||||
border-color: rgb(143.0993975904, 175.4006024096, 145.406626506);
|
||||
}
|
||||
|
||||
.wp-pointer .wp-pointer-content h3:before {
|
||||
@@ -553,7 +553,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||
|
||||
/* Nav Menus */
|
||||
.nav-menus-php .item-edit:focus:before {
|
||||
box-shadow: 0 0 0 1px #bccfbd, 0 0 2px 1px #9ebaa0;
|
||||
box-shadow: 0 0 0 1px rgb(187.8012048193, 207.1987951807, 189.186746988), 0 0 2px 1px #9ebaa0;
|
||||
}
|
||||
|
||||
/* Responsive Component */
|
||||
@@ -567,7 +567,7 @@ div#wp-responsive-toggle a:before {
|
||||
}
|
||||
|
||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
||||
background: #627c83;
|
||||
background: rgb(98.2714285714, 123.5412244898, 131.0285714286);
|
||||
}
|
||||
|
||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
|
||||
@@ -620,7 +620,7 @@ div#wp-responsive-toggle a:before {
|
||||
.wp-core-ui #available-menu-items .item-add:focus:before,
|
||||
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||
.wp-core-ui #publish-settings:focus {
|
||||
box-shadow: 0 0 0 1px #bccfbd, 0 0 2px 1px #9ebaa0;
|
||||
box-shadow: 0 0 0 1px rgb(187.8012048193, 207.1987951807, 189.186746988), 0 0 2px 1px #9ebaa0;
|
||||
}
|
||||
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
|
||||
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
||||
@@ -669,7 +669,7 @@ div#wp-responsive-toggle a:before {
|
||||
}
|
||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
|
||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
|
||||
box-shadow: 0 0 0 1px #bccfbd, 0 0 2px 1px #9ebaa0;
|
||||
box-shadow: 0 0 0 1px rgb(187.8012048193, 207.1987951807, 189.186746988), 0 0 2px 1px #9ebaa0;
|
||||
}
|
||||
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
|
||||
border-bottom-color: #9ebaa0;
|
||||
|
||||
2
wp/wp-admin/css/colors/ocean/colors.min.css
vendored
2
wp/wp-admin/css/colors/ocean/colors.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -1,3 +1,5 @@
|
||||
@use "sass:color";
|
||||
|
||||
$scheme-name: "ocean";
|
||||
$base-color: #738e96;
|
||||
$icon-color: #f2fcff;
|
||||
|
||||
@@ -16,7 +16,7 @@ a {
|
||||
color: #0073aa;
|
||||
}
|
||||
a:hover, a:active, a:focus {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
#post-body .misc-pub-post-status:before,
|
||||
@@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
|
||||
color: #0073aa;
|
||||
}
|
||||
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
.media-modal .delete-attachment,
|
||||
@@ -63,7 +63,7 @@ input[type=radio]:checked::before {
|
||||
|
||||
.wp-core-ui input[type=reset]:hover,
|
||||
.wp-core-ui input[type=reset]:active {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
input[type=text]:focus,
|
||||
@@ -98,25 +98,25 @@ textarea:focus {
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus {
|
||||
border-color: #717c87;
|
||||
color: #262a2e;
|
||||
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
}
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus {
|
||||
border-color: #7e8993;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: 0 0 0 1px #32373c;
|
||||
}
|
||||
.wp-core-ui .button:active {
|
||||
border-color: #7e8993;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: none;
|
||||
}
|
||||
.wp-core-ui .button.active,
|
||||
.wp-core-ui .button.active:focus,
|
||||
.wp-core-ui .button.active:hover {
|
||||
border-color: #dd823b;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: inset 0 2px 5px -3px #dd823b;
|
||||
}
|
||||
.wp-core-ui .button.active:focus {
|
||||
@@ -130,15 +130,15 @@ textarea:focus {
|
||||
.wp-core-ui .button.hover,
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button-secondary:hover {
|
||||
border-color: #c36922;
|
||||
color: #c36922;
|
||||
border-color: rgb(195.147826087, 104.5434782609, 33.852173913);
|
||||
color: rgb(195.147826087, 104.5434782609, 33.852173913);
|
||||
}
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
border-color: #e59e66;
|
||||
color: #98511a;
|
||||
box-shadow: 0 0 0 1px #e59e66;
|
||||
border-color: rgb(228.5391304348, 157.7173913043, 102.4608695652);
|
||||
color: rgb(151.6869565217, 81.2608695652, 26.3130434783);
|
||||
box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652);
|
||||
}
|
||||
.wp-core-ui .button-primary:hover {
|
||||
color: #fff;
|
||||
@@ -149,23 +149,23 @@ textarea:focus {
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||
background: #df8a48;
|
||||
border-color: #db7a2e;
|
||||
background: rgb(223.2617391304, 138.3152173913, 72.0382608696);
|
||||
border-color: rgb(218.7382608696, 121.6847826087, 45.9617391304);
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary:focus {
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #dd823b;
|
||||
}
|
||||
.wp-core-ui .button-primary:active {
|
||||
background: #d97426;
|
||||
border-color: #d97426;
|
||||
background: rgb(216.8782608696, 116.1847826087, 37.6217391304);
|
||||
border-color: rgb(216.8782608696, 116.1847826087, 37.6217391304);
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||
background: #dd823b;
|
||||
color: #fff;
|
||||
border-color: #ad5d1e;
|
||||
box-shadow: inset 0 2px 5px -3px #150b04;
|
||||
border-color: rgb(173.4173913043, 92.902173913, 30.0826086957);
|
||||
box-shadow: inset 0 2px 5px -3px rgb(21.3043478261, 11.4130434783, 3.6956521739);
|
||||
}
|
||||
.wp-core-ui .button-group > .button.active {
|
||||
border-color: #dd823b;
|
||||
@@ -203,14 +203,14 @@ textarea:focus {
|
||||
}
|
||||
|
||||
.wrap .page-title-action:hover {
|
||||
color: #c36922;
|
||||
border-color: #c36922;
|
||||
color: rgb(195.147826087, 104.5434782609, 33.852173913);
|
||||
border-color: rgb(195.147826087, 104.5434782609, 33.852173913);
|
||||
}
|
||||
|
||||
.wrap .page-title-action:focus {
|
||||
border-color: #e59e66;
|
||||
color: #98511a;
|
||||
box-shadow: 0 0 0 1px #e59e66;
|
||||
border-color: rgb(228.5391304348, 157.7173913043, 102.4608695652);
|
||||
color: rgb(151.6869565217, 81.2608695652, 26.3130434783);
|
||||
box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652);
|
||||
}
|
||||
|
||||
.view-switch a.current:before {
|
||||
@@ -262,23 +262,23 @@ textarea:focus {
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||
background: #be3631;
|
||||
background: rgb(190.4217021277, 53.969787234, 48.8782978723);
|
||||
}
|
||||
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
border-left-color: #be3631;
|
||||
border-left-color: rgb(190.4217021277, 53.969787234, 48.8782978723);
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu .wp-submenu-head {
|
||||
color: #f1c8c7;
|
||||
color: rgb(240.6, 200.4, 198.9);
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||
color: #f1c8c7;
|
||||
color: rgb(240.6, 200.4, 198.9);
|
||||
}
|
||||
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
@@ -287,7 +287,7 @@ textarea:focus {
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
|
||||
color: #f7e3d3;
|
||||
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
|
||||
}
|
||||
|
||||
/* Admin Menu: current */
|
||||
@@ -301,7 +301,7 @@ textarea:focus {
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus {
|
||||
color: #f7e3d3;
|
||||
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
|
||||
}
|
||||
|
||||
ul#adminmenu a.wp-has-current-submenu:after,
|
||||
@@ -341,7 +341,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#adminmenu li:hover a .awaiting-mod,
|
||||
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||
color: #fff;
|
||||
background: #be3631;
|
||||
background: rgb(190.4217021277, 53.969787234, 48.8782978723);
|
||||
}
|
||||
|
||||
/* Admin Menu: collapse button */
|
||||
@@ -351,7 +351,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
#collapse-button:hover,
|
||||
#collapse-button:focus {
|
||||
color: #f7e3d3;
|
||||
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
|
||||
}
|
||||
|
||||
/* Admin Bar */
|
||||
@@ -379,38 +379,38 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus,
|
||||
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||
color: #f7e3d3;
|
||||
background: #be3631;
|
||||
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
|
||||
background: rgb(190.4217021277, 53.969787234, 48.8782978723);
|
||||
}
|
||||
|
||||
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
||||
#wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label,
|
||||
#wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label {
|
||||
color: #f7e3d3;
|
||||
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
|
||||
}
|
||||
|
||||
#wpadminbar:not(.mobile) li:hover .ab-icon:before,
|
||||
#wpadminbar:not(.mobile) li:hover .ab-item:before,
|
||||
#wpadminbar:not(.mobile) li:hover .ab-item:after,
|
||||
#wpadminbar:not(.mobile) li:hover #adminbarsearch:before {
|
||||
color: #f7e3d3;
|
||||
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
|
||||
}
|
||||
|
||||
/* Admin Bar: submenu */
|
||||
#wpadminbar .menupop .ab-sub-wrapper {
|
||||
background: #be3631;
|
||||
background: rgb(190.4217021277, 53.969787234, 48.8782978723);
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
||||
background: #cf6b67;
|
||||
background: rgb(207.3164148936, 107.1221761059, 103.3835851064);
|
||||
}
|
||||
|
||||
#wpadminbar .ab-submenu .ab-item,
|
||||
#wpadminbar .quicklinks .menupop ul li a,
|
||||
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
|
||||
color: #f1c8c7;
|
||||
color: rgb(240.6, 200.4, 198.9);
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks li .blavatar,
|
||||
@@ -436,7 +436,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar li.hover .ab-item:before,
|
||||
#wpadminbar li:hover #adminbarsearch:before,
|
||||
#wpadminbar li #adminbarsearch.adminbar-focused:before {
|
||||
color: #f7e3d3;
|
||||
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks li a:hover .blavatar,
|
||||
@@ -445,7 +445,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar .menupop .menupop > .ab-item:hover:before,
|
||||
#wpadminbar.mobile .quicklinks .ab-icon:before,
|
||||
#wpadminbar.mobile .quicklinks .ab-item:before {
|
||||
color: #f7e3d3;
|
||||
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
|
||||
}
|
||||
|
||||
#wpadminbar.mobile .quicklinks .hover .ab-icon:before,
|
||||
@@ -460,7 +460,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||
color: #fff;
|
||||
background: #d66560;
|
||||
background: rgb(214.2919148936, 100.6485106383, 96.4080851064);
|
||||
}
|
||||
|
||||
/* Admin Bar: recovery mode */
|
||||
@@ -479,13 +479,13 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
|
||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||
color: #fff;
|
||||
background-color: #b89e0a;
|
||||
background-color: rgb(183.6, 157.5, 9.9);
|
||||
}
|
||||
|
||||
/* Admin Bar: my account */
|
||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||
border-color: #d66560;
|
||||
background-color: #d66560;
|
||||
border-color: rgb(214.2919148936, 100.6485106383, 96.4080851064);
|
||||
background-color: rgb(214.2919148936, 100.6485106383, 96.4080851064);
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
||||
@@ -493,17 +493,17 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info a:hover .display-name {
|
||||
color: #f7e3d3;
|
||||
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .username {
|
||||
color: #f1c8c7;
|
||||
color: rgb(240.6, 200.4, 198.9);
|
||||
}
|
||||
|
||||
/* Pointers */
|
||||
.wp-pointer .wp-pointer-content h3 {
|
||||
background-color: #dd823b;
|
||||
border-color: #d97426;
|
||||
border-color: rgb(216.8782608696, 116.1847826087, 37.6217391304);
|
||||
}
|
||||
|
||||
.wp-pointer .wp-pointer-content h3:before {
|
||||
@@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||
|
||||
/* Nav Menus */
|
||||
.nav-menus-php .item-edit:focus:before {
|
||||
box-shadow: 0 0 0 1px #e59e66, 0 0 2px 1px #dd823b;
|
||||
box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652), 0 0 2px 1px #dd823b;
|
||||
}
|
||||
|
||||
/* Responsive Component */
|
||||
@@ -600,7 +600,7 @@ div#wp-responsive-toggle a:before {
|
||||
}
|
||||
|
||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
||||
background: #be3631;
|
||||
background: rgb(190.4217021277, 53.969787234, 48.8782978723);
|
||||
}
|
||||
|
||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
|
||||
@@ -653,7 +653,7 @@ div#wp-responsive-toggle a:before {
|
||||
.wp-core-ui #available-menu-items .item-add:focus:before,
|
||||
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||
.wp-core-ui #publish-settings:focus {
|
||||
box-shadow: 0 0 0 1px #e59e66, 0 0 2px 1px #dd823b;
|
||||
box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652), 0 0 2px 1px #dd823b;
|
||||
}
|
||||
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
|
||||
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
||||
@@ -702,7 +702,7 @@ div#wp-responsive-toggle a:before {
|
||||
}
|
||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
|
||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
|
||||
box-shadow: 0 0 0 1px #e59e66, 0 0 2px 1px #dd823b;
|
||||
box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652), 0 0 2px 1px #dd823b;
|
||||
}
|
||||
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
|
||||
border-bottom-color: #dd823b;
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -16,7 +16,7 @@ a {
|
||||
color: #0073aa;
|
||||
}
|
||||
a:hover, a:active, a:focus {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
#post-body .misc-pub-post-status:before,
|
||||
@@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
|
||||
color: #0073aa;
|
||||
}
|
||||
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
.media-modal .delete-attachment,
|
||||
@@ -63,7 +63,7 @@ input[type=radio]:checked::before {
|
||||
|
||||
.wp-core-ui input[type=reset]:hover,
|
||||
.wp-core-ui input[type=reset]:active {
|
||||
color: #0096dd;
|
||||
color: rgb(0, 149.5, 221);
|
||||
}
|
||||
|
||||
input[type=text]:focus,
|
||||
@@ -98,25 +98,25 @@ textarea:focus {
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus {
|
||||
border-color: #717c87;
|
||||
color: #262a2e;
|
||||
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
}
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus {
|
||||
border-color: #7e8993;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: 0 0 0 1px #32373c;
|
||||
}
|
||||
.wp-core-ui .button:active {
|
||||
border-color: #7e8993;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: none;
|
||||
}
|
||||
.wp-core-ui .button.active,
|
||||
.wp-core-ui .button.active:focus,
|
||||
.wp-core-ui .button.active:hover {
|
||||
border-color: #dd823b;
|
||||
color: #262a2e;
|
||||
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||
box-shadow: inset 0 2px 5px -3px #dd823b;
|
||||
}
|
||||
.wp-core-ui .button.active:focus {
|
||||
@@ -130,15 +130,15 @@ textarea:focus {
|
||||
.wp-core-ui .button.hover,
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button-secondary:hover {
|
||||
border-color: #c36922;
|
||||
color: #c36922;
|
||||
border-color: rgb(195.147826087, 104.5434782609, 33.852173913);
|
||||
color: rgb(195.147826087, 104.5434782609, 33.852173913);
|
||||
}
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
border-color: #e59e66;
|
||||
color: #98511a;
|
||||
box-shadow: 0 0 0 1px #e59e66;
|
||||
border-color: rgb(228.5391304348, 157.7173913043, 102.4608695652);
|
||||
color: rgb(151.6869565217, 81.2608695652, 26.3130434783);
|
||||
box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652);
|
||||
}
|
||||
.wp-core-ui .button-primary:hover {
|
||||
color: #fff;
|
||||
@@ -149,23 +149,23 @@ textarea:focus {
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||
background: #df8a48;
|
||||
border-color: #db7a2e;
|
||||
background: rgb(223.2617391304, 138.3152173913, 72.0382608696);
|
||||
border-color: rgb(218.7382608696, 121.6847826087, 45.9617391304);
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary:focus {
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #dd823b;
|
||||
}
|
||||
.wp-core-ui .button-primary:active {
|
||||
background: #d97426;
|
||||
border-color: #d97426;
|
||||
background: rgb(216.8782608696, 116.1847826087, 37.6217391304);
|
||||
border-color: rgb(216.8782608696, 116.1847826087, 37.6217391304);
|
||||
color: #fff;
|
||||
}
|
||||
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||
background: #dd823b;
|
||||
color: #fff;
|
||||
border-color: #ad5d1e;
|
||||
box-shadow: inset 0 2px 5px -3px #150b04;
|
||||
border-color: rgb(173.4173913043, 92.902173913, 30.0826086957);
|
||||
box-shadow: inset 0 2px 5px -3px rgb(21.3043478261, 11.4130434783, 3.6956521739);
|
||||
}
|
||||
.wp-core-ui .button-group > .button.active {
|
||||
border-color: #dd823b;
|
||||
@@ -203,14 +203,14 @@ textarea:focus {
|
||||
}
|
||||
|
||||
.wrap .page-title-action:hover {
|
||||
color: #c36922;
|
||||
border-color: #c36922;
|
||||
color: rgb(195.147826087, 104.5434782609, 33.852173913);
|
||||
border-color: rgb(195.147826087, 104.5434782609, 33.852173913);
|
||||
}
|
||||
|
||||
.wrap .page-title-action:focus {
|
||||
border-color: #e59e66;
|
||||
color: #98511a;
|
||||
box-shadow: 0 0 0 1px #e59e66;
|
||||
border-color: rgb(228.5391304348, 157.7173913043, 102.4608695652);
|
||||
color: rgb(151.6869565217, 81.2608695652, 26.3130434783);
|
||||
box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652);
|
||||
}
|
||||
|
||||
.view-switch a.current:before {
|
||||
@@ -262,23 +262,23 @@ textarea:focus {
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||
background: #be3631;
|
||||
background: rgb(190.4217021277, 53.969787234, 48.8782978723);
|
||||
}
|
||||
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||
border-right-color: #be3631;
|
||||
border-right-color: rgb(190.4217021277, 53.969787234, 48.8782978723);
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu .wp-submenu-head {
|
||||
color: #f1c8c7;
|
||||
color: rgb(240.6, 200.4, 198.9);
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||
color: #f1c8c7;
|
||||
color: rgb(240.6, 200.4, 198.9);
|
||||
}
|
||||
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||
@@ -287,7 +287,7 @@ textarea:focus {
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
|
||||
color: #f7e3d3;
|
||||
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
|
||||
}
|
||||
|
||||
/* Admin Menu: current */
|
||||
@@ -301,7 +301,7 @@ textarea:focus {
|
||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,
|
||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus {
|
||||
color: #f7e3d3;
|
||||
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
|
||||
}
|
||||
|
||||
ul#adminmenu a.wp-has-current-submenu:after,
|
||||
@@ -341,7 +341,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#adminmenu li:hover a .awaiting-mod,
|
||||
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||
color: #fff;
|
||||
background: #be3631;
|
||||
background: rgb(190.4217021277, 53.969787234, 48.8782978723);
|
||||
}
|
||||
|
||||
/* Admin Menu: collapse button */
|
||||
@@ -351,7 +351,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
#collapse-button:hover,
|
||||
#collapse-button:focus {
|
||||
color: #f7e3d3;
|
||||
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
|
||||
}
|
||||
|
||||
/* Admin Bar */
|
||||
@@ -379,38 +379,38 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus,
|
||||
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||
color: #f7e3d3;
|
||||
background: #be3631;
|
||||
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
|
||||
background: rgb(190.4217021277, 53.969787234, 48.8782978723);
|
||||
}
|
||||
|
||||
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
||||
#wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label,
|
||||
#wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label {
|
||||
color: #f7e3d3;
|
||||
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
|
||||
}
|
||||
|
||||
#wpadminbar:not(.mobile) li:hover .ab-icon:before,
|
||||
#wpadminbar:not(.mobile) li:hover .ab-item:before,
|
||||
#wpadminbar:not(.mobile) li:hover .ab-item:after,
|
||||
#wpadminbar:not(.mobile) li:hover #adminbarsearch:before {
|
||||
color: #f7e3d3;
|
||||
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
|
||||
}
|
||||
|
||||
/* Admin Bar: submenu */
|
||||
#wpadminbar .menupop .ab-sub-wrapper {
|
||||
background: #be3631;
|
||||
background: rgb(190.4217021277, 53.969787234, 48.8782978723);
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
||||
background: #cf6b67;
|
||||
background: rgb(207.3164148936, 107.1221761059, 103.3835851064);
|
||||
}
|
||||
|
||||
#wpadminbar .ab-submenu .ab-item,
|
||||
#wpadminbar .quicklinks .menupop ul li a,
|
||||
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
|
||||
color: #f1c8c7;
|
||||
color: rgb(240.6, 200.4, 198.9);
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks li .blavatar,
|
||||
@@ -436,7 +436,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar li.hover .ab-item:before,
|
||||
#wpadminbar li:hover #adminbarsearch:before,
|
||||
#wpadminbar li #adminbarsearch.adminbar-focused:before {
|
||||
color: #f7e3d3;
|
||||
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks li a:hover .blavatar,
|
||||
@@ -445,7 +445,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar .menupop .menupop > .ab-item:hover:before,
|
||||
#wpadminbar.mobile .quicklinks .ab-icon:before,
|
||||
#wpadminbar.mobile .quicklinks .ab-item:before {
|
||||
color: #f7e3d3;
|
||||
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
|
||||
}
|
||||
|
||||
#wpadminbar.mobile .quicklinks .hover .ab-icon:before,
|
||||
@@ -460,7 +460,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||
color: #fff;
|
||||
background: #d66560;
|
||||
background: rgb(214.2919148936, 100.6485106383, 96.4080851064);
|
||||
}
|
||||
|
||||
/* Admin Bar: recovery mode */
|
||||
@@ -479,13 +479,13 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
|
||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||
color: #fff;
|
||||
background-color: #b89e0a;
|
||||
background-color: rgb(183.6, 157.5, 9.9);
|
||||
}
|
||||
|
||||
/* Admin Bar: my account */
|
||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||
border-color: #d66560;
|
||||
background-color: #d66560;
|
||||
border-color: rgb(214.2919148936, 100.6485106383, 96.4080851064);
|
||||
background-color: rgb(214.2919148936, 100.6485106383, 96.4080851064);
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
||||
@@ -493,17 +493,17 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info a:hover .display-name {
|
||||
color: #f7e3d3;
|
||||
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .username {
|
||||
color: #f1c8c7;
|
||||
color: rgb(240.6, 200.4, 198.9);
|
||||
}
|
||||
|
||||
/* Pointers */
|
||||
.wp-pointer .wp-pointer-content h3 {
|
||||
background-color: #dd823b;
|
||||
border-color: #d97426;
|
||||
border-color: rgb(216.8782608696, 116.1847826087, 37.6217391304);
|
||||
}
|
||||
|
||||
.wp-pointer .wp-pointer-content h3:before {
|
||||
@@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||
|
||||
/* Nav Menus */
|
||||
.nav-menus-php .item-edit:focus:before {
|
||||
box-shadow: 0 0 0 1px #e59e66, 0 0 2px 1px #dd823b;
|
||||
box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652), 0 0 2px 1px #dd823b;
|
||||
}
|
||||
|
||||
/* Responsive Component */
|
||||
@@ -600,7 +600,7 @@ div#wp-responsive-toggle a:before {
|
||||
}
|
||||
|
||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
||||
background: #be3631;
|
||||
background: rgb(190.4217021277, 53.969787234, 48.8782978723);
|
||||
}
|
||||
|
||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
|
||||
@@ -653,7 +653,7 @@ div#wp-responsive-toggle a:before {
|
||||
.wp-core-ui #available-menu-items .item-add:focus:before,
|
||||
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||
.wp-core-ui #publish-settings:focus {
|
||||
box-shadow: 0 0 0 1px #e59e66, 0 0 2px 1px #dd823b;
|
||||
box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652), 0 0 2px 1px #dd823b;
|
||||
}
|
||||
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
|
||||
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
||||
@@ -702,7 +702,7 @@ div#wp-responsive-toggle a:before {
|
||||
}
|
||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
|
||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
|
||||
box-shadow: 0 0 0 1px #e59e66, 0 0 2px 1px #dd823b;
|
||||
box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652), 0 0 2px 1px #dd823b;
|
||||
}
|
||||
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
|
||||
border-bottom-color: #dd823b;
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,7 +1,9 @@
|
||||
@use "sass:color";
|
||||
|
||||
$scheme-name: "sunrise";
|
||||
$base-color: #cf4944;
|
||||
$highlight-color: #dd823b;
|
||||
$notification-color: #ccaf0b;
|
||||
$menu-submenu-focus-text: lighten( $highlight-color, 35% );
|
||||
$menu-submenu-focus-text: color.adjust($highlight-color, $lightness: 35%);
|
||||
|
||||
@import "../_admin.scss";
|
||||
|
||||
Reference in New Issue
Block a user