plugin updates
This commit is contained in:
@@ -12,6 +12,9 @@
|
||||
top: 0;
|
||||
bottom: -120px;
|
||||
z-index: 1; /* positive z-index to avoid elastic scrolling woes in Safari */
|
||||
|
||||
/* Only visible in Windows High Contrast mode */
|
||||
outline: 1px solid transparent;
|
||||
}
|
||||
|
||||
.php-error #adminmenuback {
|
||||
@@ -206,7 +209,8 @@
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu {
|
||||
min-width: 160px;
|
||||
width: auto;
|
||||
border-right: 5px solid transparent;
|
||||
border: 1px solid transparent;
|
||||
border-right-width: 5px;
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu li.current,
|
||||
@@ -269,7 +273,6 @@
|
||||
word-wrap: break-word;
|
||||
-ms-word-break: break-all;
|
||||
word-break: break-word;
|
||||
-webkit-hyphens: auto;
|
||||
hyphens: auto;
|
||||
}
|
||||
|
||||
@@ -416,8 +419,8 @@ ul#adminmenu > li.current > a.current:after {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
padding: 5px 11px 5px 4px;
|
||||
margin: -7px -5px 4px 0;
|
||||
border-width: 3px 5px 3px 0;
|
||||
margin: -8px -5px 4px -1px;
|
||||
border-width: 3px 5px 3px 1px;
|
||||
border-style: solid;
|
||||
border-color: transparent;
|
||||
}
|
||||
@@ -582,8 +585,10 @@ li#wp-admin-bar-menu-toggle {
|
||||
}
|
||||
|
||||
.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
|
||||
min-width: 150px;
|
||||
min-width: 160px;
|
||||
width: auto;
|
||||
border: 1px solid transparent;
|
||||
border-right-width: 5px;
|
||||
}
|
||||
|
||||
.auto-fold #adminmenu .wp-has-current-submenu li > a {
|
||||
@@ -772,8 +777,9 @@ li#wp-admin-bar-menu-toggle {
|
||||
}
|
||||
|
||||
#adminmenu .wp-not-current-submenu .wp-submenu,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu {
|
||||
border-right: none;
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
|
||||
border: none;
|
||||
}
|
||||
|
||||
/* Remove submenu headers and adjust sub meu*/
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
@@ -11,6 +11,9 @@
|
||||
top: 0;
|
||||
bottom: -120px;
|
||||
z-index: 1; /* positive z-index to avoid elastic scrolling woes in Safari */
|
||||
|
||||
/* Only visible in Windows High Contrast mode */
|
||||
outline: 1px solid transparent;
|
||||
}
|
||||
|
||||
.php-error #adminmenuback {
|
||||
@@ -205,7 +208,8 @@
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu {
|
||||
min-width: 160px;
|
||||
width: auto;
|
||||
border-left: 5px solid transparent;
|
||||
border: 1px solid transparent;
|
||||
border-left-width: 5px;
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu li.current,
|
||||
@@ -268,7 +272,6 @@
|
||||
word-wrap: break-word;
|
||||
-ms-word-break: break-all;
|
||||
word-break: break-word;
|
||||
-webkit-hyphens: auto;
|
||||
hyphens: auto;
|
||||
}
|
||||
|
||||
@@ -415,8 +418,8 @@ ul#adminmenu > li.current > a.current:after {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
padding: 5px 4px 5px 11px;
|
||||
margin: -7px 0 4px -5px;
|
||||
border-width: 3px 0 3px 5px;
|
||||
margin: -8px -1px 4px -5px;
|
||||
border-width: 3px 1px 3px 5px;
|
||||
border-style: solid;
|
||||
border-color: transparent;
|
||||
}
|
||||
@@ -581,8 +584,10 @@ li#wp-admin-bar-menu-toggle {
|
||||
}
|
||||
|
||||
.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
|
||||
min-width: 150px;
|
||||
min-width: 160px;
|
||||
width: auto;
|
||||
border: 1px solid transparent;
|
||||
border-left-width: 5px;
|
||||
}
|
||||
|
||||
.auto-fold #adminmenu .wp-has-current-submenu li > a {
|
||||
@@ -771,8 +776,9 @@ li#wp-admin-bar-menu-toggle {
|
||||
}
|
||||
|
||||
#adminmenu .wp-not-current-submenu .wp-submenu,
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu {
|
||||
border-left: none;
|
||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu,
|
||||
.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
|
||||
border: none;
|
||||
}
|
||||
|
||||
/* Remove submenu headers and adjust sub meu*/
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -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;
|
||||
|
||||
+1
-1
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;
|
||||
|
||||
+1
-1
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;
|
||||
|
||||
+1
-1
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;
|
||||
|
||||
+1
-1
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;
|
||||
|
||||
+1
-1
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;
|
||||
|
||||
+1
-1
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;
|
||||
|
||||
+1
-1
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;
|
||||
|
||||
+1
-1
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;
|
||||
|
||||
+1
-1
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;
|
||||
|
||||
+1
-1
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;
|
||||
|
||||
+1
-1
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;
|
||||
|
||||
+1
-1
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;
|
||||
|
||||
+1
-1
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;
|
||||
|
||||
+1
-1
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;
|
||||
|
||||
+1
-1
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;
|
||||
|
||||
+1
-1
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";
|
||||
|
||||
@@ -917,6 +917,11 @@ a#remove-post-thumbnail:hover,
|
||||
border: none;
|
||||
}
|
||||
|
||||
.application-password-display .success {
|
||||
color: #007017;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
|
||||
/*------------------------------------------------------------------------------
|
||||
3.0 - Actions
|
||||
------------------------------------------------------------------------------*/
|
||||
@@ -1181,6 +1186,17 @@ th.action-links {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.wp-filter .favorites-form .favorites-username {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.wp-filter .favorites-form .favorites-username input {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.show-filters .filter-drawer,
|
||||
.show-favorites-form .favorites-form {
|
||||
display: block;
|
||||
@@ -1289,11 +1305,13 @@ th.action-links {
|
||||
}
|
||||
|
||||
.filtered-by .tags {
|
||||
display: inline;
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
flex-wrap: wrap;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.filtered-by .tag {
|
||||
margin: 0 5px;
|
||||
padding: 4px 8px;
|
||||
border: 1px solid #dcdcde;
|
||||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
|
||||
@@ -1308,7 +1326,10 @@ th.action-links {
|
||||
}
|
||||
|
||||
.filters-applied .filtered-by {
|
||||
display: block;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.filters-applied .filter-drawer {
|
||||
@@ -2032,7 +2053,7 @@ p.auto-update-status {
|
||||
------------------------------------------------------------------------------*/
|
||||
|
||||
html.wp-toolbar {
|
||||
padding-top: 32px;
|
||||
padding-top: var(--wp-admin--admin-bar--height);
|
||||
box-sizing: border-box;
|
||||
-ms-overflow-style: scrollbar; /* See ticket #48545 */
|
||||
}
|
||||
@@ -2411,8 +2432,42 @@ h1.nav-tab-wrapper, /* Back-compat for pre-4.4 */
|
||||
|
||||
/* Back-compat for nav-menus screen */
|
||||
.nav-menus-php .metabox-holder h3 {
|
||||
padding: 0;
|
||||
}
|
||||
.nav-menus-php .metabox-holder .accordion-section-title button.accordion-trigger {
|
||||
background: inherit;
|
||||
color: #1d2327;
|
||||
display: block;
|
||||
position: relative;
|
||||
text-align: right;
|
||||
width: 100%;
|
||||
outline: none;
|
||||
border: 0;
|
||||
padding: 10px 14px 11px 10px;
|
||||
line-height: 1.5;
|
||||
cursor: pointer;
|
||||
}
|
||||
.nav-menus-php .metabox-holder .accordion-section-title button.accordion-trigger:focus {
|
||||
box-shadow: 0 0 0 2px #2271b1;
|
||||
outline: 2px solid transparent;
|
||||
}
|
||||
.nav-menus-php .metabox-holder .accordion-section-title span.dashicons.dashicons-arrow-down {
|
||||
position: absolute;
|
||||
left: 10px;
|
||||
right: auto;
|
||||
color: #787c82;
|
||||
border-radius: 50px;
|
||||
}
|
||||
.nav-menus-php .metabox-holder .accordion-section-title:hover span.dashicons.dashicons-arrow-down {
|
||||
color: #1d2327;
|
||||
}
|
||||
.nav-menus-php .metabox-holder .accordion-section-title span.dashicons.dashicons-arrow-down::before {
|
||||
position: relative;
|
||||
right: -1px
|
||||
}
|
||||
|
||||
.nav-menus-php .metabox-holder .accordion-section.open .accordion-section-title span.dashicons.dashicons-arrow-down {
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
|
||||
#templateside ul li a {
|
||||
@@ -3502,9 +3557,9 @@ img {
|
||||
|
||||
/* @todo: can we use a common class for these? */
|
||||
.nav-menus-php .item-edit:before,
|
||||
.widget-top .widget-action .toggle-indicator:before,
|
||||
.control-section .accordion-section-title:after,
|
||||
.accordion-section-title:after {
|
||||
.wp-customizer .control-section .accordion-section-title:after,
|
||||
.wp-customizer .accordion-section-title:after,
|
||||
.widget-top .widget-action .toggle-indicator:before {
|
||||
content: "\f140";
|
||||
font: normal 20px/1 dashicons;
|
||||
speak: never;
|
||||
@@ -3522,8 +3577,7 @@ img {
|
||||
.handlediv,
|
||||
.postbox .handlediv.button-link,
|
||||
.item-edit,
|
||||
.toggle-indicator,
|
||||
.accordion-section-title:after {
|
||||
.toggle-indicator {
|
||||
color: #787c82;
|
||||
}
|
||||
|
||||
@@ -3539,8 +3593,7 @@ img {
|
||||
.postbox .handlediv.button-link:focus,
|
||||
.item-edit:hover,
|
||||
.item-edit:focus,
|
||||
.sidebar-name:hover .toggle-indicator,
|
||||
.accordion-section-title:hover:after {
|
||||
.sidebar-name:hover .toggle-indicator {
|
||||
color: #1d2327;
|
||||
/* Only visible in Windows High Contrast mode */
|
||||
outline: 2px solid transparent;
|
||||
@@ -3552,14 +3605,6 @@ img {
|
||||
outline: 2px solid transparent;
|
||||
}
|
||||
|
||||
.control-section .accordion-section-title:after,
|
||||
.accordion-section-title:after {
|
||||
float: left;
|
||||
left: 20px;
|
||||
top: -2px;
|
||||
}
|
||||
|
||||
.control-section.open .accordion-section-title:after,
|
||||
#customize-info.open .accordion-section-title:after,
|
||||
.nav-menus-php .menu-item-edit-active .item-edit:before,
|
||||
.widget.open .widget-top .widget-action .toggle-indicator:before,
|
||||
@@ -3841,7 +3886,7 @@ img {
|
||||
|
||||
@media screen and (max-width: 782px) {
|
||||
html.wp-toolbar {
|
||||
padding-top: 46px;
|
||||
padding-top: var(--wp-admin--admin-bar--height);
|
||||
}
|
||||
|
||||
.screen-reader-shortcut:focus {
|
||||
@@ -3949,6 +3994,10 @@ img {
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
.nav-menus-php .metabox-holder h3 {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.postbox .handlediv {
|
||||
margin-top: 3px;
|
||||
}
|
||||
|
||||
Vendored
+2
-2
File diff suppressed because one or more lines are too long
+69
-20
@@ -916,6 +916,11 @@ a#remove-post-thumbnail:hover,
|
||||
border: none;
|
||||
}
|
||||
|
||||
.application-password-display .success {
|
||||
color: #007017;
|
||||
margin-left: 0.5rem;
|
||||
}
|
||||
|
||||
/*------------------------------------------------------------------------------
|
||||
3.0 - Actions
|
||||
------------------------------------------------------------------------------*/
|
||||
@@ -1180,6 +1185,17 @@ th.action-links {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.wp-filter .favorites-form .favorites-username {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.wp-filter .favorites-form .favorites-username input {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.show-filters .filter-drawer,
|
||||
.show-favorites-form .favorites-form {
|
||||
display: block;
|
||||
@@ -1288,11 +1304,13 @@ th.action-links {
|
||||
}
|
||||
|
||||
.filtered-by .tags {
|
||||
display: inline;
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
flex-wrap: wrap;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.filtered-by .tag {
|
||||
margin: 0 5px;
|
||||
padding: 4px 8px;
|
||||
border: 1px solid #dcdcde;
|
||||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
|
||||
@@ -1307,7 +1325,10 @@ th.action-links {
|
||||
}
|
||||
|
||||
.filters-applied .filtered-by {
|
||||
display: block;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.filters-applied .filter-drawer {
|
||||
@@ -2031,7 +2052,7 @@ p.auto-update-status {
|
||||
------------------------------------------------------------------------------*/
|
||||
|
||||
html.wp-toolbar {
|
||||
padding-top: 32px;
|
||||
padding-top: var(--wp-admin--admin-bar--height);
|
||||
box-sizing: border-box;
|
||||
-ms-overflow-style: scrollbar; /* See ticket #48545 */
|
||||
}
|
||||
@@ -2410,8 +2431,42 @@ h1.nav-tab-wrapper, /* Back-compat for pre-4.4 */
|
||||
|
||||
/* Back-compat for nav-menus screen */
|
||||
.nav-menus-php .metabox-holder h3 {
|
||||
padding: 0;
|
||||
}
|
||||
.nav-menus-php .metabox-holder .accordion-section-title button.accordion-trigger {
|
||||
background: inherit;
|
||||
color: #1d2327;
|
||||
display: block;
|
||||
position: relative;
|
||||
text-align: left;
|
||||
width: 100%;
|
||||
outline: none;
|
||||
border: 0;
|
||||
padding: 10px 10px 11px 14px;
|
||||
line-height: 1.5;
|
||||
cursor: pointer;
|
||||
}
|
||||
.nav-menus-php .metabox-holder .accordion-section-title button.accordion-trigger:focus {
|
||||
box-shadow: 0 0 0 2px #2271b1;
|
||||
outline: 2px solid transparent;
|
||||
}
|
||||
.nav-menus-php .metabox-holder .accordion-section-title span.dashicons.dashicons-arrow-down {
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
left: auto;
|
||||
color: #787c82;
|
||||
border-radius: 50px;
|
||||
}
|
||||
.nav-menus-php .metabox-holder .accordion-section-title:hover span.dashicons.dashicons-arrow-down {
|
||||
color: #1d2327;
|
||||
}
|
||||
.nav-menus-php .metabox-holder .accordion-section-title span.dashicons.dashicons-arrow-down::before {
|
||||
position: relative;
|
||||
left: -1px
|
||||
}
|
||||
|
||||
.nav-menus-php .metabox-holder .accordion-section.open .accordion-section-title span.dashicons.dashicons-arrow-down {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
#templateside ul li a {
|
||||
@@ -3501,9 +3556,9 @@ img {
|
||||
|
||||
/* @todo: can we use a common class for these? */
|
||||
.nav-menus-php .item-edit:before,
|
||||
.widget-top .widget-action .toggle-indicator:before,
|
||||
.control-section .accordion-section-title:after,
|
||||
.accordion-section-title:after {
|
||||
.wp-customizer .control-section .accordion-section-title:after,
|
||||
.wp-customizer .accordion-section-title:after,
|
||||
.widget-top .widget-action .toggle-indicator:before {
|
||||
content: "\f140";
|
||||
font: normal 20px/1 dashicons;
|
||||
speak: never;
|
||||
@@ -3521,8 +3576,7 @@ img {
|
||||
.handlediv,
|
||||
.postbox .handlediv.button-link,
|
||||
.item-edit,
|
||||
.toggle-indicator,
|
||||
.accordion-section-title:after {
|
||||
.toggle-indicator {
|
||||
color: #787c82;
|
||||
}
|
||||
|
||||
@@ -3538,8 +3592,7 @@ img {
|
||||
.postbox .handlediv.button-link:focus,
|
||||
.item-edit:hover,
|
||||
.item-edit:focus,
|
||||
.sidebar-name:hover .toggle-indicator,
|
||||
.accordion-section-title:hover:after {
|
||||
.sidebar-name:hover .toggle-indicator {
|
||||
color: #1d2327;
|
||||
/* Only visible in Windows High Contrast mode */
|
||||
outline: 2px solid transparent;
|
||||
@@ -3551,14 +3604,6 @@ img {
|
||||
outline: 2px solid transparent;
|
||||
}
|
||||
|
||||
.control-section .accordion-section-title:after,
|
||||
.accordion-section-title:after {
|
||||
float: right;
|
||||
right: 20px;
|
||||
top: -2px;
|
||||
}
|
||||
|
||||
.control-section.open .accordion-section-title:after,
|
||||
#customize-info.open .accordion-section-title:after,
|
||||
.nav-menus-php .menu-item-edit-active .item-edit:before,
|
||||
.widget.open .widget-top .widget-action .toggle-indicator:before,
|
||||
@@ -3840,7 +3885,7 @@ img {
|
||||
|
||||
@media screen and (max-width: 782px) {
|
||||
html.wp-toolbar {
|
||||
padding-top: 46px;
|
||||
padding-top: var(--wp-admin--admin-bar--height);
|
||||
}
|
||||
|
||||
.screen-reader-shortcut:focus {
|
||||
@@ -3948,6 +3993,10 @@ img {
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
.nav-menus-php .metabox-holder h3 {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.postbox .handlediv {
|
||||
margin-top: 3px;
|
||||
}
|
||||
|
||||
Vendored
+2
-2
File diff suppressed because one or more lines are too long
@@ -32,7 +32,7 @@ body {
|
||||
max-width: 366px;
|
||||
min-height: 64px;
|
||||
width: auto;
|
||||
padding: 25px 109px 25px 25px;
|
||||
padding: 25px;
|
||||
position: relative;
|
||||
background: #fff;
|
||||
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
|
||||
@@ -42,6 +42,10 @@ body {
|
||||
top: calc( 50% - 100px );
|
||||
}
|
||||
|
||||
#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .customize-changeset-locked-message.has-avatar {
|
||||
padding-right: 109px;
|
||||
}
|
||||
|
||||
#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .currently-editing {
|
||||
margin-top: 0;
|
||||
}
|
||||
@@ -394,6 +398,7 @@ body.trashing #publish-settings {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#customize-control-site_icon .customize-control-description,
|
||||
#customize-control-changeset_scheduled_date .customize-control-description {
|
||||
font-style: normal;
|
||||
}
|
||||
@@ -549,6 +554,23 @@ body.trashing #publish-settings {
|
||||
.15s border-color ease-in-out;
|
||||
}
|
||||
|
||||
.accordion-section-title:has(button.accordion-trigger) {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.accordion-section-title button.accordion-trigger {
|
||||
all: unset;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: 10px 14px 11px 10px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.accordion-section-title button.accordion-trigger:has(.menu-in-location) {
|
||||
display: block;
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
#customize-theme-controls .accordion-section-title,
|
||||
#customize-outer-theme-controls .accordion-section-title {
|
||||
@@ -575,9 +597,9 @@ body.trashing #publish-settings {
|
||||
}
|
||||
|
||||
#customize-controls .control-section:hover > .accordion-section-title,
|
||||
#customize-controls .control-section .accordion-section-title:hover,
|
||||
#customize-controls .control-section .accordion-section-title button:hover,
|
||||
#customize-controls .control-section.open .accordion-section-title,
|
||||
#customize-controls .control-section .accordion-section-title:focus {
|
||||
#customize-controls .control-section .accordion-section-title button:focus {
|
||||
color: #2271b1;
|
||||
background: #f6f7f7;
|
||||
border-right-color: #2271b1;
|
||||
@@ -1067,10 +1089,6 @@ p.customize-section-description {
|
||||
line-height: 0;
|
||||
}
|
||||
|
||||
/* Remove descender space. */
|
||||
.customize-control-site_icon .favicon-preview .browser-preview {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.customize-control .thumbnail-image img {
|
||||
cursor: pointer;
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
@@ -31,7 +31,7 @@ body {
|
||||
max-width: 366px;
|
||||
min-height: 64px;
|
||||
width: auto;
|
||||
padding: 25px 25px 25px 109px;
|
||||
padding: 25px;
|
||||
position: relative;
|
||||
background: #fff;
|
||||
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
|
||||
@@ -41,6 +41,10 @@ body {
|
||||
top: calc( 50% - 100px );
|
||||
}
|
||||
|
||||
#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .customize-changeset-locked-message.has-avatar {
|
||||
padding-left: 109px;
|
||||
}
|
||||
|
||||
#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .currently-editing {
|
||||
margin-top: 0;
|
||||
}
|
||||
@@ -393,6 +397,7 @@ body.trashing #publish-settings {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#customize-control-site_icon .customize-control-description,
|
||||
#customize-control-changeset_scheduled_date .customize-control-description {
|
||||
font-style: normal;
|
||||
}
|
||||
@@ -548,6 +553,23 @@ body.trashing #publish-settings {
|
||||
.15s border-color ease-in-out;
|
||||
}
|
||||
|
||||
.accordion-section-title:has(button.accordion-trigger) {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.accordion-section-title button.accordion-trigger {
|
||||
all: unset;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: 10px 10px 11px 14px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.accordion-section-title button.accordion-trigger:has(.menu-in-location) {
|
||||
display: block;
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
#customize-theme-controls .accordion-section-title,
|
||||
#customize-outer-theme-controls .accordion-section-title {
|
||||
@@ -574,9 +596,9 @@ body.trashing #publish-settings {
|
||||
}
|
||||
|
||||
#customize-controls .control-section:hover > .accordion-section-title,
|
||||
#customize-controls .control-section .accordion-section-title:hover,
|
||||
#customize-controls .control-section .accordion-section-title button:hover,
|
||||
#customize-controls .control-section.open .accordion-section-title,
|
||||
#customize-controls .control-section .accordion-section-title:focus {
|
||||
#customize-controls .control-section .accordion-section-title button:focus {
|
||||
color: #2271b1;
|
||||
background: #f6f7f7;
|
||||
border-left-color: #2271b1;
|
||||
@@ -1066,10 +1088,6 @@ p.customize-section-description {
|
||||
line-height: 0;
|
||||
}
|
||||
|
||||
/* Remove descender space. */
|
||||
.customize-control-site_icon .favicon-preview .browser-preview {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.customize-control .thumbnail-image img {
|
||||
cursor: pointer;
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
@@ -543,8 +543,9 @@
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
#available-menu-items .accordion-section-title button {
|
||||
display: block;
|
||||
#available-menu-items .accordion-section-title button .toggle-indicator {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
width: 28px;
|
||||
height: 35px;
|
||||
position: absolute;
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
@@ -542,8 +542,9 @@
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
#available-menu-items .accordion-section-title button {
|
||||
display: block;
|
||||
#available-menu-items .accordion-section-title button .toggle-indicator {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
width: 28px;
|
||||
height: 35px;
|
||||
position: absolute;
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
@@ -713,6 +713,11 @@ body #dashboard-widgets .postbox form .submit {
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
#network_dashboard_right_now p input {
|
||||
margin: 2px 1px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
/* Dashboard right now - Colors */
|
||||
|
||||
#dashboard_right_now .sub {
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
@@ -712,6 +712,11 @@ body #dashboard-widgets .postbox form .submit {
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
#network_dashboard_right_now p input {
|
||||
margin: 2px 1px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
/* Dashboard right now - Colors */
|
||||
|
||||
#dashboard_right_now .sub {
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -76,6 +76,14 @@
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
#titlewrap .skiplink:focus {
|
||||
clip: inherit;
|
||||
clip-path: inherit;
|
||||
left: 4px;
|
||||
top: 4px;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
input#link_description,
|
||||
input#link_url {
|
||||
width: 100%;
|
||||
@@ -1039,6 +1047,14 @@ form#tags-filter {
|
||||
white-space: normal;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
#edit-slug-box {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#titlewrap .skiplink:focus {
|
||||
top: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1004px) {
|
||||
@@ -1298,7 +1314,7 @@ div.tabs-panel-active:focus {
|
||||
/* Only visible in Windows High Contrast mode */
|
||||
outline: 2px solid transparent;
|
||||
}
|
||||
|
||||
.options-discussion-php .indent-children ul,
|
||||
#front-page-warning,
|
||||
#front-static-pages ul,
|
||||
ul.export-filters,
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -75,6 +75,14 @@
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
#titlewrap .skiplink:focus {
|
||||
clip: inherit;
|
||||
clip-path: inherit;
|
||||
right: 4px;
|
||||
top: 4px;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
input#link_description,
|
||||
input#link_url {
|
||||
width: 100%;
|
||||
@@ -1038,6 +1046,14 @@ form#tags-filter {
|
||||
white-space: normal;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
#edit-slug-box {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#titlewrap .skiplink:focus {
|
||||
top: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1004px) {
|
||||
@@ -1297,7 +1313,7 @@ div.tabs-panel-active:focus {
|
||||
/* Only visible in Windows High Contrast mode */
|
||||
outline: 2px solid transparent;
|
||||
}
|
||||
|
||||
.options-discussion-php .indent-children ul,
|
||||
#front-page-warning,
|
||||
#front-static-pages ul,
|
||||
ul.export-filters,
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -804,6 +804,8 @@ ul#add-to-blog-users {
|
||||
padding: 9px 0;
|
||||
line-height: 1.6;
|
||||
max-width: 270px;
|
||||
border-radius: 4px;
|
||||
background: #f0f0f1;
|
||||
}
|
||||
|
||||
.button-add-site-icon:focus,
|
||||
@@ -811,18 +813,6 @@ ul#add-to-blog-users {
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.site-icon-section .favicon-preview {
|
||||
float: right;
|
||||
}
|
||||
.site-icon-section .app-icon-preview {
|
||||
float: right;
|
||||
margin: 0 20px;
|
||||
}
|
||||
|
||||
.site-icon-section .site-icon-preview img {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.button-add-site-icon:focus {
|
||||
background-color: #fff;
|
||||
border-color: #3582c4;
|
||||
@@ -1013,6 +1003,7 @@ table.form-table td .updated p {
|
||||
}
|
||||
|
||||
.application-password-display input.code {
|
||||
margin-bottom: 6px;
|
||||
width: 19em;
|
||||
}
|
||||
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -803,6 +803,8 @@ ul#add-to-blog-users {
|
||||
padding: 9px 0;
|
||||
line-height: 1.6;
|
||||
max-width: 270px;
|
||||
border-radius: 4px;
|
||||
background: #f0f0f1;
|
||||
}
|
||||
|
||||
.button-add-site-icon:focus,
|
||||
@@ -810,18 +812,6 @@ ul#add-to-blog-users {
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.site-icon-section .favicon-preview {
|
||||
float: left;
|
||||
}
|
||||
.site-icon-section .app-icon-preview {
|
||||
float: left;
|
||||
margin: 0 20px;
|
||||
}
|
||||
|
||||
.site-icon-section .site-icon-preview img {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.button-add-site-icon:focus {
|
||||
background-color: #fff;
|
||||
border-color: #3582c4;
|
||||
@@ -1012,6 +1002,7 @@ table.form-table td .updated p {
|
||||
}
|
||||
|
||||
.application-password-display input.code {
|
||||
margin-bottom: 6px;
|
||||
width: 19em;
|
||||
}
|
||||
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -320,7 +320,6 @@ table.fixed {
|
||||
|
||||
.fixed .column-role,
|
||||
.fixed .column-posts {
|
||||
-webkit-hyphens: auto;
|
||||
hyphens: auto;
|
||||
}
|
||||
|
||||
@@ -1132,7 +1131,7 @@ tr.inline-edit-row td {
|
||||
width: 75%;
|
||||
}
|
||||
|
||||
.inline-edit-row #post_parent,
|
||||
.inline-edit-row select[name="post_parent"],
|
||||
.inline-edit-row select[name="page_template"] {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
@@ -319,7 +319,6 @@ table.fixed {
|
||||
|
||||
.fixed .column-role,
|
||||
.fixed .column-posts {
|
||||
-webkit-hyphens: auto;
|
||||
hyphens: auto;
|
||||
}
|
||||
|
||||
@@ -1131,7 +1130,7 @@ tr.inline-edit-row td {
|
||||
width: 75%;
|
||||
}
|
||||
|
||||
.inline-edit-row #post_parent,
|
||||
.inline-edit-row select[name="post_parent"],
|
||||
.inline-edit-row select[name="page_template"] {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -225,7 +225,7 @@ p {
|
||||
margin: 1.1em 0;
|
||||
}
|
||||
|
||||
.login h1.admin-email__heading {
|
||||
.login .admin-email__heading {
|
||||
border-bottom: 1px #f0f0f1 solid;
|
||||
color: #50575e;
|
||||
font-weight: normal;
|
||||
@@ -270,11 +270,11 @@ p {
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
.login h1 {
|
||||
.login .wp-login-logo {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.login h1 a {
|
||||
.login .wp-login-logo a {
|
||||
background-image: url(../images/w-logo-blue.png?ver=20131202);
|
||||
background-image: none, url(../images/wordpress-logo.svg?ver=20131107);
|
||||
background-size: 84px;
|
||||
@@ -324,13 +324,13 @@ p {
|
||||
|
||||
.login #nav a:hover,
|
||||
.login #backtoblog a:hover,
|
||||
.login h1 a:hover {
|
||||
.login .wp-login-logo a:hover {
|
||||
color: #135e96;
|
||||
}
|
||||
|
||||
.login #nav a:focus,
|
||||
.login #backtoblog a:focus,
|
||||
.login h1 a:focus {
|
||||
.login .wp-login-logo a:focus {
|
||||
color: #043959;
|
||||
}
|
||||
|
||||
@@ -391,7 +391,7 @@ body.interim-login {
|
||||
margin: 5px auto 20px;
|
||||
}
|
||||
|
||||
.interim-login.login h1 a {
|
||||
.interim-login.login .wp-login-logo a {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -224,7 +224,7 @@ p {
|
||||
margin: 1.1em 0;
|
||||
}
|
||||
|
||||
.login h1.admin-email__heading {
|
||||
.login .admin-email__heading {
|
||||
border-bottom: 1px #f0f0f1 solid;
|
||||
color: #50575e;
|
||||
font-weight: normal;
|
||||
@@ -269,11 +269,11 @@ p {
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
.login h1 {
|
||||
.login .wp-login-logo {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.login h1 a {
|
||||
.login .wp-login-logo a {
|
||||
background-image: url(../images/w-logo-blue.png?ver=20131202);
|
||||
background-image: none, url(../images/wordpress-logo.svg?ver=20131107);
|
||||
background-size: 84px;
|
||||
@@ -323,13 +323,13 @@ p {
|
||||
|
||||
.login #nav a:hover,
|
||||
.login #backtoblog a:hover,
|
||||
.login h1 a:hover {
|
||||
.login .wp-login-logo a:hover {
|
||||
color: #135e96;
|
||||
}
|
||||
|
||||
.login #nav a:focus,
|
||||
.login #backtoblog a:focus,
|
||||
.login h1 a:focus {
|
||||
.login .wp-login-logo a:focus {
|
||||
color: #043959;
|
||||
}
|
||||
|
||||
@@ -390,7 +390,7 @@ body.interim-login {
|
||||
margin: 5px auto 20px;
|
||||
}
|
||||
|
||||
.interim-login.login h1 a {
|
||||
.interim-login.login .wp-login-logo a {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -828,22 +828,13 @@ body.menu-max-depth-11 { min-width: 1280px !important; }
|
||||
display: none;
|
||||
}
|
||||
|
||||
.menu-item-settings .description-thin,
|
||||
.menu-item-settings .description-wide {
|
||||
margin-left: 10px;
|
||||
float: right;
|
||||
.description-group {
|
||||
display: flex;
|
||||
column-gap: 10px;
|
||||
}
|
||||
|
||||
.description-thin {
|
||||
width: calc(50% - 5px);
|
||||
}
|
||||
|
||||
.menu-item-settings .description-thin + .description-thin {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.description-wide {
|
||||
width: 100%;
|
||||
.description-group > * {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.menu-item-actions {
|
||||
@@ -952,8 +943,7 @@ body.menu-max-depth-11 { min-width: 1280px !important; }
|
||||
}
|
||||
|
||||
.menu-item-bar .menu-item-handle,
|
||||
.menu-item-settings,
|
||||
.description-wide {
|
||||
.menu-item-settings {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
@@ -961,9 +951,8 @@ body.menu-max-depth-11 { min-width: 1280px !important; }
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.menu-item-settings .description-thin,
|
||||
.menu-item-settings .description-wide {
|
||||
width: 100%;
|
||||
.menu-item-settings .description-group {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.menu-item-settings input {
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
@@ -827,22 +827,13 @@ body.menu-max-depth-11 { min-width: 1280px !important; }
|
||||
display: none;
|
||||
}
|
||||
|
||||
.menu-item-settings .description-thin,
|
||||
.menu-item-settings .description-wide {
|
||||
margin-right: 10px;
|
||||
float: left;
|
||||
.description-group {
|
||||
display: flex;
|
||||
column-gap: 10px;
|
||||
}
|
||||
|
||||
.description-thin {
|
||||
width: calc(50% - 5px);
|
||||
}
|
||||
|
||||
.menu-item-settings .description-thin + .description-thin {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.description-wide {
|
||||
width: 100%;
|
||||
.description-group > * {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.menu-item-actions {
|
||||
@@ -951,8 +942,7 @@ body.menu-max-depth-11 { min-width: 1280px !important; }
|
||||
}
|
||||
|
||||
.menu-item-bar .menu-item-handle,
|
||||
.menu-item-settings,
|
||||
.description-wide {
|
||||
.menu-item-settings {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
@@ -960,9 +950,8 @@ body.menu-max-depth-11 { min-width: 1280px !important; }
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.menu-item-settings .description-thin,
|
||||
.menu-item-settings .description-wide {
|
||||
width: 100%;
|
||||
.menu-item-settings .description-group {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.menu-item-settings input {
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -459,8 +459,7 @@ div.revisions-controls > .wp-slider > .ui-slider-handle {
|
||||
touch-action: none;
|
||||
}
|
||||
|
||||
.wp-slider .ui-slider-handle,
|
||||
.wp-slider .ui-slider-handle.focus {
|
||||
.wp-slider .ui-slider-handle {
|
||||
background: #f6f7f7;
|
||||
border: 1px solid #c3c4c7;
|
||||
box-shadow: 0 1px 0 #c3c4c7;
|
||||
@@ -480,6 +479,15 @@ div.revisions-controls > .wp-slider > .ui-slider-handle {
|
||||
transform: translateY(1px);
|
||||
}
|
||||
|
||||
.wp-slider .ui-slider-handle:focus,
|
||||
.wp-slider .ui-slider-handle.ui-state-focus {
|
||||
background: #f0f0f1;
|
||||
border-color: #8c8f94;
|
||||
box-shadow: 0 0 0 2px #2271b1;
|
||||
/* Only visible in Windows High Contrast mode */
|
||||
outline: 2px solid transparent;
|
||||
}
|
||||
|
||||
.wp-slider .ui-slider-handle:before {
|
||||
background: none;
|
||||
position: absolute;
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
@@ -458,8 +458,7 @@ div.revisions-controls > .wp-slider > .ui-slider-handle {
|
||||
touch-action: none;
|
||||
}
|
||||
|
||||
.wp-slider .ui-slider-handle,
|
||||
.wp-slider .ui-slider-handle.focus {
|
||||
.wp-slider .ui-slider-handle {
|
||||
background: #f6f7f7;
|
||||
border: 1px solid #c3c4c7;
|
||||
box-shadow: 0 1px 0 #c3c4c7;
|
||||
@@ -479,6 +478,15 @@ div.revisions-controls > .wp-slider > .ui-slider-handle {
|
||||
transform: translateY(1px);
|
||||
}
|
||||
|
||||
.wp-slider .ui-slider-handle:focus,
|
||||
.wp-slider .ui-slider-handle.ui-state-focus {
|
||||
background: #f0f0f1;
|
||||
border-color: #8c8f94;
|
||||
box-shadow: 0 0 0 2px #2271b1;
|
||||
/* Only visible in Windows High Contrast mode */
|
||||
outline: 2px solid transparent;
|
||||
}
|
||||
|
||||
.wp-slider .ui-slider-handle:before {
|
||||
background: none;
|
||||
position: absolute;
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -3,74 +3,199 @@
|
||||
28.0 - Site Icon
|
||||
------------------------------------------------------------------------------*/
|
||||
|
||||
.site-icon-preview .favicon-preview {
|
||||
margin: 5px 0 20px;
|
||||
overflow: hidden;
|
||||
.site-icon-section {
|
||||
--site-icon-removal: #b32d2e;
|
||||
}
|
||||
|
||||
.site-icon-preview {
|
||||
--site-icon-input-border: #8c8f94;
|
||||
--site-icon-preview-background: #fff;
|
||||
--site-icon-preview-browser-top: #dcdcde;
|
||||
--site-icon-preview-browser-bottom: #a7aaad;
|
||||
--site-icon-preview-browser-border: rgba(255, 255, 255, 0.2);
|
||||
--site-icon-address-bar-background: #f0f0f1;
|
||||
--site-icon-address-bar-close: #646970;
|
||||
--site-icon-address-bar-text: #3c434a;
|
||||
--site-icon-shadow-1: rgba(0, 0, 0, 0.1);
|
||||
--site-icon-shadow-2: rgba(0, 0, 0, 0.2);
|
||||
--site-icon-shadow-3: rgba(0, 0, 0, 0.5);
|
||||
|
||||
direction: initial;
|
||||
display: flex;
|
||||
height: 60px;
|
||||
padding: 8px 8px 0 0;
|
||||
align-items: flex-start;
|
||||
position: relative;
|
||||
max-width: 180px;
|
||||
overflow: hidden;
|
||||
box-sizing: border-box;
|
||||
border: 1px solid var(--site-icon-input-border);
|
||||
border-radius: 4px;
|
||||
background-color: var(--site-icon-preview-background);
|
||||
width: 275px;
|
||||
}
|
||||
|
||||
.site-icon-preview .favicon,
|
||||
.site-icon-preview .browser-title {
|
||||
height: 16px;
|
||||
right: 88px;
|
||||
overflow: hidden;
|
||||
@media (prefers-color-scheme: dark) {
|
||||
.site-icon-preview {
|
||||
--site-icon-preview-browser-top: #2c3338;
|
||||
--site-icon-preview-browser-bottom: #111;
|
||||
--site-icon-address-bar-background: #3c434a;
|
||||
--site-icon-address-bar-close: #f0f0f1;
|
||||
--site-icon-address-bar-text: #f0f0f1;
|
||||
}
|
||||
}
|
||||
|
||||
.site-icon-preview.settings {
|
||||
height: 88px;
|
||||
padding: 16px 16px 0 0;
|
||||
width: 350px;
|
||||
margin: 0 0 16px 0;
|
||||
}
|
||||
|
||||
.site-icon-preview.crop {
|
||||
width: 258px;
|
||||
height: 100%;
|
||||
display: grid;
|
||||
grid-template-columns: 8px 1fr;
|
||||
grid-template-rows: 64px 1fr;
|
||||
padding-right: 0;
|
||||
row-gap: 16px;
|
||||
direction: inherit;
|
||||
}
|
||||
|
||||
.site-icon-preview.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.site-icon-preview .direction-wrap {
|
||||
grid-template-columns: 44px 1fr;
|
||||
gap: 8px;
|
||||
display: grid;
|
||||
direction: rtl;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.site-icon-preview.settings .direction-wrap {
|
||||
grid-template-columns: 58px 1fr;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.site-icon-preview:after {
|
||||
--after-size: 150%;
|
||||
aspect-ratio: 1/1;
|
||||
content: "";
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 16px;
|
||||
top: 0;
|
||||
right: 0;
|
||||
width: var(--after-size);;
|
||||
transform: translate(calc(-1*(var(--after-size) * -0.125)), calc(var(--after-size) * -0.125));
|
||||
filter: blur(5px);
|
||||
opacity: 0.5;
|
||||
background: var(--site-icon-url);
|
||||
}
|
||||
|
||||
.site-icon-preview .favicon {
|
||||
width: 16px;
|
||||
.site-icon-preview .app-icon-preview {
|
||||
aspect-ratio: 1/1;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 1px 5px 0 var(--site-icon-shadow-3);
|
||||
flex-shrink: 0;
|
||||
width: 100%;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.site-icon-preview .browser-title {
|
||||
right: 109px;
|
||||
width: 72px;
|
||||
.site-icon-preview-browser {
|
||||
display: flex;
|
||||
padding: 4px 12px 0 4px;
|
||||
align-items: flex-start;
|
||||
gap: 16px;
|
||||
flex: 1 0 0;
|
||||
z-index: 1;
|
||||
border-top-right-radius: 10px;
|
||||
border-top: 1px solid var(--site-icon-preview-browser-border);
|
||||
border-right: 1px solid var(--site-icon-preview-browser-border);
|
||||
background: linear-gradient(-180deg, var(--site-icon-preview-browser-top) 0%, var(--site-icon-preview-browser-bottom) 100%);
|
||||
box-shadow: 0 10px 22px 0 var(--site-icon-shadow-2);
|
||||
}
|
||||
|
||||
.site-icon-preview .browser-buttons {
|
||||
width: 48px;
|
||||
height: 40px;
|
||||
fill: var(--site-icon-input-border);
|
||||
}
|
||||
|
||||
.site-icon-preview-tab {
|
||||
padding: 8px;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
flex: 1 0 0;
|
||||
border-radius: 4px;
|
||||
background-color: var(--site-icon-address-bar-background);
|
||||
box-shadow: 0 1px 3px 0 var(--site-icon-shadow-1);
|
||||
display: grid;
|
||||
grid-template-columns: 24px auto 24px;
|
||||
}
|
||||
|
||||
.site-icon-preview-browser .browser-icon-preview {
|
||||
box-shadow: 0 0 20px 0 var(--site-icon-shadow-1);
|
||||
}
|
||||
|
||||
.site-icon-preview-tab > img,
|
||||
.site-icon-preview-tab > svg {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
}
|
||||
|
||||
.site-icon-preview-tab > svg {
|
||||
fill: var(--site-icon-address-bar-close);
|
||||
}
|
||||
|
||||
.site-icon-preview-site-title {
|
||||
color: var(--site-icon-address-bar-text);
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.site-icon-preview .app-icon-preview {
|
||||
background-color: #000;
|
||||
border-radius: 16px;
|
||||
height: 64px;
|
||||
overflow: hidden;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.site-icon-preview-crop-modal .image-preview-wrap.app-icon-preview {
|
||||
width: 64px;
|
||||
margin-top: 5px;
|
||||
height: 64px;
|
||||
margin: 0;
|
||||
grid-column: 2;
|
||||
}
|
||||
|
||||
/* rtl:ignore */
|
||||
.site-icon-preview .favicon,
|
||||
.site-icon-preview .app-icon-preview {
|
||||
direction: ltr;
|
||||
.site-icon-preview-crop-modal .site-icon-preview-browser {
|
||||
grid-column: 2;
|
||||
}
|
||||
|
||||
.customize-control-site_icon .favicon-preview {
|
||||
float: right;
|
||||
margin-left: 12px;
|
||||
margin-bottom: 0;
|
||||
.site-icon-preview-crop-modal .image-preview-wrap {
|
||||
overflow: hidden;
|
||||
aspect-ratio: 1/1;
|
||||
}
|
||||
|
||||
.customize-control-site_icon .app-icon-preview {
|
||||
margin-top: 9px;
|
||||
.site-icon-preview-crop-modal .image-preview-wrap.browser {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
}
|
||||
|
||||
.site-icon-section button.reset {
|
||||
color: #b32d2e;
|
||||
button.reset.remove-site-icon {
|
||||
color: var(--site-icon-removal);
|
||||
text-decoration: none;
|
||||
border-color: transparent;
|
||||
box-shadow: none;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.site-icon-section button.reset:focus,
|
||||
.site-icon-section button.reset:hover {
|
||||
background: #b32d2e;
|
||||
button.reset.remove-site-icon:focus,
|
||||
button.reset.remove-site-icon:hover {
|
||||
background: var(--site-icon-removal);
|
||||
color: #fff;
|
||||
border-color: #b32d2e;
|
||||
box-shadow: 0 0 0 1px #b32d2e;
|
||||
border-color: var(--site-icon-removal);
|
||||
box-shadow: 0 0 0 1px var(--site-icon-removal);
|
||||
}
|
||||
|
||||
.site-icon-section .action-buttons {
|
||||
.site-icon-action-buttons {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 10px;
|
||||
|
||||
+1
-1
@@ -1,2 +1,2 @@
|
||||
/*! This file is auto-generated */
|
||||
.site-icon-preview .favicon-preview{margin:5px 0 20px;overflow:hidden;position:relative;max-width:180px}.site-icon-preview .browser-title,.site-icon-preview .favicon{height:16px;right:88px;overflow:hidden;position:absolute;top:16px}.site-icon-preview .favicon{width:16px}.site-icon-preview .browser-title{right:109px;width:72px;white-space:nowrap}.site-icon-preview .app-icon-preview{background-color:#000;border-radius:16px;height:64px;overflow:hidden;width:64px;margin-top:5px}.site-icon-preview .app-icon-preview,.site-icon-preview .favicon{direction:ltr}.customize-control-site_icon .favicon-preview{float:right;margin-left:12px;margin-bottom:0}.customize-control-site_icon .app-icon-preview{margin-top:9px}.site-icon-section button.reset{color:#b32d2e;text-decoration:none;border-color:transparent;box-shadow:none;background:0 0}.site-icon-section button.reset:focus,.site-icon-section button.reset:hover{background:#b32d2e;color:#fff;border-color:#b32d2e;box-shadow:0 0 0 1px #b32d2e}.site-icon-section .action-buttons{display:flex;flex-wrap:wrap;gap:10px}
|
||||
.site-icon-section{--site-icon-removal:#b32d2e}.site-icon-preview{--site-icon-input-border:#8c8f94;--site-icon-preview-background:#fff;--site-icon-preview-browser-top:#dcdcde;--site-icon-preview-browser-bottom:#a7aaad;--site-icon-preview-browser-border:rgba(255, 255, 255, 0.2);--site-icon-address-bar-background:#f0f0f1;--site-icon-address-bar-close:#646970;--site-icon-address-bar-text:#3c434a;--site-icon-shadow-1:rgba(0, 0, 0, 0.1);--site-icon-shadow-2:rgba(0, 0, 0, 0.2);--site-icon-shadow-3:rgba(0, 0, 0, 0.5);direction:initial;display:flex;height:60px;padding:8px 8px 0 0;align-items:flex-start;position:relative;overflow:hidden;box-sizing:border-box;border:1px solid var(--site-icon-input-border);border-radius:4px;background-color:var(--site-icon-preview-background);width:275px}@media (prefers-color-scheme:dark){.site-icon-preview{--site-icon-preview-browser-top:#2c3338;--site-icon-preview-browser-bottom:#111;--site-icon-address-bar-background:#3c434a;--site-icon-address-bar-close:#f0f0f1;--site-icon-address-bar-text:#f0f0f1}}.site-icon-preview.settings{height:88px;padding:16px 16px 0 0;width:350px;margin:0 0 16px 0}.site-icon-preview.crop{width:258px;height:100%;display:grid;grid-template-columns:8px 1fr;grid-template-rows:64px 1fr;padding-right:0;row-gap:16px;direction:inherit}.site-icon-preview.hidden{display:none}.site-icon-preview .direction-wrap{grid-template-columns:44px 1fr;gap:8px;display:grid;direction:rtl;height:100%;width:100%}.site-icon-preview.settings .direction-wrap{grid-template-columns:58px 1fr;gap:16px}.site-icon-preview:after{--after-size:150%;aspect-ratio:1/1;content:"";display:block;position:absolute;top:0;right:0;width:var(--after-size);transform:translate(calc(-1*(var(--after-size) * -.125)),calc(var(--after-size) * -.125));filter:blur(5px);opacity:.5;background:var(--site-icon-url)}.site-icon-preview .app-icon-preview{aspect-ratio:1/1;border-radius:10px;box-shadow:0 1px 5px 0 var(--site-icon-shadow-3);flex-shrink:0;width:100%;z-index:1}.site-icon-preview-browser{display:flex;padding:4px 12px 0 4px;align-items:flex-start;gap:16px;flex:1 0 0;z-index:1;border-top-right-radius:10px;border-top:1px solid var(--site-icon-preview-browser-border);border-right:1px solid var(--site-icon-preview-browser-border);background:linear-gradient(-180deg,var(--site-icon-preview-browser-top) 0,var(--site-icon-preview-browser-bottom) 100%);box-shadow:0 10px 22px 0 var(--site-icon-shadow-2)}.site-icon-preview .browser-buttons{width:48px;height:40px;fill:var(--site-icon-input-border)}.site-icon-preview-tab{padding:8px;align-items:center;gap:8px;flex:1 0 0;border-radius:4px;background-color:var(--site-icon-address-bar-background);box-shadow:0 1px 3px 0 var(--site-icon-shadow-1);display:grid;grid-template-columns:24px auto 24px}.site-icon-preview-browser .browser-icon-preview{box-shadow:0 0 20px 0 var(--site-icon-shadow-1)}.site-icon-preview-tab>img,.site-icon-preview-tab>svg{width:24px;height:24px}.site-icon-preview-tab>svg{fill:var(--site-icon-address-bar-close)}.site-icon-preview-site-title{color:var(--site-icon-address-bar-text);text-overflow:ellipsis;white-space:nowrap;overflow:hidden;font-weight:500}.site-icon-preview-crop-modal .image-preview-wrap.app-icon-preview{width:64px;height:64px;margin:0;grid-column:2}.site-icon-preview-crop-modal .site-icon-preview-browser{grid-column:2}.site-icon-preview-crop-modal .image-preview-wrap{overflow:hidden;aspect-ratio:1/1}.site-icon-preview-crop-modal .image-preview-wrap.browser{width:24px;height:24px}button.reset.remove-site-icon{color:var(--site-icon-removal);text-decoration:none;border-color:transparent;box-shadow:none;background:0 0}button.reset.remove-site-icon:focus,button.reset.remove-site-icon:hover{background:var(--site-icon-removal);color:#fff;border-color:var(--site-icon-removal);box-shadow:0 0 0 1px var(--site-icon-removal)}.site-icon-action-buttons{display:flex;flex-wrap:wrap;gap:10px}
|
||||
+167
-42
@@ -2,74 +2,199 @@
|
||||
28.0 - Site Icon
|
||||
------------------------------------------------------------------------------*/
|
||||
|
||||
.site-icon-preview .favicon-preview {
|
||||
margin: 5px 0 20px;
|
||||
overflow: hidden;
|
||||
.site-icon-section {
|
||||
--site-icon-removal: #b32d2e;
|
||||
}
|
||||
|
||||
.site-icon-preview {
|
||||
--site-icon-input-border: #8c8f94;
|
||||
--site-icon-preview-background: #fff;
|
||||
--site-icon-preview-browser-top: #dcdcde;
|
||||
--site-icon-preview-browser-bottom: #a7aaad;
|
||||
--site-icon-preview-browser-border: rgba(255, 255, 255, 0.2);
|
||||
--site-icon-address-bar-background: #f0f0f1;
|
||||
--site-icon-address-bar-close: #646970;
|
||||
--site-icon-address-bar-text: #3c434a;
|
||||
--site-icon-shadow-1: rgba(0, 0, 0, 0.1);
|
||||
--site-icon-shadow-2: rgba(0, 0, 0, 0.2);
|
||||
--site-icon-shadow-3: rgba(0, 0, 0, 0.5);
|
||||
|
||||
direction: initial;
|
||||
display: flex;
|
||||
height: 60px;
|
||||
padding: 8px 0 0 8px;
|
||||
align-items: flex-start;
|
||||
position: relative;
|
||||
max-width: 180px;
|
||||
}
|
||||
|
||||
.site-icon-preview .favicon,
|
||||
.site-icon-preview .browser-title {
|
||||
height: 16px;
|
||||
left: 88px;
|
||||
overflow: hidden;
|
||||
position: absolute;
|
||||
top: 16px;
|
||||
box-sizing: border-box;
|
||||
border: 1px solid var(--site-icon-input-border);
|
||||
border-radius: 4px;
|
||||
background-color: var(--site-icon-preview-background);
|
||||
width: 275px;
|
||||
}
|
||||
|
||||
.site-icon-preview .favicon {
|
||||
width: 16px;
|
||||
@media (prefers-color-scheme: dark) {
|
||||
.site-icon-preview {
|
||||
--site-icon-preview-browser-top: #2c3338;
|
||||
--site-icon-preview-browser-bottom: #111;
|
||||
--site-icon-address-bar-background: #3c434a;
|
||||
--site-icon-address-bar-close: #f0f0f1;
|
||||
--site-icon-address-bar-text: #f0f0f1;
|
||||
}
|
||||
}
|
||||
|
||||
.site-icon-preview .browser-title {
|
||||
left: 109px;
|
||||
width: 72px;
|
||||
white-space: nowrap;
|
||||
.site-icon-preview.settings {
|
||||
height: 88px;
|
||||
padding: 16px 0 0 16px;
|
||||
width: 350px;
|
||||
margin: 0 0 16px 0;
|
||||
}
|
||||
|
||||
.site-icon-preview .app-icon-preview {
|
||||
background-color: #000;
|
||||
border-radius: 16px;
|
||||
height: 64px;
|
||||
overflow: hidden;
|
||||
width: 64px;
|
||||
margin-top: 5px;
|
||||
.site-icon-preview.crop {
|
||||
width: 258px;
|
||||
height: 100%;
|
||||
display: grid;
|
||||
grid-template-columns: 8px 1fr;
|
||||
grid-template-rows: 64px 1fr;
|
||||
padding-left: 0;
|
||||
row-gap: 16px;
|
||||
direction: inherit;
|
||||
}
|
||||
|
||||
/* rtl:ignore */
|
||||
.site-icon-preview .favicon,
|
||||
.site-icon-preview .app-icon-preview {
|
||||
.site-icon-preview.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.site-icon-preview .direction-wrap {
|
||||
grid-template-columns: 44px 1fr;
|
||||
gap: 8px;
|
||||
display: grid;
|
||||
direction: ltr;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.customize-control-site_icon .favicon-preview {
|
||||
float: left;
|
||||
margin-right: 12px;
|
||||
margin-bottom: 0;
|
||||
.site-icon-preview.settings .direction-wrap {
|
||||
grid-template-columns: 58px 1fr;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.customize-control-site_icon .app-icon-preview {
|
||||
margin-top: 9px;
|
||||
.site-icon-preview:after {
|
||||
--after-size: 150%;
|
||||
aspect-ratio: 1/1;
|
||||
content: "";
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: var(--after-size);;
|
||||
transform: translate(calc(var(--after-size) * -0.125), calc(var(--after-size) * -0.125));
|
||||
filter: blur(5px);
|
||||
opacity: 0.5;
|
||||
background: var(--site-icon-url);
|
||||
}
|
||||
|
||||
.site-icon-section button.reset {
|
||||
color: #b32d2e;
|
||||
.site-icon-preview .app-icon-preview {
|
||||
aspect-ratio: 1/1;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 1px 5px 0 var(--site-icon-shadow-3);
|
||||
flex-shrink: 0;
|
||||
width: 100%;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.site-icon-preview-browser {
|
||||
display: flex;
|
||||
padding: 4px 4px 0 12px;
|
||||
align-items: flex-start;
|
||||
gap: 16px;
|
||||
flex: 1 0 0;
|
||||
z-index: 1;
|
||||
border-top-left-radius: 10px;
|
||||
border-top: 1px solid var(--site-icon-preview-browser-border);
|
||||
border-left: 1px solid var(--site-icon-preview-browser-border);
|
||||
background: linear-gradient(180deg, var(--site-icon-preview-browser-top) 0%, var(--site-icon-preview-browser-bottom) 100%);
|
||||
box-shadow: 0 10px 22px 0 var(--site-icon-shadow-2);
|
||||
}
|
||||
|
||||
.site-icon-preview .browser-buttons {
|
||||
width: 48px;
|
||||
height: 40px;
|
||||
fill: var(--site-icon-input-border);
|
||||
}
|
||||
|
||||
.site-icon-preview-tab {
|
||||
padding: 8px;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
flex: 1 0 0;
|
||||
border-radius: 4px;
|
||||
background-color: var(--site-icon-address-bar-background);
|
||||
box-shadow: 0 1px 3px 0 var(--site-icon-shadow-1);
|
||||
display: grid;
|
||||
grid-template-columns: 24px auto 24px;
|
||||
}
|
||||
|
||||
.site-icon-preview-browser .browser-icon-preview {
|
||||
box-shadow: 0 0 20px 0 var(--site-icon-shadow-1);
|
||||
}
|
||||
|
||||
.site-icon-preview-tab > img,
|
||||
.site-icon-preview-tab > svg {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
}
|
||||
|
||||
.site-icon-preview-tab > svg {
|
||||
fill: var(--site-icon-address-bar-close);
|
||||
}
|
||||
|
||||
.site-icon-preview-site-title {
|
||||
color: var(--site-icon-address-bar-text);
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.site-icon-preview-crop-modal .image-preview-wrap.app-icon-preview {
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
margin: 0;
|
||||
grid-column: 2;
|
||||
}
|
||||
|
||||
.site-icon-preview-crop-modal .site-icon-preview-browser {
|
||||
grid-column: 2;
|
||||
}
|
||||
|
||||
.site-icon-preview-crop-modal .image-preview-wrap {
|
||||
overflow: hidden;
|
||||
aspect-ratio: 1/1;
|
||||
}
|
||||
|
||||
.site-icon-preview-crop-modal .image-preview-wrap.browser {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
}
|
||||
|
||||
button.reset.remove-site-icon {
|
||||
color: var(--site-icon-removal);
|
||||
text-decoration: none;
|
||||
border-color: transparent;
|
||||
box-shadow: none;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.site-icon-section button.reset:focus,
|
||||
.site-icon-section button.reset:hover {
|
||||
background: #b32d2e;
|
||||
button.reset.remove-site-icon:focus,
|
||||
button.reset.remove-site-icon:hover {
|
||||
background: var(--site-icon-removal);
|
||||
color: #fff;
|
||||
border-color: #b32d2e;
|
||||
box-shadow: 0 0 0 1px #b32d2e;
|
||||
border-color: var(--site-icon-removal);
|
||||
box-shadow: 0 0 0 1px var(--site-icon-removal);
|
||||
}
|
||||
|
||||
.site-icon-section .action-buttons {
|
||||
.site-icon-action-buttons {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 10px;
|
||||
|
||||
Vendored
+1
-1
@@ -1,2 +1,2 @@
|
||||
/*! This file is auto-generated */
|
||||
.site-icon-preview .favicon-preview{margin:5px 0 20px;overflow:hidden;position:relative;max-width:180px}.site-icon-preview .browser-title,.site-icon-preview .favicon{height:16px;left:88px;overflow:hidden;position:absolute;top:16px}.site-icon-preview .favicon{width:16px}.site-icon-preview .browser-title{left:109px;width:72px;white-space:nowrap}.site-icon-preview .app-icon-preview{background-color:#000;border-radius:16px;height:64px;overflow:hidden;width:64px;margin-top:5px}.site-icon-preview .app-icon-preview,.site-icon-preview .favicon{direction:ltr}.customize-control-site_icon .favicon-preview{float:left;margin-right:12px;margin-bottom:0}.customize-control-site_icon .app-icon-preview{margin-top:9px}.site-icon-section button.reset{color:#b32d2e;text-decoration:none;border-color:transparent;box-shadow:none;background:0 0}.site-icon-section button.reset:focus,.site-icon-section button.reset:hover{background:#b32d2e;color:#fff;border-color:#b32d2e;box-shadow:0 0 0 1px #b32d2e}.site-icon-section .action-buttons{display:flex;flex-wrap:wrap;gap:10px}
|
||||
.site-icon-section{--site-icon-removal:#b32d2e}.site-icon-preview{--site-icon-input-border:#8c8f94;--site-icon-preview-background:#fff;--site-icon-preview-browser-top:#dcdcde;--site-icon-preview-browser-bottom:#a7aaad;--site-icon-preview-browser-border:rgba(255, 255, 255, 0.2);--site-icon-address-bar-background:#f0f0f1;--site-icon-address-bar-close:#646970;--site-icon-address-bar-text:#3c434a;--site-icon-shadow-1:rgba(0, 0, 0, 0.1);--site-icon-shadow-2:rgba(0, 0, 0, 0.2);--site-icon-shadow-3:rgba(0, 0, 0, 0.5);direction:initial;display:flex;height:60px;padding:8px 0 0 8px;align-items:flex-start;position:relative;overflow:hidden;box-sizing:border-box;border:1px solid var(--site-icon-input-border);border-radius:4px;background-color:var(--site-icon-preview-background);width:275px}@media (prefers-color-scheme:dark){.site-icon-preview{--site-icon-preview-browser-top:#2c3338;--site-icon-preview-browser-bottom:#111;--site-icon-address-bar-background:#3c434a;--site-icon-address-bar-close:#f0f0f1;--site-icon-address-bar-text:#f0f0f1}}.site-icon-preview.settings{height:88px;padding:16px 0 0 16px;width:350px;margin:0 0 16px 0}.site-icon-preview.crop{width:258px;height:100%;display:grid;grid-template-columns:8px 1fr;grid-template-rows:64px 1fr;padding-left:0;row-gap:16px;direction:inherit}.site-icon-preview.hidden{display:none}.site-icon-preview .direction-wrap{grid-template-columns:44px 1fr;gap:8px;display:grid;direction:ltr;height:100%;width:100%}.site-icon-preview.settings .direction-wrap{grid-template-columns:58px 1fr;gap:16px}.site-icon-preview:after{--after-size:150%;aspect-ratio:1/1;content:"";display:block;position:absolute;top:0;left:0;width:var(--after-size);transform:translate(calc(var(--after-size) * -.125),calc(var(--after-size) * -.125));filter:blur(5px);opacity:.5;background:var(--site-icon-url)}.site-icon-preview .app-icon-preview{aspect-ratio:1/1;border-radius:10px;box-shadow:0 1px 5px 0 var(--site-icon-shadow-3);flex-shrink:0;width:100%;z-index:1}.site-icon-preview-browser{display:flex;padding:4px 4px 0 12px;align-items:flex-start;gap:16px;flex:1 0 0;z-index:1;border-top-left-radius:10px;border-top:1px solid var(--site-icon-preview-browser-border);border-left:1px solid var(--site-icon-preview-browser-border);background:linear-gradient(180deg,var(--site-icon-preview-browser-top) 0,var(--site-icon-preview-browser-bottom) 100%);box-shadow:0 10px 22px 0 var(--site-icon-shadow-2)}.site-icon-preview .browser-buttons{width:48px;height:40px;fill:var(--site-icon-input-border)}.site-icon-preview-tab{padding:8px;align-items:center;gap:8px;flex:1 0 0;border-radius:4px;background-color:var(--site-icon-address-bar-background);box-shadow:0 1px 3px 0 var(--site-icon-shadow-1);display:grid;grid-template-columns:24px auto 24px}.site-icon-preview-browser .browser-icon-preview{box-shadow:0 0 20px 0 var(--site-icon-shadow-1)}.site-icon-preview-tab>img,.site-icon-preview-tab>svg{width:24px;height:24px}.site-icon-preview-tab>svg{fill:var(--site-icon-address-bar-close)}.site-icon-preview-site-title{color:var(--site-icon-address-bar-text);text-overflow:ellipsis;white-space:nowrap;overflow:hidden;font-weight:500}.site-icon-preview-crop-modal .image-preview-wrap.app-icon-preview{width:64px;height:64px;margin:0;grid-column:2}.site-icon-preview-crop-modal .site-icon-preview-browser{grid-column:2}.site-icon-preview-crop-modal .image-preview-wrap{overflow:hidden;aspect-ratio:1/1}.site-icon-preview-crop-modal .image-preview-wrap.browser{width:24px;height:24px}button.reset.remove-site-icon{color:var(--site-icon-removal);text-decoration:none;border-color:transparent;box-shadow:none;background:0 0}button.reset.remove-site-icon:focus,button.reset.remove-site-icon:hover{background:var(--site-icon-removal);color:#fff;border-color:var(--site-icon-removal);box-shadow:0 0 0 1px var(--site-icon-removal)}.site-icon-action-buttons{display:flex;flex-wrap:wrap;gap:10px}
|
||||
@@ -424,7 +424,6 @@ div#widgets-left .widget-holder {
|
||||
word-wrap: break-word;
|
||||
-ms-word-break: break-all;
|
||||
word-break: break-word;
|
||||
-webkit-hyphens: auto;
|
||||
hyphens: auto;
|
||||
}
|
||||
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -423,7 +423,6 @@ div#widgets-left .widget-holder {
|
||||
word-wrap: break-word;
|
||||
-ms-word-break: break-all;
|
||||
word-break: break-word;
|
||||
-webkit-hyphens: auto;
|
||||
hyphens: auto;
|
||||
}
|
||||
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user