Upgrades.
This commit is contained in:
parent
db20346689
commit
936332ceb5
|
|
@ -47,18 +47,18 @@
|
||||||
</ol>
|
</ol>
|
||||||
|
|
||||||
<h2>Migrating from other systems</h2>
|
<h2>Migrating from other systems</h2>
|
||||||
<p>WordPress can <a href="https://wordpress.org/documentation/article/importing-content/">import from a number of systems</a>. First you need to get WordPress installed and working as described above, before using <a href="wp-admin/import.php">our import tools</a>.</p>
|
<p>WordPress can <a href="https://developer.wordpress.org/advanced-administration/wordpress/import/">import from a number of systems</a>. First you need to get WordPress installed and working as described above, before using <a href="wp-admin/import.php">our import tools</a>.</p>
|
||||||
|
|
||||||
<h2>System Requirements</h2>
|
<h2>System Requirements</h2>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="https://secure.php.net/">PHP</a> version <strong>7.0</strong> or greater.</li>
|
<li><a href="https://www.php.net/">PHP</a> version <strong>7.2.24</strong> or greater.</li>
|
||||||
<li><a href="https://www.mysql.com/">MySQL</a> version <strong>5.5.5</strong> or greater.</li>
|
<li><a href="https://www.mysql.com/">MySQL</a> version <strong>5.5.5</strong> or greater.</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<h3>Recommendations</h3>
|
<h3>Recommendations</h3>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="https://secure.php.net/">PHP</a> version <strong>7.4</strong> or greater.</li>
|
<li><a href="https://www.php.net/">PHP</a> version <strong>7.4</strong> or greater.</li>
|
||||||
<li><a href="https://www.mysql.com/">MySQL</a> version <strong>8.0</strong> or greater OR <a href="https://mariadb.org/">MariaDB</a> version <strong>10.4</strong> or greater.</li>
|
<li><a href="https://www.mysql.com/">MySQL</a> version <strong>8.0</strong> or greater OR <a href="https://mariadb.org/">MariaDB</a> version <strong>10.5</strong> or greater.</li>
|
||||||
<li>The <a href="https://httpd.apache.org/docs/2.2/mod/mod_rewrite.html">mod_rewrite</a> Apache module.</li>
|
<li>The <a href="https://httpd.apache.org/docs/2.2/mod/mod_rewrite.html">mod_rewrite</a> Apache module.</li>
|
||||||
<li><a href="https://wordpress.org/news/2016/12/moving-toward-ssl/">HTTPS</a> support.</li>
|
<li><a href="https://wordpress.org/news/2016/12/moving-toward-ssl/">HTTPS</a> support.</li>
|
||||||
<li>A link to <a href="https://wordpress.org/">wordpress.org</a> on your site.</li>
|
<li>A link to <a href="https://wordpress.org/">wordpress.org</a> on your site.</li>
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,18 @@ $title = _x( 'About', 'page title' );
|
||||||
|
|
||||||
list( $display_version ) = explode( '-', get_bloginfo( 'version' ) );
|
list( $display_version ) = explode( '-', get_bloginfo( 'version' ) );
|
||||||
|
|
||||||
|
$release_notes_url = sprintf(
|
||||||
|
/* translators: %s: WordPress version number. */
|
||||||
|
__( 'https://wordpress.org/documentation/wordpress-version/version-%s/' ),
|
||||||
|
'6-7'
|
||||||
|
);
|
||||||
|
|
||||||
|
$field_guide_url = sprintf(
|
||||||
|
/* translators: %s: WordPress version number. */
|
||||||
|
__( 'https://make.wordpress.org/core/wordpress-%s-field-guide/' ),
|
||||||
|
'6-7'
|
||||||
|
);
|
||||||
|
|
||||||
require_once ABSPATH . 'wp-admin/admin-header.php';
|
require_once ABSPATH . 'wp-admin/admin-header.php';
|
||||||
?>
|
?>
|
||||||
<div class="wrap about__container">
|
<div class="wrap about__container">
|
||||||
|
|
@ -43,18 +55,18 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
|
||||||
|
|
||||||
<div class="about__section changelog has-subtle-background-color">
|
<div class="about__section changelog has-subtle-background-color">
|
||||||
<div class="column">
|
<div class="column">
|
||||||
<h2><?php _e( 'Maintenance and Security Release' ); ?></h2>
|
<h2><?php _e( 'Maintenance and Security Releases' ); ?></h2>
|
||||||
<p>
|
<p>
|
||||||
<?php
|
<?php
|
||||||
printf(
|
printf(
|
||||||
/* translators: 1: WordPress version number, 2: Plural number of bugs. */
|
/* translators: 1: WordPress version number, 2: Plural number of bugs. */
|
||||||
_n(
|
_n(
|
||||||
'<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug.',
|
'<strong>Version %1$s</strong> addressed %2$s bug.',
|
||||||
'<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.',
|
'<strong>Version %1$s</strong> addressed %2$s bugs.',
|
||||||
12
|
35
|
||||||
),
|
),
|
||||||
'6.5.2',
|
'6.7.2',
|
||||||
'12'
|
'35'
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
<?php
|
<?php
|
||||||
|
|
@ -64,7 +76,32 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
|
||||||
sprintf(
|
sprintf(
|
||||||
/* translators: %s: WordPress version. */
|
/* translators: %s: WordPress version. */
|
||||||
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
|
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
|
||||||
sanitize_title( '6.5.2' )
|
sanitize_title( '6.7.2' )
|
||||||
|
)
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: 1: WordPress version number, 2: Plural number of bugs. */
|
||||||
|
_n(
|
||||||
|
'<strong>Version %1$s</strong> addressed %2$s bug.',
|
||||||
|
'<strong>Version %1$s</strong> addressed %2$s bugs.',
|
||||||
|
16
|
||||||
|
),
|
||||||
|
'6.7.1',
|
||||||
|
'16'
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: %s: HelpHub URL. */
|
||||||
|
__( 'For more information, see <a href="%s">the release notes</a>.' ),
|
||||||
|
sprintf(
|
||||||
|
/* translators: %s: WordPress version. */
|
||||||
|
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
|
||||||
|
sanitize_title( '6.7.1' )
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
|
|
@ -84,172 +121,122 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
|
||||||
?>
|
?>
|
||||||
</h2>
|
</h2>
|
||||||
<p class="is-subheading">
|
<p class="is-subheading">
|
||||||
<?php _e( 'Take your site-building experience further with WordPress 6.5. Explore more avenues to make it your own, with new features and enhancements that will help fine-tune your creative work. Discover the latest additions to the developer experience, with fresh foundational tools poised to transform the future of blocks.' ); ?>
|
<?php _e( 'WordPress 6.7 debuts the modern Twenty Twenty-Five theme, offering ultimate design flexibility for any blog at any scale. Control your site typography like never before with new font management features. The new Zoom Out feature lets you design your site with a macro view, stepping back from the details to bring the big picture to life.' ); ?>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="about__section has-2-columns">
|
<div class="about__section has-2-columns">
|
||||||
<div class="column is-vertically-aligned-center">
|
<div class="column is-vertically-aligned-center">
|
||||||
<div class="about__image">
|
<h3><?php _e( 'Introducing Twenty Twenty-Five' ); ?></h3>
|
||||||
<img src="https://s.w.org/images/core/6.5/1-font-library.webp" alt="" height="436" width="436" />
|
<p>
|
||||||
</div>
|
<strong><?php _e( 'Endless possibility without complexity' ); ?></strong><br />
|
||||||
|
<?php _e( 'Twenty Twenty-Five offers a flexible, design-focused theme that lets you build stunning sites with ease. Tailor your aesthetic with an array of style options, block patterns, and color palettes. Pared down to the essentials, this is a theme that can truly grow with you.' ); ?>
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="column is-vertically-aligned-center">
|
<div class="column is-vertically-aligned-center">
|
||||||
<h3><?php _e( 'Add and manage fonts across your site' ); ?></h3>
|
<div class="about__image">
|
||||||
<p><?php _e( 'The new Font Library puts you in control of an essential piece of your site’s design—typography—without coding or extra steps. Effortlessly install, remove, and activate local and Google Fonts across your site for any block theme. The ability to include custom typography collections gives site creators and publishers even more choice.' ); ?></p>
|
<img src="https://s.w.org/images/core/6.7/feature-tt5-2.webp" alt="" height="436" width="436" />
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="about__section has-2-columns">
|
<div class="about__section has-2-columns">
|
||||||
<div class="column is-vertically-aligned-center">
|
<div class="column is-vertically-aligned-center">
|
||||||
<h3><?php _e( 'Get more details from your style revisions' ); ?></h3>
|
<div class="about__image">
|
||||||
<p><?php _e( 'Work through creative projects with a more comprehensive picture of what’s been done—and what you can fall back on. Get details like time stamps, quick summaries, and a paginated list of total revisions. View revisions from the Style Book to see changes outside of what you’re working on. Revisions are also now available for templates and template parts.' ); ?></p>
|
<img src="https://s.w.org/images/core/6.7/feature-zoom-2.webp" alt="" height="436" width="436" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="column is-vertically-aligned-center">
|
||||||
|
<h3><?php _e( 'Get the big picture with Zoom Out' ); ?></h3>
|
||||||
|
<p>
|
||||||
|
<strong><?php _e( 'Explore your content from a new perspective' ); ?></strong><br />
|
||||||
|
<?php _e( 'Edit and arrange entire sections of your content like never before. A broader view of your site lets you add, edit, shuffle, or remove patterns to your liking. Embrace your inner architect.' ); ?>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="about__section has-2-columns">
|
||||||
|
<div class="column is-vertically-aligned-center">
|
||||||
|
<h3><?php _e( 'Connect blocks and custom fields with no hassle (or code)' ); ?></h3>
|
||||||
|
<p>
|
||||||
|
<strong><?php _e( 'A streamlined way to create dynamic content' ); ?></strong><br />
|
||||||
|
<?php _e( 'This feature introduces a new UI for connecting blocks to custom fields, putting control of dynamic content directly in the editor. Link blocks with fields in just a few clicks, enhancing flexibility and efficiency when building. Your clients will love you—as if they didn’t already.' ); ?>
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="column is-vertically-aligned-center">
|
<div class="column is-vertically-aligned-center">
|
||||||
<div class="about__image">
|
<div class="about__image">
|
||||||
<img src="https://s.w.org/images/core/6.5/3-style-revisions.webp" alt="" height="436" width="436" />
|
<img src="https://s.w.org/images/core/6.7/feature-block-bindings-2.webp" alt="" height="436" width="436" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="about__section has-3-columns">
|
<div class="about__section has-2-columns">
|
||||||
<div class="column">
|
<div class="column is-vertically-aligned-center">
|
||||||
<div class="about__image">
|
<div class="about__image">
|
||||||
<img src="https://s.w.org/images/core/6.5/4-background-images.webp" alt="" height="270" width="270" />
|
<img src="https://s.w.org/images/core/6.7/feature-font-presets-2.png" alt="" height="436" width="436" />
|
||||||
</div>
|
</div>
|
||||||
<h3 class="is-smaller-heading" style="margin-bottom:calc(var(--gap) / 4);"><?php _e( 'Do more with background images in Group blocks' ); ?></h3>
|
|
||||||
<p><?php _e( 'Control size, repeat, and focal point options so you can play around with subtle or splashy ways to add visual interest to layouts.' ); ?></p>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="column">
|
<div class="column is-vertically-aligned-center">
|
||||||
<div class="about__image">
|
<h3><?php _e( 'Embrace your inner font nerd' ); ?></h3>
|
||||||
<img src="https://s.w.org/images/core/6.5/5-cover-aspect-ratio.webp" alt="" height="270" width="270" />
|
<p>
|
||||||
</div>
|
<strong><?php _e( 'New style section, new possibilities' ); ?></strong><br />
|
||||||
<h3 class="is-smaller-heading" style="margin-bottom:calc(var(--gap) / 4);"><?php _e( 'Get more control over images in Cover blocks' ); ?></h3>
|
<?php _e( 'Create, edit, remove, and apply font size presets with the next addition to the Styles interface. Override theme defaults or create your own custom font size, complete with fluid typography for responsive font scaling. Get into the details!' ); ?>
|
||||||
<p><?php _e( 'Set aspect ratios for Cover block images and easily add color overlays that automatically source color from your chosen image.' ); ?></p>
|
</p>
|
||||||
</div>
|
|
||||||
<div class="column">
|
|
||||||
<div class="about__image">
|
|
||||||
<img src="https://s.w.org/images/core/6.5/6-box-shadow.webp" alt="" height="270" width="270" />
|
|
||||||
</div>
|
|
||||||
<h3 class="is-smaller-heading" style="margin-bottom:calc(var(--gap) / 4);"><?php _e( 'Add box shadow supports to even more blocks' ); ?></h3>
|
|
||||||
<p><?php _e( 'With shadow supports enabled, you can create layouts with visual depth or add a little personality to your design.' ); ?></p>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="about__section has-3-columns">
|
<hr class="is-invisible is-large" />
|
||||||
<div class="column">
|
|
||||||
<div class="about__image">
|
|
||||||
<img src="https://s.w.org/images/core/6.5/7-data-views.webp" alt="" height="270" width="270" />
|
|
||||||
</div>
|
|
||||||
<h3 class="is-smaller-heading" style="margin-bottom:calc(var(--gap) / 4);"><?php _e( 'Discover new Data Views' ); ?></h3>
|
|
||||||
<p><?php _e( 'Find and organize your data however you like with data views for pages, templates, patterns, and template parts. Arrange it in a table or grid view with the option to toggle fields and make bulk changes.' ); ?></p>
|
|
||||||
</div>
|
|
||||||
<div class="column">
|
|
||||||
<div class="about__image">
|
|
||||||
<img src="https://s.w.org/images/core/6.5/8-drag-n-drop.webp" alt="" height="270" width="270" />
|
|
||||||
</div>
|
|
||||||
<h3 class="is-smaller-heading" style="margin-bottom:calc(var(--gap) / 4);"><?php _e( 'Smoother drag-and-drop' ); ?></h3>
|
|
||||||
<p><?php _e( 'Feel the difference when you move things around, with helpful visual cues like displaced items in List View or frictionless dragging to anywhere in your workspace—from beginning to end.' ); ?></p>
|
|
||||||
</div>
|
|
||||||
<div class="column">
|
|
||||||
<div class="about__image">
|
|
||||||
<img src="https://s.w.org/images/core/6.5/9-link-controls.webp" alt="" height="270" width="270" />
|
|
||||||
</div>
|
|
||||||
<h3 class="is-smaller-heading" style="margin-bottom:calc(var(--gap) / 4);"><?php _e( 'Improved link controls' ); ?></h3>
|
|
||||||
<p><?php _e( 'Create and manage links easily with a more intuitive link-building experience, like a streamlined UI and a shortcut for copying links.' ); ?></p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<hr />
|
|
||||||
|
|
||||||
<div class="about__section has-2-columns">
|
<div class="about__section has-2-columns">
|
||||||
<div class="column">
|
<div class="column">
|
||||||
<div class="about__image">
|
<div class="about__image">
|
||||||
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
|
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
|
||||||
<rect width="48" height="48" rx="6" fill="#ededed"/>
|
<path fill="#1e1e1e" d="M32.455 17.72a1.592 1.592 0 0 1 .599 2.195l-7.637 12.99a1.653 1.653 0 0 1-2.235.589 1.592 1.592 0 0 1-.599-2.195l7.637-12.99a1.653 1.653 0 0 1 2.235-.589ZM13.774 23.21a1.653 1.653 0 0 0-2.236.589 1.592 1.592 0 0 0 .6 2.195l.944.536c.783.444 1.783.18 2.235-.588a1.592 1.592 0 0 0-.599-2.196l-.944-.535ZM16.432 17.72a1.653 1.653 0 0 1 2.236.588l.545.928a1.592 1.592 0 0 1-.599 2.196 1.653 1.653 0 0 1-2.235-.588l-.546-.928a1.592 1.592 0 0 1 .6-2.196ZM25.637 16.5c0-.888-.733-1.607-1.637-1.607s-1.636.72-1.636 1.607v1.071c0 .888.732 1.608 1.636 1.608.904 0 1.637-.72 1.637-1.608V16.5Z"/>
|
||||||
<path d="M18.9167 16.5C18.2757 16.5 17.661 16.7546 17.2078 17.2078C16.7546 17.661 16.5 18.2757 16.5 18.9167V21.3333H18.3125V18.9167C18.3125 18.7564 18.3762 18.6028 18.4895 18.4895C18.6028 18.3762 18.7564 18.3125 18.9167 18.3125H21.3333V16.5H18.9167ZM21.3333 29.1875H18.9167C18.7564 29.1875 18.6028 29.1238 18.4895 29.0105C18.3762 28.8972 18.3125 28.7436 18.3125 28.5833V26.1667H16.5V28.5833C16.5 29.2243 16.7546 29.839 17.2078 30.2922C17.661 30.7454 18.2757 31 18.9167 31H21.3333V29.1875ZM26.1667 31V29.1875H28.5833C28.7436 29.1875 28.8972 29.1238 29.0105 29.0105C29.1238 28.8972 29.1875 28.7436 29.1875 28.5833V26.1667H31V28.5833C31 29.2243 30.7454 29.839 30.2922 30.2922C29.839 30.7454 29.2243 31 28.5833 31H26.1667ZM28.5833 16.5C29.2243 16.5 29.839 16.7546 30.2922 17.2078C30.7454 17.661 31 18.2757 31 18.9167V21.3333H29.1875V18.9167C29.1875 18.7564 29.1238 18.6028 29.0105 18.4895C28.8972 18.3762 28.7436 18.3125 28.5833 18.3125H26.1667V16.5H28.5833Z" fill="#1e1e1e"/>
|
<path fill="#1e1e1e" fill-rule="evenodd" d="M4.91 27.75C4.91 17.395 13.455 9 24 9s19.091 8.395 19.091 18.75c0 3.909-1.22 7.542-3.305 10.548l-.488.702H8.702l-.488-.702A18.438 18.438 0 0 1 4.91 27.75ZM24 12.214c-8.736 0-15.818 6.956-15.818 15.536 0 2.943.832 5.692 2.277 8.036h27.082a15.25 15.25 0 0 0 2.277-8.036c0-8.58-7.082-15.536-15.818-15.536Z" clip-rule="evenodd"/>
|
||||||
</svg>
|
</svg>
|
||||||
</div>
|
</div>
|
||||||
<h3 style="margin-top:calc(var(--gap) * 0.75);margin-bottom:calc(var(--gap) * 0.5)"><?php _e( 'Bring interactions to blocks with the Interactivity API' ); ?></h3>
|
<h3><?php _e( 'Performance updates' ); ?></h3>
|
||||||
<p><?php _e( 'The Interactivity API offers developers a standardized method for building interactive front-end experiences with blocks. It simplifies the process, with fewer dependencies on external tooling, while maintaining optimal performance. Use it to create memorable user experiences, like fetching search results instantly or letting visitors interact with content in real time.' ); ?></p>
|
<p><?php _e( 'WordPress 6.7 delivers important performance updates, including faster pattern loading, optimized previews in the data views component, improved PHP 8+ support and removal of deprecated code, auto sizes for lazy-loaded images, and more efficient tag processing in the HTML API.' ); ?></p>
|
||||||
</div>
|
</div>
|
||||||
<div class="column">
|
<div class="column">
|
||||||
<div class="about__image">
|
<div class="about__image">
|
||||||
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
|
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
|
||||||
<rect width="48" height="48" rx="6" fill="#ededed"/>
|
<path fill="#1e1e1e" d="M24 13.84c-.752 0-1.397-.287-1.936-.86a2.902 2.902 0 0 1-.809-2.06c0-.8.27-1.487.809-2.06S23.248 8 24 8c.753 0 1.398.287 1.937.86.54.573.809 1.26.809 2.06s-.27 1.487-.809 2.06-1.184.86-1.937.86ZM19.976 40V18.68a69.562 69.562 0 0 1-4.945-.56 45.877 45.877 0 0 1-4.57-.92l.565-2.4a46.79 46.79 0 0 0 6.356 1.14c2.106.227 4.312.34 6.618.34 2.307 0 4.513-.113 6.62-.34a46.786 46.786 0 0 0 6.355-1.14l.564 2.4c-1.454.373-2.977.68-4.57.92a69.55 69.55 0 0 1-4.945.56V40h-2.256V29.6h-3.535V40h-2.257Z"/>
|
||||||
<path d="M18.95 19.45H27.15L25.45 21.25L26.55 22.35L30.15 18.75L26.65 14.75L25.55 15.75L27.45 18.05H18.95C18.05 18.05 17.25 18.35 16.65 18.95C15.25 20.45 15.25 23.15 15.25 24.55V24.75H16.75V24.45C16.75 23.35 16.75 20.95 17.75 19.95C18.05 19.65 18.45 19.45 18.95 19.45ZM32.75 23.45V23.25H31.25V23.55C31.25 24.65 31.25 27.05 30.25 28.05C29.95 28.35 29.55 28.55 28.95 28.55H20.75L22.45 26.85L21.35 25.75L17.85 29.25L21.35 33.25L22.45 32.25L20.55 29.95H28.95C29.85 29.95 30.65 29.65 31.25 29.05C32.75 27.65 32.75 24.85 32.75 23.45Z" fill="#1e1e1e"/>
|
|
||||||
</svg>
|
</svg>
|
||||||
</div>
|
</div>
|
||||||
<h3 style="margin-top:calc(var(--gap) * 0.75);margin-bottom:calc(var(--gap) * 0.5)"><?php _e( 'Connect blocks to custom fields or other dynamic content' ); ?></h3>
|
<h3><?php _e( 'Accessibility improvements' ); ?></h3>
|
||||||
<p><?php _e( 'Link core block attributes to custom fields and use the value of custom fields without creating custom blocks. Powered by the Block Bindings API, developers can extend this capability further to connect blocks to any dynamic content—even beyond custom fields. If there’s data stored elsewhere, easily point blocks to that new source with only a few lines of code.' ); ?></p>
|
<p><?php _e( '65+ accessibility fixes and enhancements focus on foundational aspects of the WordPress experience, from improving user interface components and keyboard navigation in the Editor, to an accessible heading on WordPress login screens and clearer labeling throughout.' ); ?></p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="about__section has-2-columns">
|
<hr class="is-invisible is-large" style="margin-bottom:calc(2 * var(--gap));" />
|
||||||
|
|
||||||
|
<div class="about__section has-2-columns is-wider-left is-feature" style="background-color:var(--background);border-radius:var(--border-radius);">
|
||||||
|
<h3 class="is-section-header"><?php _e( 'And much more' ); ?></h3>
|
||||||
<div class="column">
|
<div class="column">
|
||||||
<div class="about__image">
|
|
||||||
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
|
|
||||||
<rect width="48" height="48" rx="6" fill="#ededed"/>
|
|
||||||
<path d="M33 18.75H23.1925C22.7954 17.7305 21.7239 17 20.4643 17C19.2047 17 18.1332 17.7305 17.736 18.75H15V20.5H17.736C18.1332 21.5195 19.2047 22.25 20.4643 22.25C21.7239 22.25 22.7954 21.5195 23.1925 20.5H33V18.75Z" fill="#1e1e1e"/>
|
|
||||||
<path d="M33 27.5H30.264C29.8668 26.4805 28.7953 25.75 27.5357 25.75C26.2761 25.75 25.2046 26.4805 24.8075 27.5H15V29.25H24.8075C25.2046 30.2695 26.2761 31 27.5357 31C28.7953 31 29.8668 30.2695 30.264 29.25H33V27.5Z" fill="#1e1e1e"/>
|
|
||||||
</svg>
|
|
||||||
</div>
|
|
||||||
<h3 style="margin-top:calc(var(--gap) * 0.75);margin-bottom:calc(var(--gap) * 0.5)"><?php _e( 'Add appearance tools to Classic themes' ); ?></h3>
|
|
||||||
<p><?php _e( 'Give designers and creators using Classic themes access to an upgraded design experience. Opt in to support for spacing, border, typography, and color options, even without using theme.json. Once support is enabled, more tools will be automatically added as they become available.' ); ?></p>
|
|
||||||
</div>
|
|
||||||
<div class="column">
|
|
||||||
<div class="about__image">
|
|
||||||
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
|
|
||||||
<rect width="48" height="48" rx="6" fill="#ededed"/>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.5 16L22.5 20H25.5V16H27V20H28.5C29.0523 20 29.5 20.4477 29.5 21V25L26.5 29V31C26.5 31.5523 26.0523 32 25.5 32H22.5C21.9477 32 21.5 31.5523 21.5 31V29L18.5 25V21C18.5 20.4477 18.9477 20 19.5 20H21L21 16H22.5ZM23 28.5V30.5H25V28.5L28 24.5V21.5H20V24.5L23 28.5Z" fill="#1e1e1e"/>
|
|
||||||
</svg>
|
|
||||||
</div>
|
|
||||||
<h3 style="margin-top:calc(var(--gap) * 0.75);margin-bottom:calc(var(--gap) * 0.5)"><?php _e( 'Explore improvements to the plugin experience' ); ?></h3>
|
|
||||||
<p>
|
<p>
|
||||||
<?php
|
<?php
|
||||||
printf(
|
printf(
|
||||||
/* translators: %s: Requires Plugins */
|
/* translators: %s: Version number. */
|
||||||
__( 'There’s now an easier way to manage plugin dependencies. Plugin authors can supply a new %s header with a comma-separated list of required plugin slugs, presenting users with links to install and activate those plugins first.' ),
|
__( 'For a comprehensive overview of all the new features and enhancements in WordPress %s, please visit the feature-showcase website.' ),
|
||||||
'<code lang="en">Requires Plugins</code>'
|
$display_version
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<div class="column aligncenter">
|
||||||
|
|
||||||
<div class="about__section has-2-columns">
|
|
||||||
<div class="column">
|
|
||||||
<div class="about__image">
|
<div class="about__image">
|
||||||
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
|
<a href="<?php echo esc_url( __( 'https://wordpress.org/download/releases/6-7/' ) ); ?>" class="button button-primary button-hero"><?php _e( 'See everything new' ); ?></a>
|
||||||
<rect width="48" height="48" rx="4" fill="#ededed"/>
|
|
||||||
<path d="M28.4287 20.6507C28.8387 20.8874 28.9791 21.4116 28.7424 21.8215L24.7424 28.7498C24.5057 29.1597 23.9815 29.3002 23.5715 29.0635C23.1616 28.8268 23.0211 28.3026 23.2578 27.8926L27.2578 20.9644C27.4945 20.5544 28.0187 20.414 28.4287 20.6507Z" fill="#1e1e1e"/>
|
|
||||||
<path d="M18.6433 23.579C18.2333 23.3423 17.7091 23.4828 17.4724 23.8927C17.2357 24.3027 17.3761 24.8269 17.7861 25.0636L18.281 25.3493C18.691 25.586 19.2152 25.4456 19.4519 25.0356C19.6886 24.6256 19.5481 24.1014 19.1381 23.8647L18.6433 23.579Z" fill="#1e1e1e"/>
|
|
||||||
<path d="M20.0358 20.6508C20.4458 20.4141 20.97 20.5546 21.2067 20.9645L21.4924 21.4594C21.7291 21.8694 21.5887 22.3936 21.1787 22.6303C20.7687 22.867 20.2445 22.7265 20.0078 22.3166L19.7221 21.8217C19.4854 21.4117 19.6259 20.8875 20.0358 20.6508Z" fill="#1e1e1e"/>
|
|
||||||
<path d="M24.8571 20C24.8571 19.5266 24.4734 19.1429 24 19.1429C23.5266 19.1429 23.1429 19.5266 23.1429 20V20.5714C23.1429 21.0448 23.5266 21.4286 24 21.4286C24.4734 21.4286 24.8571 21.0448 24.8571 20.5714V20Z" fill="#1e1e1e"/>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M14 26C14 20.4772 18.4772 16 24 16C29.5228 16 34 20.4772 34 26C34 28.0846 33.3612 30.0225 32.2686 31.6256L32.0135 32H15.9865L15.7314 31.6256C14.6388 30.0225 14 28.0846 14 26ZM24 17.7143C19.4239 17.7143 15.7143 21.4239 15.7143 26C15.7143 27.5698 16.1501 29.0357 16.9072 30.2857H31.0928C31.8499 29.0357 32.2857 27.5698 32.2857 26C32.2857 21.4239 28.5761 17.7143 24 17.7143Z" fill="#1e1e1e"/>
|
|
||||||
</svg>
|
|
||||||
</div>
|
</div>
|
||||||
<h3 style="margin-top:calc(var(--gap) * 0.75);margin-bottom:calc(var(--gap) * 0.5)"><?php _e( 'Performance updates' ); ?></h3>
|
|
||||||
<p><?php _e( 'This release includes 110+ performance updates, with an impressive increase in speed and efficiency across the Post Editor and Site Editor. Loading is over two times faster than in 6.4, with input processing speed up to five times faster than the previous release. Translated sites see up to 25% improvement in load time for this release.' ); ?></p>
|
|
||||||
</div>
|
|
||||||
<div class="column">
|
|
||||||
<div class="about__image">
|
|
||||||
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
|
|
||||||
<rect width="48" height="48" rx="4" fill="#ededed"/>
|
|
||||||
<path d="M24 18.285C23.55 18.285 23.1637 18.1237 22.8412 17.8012C22.5187 17.4788 22.3575 17.0925 22.3575 16.6425C22.3575 16.1925 22.5187 15.8062 22.8412 15.4837C23.1637 15.1612 23.55 15 24 15C24.45 15 24.8362 15.1612 25.1587 15.4837C25.4812 15.8062 25.6425 16.1925 25.6425 16.6425C25.6425 17.0925 25.4812 17.4788 25.1587 17.8012C24.8362 18.1237 24.45 18.285 24 18.285ZM21.5925 33V21.0075C20.5725 20.9325 19.5862 20.8275 18.6337 20.6925C17.6812 20.5575 16.77 20.385 15.9 20.175L16.2375 18.825C17.5125 19.125 18.78 19.3387 20.04 19.4662C21.3 19.5938 22.62 19.6575 24 19.6575C25.38 19.6575 26.7 19.5938 27.96 19.4662C29.22 19.3387 30.4875 19.125 31.7625 18.825L32.1 20.175C31.23 20.385 30.3187 20.5575 29.3662 20.6925C28.4137 20.8275 27.4275 20.9325 26.4075 21.0075V33H25.0575V27.15H22.9425V33H21.5925Z" fill="#1e1e1e"/>
|
|
||||||
</svg>
|
|
||||||
</div>
|
|
||||||
<h3 style="margin-top:calc(var(--gap) * 0.75);margin-bottom:calc(var(--gap) * 0.5)"><?php _e( 'Accessibility improvements' ); ?></h3>
|
|
||||||
<p><?php _e( 'This release includes more than 65 accessibility improvements across the platform, making it more accessible than ever. This release adds fixes to contrast settings, cursor focus, submenus, and positioning of elements, among many others, that help improve the WordPress experience for everyone.' ); ?></p>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<hr />
|
<hr class="is-large" style="margin-top:calc(2 * var(--gap));" />
|
||||||
|
|
||||||
<div class="about__section has-3-columns">
|
<div class="about__section has-3-columns">
|
||||||
<div class="column about__image is-vertically-aligned-top">
|
<div class="column about__image is-vertically-aligned-top">
|
||||||
<img src="<?php echo esc_url( admin_url( 'images/about-release-badge.svg?ver=6.5' ) ); ?>" alt="" height="280" width="280" />
|
<img src="<?php echo esc_url( admin_url( 'images/about-release-badge.svg?ver=6.7' ) ); ?>" alt="" height="280" width="280" />
|
||||||
</div>
|
</div>
|
||||||
<div class="column is-vertically-aligned-center" style="grid-column-end:span 2">
|
<div class="column is-vertically-aligned-center" style="grid-column-end:span 2">
|
||||||
<h3>
|
<h3>
|
||||||
|
|
@ -278,17 +265,27 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
|
||||||
<div class="column">
|
<div class="column">
|
||||||
<div class="about__image">
|
<div class="about__image">
|
||||||
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
|
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
|
||||||
<rect width="48" height="48" rx="4" fill="#ededed"/>
|
<path fill="#1e1e1e" d="M32 15.5H16v3h16v-3ZM16 22h16v3H16v-3ZM28 28.5H16v3h12v-3Z"/>
|
||||||
<path d="M23 34v-4h-5l-2.293-2.293a1 1 0 0 1 0-1.414L18 24h5v-2h-7v-6h7v-2h2v2h5l2.293 2.293a1 1 0 0 1 0 1.414L30 22h-5v2h7v6h-7v4h-2Zm-5-14h11.175l.646-.646a.5.5 0 0 0 0-.708L29.175 18H18v2Zm.825 8H30v-2H18.825l-.646.646a.5.5 0 0 0 0 .708l.646.646Z" fill="#1e1e1e"/>
|
<path fill="#1e1e1e" fill-rule="evenodd" d="M34 8H14a4 4 0 0 0-4 4v24a4 4 0 0 0 4 4h20a4 4 0 0 0 4-4V12a4 4 0 0 0-4-4Zm-20 3h20a1 1 0 0 1 1 1v24a1 1 0 0 1-1 1H14a1 1 0 0 1-1-1V12a1 1 0 0 1 1-1Z" clip-rule="evenodd"/>
|
||||||
</svg>
|
</svg>
|
||||||
</div>
|
</div>
|
||||||
<p style="margin-top:calc(var(--gap) / 2);">
|
<h4 style="margin-top: calc(var(--gap) / 2); margin-bottom: calc(var(--gap) / 2);">
|
||||||
|
<a href="<?php echo esc_url( $release_notes_url ); ?>">
|
||||||
<?php
|
<?php
|
||||||
printf(
|
printf(
|
||||||
/* translators: 1: WordPress Field Guide link, 2: WordPress version number. */
|
/* translators: %s: WordPress version number. */
|
||||||
__( 'Explore the <a href="%1$s">WordPress %2$s Field Guide</a>. Learn about the changes in this release with detailed developer notes to help you build with WordPress.' ),
|
__( 'WordPress %s Release Notes' ),
|
||||||
esc_url( __( 'https://make.wordpress.org/core/wordpress-6-5-field-guide/' ) ),
|
'6.7'
|
||||||
'6.5'
|
);
|
||||||
|
?>
|
||||||
|
</a>
|
||||||
|
</h4>
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: %s: WordPress version number. */
|
||||||
|
__( 'Read the WordPress %s Release Notes for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes.' ),
|
||||||
|
'6.7'
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
</p>
|
</p>
|
||||||
|
|
@ -296,22 +293,26 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
|
||||||
<div class="column">
|
<div class="column">
|
||||||
<div class="about__image">
|
<div class="about__image">
|
||||||
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
|
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
|
||||||
<rect width="48" height="48" rx="4" fill="#ededed"/>
|
<path fill="#1e1e1e" stroke="#fff" stroke-width=".5" d="M26.5 24.25h13.75v11.5h-14v8h-3.5v-8H12.604L8.09 31.237a1.75 1.75 0 0 1 0-2.474l4.513-4.513H22.75v-4.5h-14V8.25h14v-4h3.5v4h10.146l4.513 4.513a1.75 1.75 0 0 1 0 2.474l-4.513 4.513H26.25v4.5h.25ZM12.25 16v.25h22.704l.073-.073 1.293-1.293a1.25 1.25 0 0 0 0-1.768l-1.293-1.293-.073-.073H12.25V16Zm1.723 16.177.073.073H36.75v-4.5H14.046l-.073.073-1.293 1.293a1.25 1.25 0 0 0 0 1.768l1.293 1.293Z"/>
|
||||||
<path d="M28 19.75h-8v1.5h8v-1.5ZM20 23h8v1.5h-8V23ZM26 26.25h-6v1.5h6v-1.5Z" fill="#151515"/>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M29 16H19a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V18a2 2 0 0 0-2-2Zm-10 1.5h10a.5.5 0 0 1 .5.5v12a.5.5 0 0 1-.5.5H19a.5.5 0 0 1-.5-.5V18a.5.5 0 0 1 .5-.5Z" fill="#1e1e1e"/>
|
|
||||||
</svg>
|
</svg>
|
||||||
</div>
|
</div>
|
||||||
<p style="margin-top:calc(var(--gap) / 2);">
|
<h4 style="margin-top: calc(var(--gap) / 2); margin-bottom: calc(var(--gap) / 2);">
|
||||||
|
<a href="<?php echo esc_url( $field_guide_url ); ?>">
|
||||||
<?php
|
<?php
|
||||||
printf(
|
printf(
|
||||||
/* translators: 1: WordPress Release Notes link, 2: WordPress version number. */
|
|
||||||
__( '<a href="%1$s">Read the WordPress %2$s Release Notes</a> for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes.' ),
|
|
||||||
sprintf(
|
|
||||||
/* translators: %s: WordPress version number. */
|
/* translators: %s: WordPress version number. */
|
||||||
esc_url( __( 'https://wordpress.org/documentation/wordpress-version/version-%s/' ) ),
|
__( 'WordPress %s Field Guide' ),
|
||||||
'6-5'
|
'6.7'
|
||||||
),
|
);
|
||||||
'6.5'
|
?>
|
||||||
|
</a>
|
||||||
|
</h4>
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: %s: WordPress version number. */
|
||||||
|
__( 'Explore the WordPress %s Field Guide. Learn about the changes in this release with detailed developer notes to help you build with WordPress.' ),
|
||||||
|
'6.7'
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
</p>
|
</p>
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
* @package WordPress
|
* @package WordPress
|
||||||
* @subpackage Administration
|
* @subpackage Administration
|
||||||
*
|
*
|
||||||
* @link https://codex.wordpress.org/AJAX_in_Plugins
|
* @link https://developer.wordpress.org/plugins/javascript/ajax
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@ global $hook_suffix;
|
||||||
$text = sprintf(
|
$text = sprintf(
|
||||||
/* translators: %s: https://wordpress.org/ */
|
/* translators: %s: https://wordpress.org/ */
|
||||||
__( 'Thank you for creating with <a href="%s">WordPress</a>.' ),
|
__( 'Thank you for creating with <a href="%s">WordPress</a>.' ),
|
||||||
__( 'https://wordpress.org/' )
|
esc_url( __( 'https://wordpress.org/' ) )
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ if ( ! defined( 'WP_ADMIN' ) ) {
|
||||||
/**
|
/**
|
||||||
* In case admin-header.php is included in a function.
|
* In case admin-header.php is included in a function.
|
||||||
*
|
*
|
||||||
* @global string $title
|
* @global string $title The title of the current screen.
|
||||||
* @global string $hook_suffix
|
* @global string $hook_suffix
|
||||||
* @global WP_Screen $current_screen WordPress current screen object.
|
* @global WP_Screen $current_screen WordPress current screen object.
|
||||||
* @global WP_Locale $wp_locale WordPress date and time locale object.
|
* @global WP_Locale $wp_locale WordPress date and time locale object.
|
||||||
|
|
@ -203,7 +203,7 @@ if ( is_network_admin() ) {
|
||||||
$admin_body_class .= ' network-admin';
|
$admin_body_class .= ' network-admin';
|
||||||
}
|
}
|
||||||
|
|
||||||
$admin_body_class .= ' no-customize-support no-svg';
|
$admin_body_class .= ' no-customize-support svg';
|
||||||
|
|
||||||
if ( $current_screen->is_block_editor() ) {
|
if ( $current_screen->is_block_editor() ) {
|
||||||
$admin_body_class .= ' block-editor-page wp-embed-responsive';
|
$admin_body_class .= ' block-editor-page wp-embed-responsive';
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@ nocache_headers();
|
||||||
/** This action is documented in wp-admin/admin.php */
|
/** This action is documented in wp-admin/admin.php */
|
||||||
do_action( 'admin_init' );
|
do_action( 'admin_init' );
|
||||||
|
|
||||||
$action = ! empty( $_REQUEST['action'] ) ? $_REQUEST['action'] : '';
|
$action = ! empty( $_REQUEST['action'] ) ? sanitize_text_field( $_REQUEST['action'] ) : '';
|
||||||
|
|
||||||
// Reject invalid parameters.
|
// Reject invalid parameters.
|
||||||
if ( ! is_scalar( $action ) ) {
|
if ( ! is_scalar( $action ) ) {
|
||||||
|
|
|
||||||
|
|
@ -38,7 +38,7 @@ nocache_headers();
|
||||||
if ( get_option( 'db_upgraded' ) ) {
|
if ( get_option( 'db_upgraded' ) ) {
|
||||||
|
|
||||||
flush_rewrite_rules();
|
flush_rewrite_rules();
|
||||||
update_option( 'db_upgraded', false );
|
update_option( 'db_upgraded', false, true );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Fires on the next page load after a successful DB upgrade.
|
* Fires on the next page load after a successful DB upgrade.
|
||||||
|
|
|
||||||
|
|
@ -64,14 +64,8 @@ if ( isset( $_REQUEST['attachment_id'] ) && (int) $_REQUEST['attachment_id'] &&
|
||||||
?>
|
?>
|
||||||
<div class="filename new">
|
<div class="filename new">
|
||||||
<span class="media-list-title"><strong><?php echo esc_html( wp_html_excerpt( $title, 60, '…' ) ); ?></strong></span>
|
<span class="media-list-title"><strong><?php echo esc_html( wp_html_excerpt( $title, 60, '…' ) ); ?></strong></span>
|
||||||
<span class="media-list-subtitle"><?php echo wp_basename( $file ); ?></span>
|
<span class="media-list-subtitle"><?php echo esc_html( wp_basename( $file ) ); ?></span>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="attachment-tools">
|
<div class="attachment-tools">
|
||||||
<span class="media-item-copy-container copy-to-clipboard-container edit-attachment">
|
|
||||||
<button type="button" class="button button-small copy-attachment-url" data-clipboard-text="<?php echo $file_url; ?>"><?php _e( 'Copy URL to clipboard' ); ?></button>
|
|
||||||
<span class="success hidden" aria-hidden="true"><?php _e( 'Copied!' ); ?></span>
|
|
||||||
</span>
|
|
||||||
<?php
|
<?php
|
||||||
if ( current_user_can( 'edit_post', $id ) ) {
|
if ( current_user_can( 'edit_post', $id ) ) {
|
||||||
echo '<a class="edit-attachment" href="' . esc_url( get_edit_post_link( $id ) ) . '">' . _x( 'Edit', 'media item' ) . '</a>';
|
echo '<a class="edit-attachment" href="' . esc_url( get_edit_post_link( $id ) ) . '">' . _x( 'Edit', 'media item' ) . '</a>';
|
||||||
|
|
@ -79,6 +73,14 @@ if ( isset( $_REQUEST['attachment_id'] ) && (int) $_REQUEST['attachment_id'] &&
|
||||||
echo '<span class="edit-attachment">' . _x( 'Success', 'media item' ) . '</span>';
|
echo '<span class="edit-attachment">' . _x( 'Success', 'media item' ) . '</span>';
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
<span class="media-item-copy-container copy-to-clipboard-container edit-attachment">
|
||||||
|
<button type="button" class="button button-small copy-attachment-url"
|
||||||
|
data-clipboard-text="<?php echo esc_url( $file_url ); ?>"
|
||||||
|
><?php _e( 'Copy URL to clipboard' ); ?></button>
|
||||||
|
<span class="success hidden" aria-hidden="true"><?php _e( 'Copied!' ); ?></span>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<?php
|
<?php
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,8 @@ $submenu_file = 'edit-comments.php';
|
||||||
* @global string $action
|
* @global string $action
|
||||||
*/
|
*/
|
||||||
global $action;
|
global $action;
|
||||||
wp_reset_vars( array( 'action' ) );
|
|
||||||
|
$action = ! empty( $_REQUEST['action'] ) ? sanitize_text_field( $_REQUEST['action'] ) : '';
|
||||||
|
|
||||||
if ( isset( $_POST['deletecomment'] ) ) {
|
if ( isset( $_POST['deletecomment'] ) ) {
|
||||||
$action = 'deletecomment';
|
$action = 'deletecomment';
|
||||||
|
|
|
||||||
|
|
@ -341,7 +341,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 480px) {
|
@media screen and (max-width: 480px) {
|
||||||
.about__section.is-feature .column {
|
.about__section.is-feature .column,
|
||||||
|
.about__section .is-section-header {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -379,7 +380,7 @@
|
||||||
.about__container h2,
|
.about__container h2,
|
||||||
.about__container h3.is-larger-heading {
|
.about__container h3.is-larger-heading {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
margin-bottom: 0.5em;
|
margin-bottom: calc(0.5 * var(--gap));
|
||||||
font-size: 2rem;
|
font-size: 2rem;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
line-height: 1.16;
|
line-height: 1.16;
|
||||||
|
|
@ -389,6 +390,7 @@
|
||||||
.about__container h1.is-smaller-heading,
|
.about__container h1.is-smaller-heading,
|
||||||
.about__container h2.is-smaller-heading {
|
.about__container h2.is-smaller-heading {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
|
margin-bottom: calc(0.5 * var(--gap));
|
||||||
font-size: 1.625rem;
|
font-size: 1.625rem;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
line-height: 1.4;
|
line-height: 1.4;
|
||||||
|
|
@ -406,10 +408,14 @@
|
||||||
.about__container h2,
|
.about__container h2,
|
||||||
.about__container h3,
|
.about__container h3,
|
||||||
.about__container h4 {
|
.about__container h4 {
|
||||||
text-wrap: balance;
|
text-wrap: pretty;
|
||||||
color: inherit;
|
color: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.about__container :is(h1, h2, h3, h4):lang(en) {
|
||||||
|
text-wrap: balance;
|
||||||
|
}
|
||||||
|
|
||||||
.about__container p {
|
.about__container p {
|
||||||
text-wrap: pretty;
|
text-wrap: pretty;
|
||||||
}
|
}
|
||||||
|
|
@ -448,6 +454,15 @@
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.about__section a.button.button-hero {
|
||||||
|
padding-top: 1.1875rem;
|
||||||
|
padding-bottom: 1.1875rem;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
line-height: 1.4;
|
||||||
|
white-space: normal;
|
||||||
|
text-wrap: pretty;
|
||||||
|
}
|
||||||
|
|
||||||
.about__container ul {
|
.about__container ul {
|
||||||
list-style: disc;
|
list-style: disc;
|
||||||
margin-right: calc(var(--gap) / 2);
|
margin-right: calc(var(--gap) / 2);
|
||||||
|
|
@ -489,7 +504,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.about__container .about__image + h3 {
|
.about__container .about__image + h3 {
|
||||||
margin-top: 1.5em;
|
margin-top: calc(0.75 * var(--gap));
|
||||||
}
|
}
|
||||||
|
|
||||||
.about__container hr {
|
.about__container hr {
|
||||||
|
|
@ -508,6 +523,10 @@
|
||||||
margin: var(--gap) auto;
|
margin: var(--gap) auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.about__container hr.is-invisible {
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
.about__container div.updated,
|
.about__container div.updated,
|
||||||
.about__container div.error,
|
.about__container div.error,
|
||||||
.about__container .notice {
|
.about__container .notice {
|
||||||
|
|
@ -586,7 +605,7 @@
|
||||||
.privacy-php .about__header-title h1,
|
.privacy-php .about__header-title h1,
|
||||||
.contribute-php .about__header-title h1 {
|
.contribute-php .about__header-title h1 {
|
||||||
/* Fluid font size scales on browser size 960px - 1200px. */
|
/* Fluid font size scales on browser size 960px - 1200px. */
|
||||||
font-size: clamp(2rem, 10vw - 3rem, 4rem);
|
font-size: clamp(2rem, 20vw - 9rem, 4rem);
|
||||||
}
|
}
|
||||||
|
|
||||||
.about__header-text {
|
.about__header-text {
|
||||||
|
|
@ -656,7 +675,7 @@
|
||||||
.privacy-php .about__header-title h1,
|
.privacy-php .about__header-title h1,
|
||||||
.contribute-php .about__header-title h1 {
|
.contribute-php .about__header-title h1 {
|
||||||
/* Fluid font size scales on browser size 600px - 960px. */
|
/* Fluid font size scales on browser size 600px - 960px. */
|
||||||
font-size: clamp(3rem, 6.67vw - 0.5rem, 4.5rem);
|
font-size: clamp(2rem, 20vw - 9rem, 4rem);
|
||||||
}
|
}
|
||||||
|
|
||||||
.about__header-navigation .nav-tab {
|
.about__header-navigation .nav-tab {
|
||||||
|
|
@ -1281,24 +1300,6 @@
|
||||||
margin: 0.6em 0;
|
margin: 0.6em 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.freedoms-php .column .freedoms-image {
|
|
||||||
background-image: url('../images/freedoms.png');
|
|
||||||
background-size: 100%;
|
|
||||||
padding-top: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.freedoms-php .column:nth-of-type(2) .freedoms-image {
|
|
||||||
background-position: 100% 34%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.freedoms-php .column:nth-of-type(3) .freedoms-image {
|
|
||||||
background-position: 100% 66%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.freedoms-php .column:nth-of-type(4) .freedoms-image {
|
|
||||||
background-position: 100% 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*------------------------------------------------------------------------------
|
/*------------------------------------------------------------------------------
|
||||||
x.5.0 - Legacy About Styles: Media Queries
|
x.5.0 - Legacy About Styles: Media Queries
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -340,7 +340,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 480px) {
|
@media screen and (max-width: 480px) {
|
||||||
.about__section.is-feature .column {
|
.about__section.is-feature .column,
|
||||||
|
.about__section .is-section-header {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -378,7 +379,7 @@
|
||||||
.about__container h2,
|
.about__container h2,
|
||||||
.about__container h3.is-larger-heading {
|
.about__container h3.is-larger-heading {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
margin-bottom: 0.5em;
|
margin-bottom: calc(0.5 * var(--gap));
|
||||||
font-size: 2rem;
|
font-size: 2rem;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
line-height: 1.16;
|
line-height: 1.16;
|
||||||
|
|
@ -388,6 +389,7 @@
|
||||||
.about__container h1.is-smaller-heading,
|
.about__container h1.is-smaller-heading,
|
||||||
.about__container h2.is-smaller-heading {
|
.about__container h2.is-smaller-heading {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
|
margin-bottom: calc(0.5 * var(--gap));
|
||||||
font-size: 1.625rem;
|
font-size: 1.625rem;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
line-height: 1.4;
|
line-height: 1.4;
|
||||||
|
|
@ -405,10 +407,14 @@
|
||||||
.about__container h2,
|
.about__container h2,
|
||||||
.about__container h3,
|
.about__container h3,
|
||||||
.about__container h4 {
|
.about__container h4 {
|
||||||
text-wrap: balance;
|
text-wrap: pretty;
|
||||||
color: inherit;
|
color: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.about__container :is(h1, h2, h3, h4):lang(en) {
|
||||||
|
text-wrap: balance;
|
||||||
|
}
|
||||||
|
|
||||||
.about__container p {
|
.about__container p {
|
||||||
text-wrap: pretty;
|
text-wrap: pretty;
|
||||||
}
|
}
|
||||||
|
|
@ -447,6 +453,15 @@
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.about__section a.button.button-hero {
|
||||||
|
padding-top: 1.1875rem;
|
||||||
|
padding-bottom: 1.1875rem;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
line-height: 1.4;
|
||||||
|
white-space: normal;
|
||||||
|
text-wrap: pretty;
|
||||||
|
}
|
||||||
|
|
||||||
.about__container ul {
|
.about__container ul {
|
||||||
list-style: disc;
|
list-style: disc;
|
||||||
margin-left: calc(var(--gap) / 2);
|
margin-left: calc(var(--gap) / 2);
|
||||||
|
|
@ -488,7 +503,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.about__container .about__image + h3 {
|
.about__container .about__image + h3 {
|
||||||
margin-top: 1.5em;
|
margin-top: calc(0.75 * var(--gap));
|
||||||
}
|
}
|
||||||
|
|
||||||
.about__container hr {
|
.about__container hr {
|
||||||
|
|
@ -507,6 +522,10 @@
|
||||||
margin: var(--gap) auto;
|
margin: var(--gap) auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.about__container hr.is-invisible {
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
.about__container div.updated,
|
.about__container div.updated,
|
||||||
.about__container div.error,
|
.about__container div.error,
|
||||||
.about__container .notice {
|
.about__container .notice {
|
||||||
|
|
@ -585,7 +604,7 @@
|
||||||
.privacy-php .about__header-title h1,
|
.privacy-php .about__header-title h1,
|
||||||
.contribute-php .about__header-title h1 {
|
.contribute-php .about__header-title h1 {
|
||||||
/* Fluid font size scales on browser size 960px - 1200px. */
|
/* Fluid font size scales on browser size 960px - 1200px. */
|
||||||
font-size: clamp(2rem, 10vw - 3rem, 4rem);
|
font-size: clamp(2rem, 20vw - 9rem, 4rem);
|
||||||
}
|
}
|
||||||
|
|
||||||
.about__header-text {
|
.about__header-text {
|
||||||
|
|
@ -655,7 +674,7 @@
|
||||||
.privacy-php .about__header-title h1,
|
.privacy-php .about__header-title h1,
|
||||||
.contribute-php .about__header-title h1 {
|
.contribute-php .about__header-title h1 {
|
||||||
/* Fluid font size scales on browser size 600px - 960px. */
|
/* Fluid font size scales on browser size 600px - 960px. */
|
||||||
font-size: clamp(3rem, 6.67vw - 0.5rem, 4.5rem);
|
font-size: clamp(2rem, 20vw - 9rem, 4rem);
|
||||||
}
|
}
|
||||||
|
|
||||||
.about__header-navigation .nav-tab {
|
.about__header-navigation .nav-tab {
|
||||||
|
|
@ -1280,24 +1299,6 @@
|
||||||
margin: 0.6em 0;
|
margin: 0.6em 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.freedoms-php .column .freedoms-image {
|
|
||||||
background-image: url('../images/freedoms.png');
|
|
||||||
background-size: 100%;
|
|
||||||
padding-top: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.freedoms-php .column:nth-of-type(2) .freedoms-image {
|
|
||||||
background-position: 0 34%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.freedoms-php .column:nth-of-type(3) .freedoms-image {
|
|
||||||
background-position: 0 66%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.freedoms-php .column:nth-of-type(4) .freedoms-image {
|
|
||||||
background-position: 0 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*------------------------------------------------------------------------------
|
/*------------------------------------------------------------------------------
|
||||||
x.5.0 - Legacy About Styles: Media Queries
|
x.5.0 - Legacy About Styles: Media Queries
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -12,6 +12,9 @@
|
||||||
top: 0;
|
top: 0;
|
||||||
bottom: -120px;
|
bottom: -120px;
|
||||||
z-index: 1; /* positive z-index to avoid elastic scrolling woes in Safari */
|
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 {
|
.php-error #adminmenuback {
|
||||||
|
|
@ -206,7 +209,8 @@
|
||||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu {
|
.folded #adminmenu .wp-has-current-submenu .wp-submenu {
|
||||||
min-width: 160px;
|
min-width: 160px;
|
||||||
width: auto;
|
width: auto;
|
||||||
border-right: 5px solid transparent;
|
border: 1px solid transparent;
|
||||||
|
border-right-width: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#adminmenu .wp-submenu li.current,
|
#adminmenu .wp-submenu li.current,
|
||||||
|
|
@ -269,7 +273,6 @@
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
-ms-word-break: break-all;
|
-ms-word-break: break-all;
|
||||||
word-break: break-word;
|
word-break: break-word;
|
||||||
-webkit-hyphens: auto;
|
|
||||||
hyphens: auto;
|
hyphens: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -416,8 +419,8 @@ ul#adminmenu > li.current > a.current:after {
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
padding: 5px 11px 5px 4px;
|
padding: 5px 11px 5px 4px;
|
||||||
margin: -7px -5px 4px 0;
|
margin: -8px -5px 4px -1px;
|
||||||
border-width: 3px 5px 3px 0;
|
border-width: 3px 5px 3px 1px;
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
border-color: transparent;
|
border-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
@ -582,8 +585,10 @@ li#wp-admin-bar-menu-toggle {
|
||||||
}
|
}
|
||||||
|
|
||||||
.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
|
.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
|
||||||
min-width: 150px;
|
min-width: 160px;
|
||||||
width: auto;
|
width: auto;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
border-right-width: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.auto-fold #adminmenu .wp-has-current-submenu li > a {
|
.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,
|
#adminmenu .wp-not-current-submenu .wp-submenu,
|
||||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu {
|
.folded #adminmenu .wp-has-current-submenu .wp-submenu,
|
||||||
border-right: none;
|
.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
|
||||||
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Remove submenu headers and adjust sub meu*/
|
/* Remove submenu headers and adjust sub meu*/
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -11,6 +11,9 @@
|
||||||
top: 0;
|
top: 0;
|
||||||
bottom: -120px;
|
bottom: -120px;
|
||||||
z-index: 1; /* positive z-index to avoid elastic scrolling woes in Safari */
|
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 {
|
.php-error #adminmenuback {
|
||||||
|
|
@ -205,7 +208,8 @@
|
||||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu {
|
.folded #adminmenu .wp-has-current-submenu .wp-submenu {
|
||||||
min-width: 160px;
|
min-width: 160px;
|
||||||
width: auto;
|
width: auto;
|
||||||
border-left: 5px solid transparent;
|
border: 1px solid transparent;
|
||||||
|
border-left-width: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#adminmenu .wp-submenu li.current,
|
#adminmenu .wp-submenu li.current,
|
||||||
|
|
@ -268,7 +272,6 @@
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
-ms-word-break: break-all;
|
-ms-word-break: break-all;
|
||||||
word-break: break-word;
|
word-break: break-word;
|
||||||
-webkit-hyphens: auto;
|
|
||||||
hyphens: auto;
|
hyphens: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -415,8 +418,8 @@ ul#adminmenu > li.current > a.current:after {
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
padding: 5px 4px 5px 11px;
|
padding: 5px 4px 5px 11px;
|
||||||
margin: -7px 0 4px -5px;
|
margin: -8px -1px 4px -5px;
|
||||||
border-width: 3px 0 3px 5px;
|
border-width: 3px 1px 3px 5px;
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
border-color: transparent;
|
border-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
@ -581,8 +584,10 @@ li#wp-admin-bar-menu-toggle {
|
||||||
}
|
}
|
||||||
|
|
||||||
.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
|
.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
|
||||||
min-width: 150px;
|
min-width: 160px;
|
||||||
width: auto;
|
width: auto;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
border-left-width: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.auto-fold #adminmenu .wp-has-current-submenu li > a {
|
.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,
|
#adminmenu .wp-not-current-submenu .wp-submenu,
|
||||||
.folded #adminmenu .wp-has-current-submenu .wp-submenu {
|
.folded #adminmenu .wp-has-current-submenu .wp-submenu,
|
||||||
border-left: none;
|
.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
|
||||||
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Remove submenu headers and adjust sub meu*/
|
/* Remove submenu headers and adjust sub meu*/
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -115,20 +115,20 @@ textarea:focus {
|
||||||
.button:hover,
|
.button:hover,
|
||||||
.button.focus,
|
.button.focus,
|
||||||
.button:focus {
|
.button:focus {
|
||||||
border-color: darken( #7e8993, 5% );
|
border-color: color.adjust(#7e8993, $lightness: -5%);
|
||||||
color: darken( #32373c, 5% );
|
color: color.adjust(#32373c, $lightness: -5%);
|
||||||
}
|
}
|
||||||
|
|
||||||
.button.focus,
|
.button.focus,
|
||||||
.button:focus {
|
.button:focus {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: darken( #32373c, 5% );
|
color: color.adjust(#32373c, $lightness: -5%);
|
||||||
box-shadow: 0 0 0 1px #32373c;
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
}
|
}
|
||||||
|
|
||||||
.button:active {
|
.button:active {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: darken( #32373c, 5% );
|
color: color.adjust(#32373c, $lightness: -5%);
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -136,7 +136,7 @@ textarea:focus {
|
||||||
.button.active:focus,
|
.button.active:focus,
|
||||||
.button.active:hover {
|
.button.active:hover {
|
||||||
border-color: $button-color;
|
border-color: $button-color;
|
||||||
color: darken( #32373c, 5% );
|
color: color.adjust(#32373c, $lightness: -5%);
|
||||||
box-shadow: inset 0 2px 5px -3px $button-color;
|
box-shadow: inset 0 2px 5px -3px $button-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -154,16 +154,16 @@ textarea:focus {
|
||||||
.button.hover,
|
.button.hover,
|
||||||
.button:hover,
|
.button:hover,
|
||||||
.button-secondary:hover{
|
.button-secondary:hover{
|
||||||
border-color: darken($highlight-color, 10);
|
border-color: color.adjust($highlight-color, $lightness: -10%);
|
||||||
color: darken($highlight-color, 10);
|
color: color.adjust($highlight-color, $lightness: -10%);
|
||||||
}
|
}
|
||||||
|
|
||||||
.button.focus,
|
.button.focus,
|
||||||
.button:focus,
|
.button:focus,
|
||||||
.button-secondary:focus {
|
.button-secondary:focus {
|
||||||
border-color: lighten($highlight-color, 10);
|
border-color: color.adjust($highlight-color, $lightness: 10%);
|
||||||
color: darken($highlight-color, 20);;
|
color: color.adjust($highlight-color, $lightness: -20%);
|
||||||
box-shadow: 0 0 0 1px lighten($highlight-color, 10);
|
box-shadow: 0 0 0 1px color.adjust($highlight-color, $lightness: 10%);
|
||||||
}
|
}
|
||||||
|
|
||||||
.button-primary {
|
.button-primary {
|
||||||
|
|
@ -225,14 +225,14 @@ textarea:focus {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap .page-title-action:hover {
|
.wrap .page-title-action:hover {
|
||||||
color: darken($highlight-color, 10);
|
color: color.adjust($highlight-color, $lightness: -10%);
|
||||||
border-color: darken($highlight-color, 10);
|
border-color: color.adjust($highlight-color, $lightness: -10%);
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap .page-title-action:focus {
|
.wrap .page-title-action:focus {
|
||||||
border-color: lighten($highlight-color, 10);
|
border-color: color.adjust($highlight-color, $lightness: 10%);
|
||||||
color: darken($highlight-color, 20);;
|
color: color.adjust($highlight-color, $lightness: -20%);
|
||||||
box-shadow: 0 0 0 1px lighten($highlight-color, 10);
|
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 {
|
.wp-pointer .wp-pointer-content h3 {
|
||||||
background-color: $highlight-color;
|
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 {
|
.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 {
|
.nav-menus-php .item-edit:focus:before {
|
||||||
box-shadow:
|
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;
|
0 0 2px 1px $button-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -711,7 +711,7 @@ div#wp-responsive-toggle a:before {
|
||||||
#customize-save-button-wrapper .save:focus,
|
#customize-save-button-wrapper .save:focus,
|
||||||
#publish-settings:focus {
|
#publish-settings:focus {
|
||||||
box-shadow:
|
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;
|
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:hover .collapse-sidebar-arrow,
|
||||||
.wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
|
.wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
|
||||||
box-shadow:
|
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;
|
0 0 2px 1px $button-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -9,8 +9,8 @@
|
||||||
|
|
||||||
&:hover,
|
&:hover,
|
||||||
&:focus {
|
&:focus {
|
||||||
background: lighten( $button-color, 3% );
|
background: color.adjust($button-color, $lightness: 3%);
|
||||||
border-color: darken( $button-color, 3% );
|
border-color: color.adjust($button-color, $lightness: -3%);
|
||||||
color: $button-text-color;
|
color: $button-text-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -21,8 +21,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&:active {
|
&:active {
|
||||||
background: darken( $button-color, 5% );
|
background: color.adjust($button-color, $lightness: -5%);
|
||||||
border-color: darken( $button-color, 5% );
|
border-color: color.adjust($button-color, $lightness: -5%);
|
||||||
color: $button-text-color;
|
color: $button-text-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -31,7 +31,7 @@
|
||||||
&.active:hover {
|
&.active:hover {
|
||||||
background: $button-color;
|
background: $button-color;
|
||||||
color: $button-text-color;
|
color: $button-text-color;
|
||||||
border-color: darken( $button-color, 15% );
|
border-color: color.adjust($button-color, $lightness: -15%);
|
||||||
box-shadow: inset 0 2px 5px -3px darken( $button-color, 50% );
|
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;
|
$text-color: #fff !default;
|
||||||
$base-color: #23282d !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;
|
$highlight-color: #0073aa !default;
|
||||||
$notification-color: #d54e21 !default;
|
$notification-color: #d54e21 !default;
|
||||||
|
|
||||||
|
|
@ -16,7 +16,7 @@ $notification-color: #d54e21 !default;
|
||||||
$body-background: #f1f1f1 !default;
|
$body-background: #f1f1f1 !default;
|
||||||
|
|
||||||
$link: #0073aa !default;
|
$link: #0073aa !default;
|
||||||
$link-focus: lighten( $link, 10% ) !default;
|
$link-focus: color.adjust($link, $lightness: 10%) !default;
|
||||||
|
|
||||||
$button-color: $highlight-color !default;
|
$button-color: $highlight-color !default;
|
||||||
$button-text-color: $text-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-current-background: $menu-highlight-background !default;
|
||||||
|
|
||||||
$menu-submenu-text: mix( $base-color, $text-color, 30% ) !default;
|
$menu-submenu-text: mix( $base-color, $text-color, 30% ) !default;
|
||||||
$menu-submenu-background: darken( $base-color, 7% ) !default;
|
$menu-submenu-background: color.adjust($base-color, $lightness: -7%) !default;
|
||||||
$menu-submenu-background-alt: desaturate( lighten( $menu-background, 7% ), 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-focus-text: $highlight-color !default;
|
||||||
$menu-submenu-current-text: $text-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-text: $text-color !default;
|
||||||
$menu-collapse-focus-icon: $menu-highlight-icon !default;
|
$menu-collapse-focus-icon: $menu-highlight-icon !default;
|
||||||
|
|
||||||
$adminbar-avatar-frame: lighten( $menu-background, 7% ) !default;
|
$adminbar-avatar-frame: color.adjust($menu-background, $lightness: 7%) !default;
|
||||||
$adminbar-input-background: lighten( $menu-background, 7% ) !default;
|
$adminbar-input-background: color.adjust($menu-background, $lightness: 7%) !default;
|
||||||
|
|
||||||
$adminbar-recovery-exit-text: $menu-bubble-text !default;
|
$adminbar-recovery-exit-text: $menu-bubble-text !default;
|
||||||
$adminbar-recovery-exit-background: $menu-bubble-background !default;
|
$adminbar-recovery-exit-background: $menu-bubble-background !default;
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ a {
|
||||||
color: #0073aa;
|
color: #0073aa;
|
||||||
}
|
}
|
||||||
a:hover, a:active, a:focus {
|
a:hover, a:active, a:focus {
|
||||||
color: #0096dd;
|
color: rgb(0, 149.5, 221);
|
||||||
}
|
}
|
||||||
|
|
||||||
#post-body .misc-pub-post-status:before,
|
#post-body .misc-pub-post-status:before,
|
||||||
|
|
@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
|
||||||
color: #0073aa;
|
color: #0073aa;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
.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,
|
.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]:hover,
|
||||||
.wp-core-ui input[type=reset]:active {
|
.wp-core-ui input[type=reset]:active {
|
||||||
color: #0096dd;
|
color: rgb(0, 149.5, 221);
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=text]:focus,
|
input[type=text]:focus,
|
||||||
|
|
@ -98,25 +98,25 @@ textarea:focus {
|
||||||
.wp-core-ui .button:hover,
|
.wp-core-ui .button:hover,
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus {
|
.wp-core-ui .button:focus {
|
||||||
border-color: #717c87;
|
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus {
|
.wp-core-ui .button:focus {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: 0 0 0 1px #32373c;
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button:active {
|
.wp-core-ui .button:active {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.active,
|
.wp-core-ui .button.active,
|
||||||
.wp-core-ui .button.active:focus,
|
.wp-core-ui .button.active:focus,
|
||||||
.wp-core-ui .button.active:hover {
|
.wp-core-ui .button.active:hover {
|
||||||
border-color: #e1a948;
|
border-color: #e1a948;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: inset 0 2px 5px -3px #e1a948;
|
box-shadow: inset 0 2px 5px -3px #e1a948;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.active:focus {
|
.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:hover,
|
.wp-core-ui .button:hover,
|
||||||
.wp-core-ui .button-secondary:hover {
|
.wp-core-ui .button-secondary:hover {
|
||||||
border-color: #064054;
|
border-color: rgb(5.7446808511, 63.829787234, 84.2553191489);
|
||||||
color: #064054;
|
color: rgb(5.7446808511, 63.829787234, 84.2553191489);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus,
|
.wp-core-ui .button:focus,
|
||||||
.wp-core-ui .button-secondary:focus {
|
.wp-core-ui .button-secondary:focus {
|
||||||
border-color: #0c88b4;
|
border-color: rgb(12.2553191489, 136.170212766, 179.7446808511);
|
||||||
color: #021c25;
|
color: rgb(2.4893617021, 27.6595744681, 36.5106382979);
|
||||||
box-shadow: 0 0 0 1px #0c88b4;
|
box-shadow: 0 0 0 1px rgb(12.2553191489, 136.170212766, 179.7446808511);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:hover {
|
.wp-core-ui .button-primary:hover {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
|
@ -149,23 +149,23 @@ textarea:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||||
background: #e3af55;
|
background: rgb(227.1549295775, 175.1774647887, 85.1450704225);
|
||||||
border-color: #dfa33b;
|
border-color: rgb(222.8450704225, 162.8225352113, 58.8549295775);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:focus {
|
.wp-core-ui .button-primary:focus {
|
||||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #e1a948;
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #e1a948;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:active {
|
.wp-core-ui .button-primary:active {
|
||||||
background: #dd9f32;
|
background: rgb(221.4084507042, 158.7042253521, 50.0915492958);
|
||||||
border-color: #dd9f32;
|
border-color: rgb(221.4084507042, 158.7042253521, 50.0915492958);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||||
background: #e1a948;
|
background: #e1a948;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
border-color: #bd831f;
|
border-color: rgb(189.4436619718, 131.4718309859, 31.0563380282);
|
||||||
box-shadow: inset 0 2px 5px -3px #241906;
|
box-shadow: inset 0 2px 5px -3px rgb(36.0845070423, 25.0422535211, 5.9154929577);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-group > .button.active {
|
.wp-core-ui .button-group > .button.active {
|
||||||
border-color: #e1a948;
|
border-color: #e1a948;
|
||||||
|
|
@ -203,14 +203,14 @@ textarea:focus {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap .page-title-action:hover {
|
.wrap .page-title-action:hover {
|
||||||
color: #064054;
|
color: rgb(5.7446808511, 63.829787234, 84.2553191489);
|
||||||
border-color: #064054;
|
border-color: rgb(5.7446808511, 63.829787234, 84.2553191489);
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap .page-title-action:focus {
|
.wrap .page-title-action:focus {
|
||||||
border-color: #0c88b4;
|
border-color: rgb(12.2553191489, 136.170212766, 179.7446808511);
|
||||||
color: #021c25;
|
color: rgb(2.4893617021, 27.6595744681, 36.5106382979);
|
||||||
box-shadow: 0 0 0 1px #0c88b4;
|
box-shadow: 0 0 0 1px rgb(12.2553191489, 136.170212766, 179.7446808511);
|
||||||
}
|
}
|
||||||
|
|
||||||
.view-switch a.current:before {
|
.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,
|
||||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
||||||
background: #74b6ce;
|
background: rgb(116.162375, 182.0949364754, 205.537625);
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpadminbar .ab-submenu .ab-item,
|
#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 {
|
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: #6eb9d4;
|
background: rgb(109.571875, 185.228125, 212.128125);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: recovery mode */
|
/* 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:hover > .ab-item,
|
||||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background-color: #cb9841;
|
background-color: rgb(202.5, 152.1, 64.8);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: my account */
|
/* Admin Bar: my account */
|
||||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||||
border-color: #6eb9d4;
|
border-color: rgb(109.571875, 185.228125, 212.128125);
|
||||||
background-color: #6eb9d4;
|
background-color: rgb(109.571875, 185.228125, 212.128125);
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
#wpadminbar #wp-admin-bar-user-info .display-name {
|
||||||
|
|
@ -503,7 +503,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||||
/* Pointers */
|
/* Pointers */
|
||||||
.wp-pointer .wp-pointer-content h3 {
|
.wp-pointer .wp-pointer-content h3 {
|
||||||
background-color: #096484;
|
background-color: #096484;
|
||||||
border-color: #07526c;
|
border-color: rgb(7.3723404255, 81.914893617, 108.1276595745);
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-pointer .wp-pointer-content h3:before {
|
.wp-pointer .wp-pointer-content h3:before {
|
||||||
|
|
@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||||
|
|
||||||
/* Nav Menus */
|
/* Nav Menus */
|
||||||
.nav-menus-php .item-edit:focus:before {
|
.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 */
|
/* 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 #available-menu-items .item-add:focus:before,
|
||||||
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||||
.wp-core-ui #publish-settings: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.open .customize-help-toggle,
|
||||||
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
.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:hover .collapse-sidebar-arrow,
|
||||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .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 {
|
.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;
|
border-bottom-color: #e1a948;
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -16,7 +16,7 @@ a {
|
||||||
color: #0073aa;
|
color: #0073aa;
|
||||||
}
|
}
|
||||||
a:hover, a:active, a:focus {
|
a:hover, a:active, a:focus {
|
||||||
color: #0096dd;
|
color: rgb(0, 149.5, 221);
|
||||||
}
|
}
|
||||||
|
|
||||||
#post-body .misc-pub-post-status:before,
|
#post-body .misc-pub-post-status:before,
|
||||||
|
|
@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
|
||||||
color: #0073aa;
|
color: #0073aa;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
.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,
|
.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]:hover,
|
||||||
.wp-core-ui input[type=reset]:active {
|
.wp-core-ui input[type=reset]:active {
|
||||||
color: #0096dd;
|
color: rgb(0, 149.5, 221);
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=text]:focus,
|
input[type=text]:focus,
|
||||||
|
|
@ -98,25 +98,25 @@ textarea:focus {
|
||||||
.wp-core-ui .button:hover,
|
.wp-core-ui .button:hover,
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus {
|
.wp-core-ui .button:focus {
|
||||||
border-color: #717c87;
|
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus {
|
.wp-core-ui .button:focus {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: 0 0 0 1px #32373c;
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button:active {
|
.wp-core-ui .button:active {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.active,
|
.wp-core-ui .button.active,
|
||||||
.wp-core-ui .button.active:focus,
|
.wp-core-ui .button.active:focus,
|
||||||
.wp-core-ui .button.active:hover {
|
.wp-core-ui .button.active:hover {
|
||||||
border-color: #e1a948;
|
border-color: #e1a948;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: inset 0 2px 5px -3px #e1a948;
|
box-shadow: inset 0 2px 5px -3px #e1a948;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.active:focus {
|
.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:hover,
|
.wp-core-ui .button:hover,
|
||||||
.wp-core-ui .button-secondary:hover {
|
.wp-core-ui .button-secondary:hover {
|
||||||
border-color: #064054;
|
border-color: rgb(5.7446808511, 63.829787234, 84.2553191489);
|
||||||
color: #064054;
|
color: rgb(5.7446808511, 63.829787234, 84.2553191489);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus,
|
.wp-core-ui .button:focus,
|
||||||
.wp-core-ui .button-secondary:focus {
|
.wp-core-ui .button-secondary:focus {
|
||||||
border-color: #0c88b4;
|
border-color: rgb(12.2553191489, 136.170212766, 179.7446808511);
|
||||||
color: #021c25;
|
color: rgb(2.4893617021, 27.6595744681, 36.5106382979);
|
||||||
box-shadow: 0 0 0 1px #0c88b4;
|
box-shadow: 0 0 0 1px rgb(12.2553191489, 136.170212766, 179.7446808511);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:hover {
|
.wp-core-ui .button-primary:hover {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
|
@ -149,23 +149,23 @@ textarea:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||||
background: #e3af55;
|
background: rgb(227.1549295775, 175.1774647887, 85.1450704225);
|
||||||
border-color: #dfa33b;
|
border-color: rgb(222.8450704225, 162.8225352113, 58.8549295775);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:focus {
|
.wp-core-ui .button-primary:focus {
|
||||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #e1a948;
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #e1a948;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:active {
|
.wp-core-ui .button-primary:active {
|
||||||
background: #dd9f32;
|
background: rgb(221.4084507042, 158.7042253521, 50.0915492958);
|
||||||
border-color: #dd9f32;
|
border-color: rgb(221.4084507042, 158.7042253521, 50.0915492958);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||||
background: #e1a948;
|
background: #e1a948;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
border-color: #bd831f;
|
border-color: rgb(189.4436619718, 131.4718309859, 31.0563380282);
|
||||||
box-shadow: inset 0 2px 5px -3px #241906;
|
box-shadow: inset 0 2px 5px -3px rgb(36.0845070423, 25.0422535211, 5.9154929577);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-group > .button.active {
|
.wp-core-ui .button-group > .button.active {
|
||||||
border-color: #e1a948;
|
border-color: #e1a948;
|
||||||
|
|
@ -203,14 +203,14 @@ textarea:focus {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap .page-title-action:hover {
|
.wrap .page-title-action:hover {
|
||||||
color: #064054;
|
color: rgb(5.7446808511, 63.829787234, 84.2553191489);
|
||||||
border-color: #064054;
|
border-color: rgb(5.7446808511, 63.829787234, 84.2553191489);
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap .page-title-action:focus {
|
.wrap .page-title-action:focus {
|
||||||
border-color: #0c88b4;
|
border-color: rgb(12.2553191489, 136.170212766, 179.7446808511);
|
||||||
color: #021c25;
|
color: rgb(2.4893617021, 27.6595744681, 36.5106382979);
|
||||||
box-shadow: 0 0 0 1px #0c88b4;
|
box-shadow: 0 0 0 1px rgb(12.2553191489, 136.170212766, 179.7446808511);
|
||||||
}
|
}
|
||||||
|
|
||||||
.view-switch a.current:before {
|
.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,
|
||||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
||||||
background: #74b6ce;
|
background: rgb(116.162375, 182.0949364754, 205.537625);
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpadminbar .ab-submenu .ab-item,
|
#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 {
|
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: #6eb9d4;
|
background: rgb(109.571875, 185.228125, 212.128125);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: recovery mode */
|
/* 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:hover > .ab-item,
|
||||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background-color: #cb9841;
|
background-color: rgb(202.5, 152.1, 64.8);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: my account */
|
/* Admin Bar: my account */
|
||||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||||
border-color: #6eb9d4;
|
border-color: rgb(109.571875, 185.228125, 212.128125);
|
||||||
background-color: #6eb9d4;
|
background-color: rgb(109.571875, 185.228125, 212.128125);
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
#wpadminbar #wp-admin-bar-user-info .display-name {
|
||||||
|
|
@ -503,7 +503,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||||
/* Pointers */
|
/* Pointers */
|
||||||
.wp-pointer .wp-pointer-content h3 {
|
.wp-pointer .wp-pointer-content h3 {
|
||||||
background-color: #096484;
|
background-color: #096484;
|
||||||
border-color: #07526c;
|
border-color: rgb(7.3723404255, 81.914893617, 108.1276595745);
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-pointer .wp-pointer-content h3:before {
|
.wp-pointer .wp-pointer-content h3:before {
|
||||||
|
|
@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||||
|
|
||||||
/* Nav Menus */
|
/* Nav Menus */
|
||||||
.nav-menus-php .item-edit:focus:before {
|
.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 */
|
/* 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 #available-menu-items .item-add:focus:before,
|
||||||
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||||
.wp-core-ui #publish-settings: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.open .customize-help-toggle,
|
||||||
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
.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:hover .collapse-sidebar-arrow,
|
||||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .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 {
|
.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;
|
border-bottom-color: #e1a948;
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -1,3 +1,5 @@
|
||||||
|
@use "sass:color";
|
||||||
|
|
||||||
$scheme-name: "blue";
|
$scheme-name: "blue";
|
||||||
$base-color: #52accc;
|
$base-color: #52accc;
|
||||||
$icon-color: #e5f8ff;
|
$icon-color: #e5f8ff;
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ a {
|
||||||
color: #0073aa;
|
color: #0073aa;
|
||||||
}
|
}
|
||||||
a:hover, a:active, a:focus {
|
a:hover, a:active, a:focus {
|
||||||
color: #0096dd;
|
color: rgb(0, 149.5, 221);
|
||||||
}
|
}
|
||||||
|
|
||||||
#post-body .misc-pub-post-status:before,
|
#post-body .misc-pub-post-status:before,
|
||||||
|
|
@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
|
||||||
color: #0073aa;
|
color: #0073aa;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
.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,
|
.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]:hover,
|
||||||
.wp-core-ui input[type=reset]:active {
|
.wp-core-ui input[type=reset]:active {
|
||||||
color: #0096dd;
|
color: rgb(0, 149.5, 221);
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=text]:focus,
|
input[type=text]:focus,
|
||||||
|
|
@ -98,25 +98,25 @@ textarea:focus {
|
||||||
.wp-core-ui .button:hover,
|
.wp-core-ui .button:hover,
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus {
|
.wp-core-ui .button:focus {
|
||||||
border-color: #717c87;
|
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus {
|
.wp-core-ui .button:focus {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: 0 0 0 1px #32373c;
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button:active {
|
.wp-core-ui .button:active {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.active,
|
.wp-core-ui .button.active,
|
||||||
.wp-core-ui .button.active:focus,
|
.wp-core-ui .button.active:focus,
|
||||||
.wp-core-ui .button.active:hover {
|
.wp-core-ui .button.active:hover {
|
||||||
border-color: #c7a589;
|
border-color: #c7a589;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: inset 0 2px 5px -3px #c7a589;
|
box-shadow: inset 0 2px 5px -3px #c7a589;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.active:focus {
|
.wp-core-ui .button.active:focus {
|
||||||
|
|
@ -128,23 +128,23 @@ textarea:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||||
background: #ccad93;
|
background: rgb(203.924137931, 172.9137931034, 147.375862069);
|
||||||
border-color: #c29d7f;
|
border-color: rgb(194.075862069, 157.0862068966, 126.624137931);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:focus {
|
.wp-core-ui .button-primary:focus {
|
||||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #c7a589;
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #c7a589;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:active {
|
.wp-core-ui .button-primary:active {
|
||||||
background: #bf9878;
|
background: rgb(190.7931034483, 151.8103448276, 119.7068965517);
|
||||||
border-color: #bf9878;
|
border-color: rgb(190.7931034483, 151.8103448276, 119.7068965517);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||||
background: #c7a589;
|
background: #c7a589;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
border-color: #ae7d55;
|
border-color: rgb(174.3793103448, 125.4310344828, 85.1206896552);
|
||||||
box-shadow: inset 0 2px 5px -3px #37271a;
|
box-shadow: inset 0 2px 5px -3px rgb(54.9310344828, 39.1034482759, 26.0689655172);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-group > .button.active {
|
.wp-core-ui .button-group > .button.active {
|
||||||
border-color: #c7a589;
|
border-color: #c7a589;
|
||||||
|
|
@ -229,23 +229,23 @@ textarea:focus {
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||||
#adminmenu a.wp-has-current-submenu:focus + .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.opensub:hover:after,
|
||||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within: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 {
|
#adminmenu .wp-submenu .wp-submenu-head {
|
||||||
color: #cdcbc9;
|
color: rgb(205.2, 203.1, 201.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
#adminmenu .wp-submenu a,
|
#adminmenu .wp-submenu a,
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||||
#adminmenu .wp-has-current-submenu.opensub .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-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
#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:hover a .awaiting-mod,
|
||||||
#adminmenu li.menu-top:hover > a .update-plugins {
|
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: #46403c;
|
background: rgb(69.7436363636, 64.2581818182, 59.5563636364);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Menu: collapse button */
|
/* 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.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||||
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||||
color: #c7a589;
|
color: #c7a589;
|
||||||
background: #46403c;
|
background: rgb(69.7436363636, 64.2581818182, 59.5563636364);
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
||||||
|
|
@ -365,19 +365,19 @@ ul#adminmenu > li.current > a.current:after {
|
||||||
|
|
||||||
/* Admin Bar: submenu */
|
/* Admin Bar: submenu */
|
||||||
#wpadminbar .menupop .ab-sub-wrapper {
|
#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,
|
||||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
#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 .ab-submenu .ab-item,
|
||||||
#wpadminbar .quicklinks .menupop ul li a,
|
#wpadminbar .quicklinks .menupop ul li a,
|
||||||
#wpadminbar .quicklinks .menupop.hover ul li a,
|
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||||
#wpadminbar.nojs .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,
|
#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 {
|
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: #6c645c;
|
background: rgb(108.2563636364, 99.7418181818, 92.4436363636);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: recovery mode */
|
/* 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:hover > .ab-item,
|
||||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background-color: #8e946a;
|
background-color: rgb(142.2, 147.6, 106.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: my account */
|
/* Admin Bar: my account */
|
||||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||||
border-color: #6c645c;
|
border-color: rgb(108.2563636364, 99.7418181818, 92.4436363636);
|
||||||
background-color: #6c645c;
|
background-color: rgb(108.2563636364, 99.7418181818, 92.4436363636);
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
#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 {
|
#wpadminbar #wp-admin-bar-user-info .username {
|
||||||
color: #cdcbc9;
|
color: rgb(205.2, 203.1, 201.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Pointers */
|
/* Pointers */
|
||||||
.wp-pointer .wp-pointer-content h3 {
|
.wp-pointer .wp-pointer-content h3 {
|
||||||
background-color: #c7a589;
|
background-color: #c7a589;
|
||||||
border-color: #bf9878;
|
border-color: rgb(190.7931034483, 151.8103448276, 119.7068965517);
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-pointer .wp-pointer-content h3:before {
|
.wp-pointer .wp-pointer-content h3:before {
|
||||||
|
|
@ -553,7 +553,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||||
|
|
||||||
/* Nav Menus */
|
/* Nav Menus */
|
||||||
.nav-menus-php .item-edit:focus:before {
|
.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 */
|
/* Responsive Component */
|
||||||
|
|
@ -567,7 +567,7 @@ div#wp-responsive-toggle a:before {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
.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 {
|
.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 #available-menu-items .item-add:focus:before,
|
||||||
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||||
.wp-core-ui #publish-settings: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.open .customize-help-toggle,
|
||||||
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
.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:hover .collapse-sidebar-arrow,
|
||||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .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 {
|
.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;
|
border-bottom-color: #c7a589;
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -16,7 +16,7 @@ a {
|
||||||
color: #0073aa;
|
color: #0073aa;
|
||||||
}
|
}
|
||||||
a:hover, a:active, a:focus {
|
a:hover, a:active, a:focus {
|
||||||
color: #0096dd;
|
color: rgb(0, 149.5, 221);
|
||||||
}
|
}
|
||||||
|
|
||||||
#post-body .misc-pub-post-status:before,
|
#post-body .misc-pub-post-status:before,
|
||||||
|
|
@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
|
||||||
color: #0073aa;
|
color: #0073aa;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
.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,
|
.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]:hover,
|
||||||
.wp-core-ui input[type=reset]:active {
|
.wp-core-ui input[type=reset]:active {
|
||||||
color: #0096dd;
|
color: rgb(0, 149.5, 221);
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=text]:focus,
|
input[type=text]:focus,
|
||||||
|
|
@ -98,25 +98,25 @@ textarea:focus {
|
||||||
.wp-core-ui .button:hover,
|
.wp-core-ui .button:hover,
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus {
|
.wp-core-ui .button:focus {
|
||||||
border-color: #717c87;
|
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus {
|
.wp-core-ui .button:focus {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: 0 0 0 1px #32373c;
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button:active {
|
.wp-core-ui .button:active {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.active,
|
.wp-core-ui .button.active,
|
||||||
.wp-core-ui .button.active:focus,
|
.wp-core-ui .button.active:focus,
|
||||||
.wp-core-ui .button.active:hover {
|
.wp-core-ui .button.active:hover {
|
||||||
border-color: #c7a589;
|
border-color: #c7a589;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: inset 0 2px 5px -3px #c7a589;
|
box-shadow: inset 0 2px 5px -3px #c7a589;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.active:focus {
|
.wp-core-ui .button.active:focus {
|
||||||
|
|
@ -128,23 +128,23 @@ textarea:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||||
background: #ccad93;
|
background: rgb(203.924137931, 172.9137931034, 147.375862069);
|
||||||
border-color: #c29d7f;
|
border-color: rgb(194.075862069, 157.0862068966, 126.624137931);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:focus {
|
.wp-core-ui .button-primary:focus {
|
||||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #c7a589;
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #c7a589;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:active {
|
.wp-core-ui .button-primary:active {
|
||||||
background: #bf9878;
|
background: rgb(190.7931034483, 151.8103448276, 119.7068965517);
|
||||||
border-color: #bf9878;
|
border-color: rgb(190.7931034483, 151.8103448276, 119.7068965517);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||||
background: #c7a589;
|
background: #c7a589;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
border-color: #ae7d55;
|
border-color: rgb(174.3793103448, 125.4310344828, 85.1206896552);
|
||||||
box-shadow: inset 0 2px 5px -3px #37271a;
|
box-shadow: inset 0 2px 5px -3px rgb(54.9310344828, 39.1034482759, 26.0689655172);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-group > .button.active {
|
.wp-core-ui .button-group > .button.active {
|
||||||
border-color: #c7a589;
|
border-color: #c7a589;
|
||||||
|
|
@ -229,23 +229,23 @@ textarea:focus {
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||||
#adminmenu a.wp-has-current-submenu:focus + .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.opensub:hover:after,
|
||||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within: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 {
|
#adminmenu .wp-submenu .wp-submenu-head {
|
||||||
color: #cdcbc9;
|
color: rgb(205.2, 203.1, 201.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
#adminmenu .wp-submenu a,
|
#adminmenu .wp-submenu a,
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||||
#adminmenu .wp-has-current-submenu.opensub .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-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
#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:hover a .awaiting-mod,
|
||||||
#adminmenu li.menu-top:hover > a .update-plugins {
|
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: #46403c;
|
background: rgb(69.7436363636, 64.2581818182, 59.5563636364);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Menu: collapse button */
|
/* 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.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||||
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||||
color: #c7a589;
|
color: #c7a589;
|
||||||
background: #46403c;
|
background: rgb(69.7436363636, 64.2581818182, 59.5563636364);
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
||||||
|
|
@ -365,19 +365,19 @@ ul#adminmenu > li.current > a.current:after {
|
||||||
|
|
||||||
/* Admin Bar: submenu */
|
/* Admin Bar: submenu */
|
||||||
#wpadminbar .menupop .ab-sub-wrapper {
|
#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,
|
||||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
#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 .ab-submenu .ab-item,
|
||||||
#wpadminbar .quicklinks .menupop ul li a,
|
#wpadminbar .quicklinks .menupop ul li a,
|
||||||
#wpadminbar .quicklinks .menupop.hover ul li a,
|
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||||
#wpadminbar.nojs .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,
|
#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 {
|
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: #6c645c;
|
background: rgb(108.2563636364, 99.7418181818, 92.4436363636);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: recovery mode */
|
/* 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:hover > .ab-item,
|
||||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background-color: #8e946a;
|
background-color: rgb(142.2, 147.6, 106.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: my account */
|
/* Admin Bar: my account */
|
||||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||||
border-color: #6c645c;
|
border-color: rgb(108.2563636364, 99.7418181818, 92.4436363636);
|
||||||
background-color: #6c645c;
|
background-color: rgb(108.2563636364, 99.7418181818, 92.4436363636);
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
#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 {
|
#wpadminbar #wp-admin-bar-user-info .username {
|
||||||
color: #cdcbc9;
|
color: rgb(205.2, 203.1, 201.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Pointers */
|
/* Pointers */
|
||||||
.wp-pointer .wp-pointer-content h3 {
|
.wp-pointer .wp-pointer-content h3 {
|
||||||
background-color: #c7a589;
|
background-color: #c7a589;
|
||||||
border-color: #bf9878;
|
border-color: rgb(190.7931034483, 151.8103448276, 119.7068965517);
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-pointer .wp-pointer-content h3:before {
|
.wp-pointer .wp-pointer-content h3:before {
|
||||||
|
|
@ -553,7 +553,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||||
|
|
||||||
/* Nav Menus */
|
/* Nav Menus */
|
||||||
.nav-menus-php .item-edit:focus:before {
|
.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 */
|
/* Responsive Component */
|
||||||
|
|
@ -567,7 +567,7 @@ div#wp-responsive-toggle a:before {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
.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 {
|
.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 #available-menu-items .item-add:focus:before,
|
||||||
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||||
.wp-core-ui #publish-settings: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.open .customize-help-toggle,
|
||||||
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
.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:hover .collapse-sidebar-arrow,
|
||||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .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 {
|
.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;
|
border-bottom-color: #c7a589;
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -1,3 +1,5 @@
|
||||||
|
@use "sass:color";
|
||||||
|
|
||||||
$scheme-name: "coffee";
|
$scheme-name: "coffee";
|
||||||
$base-color: #59524c;
|
$base-color: #59524c;
|
||||||
$highlight-color: #c7a589;
|
$highlight-color: #c7a589;
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ a {
|
||||||
color: #0073aa;
|
color: #0073aa;
|
||||||
}
|
}
|
||||||
a:hover, a:active, a:focus {
|
a:hover, a:active, a:focus {
|
||||||
color: #0096dd;
|
color: rgb(0, 149.5, 221);
|
||||||
}
|
}
|
||||||
|
|
||||||
#post-body .misc-pub-post-status:before,
|
#post-body .misc-pub-post-status:before,
|
||||||
|
|
@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
|
||||||
color: #0073aa;
|
color: #0073aa;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
.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,
|
.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]:hover,
|
||||||
.wp-core-ui input[type=reset]:active {
|
.wp-core-ui input[type=reset]:active {
|
||||||
color: #0096dd;
|
color: rgb(0, 149.5, 221);
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=text]:focus,
|
input[type=text]:focus,
|
||||||
|
|
@ -98,25 +98,25 @@ textarea:focus {
|
||||||
.wp-core-ui .button:hover,
|
.wp-core-ui .button:hover,
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus {
|
.wp-core-ui .button:focus {
|
||||||
border-color: #717c87;
|
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus {
|
.wp-core-ui .button:focus {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: 0 0 0 1px #32373c;
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button:active {
|
.wp-core-ui .button:active {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.active,
|
.wp-core-ui .button.active,
|
||||||
.wp-core-ui .button.active:focus,
|
.wp-core-ui .button.active:focus,
|
||||||
.wp-core-ui .button.active:hover {
|
.wp-core-ui .button.active:hover {
|
||||||
border-color: #a3b745;
|
border-color: #a3b745;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: inset 0 2px 5px -3px #a3b745;
|
box-shadow: inset 0 2px 5px -3px #a3b745;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.active:focus {
|
.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:hover,
|
.wp-core-ui .button:hover,
|
||||||
.wp-core-ui .button-secondary:hover {
|
.wp-core-ui .button-secondary:hover {
|
||||||
border-color: #829237;
|
border-color: rgb(130.0119047619, 145.9642857143, 55.0357142857);
|
||||||
color: #829237;
|
color: rgb(130.0119047619, 145.9642857143, 55.0357142857);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus,
|
.wp-core-ui .button:focus,
|
||||||
.wp-core-ui .button-secondary:focus {
|
.wp-core-ui .button-secondary:focus {
|
||||||
border-color: #b6c669;
|
border-color: rgb(181.8928571429, 198.3214285714, 104.6785714286);
|
||||||
color: #616d29;
|
color: rgb(97.0238095238, 108.9285714286, 41.0714285714);
|
||||||
box-shadow: 0 0 0 1px #b6c669;
|
box-shadow: 0 0 0 1px rgb(181.8928571429, 198.3214285714, 104.6785714286);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:hover {
|
.wp-core-ui .button-primary:hover {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
|
@ -149,23 +149,23 @@ textarea:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||||
background: #a9bd4f;
|
background: rgb(169.2845238095, 188.5464285714, 78.7535714286);
|
||||||
border-color: #99ac41;
|
border-color: rgb(153.1035714286, 171.8892857143, 64.8107142857);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:focus {
|
.wp-core-ui .button-primary:focus {
|
||||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #a3b745;
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #a3b745;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:active {
|
.wp-core-ui .button-primary:active {
|
||||||
background: #93a43e;
|
background: rgb(146.505952381, 164.4821428571, 62.0178571429);
|
||||||
border-color: #93a43e;
|
border-color: rgb(146.505952381, 164.4821428571, 62.0178571429);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||||
background: #a3b745;
|
background: #a3b745;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
border-color: #727f30;
|
border-color: rgb(113.5178571429, 127.4464285714, 48.0535714286);
|
||||||
box-shadow: inset 0 2px 5px -3px black;
|
box-shadow: inset 0 2px 5px -3px hsl(70.5263157895, 45.2380952381%, -0.5882352941%);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-group > .button.active {
|
.wp-core-ui .button-group > .button.active {
|
||||||
border-color: #a3b745;
|
border-color: #a3b745;
|
||||||
|
|
@ -203,14 +203,14 @@ textarea:focus {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap .page-title-action:hover {
|
.wrap .page-title-action:hover {
|
||||||
color: #829237;
|
color: rgb(130.0119047619, 145.9642857143, 55.0357142857);
|
||||||
border-color: #829237;
|
border-color: rgb(130.0119047619, 145.9642857143, 55.0357142857);
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap .page-title-action:focus {
|
.wrap .page-title-action:focus {
|
||||||
border-color: #b6c669;
|
border-color: rgb(181.8928571429, 198.3214285714, 104.6785714286);
|
||||||
color: #616d29;
|
color: rgb(97.0238095238, 108.9285714286, 41.0714285714);
|
||||||
box-shadow: 0 0 0 1px #b6c669;
|
box-shadow: 0 0 0 1px rgb(181.8928571429, 198.3214285714, 104.6785714286);
|
||||||
}
|
}
|
||||||
|
|
||||||
.view-switch a.current:before {
|
.view-switch a.current:before {
|
||||||
|
|
@ -262,23 +262,23 @@ textarea:focus {
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||||
#adminmenu a.wp-has-current-submenu:focus + .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.opensub:hover:after,
|
||||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within: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 {
|
#adminmenu .wp-submenu .wp-submenu-head {
|
||||||
color: #cbc5d3;
|
color: rgb(203.1, 197.4, 211.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
#adminmenu .wp-submenu a,
|
#adminmenu .wp-submenu a,
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||||
#adminmenu .wp-has-current-submenu.opensub .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-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
#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:hover a .awaiting-mod,
|
||||||
#adminmenu li.menu-top:hover > a .update-plugins {
|
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: #413256;
|
background: rgb(64.9802325581, 49.9238372093, 86.3761627907);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Menu: collapse button */
|
/* 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.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||||
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||||
color: #a3b745;
|
color: #a3b745;
|
||||||
background: #413256;
|
background: rgb(64.9802325581, 49.9238372093, 86.3761627907);
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
||||||
|
|
@ -398,19 +398,19 @@ ul#adminmenu > li.current > a.current:after {
|
||||||
|
|
||||||
/* Admin Bar: submenu */
|
/* Admin Bar: submenu */
|
||||||
#wpadminbar .menupop .ab-sub-wrapper {
|
#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,
|
||||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
#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 .ab-submenu .ab-item,
|
||||||
#wpadminbar .quicklinks .menupop ul li a,
|
#wpadminbar .quicklinks .menupop ul li a,
|
||||||
#wpadminbar .quicklinks .menupop.hover ul li a,
|
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||||
#wpadminbar.nojs .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,
|
#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 {
|
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: #634c84;
|
background: rgb(99.0197674419, 76.0761627907, 131.6238372093);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: recovery mode */
|
/* 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:hover > .ab-item,
|
||||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background-color: #bf6413;
|
background-color: rgb(190.8, 99.9, 18.9);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: my account */
|
/* Admin Bar: my account */
|
||||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||||
border-color: #634c84;
|
border-color: rgb(99.0197674419, 76.0761627907, 131.6238372093);
|
||||||
background-color: #634c84;
|
background-color: rgb(99.0197674419, 76.0761627907, 131.6238372093);
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
#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 {
|
#wpadminbar #wp-admin-bar-user-info .username {
|
||||||
color: #cbc5d3;
|
color: rgb(203.1, 197.4, 211.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Pointers */
|
/* Pointers */
|
||||||
.wp-pointer .wp-pointer-content h3 {
|
.wp-pointer .wp-pointer-content h3 {
|
||||||
background-color: #a3b745;
|
background-color: #a3b745;
|
||||||
border-color: #93a43e;
|
border-color: rgb(146.505952381, 164.4821428571, 62.0178571429);
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-pointer .wp-pointer-content h3:before {
|
.wp-pointer .wp-pointer-content h3:before {
|
||||||
|
|
@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||||
|
|
||||||
/* Nav Menus */
|
/* Nav Menus */
|
||||||
.nav-menus-php .item-edit:focus:before {
|
.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 */
|
/* Responsive Component */
|
||||||
|
|
@ -600,7 +600,7 @@ div#wp-responsive-toggle a:before {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
.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 {
|
.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 #available-menu-items .item-add:focus:before,
|
||||||
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||||
.wp-core-ui #publish-settings: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.open .customize-help-toggle,
|
||||||
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
.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:hover .collapse-sidebar-arrow,
|
||||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .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 {
|
.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;
|
border-bottom-color: #a3b745;
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -16,7 +16,7 @@ a {
|
||||||
color: #0073aa;
|
color: #0073aa;
|
||||||
}
|
}
|
||||||
a:hover, a:active, a:focus {
|
a:hover, a:active, a:focus {
|
||||||
color: #0096dd;
|
color: rgb(0, 149.5, 221);
|
||||||
}
|
}
|
||||||
|
|
||||||
#post-body .misc-pub-post-status:before,
|
#post-body .misc-pub-post-status:before,
|
||||||
|
|
@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
|
||||||
color: #0073aa;
|
color: #0073aa;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
.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,
|
.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]:hover,
|
||||||
.wp-core-ui input[type=reset]:active {
|
.wp-core-ui input[type=reset]:active {
|
||||||
color: #0096dd;
|
color: rgb(0, 149.5, 221);
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=text]:focus,
|
input[type=text]:focus,
|
||||||
|
|
@ -98,25 +98,25 @@ textarea:focus {
|
||||||
.wp-core-ui .button:hover,
|
.wp-core-ui .button:hover,
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus {
|
.wp-core-ui .button:focus {
|
||||||
border-color: #717c87;
|
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus {
|
.wp-core-ui .button:focus {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: 0 0 0 1px #32373c;
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button:active {
|
.wp-core-ui .button:active {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.active,
|
.wp-core-ui .button.active,
|
||||||
.wp-core-ui .button.active:focus,
|
.wp-core-ui .button.active:focus,
|
||||||
.wp-core-ui .button.active:hover {
|
.wp-core-ui .button.active:hover {
|
||||||
border-color: #a3b745;
|
border-color: #a3b745;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: inset 0 2px 5px -3px #a3b745;
|
box-shadow: inset 0 2px 5px -3px #a3b745;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.active:focus {
|
.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:hover,
|
.wp-core-ui .button:hover,
|
||||||
.wp-core-ui .button-secondary:hover {
|
.wp-core-ui .button-secondary:hover {
|
||||||
border-color: #829237;
|
border-color: rgb(130.0119047619, 145.9642857143, 55.0357142857);
|
||||||
color: #829237;
|
color: rgb(130.0119047619, 145.9642857143, 55.0357142857);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus,
|
.wp-core-ui .button:focus,
|
||||||
.wp-core-ui .button-secondary:focus {
|
.wp-core-ui .button-secondary:focus {
|
||||||
border-color: #b6c669;
|
border-color: rgb(181.8928571429, 198.3214285714, 104.6785714286);
|
||||||
color: #616d29;
|
color: rgb(97.0238095238, 108.9285714286, 41.0714285714);
|
||||||
box-shadow: 0 0 0 1px #b6c669;
|
box-shadow: 0 0 0 1px rgb(181.8928571429, 198.3214285714, 104.6785714286);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:hover {
|
.wp-core-ui .button-primary:hover {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
|
@ -149,23 +149,23 @@ textarea:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||||
background: #a9bd4f;
|
background: rgb(169.2845238095, 188.5464285714, 78.7535714286);
|
||||||
border-color: #99ac41;
|
border-color: rgb(153.1035714286, 171.8892857143, 64.8107142857);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:focus {
|
.wp-core-ui .button-primary:focus {
|
||||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #a3b745;
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #a3b745;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:active {
|
.wp-core-ui .button-primary:active {
|
||||||
background: #93a43e;
|
background: rgb(146.505952381, 164.4821428571, 62.0178571429);
|
||||||
border-color: #93a43e;
|
border-color: rgb(146.505952381, 164.4821428571, 62.0178571429);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||||
background: #a3b745;
|
background: #a3b745;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
border-color: #727f30;
|
border-color: rgb(113.5178571429, 127.4464285714, 48.0535714286);
|
||||||
box-shadow: inset 0 2px 5px -3px black;
|
box-shadow: inset 0 2px 5px -3px hsl(70.5263157895, 45.2380952381%, -0.5882352941%);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-group > .button.active {
|
.wp-core-ui .button-group > .button.active {
|
||||||
border-color: #a3b745;
|
border-color: #a3b745;
|
||||||
|
|
@ -203,14 +203,14 @@ textarea:focus {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap .page-title-action:hover {
|
.wrap .page-title-action:hover {
|
||||||
color: #829237;
|
color: rgb(130.0119047619, 145.9642857143, 55.0357142857);
|
||||||
border-color: #829237;
|
border-color: rgb(130.0119047619, 145.9642857143, 55.0357142857);
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap .page-title-action:focus {
|
.wrap .page-title-action:focus {
|
||||||
border-color: #b6c669;
|
border-color: rgb(181.8928571429, 198.3214285714, 104.6785714286);
|
||||||
color: #616d29;
|
color: rgb(97.0238095238, 108.9285714286, 41.0714285714);
|
||||||
box-shadow: 0 0 0 1px #b6c669;
|
box-shadow: 0 0 0 1px rgb(181.8928571429, 198.3214285714, 104.6785714286);
|
||||||
}
|
}
|
||||||
|
|
||||||
.view-switch a.current:before {
|
.view-switch a.current:before {
|
||||||
|
|
@ -262,23 +262,23 @@ textarea:focus {
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||||
#adminmenu a.wp-has-current-submenu:focus + .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.opensub:hover:after,
|
||||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within: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 {
|
#adminmenu .wp-submenu .wp-submenu-head {
|
||||||
color: #cbc5d3;
|
color: rgb(203.1, 197.4, 211.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
#adminmenu .wp-submenu a,
|
#adminmenu .wp-submenu a,
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||||
#adminmenu .wp-has-current-submenu.opensub .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-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
#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:hover a .awaiting-mod,
|
||||||
#adminmenu li.menu-top:hover > a .update-plugins {
|
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: #413256;
|
background: rgb(64.9802325581, 49.9238372093, 86.3761627907);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Menu: collapse button */
|
/* 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.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||||
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||||
color: #a3b745;
|
color: #a3b745;
|
||||||
background: #413256;
|
background: rgb(64.9802325581, 49.9238372093, 86.3761627907);
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
||||||
|
|
@ -398,19 +398,19 @@ ul#adminmenu > li.current > a.current:after {
|
||||||
|
|
||||||
/* Admin Bar: submenu */
|
/* Admin Bar: submenu */
|
||||||
#wpadminbar .menupop .ab-sub-wrapper {
|
#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,
|
||||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
#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 .ab-submenu .ab-item,
|
||||||
#wpadminbar .quicklinks .menupop ul li a,
|
#wpadminbar .quicklinks .menupop ul li a,
|
||||||
#wpadminbar .quicklinks .menupop.hover ul li a,
|
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||||
#wpadminbar.nojs .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,
|
#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 {
|
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: #634c84;
|
background: rgb(99.0197674419, 76.0761627907, 131.6238372093);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: recovery mode */
|
/* 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:hover > .ab-item,
|
||||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background-color: #bf6413;
|
background-color: rgb(190.8, 99.9, 18.9);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: my account */
|
/* Admin Bar: my account */
|
||||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||||
border-color: #634c84;
|
border-color: rgb(99.0197674419, 76.0761627907, 131.6238372093);
|
||||||
background-color: #634c84;
|
background-color: rgb(99.0197674419, 76.0761627907, 131.6238372093);
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
#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 {
|
#wpadminbar #wp-admin-bar-user-info .username {
|
||||||
color: #cbc5d3;
|
color: rgb(203.1, 197.4, 211.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Pointers */
|
/* Pointers */
|
||||||
.wp-pointer .wp-pointer-content h3 {
|
.wp-pointer .wp-pointer-content h3 {
|
||||||
background-color: #a3b745;
|
background-color: #a3b745;
|
||||||
border-color: #93a43e;
|
border-color: rgb(146.505952381, 164.4821428571, 62.0178571429);
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-pointer .wp-pointer-content h3:before {
|
.wp-pointer .wp-pointer-content h3:before {
|
||||||
|
|
@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||||
|
|
||||||
/* Nav Menus */
|
/* Nav Menus */
|
||||||
.nav-menus-php .item-edit:focus:before {
|
.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 */
|
/* Responsive Component */
|
||||||
|
|
@ -600,7 +600,7 @@ div#wp-responsive-toggle a:before {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
.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 {
|
.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 #available-menu-items .item-add:focus:before,
|
||||||
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||||
.wp-core-ui #publish-settings: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.open .customize-help-toggle,
|
||||||
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
.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:hover .collapse-sidebar-arrow,
|
||||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .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 {
|
.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;
|
border-bottom-color: #a3b745;
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -1,3 +1,5 @@
|
||||||
|
@use "sass:color";
|
||||||
|
|
||||||
$scheme-name: "ectoplasm";
|
$scheme-name: "ectoplasm";
|
||||||
$base-color: #523f6d;
|
$base-color: #523f6d;
|
||||||
$icon-color: #ece6f6;
|
$icon-color: #ece6f6;
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ a {
|
||||||
color: #0073aa;
|
color: #0073aa;
|
||||||
}
|
}
|
||||||
a:hover, a:active, a:focus {
|
a:hover, a:active, a:focus {
|
||||||
color: #0096dd;
|
color: rgb(0, 149.5, 221);
|
||||||
}
|
}
|
||||||
|
|
||||||
#post-body .misc-pub-post-status:before,
|
#post-body .misc-pub-post-status:before,
|
||||||
|
|
@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
|
||||||
color: #0073aa;
|
color: #0073aa;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
.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,
|
.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]:hover,
|
||||||
.wp-core-ui input[type=reset]:active {
|
.wp-core-ui input[type=reset]:active {
|
||||||
color: #0096dd;
|
color: rgb(0, 149.5, 221);
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=text]:focus,
|
input[type=text]:focus,
|
||||||
|
|
@ -98,25 +98,25 @@ textarea:focus {
|
||||||
.wp-core-ui .button:hover,
|
.wp-core-ui .button:hover,
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus {
|
.wp-core-ui .button:focus {
|
||||||
border-color: #717c87;
|
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus {
|
.wp-core-ui .button:focus {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: 0 0 0 1px #32373c;
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button:active {
|
.wp-core-ui .button:active {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.active,
|
.wp-core-ui .button.active,
|
||||||
.wp-core-ui .button.active:focus,
|
.wp-core-ui .button.active:focus,
|
||||||
.wp-core-ui .button.active:hover {
|
.wp-core-ui .button.active:hover {
|
||||||
border-color: #04a4cc;
|
border-color: #04a4cc;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: inset 0 2px 5px -3px #04a4cc;
|
box-shadow: inset 0 2px 5px -3px #04a4cc;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.active:focus {
|
.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:hover,
|
.wp-core-ui .button:hover,
|
||||||
.wp-core-ui .button-secondary:hover {
|
.wp-core-ui .button-secondary:hover {
|
||||||
border-color: #037c9a;
|
border-color: rgb(3.0192307692, 123.7884615385, 153.9807692308);
|
||||||
color: #037c9a;
|
color: rgb(3.0192307692, 123.7884615385, 153.9807692308);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus,
|
.wp-core-ui .button:focus,
|
||||||
.wp-core-ui .button-secondary:focus {
|
.wp-core-ui .button-secondary:focus {
|
||||||
border-color: #09cafa;
|
border-color: rgb(8.8269230769, 201.9038461538, 250.1730769231);
|
||||||
color: #025468;
|
color: rgb(2.0384615385, 83.5769230769, 103.9615384615);
|
||||||
box-shadow: 0 0 0 1px #09cafa;
|
box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:hover {
|
.wp-core-ui .button-primary:hover {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
|
@ -149,23 +149,23 @@ textarea:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||||
background: #04b0db;
|
background: rgb(4.2942307692, 176.0634615385, 219.0057692308);
|
||||||
border-color: #0498bd;
|
border-color: rgb(3.7057692308, 151.9365384615, 188.9942307692);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:focus {
|
.wp-core-ui .button-primary:focus {
|
||||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #04a4cc;
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #04a4cc;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:active {
|
.wp-core-ui .button-primary:active {
|
||||||
background: #0490b3;
|
background: rgb(3.5096153846, 143.8942307692, 178.9903846154);
|
||||||
border-color: #0490b3;
|
border-color: rgb(3.5096153846, 143.8942307692, 178.9903846154);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||||
background: #04a4cc;
|
background: #04a4cc;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
border-color: #036881;
|
border-color: rgb(2.5288461538, 103.6826923077, 128.9711538462);
|
||||||
box-shadow: inset 0 2px 5px -3px black;
|
box-shadow: inset 0 2px 5px -3px hsl(192, 96.1538461538%, -9.2156862745%);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-group > .button.active {
|
.wp-core-ui .button-group > .button.active {
|
||||||
border-color: #04a4cc;
|
border-color: #04a4cc;
|
||||||
|
|
@ -203,14 +203,14 @@ textarea:focus {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap .page-title-action:hover {
|
.wrap .page-title-action:hover {
|
||||||
color: #037c9a;
|
color: rgb(3.0192307692, 123.7884615385, 153.9807692308);
|
||||||
border-color: #037c9a;
|
border-color: rgb(3.0192307692, 123.7884615385, 153.9807692308);
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap .page-title-action:focus {
|
.wrap .page-title-action:focus {
|
||||||
border-color: #09cafa;
|
border-color: rgb(8.8269230769, 201.9038461538, 250.1730769231);
|
||||||
color: #025468;
|
color: rgb(2.0384615385, 83.5769230769, 103.9615384615);
|
||||||
box-shadow: 0 0 0 1px #09cafa;
|
box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231);
|
||||||
}
|
}
|
||||||
|
|
||||||
.view-switch a.current:before {
|
.view-switch a.current:before {
|
||||||
|
|
@ -271,14 +271,14 @@ textarea:focus {
|
||||||
}
|
}
|
||||||
|
|
||||||
#adminmenu .wp-submenu .wp-submenu-head {
|
#adminmenu .wp-submenu .wp-submenu-head {
|
||||||
color: #686868;
|
color: rgb(104.4, 104.4, 104.4);
|
||||||
}
|
}
|
||||||
|
|
||||||
#adminmenu .wp-submenu a,
|
#adminmenu .wp-submenu a,
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||||
#adminmenu .wp-has-current-submenu.opensub .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-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
#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,
|
||||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
#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 .ab-submenu .ab-item,
|
||||||
#wpadminbar .quicklinks .menupop ul li a,
|
#wpadminbar .quicklinks .menupop ul li a,
|
||||||
#wpadminbar .quicklinks .menupop.hover ul li a,
|
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||||
#wpadminbar.nojs .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,
|
#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 {
|
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||||
color: #333;
|
color: #333;
|
||||||
background: #f7f7f7;
|
background: rgb(246.85, 246.85, 246.85);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: recovery mode */
|
/* 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:hover > .ab-item,
|
||||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background-color: #c14606;
|
background-color: rgb(192.6, 70.2, 6.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: my account */
|
/* Admin Bar: my account */
|
||||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||||
border-color: #f7f7f7;
|
border-color: rgb(246.85, 246.85, 246.85);
|
||||||
background-color: #f7f7f7;
|
background-color: rgb(246.85, 246.85, 246.85);
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
#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 {
|
#wpadminbar #wp-admin-bar-user-info .username {
|
||||||
color: #686868;
|
color: rgb(104.4, 104.4, 104.4);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Pointers */
|
/* Pointers */
|
||||||
.wp-pointer .wp-pointer-content h3 {
|
.wp-pointer .wp-pointer-content h3 {
|
||||||
background-color: #04a4cc;
|
background-color: #04a4cc;
|
||||||
border-color: #0490b3;
|
border-color: rgb(3.5096153846, 143.8942307692, 178.9903846154);
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-pointer .wp-pointer-content h3:before {
|
.wp-pointer .wp-pointer-content h3:before {
|
||||||
|
|
@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||||
|
|
||||||
/* Nav Menus */
|
/* Nav Menus */
|
||||||
.nav-menus-php .item-edit:focus:before {
|
.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 */
|
/* 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 #available-menu-items .item-add:focus:before,
|
||||||
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||||
.wp-core-ui #publish-settings: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.open .customize-help-toggle,
|
||||||
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
.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:hover .collapse-sidebar-arrow,
|
||||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .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 {
|
.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;
|
border-bottom-color: #04a4cc;
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -16,7 +16,7 @@ a {
|
||||||
color: #0073aa;
|
color: #0073aa;
|
||||||
}
|
}
|
||||||
a:hover, a:active, a:focus {
|
a:hover, a:active, a:focus {
|
||||||
color: #0096dd;
|
color: rgb(0, 149.5, 221);
|
||||||
}
|
}
|
||||||
|
|
||||||
#post-body .misc-pub-post-status:before,
|
#post-body .misc-pub-post-status:before,
|
||||||
|
|
@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
|
||||||
color: #0073aa;
|
color: #0073aa;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
.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,
|
.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]:hover,
|
||||||
.wp-core-ui input[type=reset]:active {
|
.wp-core-ui input[type=reset]:active {
|
||||||
color: #0096dd;
|
color: rgb(0, 149.5, 221);
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=text]:focus,
|
input[type=text]:focus,
|
||||||
|
|
@ -98,25 +98,25 @@ textarea:focus {
|
||||||
.wp-core-ui .button:hover,
|
.wp-core-ui .button:hover,
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus {
|
.wp-core-ui .button:focus {
|
||||||
border-color: #717c87;
|
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus {
|
.wp-core-ui .button:focus {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: 0 0 0 1px #32373c;
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button:active {
|
.wp-core-ui .button:active {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.active,
|
.wp-core-ui .button.active,
|
||||||
.wp-core-ui .button.active:focus,
|
.wp-core-ui .button.active:focus,
|
||||||
.wp-core-ui .button.active:hover {
|
.wp-core-ui .button.active:hover {
|
||||||
border-color: #04a4cc;
|
border-color: #04a4cc;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: inset 0 2px 5px -3px #04a4cc;
|
box-shadow: inset 0 2px 5px -3px #04a4cc;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.active:focus {
|
.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:hover,
|
.wp-core-ui .button:hover,
|
||||||
.wp-core-ui .button-secondary:hover {
|
.wp-core-ui .button-secondary:hover {
|
||||||
border-color: #037c9a;
|
border-color: rgb(3.0192307692, 123.7884615385, 153.9807692308);
|
||||||
color: #037c9a;
|
color: rgb(3.0192307692, 123.7884615385, 153.9807692308);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus,
|
.wp-core-ui .button:focus,
|
||||||
.wp-core-ui .button-secondary:focus {
|
.wp-core-ui .button-secondary:focus {
|
||||||
border-color: #09cafa;
|
border-color: rgb(8.8269230769, 201.9038461538, 250.1730769231);
|
||||||
color: #025468;
|
color: rgb(2.0384615385, 83.5769230769, 103.9615384615);
|
||||||
box-shadow: 0 0 0 1px #09cafa;
|
box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:hover {
|
.wp-core-ui .button-primary:hover {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
|
@ -149,23 +149,23 @@ textarea:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||||
background: #04b0db;
|
background: rgb(4.2942307692, 176.0634615385, 219.0057692308);
|
||||||
border-color: #0498bd;
|
border-color: rgb(3.7057692308, 151.9365384615, 188.9942307692);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:focus {
|
.wp-core-ui .button-primary:focus {
|
||||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #04a4cc;
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #04a4cc;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:active {
|
.wp-core-ui .button-primary:active {
|
||||||
background: #0490b3;
|
background: rgb(3.5096153846, 143.8942307692, 178.9903846154);
|
||||||
border-color: #0490b3;
|
border-color: rgb(3.5096153846, 143.8942307692, 178.9903846154);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||||
background: #04a4cc;
|
background: #04a4cc;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
border-color: #036881;
|
border-color: rgb(2.5288461538, 103.6826923077, 128.9711538462);
|
||||||
box-shadow: inset 0 2px 5px -3px black;
|
box-shadow: inset 0 2px 5px -3px hsl(192, 96.1538461538%, -9.2156862745%);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-group > .button.active {
|
.wp-core-ui .button-group > .button.active {
|
||||||
border-color: #04a4cc;
|
border-color: #04a4cc;
|
||||||
|
|
@ -203,14 +203,14 @@ textarea:focus {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap .page-title-action:hover {
|
.wrap .page-title-action:hover {
|
||||||
color: #037c9a;
|
color: rgb(3.0192307692, 123.7884615385, 153.9807692308);
|
||||||
border-color: #037c9a;
|
border-color: rgb(3.0192307692, 123.7884615385, 153.9807692308);
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap .page-title-action:focus {
|
.wrap .page-title-action:focus {
|
||||||
border-color: #09cafa;
|
border-color: rgb(8.8269230769, 201.9038461538, 250.1730769231);
|
||||||
color: #025468;
|
color: rgb(2.0384615385, 83.5769230769, 103.9615384615);
|
||||||
box-shadow: 0 0 0 1px #09cafa;
|
box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231);
|
||||||
}
|
}
|
||||||
|
|
||||||
.view-switch a.current:before {
|
.view-switch a.current:before {
|
||||||
|
|
@ -271,14 +271,14 @@ textarea:focus {
|
||||||
}
|
}
|
||||||
|
|
||||||
#adminmenu .wp-submenu .wp-submenu-head {
|
#adminmenu .wp-submenu .wp-submenu-head {
|
||||||
color: #686868;
|
color: rgb(104.4, 104.4, 104.4);
|
||||||
}
|
}
|
||||||
|
|
||||||
#adminmenu .wp-submenu a,
|
#adminmenu .wp-submenu a,
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||||
#adminmenu .wp-has-current-submenu.opensub .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-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
#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,
|
||||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
#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 .ab-submenu .ab-item,
|
||||||
#wpadminbar .quicklinks .menupop ul li a,
|
#wpadminbar .quicklinks .menupop ul li a,
|
||||||
#wpadminbar .quicklinks .menupop.hover ul li a,
|
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||||
#wpadminbar.nojs .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,
|
#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 {
|
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||||
color: #333;
|
color: #333;
|
||||||
background: #f7f7f7;
|
background: rgb(246.85, 246.85, 246.85);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: recovery mode */
|
/* 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:hover > .ab-item,
|
||||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background-color: #c14606;
|
background-color: rgb(192.6, 70.2, 6.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: my account */
|
/* Admin Bar: my account */
|
||||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||||
border-color: #f7f7f7;
|
border-color: rgb(246.85, 246.85, 246.85);
|
||||||
background-color: #f7f7f7;
|
background-color: rgb(246.85, 246.85, 246.85);
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
#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 {
|
#wpadminbar #wp-admin-bar-user-info .username {
|
||||||
color: #686868;
|
color: rgb(104.4, 104.4, 104.4);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Pointers */
|
/* Pointers */
|
||||||
.wp-pointer .wp-pointer-content h3 {
|
.wp-pointer .wp-pointer-content h3 {
|
||||||
background-color: #04a4cc;
|
background-color: #04a4cc;
|
||||||
border-color: #0490b3;
|
border-color: rgb(3.5096153846, 143.8942307692, 178.9903846154);
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-pointer .wp-pointer-content h3:before {
|
.wp-pointer .wp-pointer-content h3:before {
|
||||||
|
|
@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||||
|
|
||||||
/* Nav Menus */
|
/* Nav Menus */
|
||||||
.nav-menus-php .item-edit:focus:before {
|
.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 */
|
/* 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 #available-menu-items .item-add:focus:before,
|
||||||
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||||
.wp-core-ui #publish-settings: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.open .customize-help-toggle,
|
||||||
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
.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:hover .collapse-sidebar-arrow,
|
||||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .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 {
|
.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;
|
border-bottom-color: #04a4cc;
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -1,3 +1,5 @@
|
||||||
|
@use "sass:color";
|
||||||
|
|
||||||
$scheme-name: "light";
|
$scheme-name: "light";
|
||||||
$base-color: #e5e5e5;
|
$base-color: #e5e5e5;
|
||||||
$icon-color: #999;
|
$icon-color: #999;
|
||||||
|
|
@ -19,7 +21,7 @@ $menu-collapse-text: #777;
|
||||||
$menu-collapse-focus-icon: #555;
|
$menu-collapse-focus-icon: #555;
|
||||||
|
|
||||||
$dashboard-accent-1: $highlight-color;
|
$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;
|
$dashboard-icon-background: $text-color;
|
||||||
|
|
||||||
@import "../_admin.scss";
|
@import "../_admin.scss";
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ a {
|
||||||
color: #0073aa;
|
color: #0073aa;
|
||||||
}
|
}
|
||||||
a:hover, a:active, a:focus {
|
a:hover, a:active, a:focus {
|
||||||
color: #0096dd;
|
color: rgb(0, 149.5, 221);
|
||||||
}
|
}
|
||||||
|
|
||||||
#post-body .misc-pub-post-status:before,
|
#post-body .misc-pub-post-status:before,
|
||||||
|
|
@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
|
||||||
color: #0073aa;
|
color: #0073aa;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
.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,
|
.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]:hover,
|
||||||
.wp-core-ui input[type=reset]:active {
|
.wp-core-ui input[type=reset]:active {
|
||||||
color: #0096dd;
|
color: rgb(0, 149.5, 221);
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=text]:focus,
|
input[type=text]:focus,
|
||||||
|
|
@ -98,25 +98,25 @@ textarea:focus {
|
||||||
.wp-core-ui .button:hover,
|
.wp-core-ui .button:hover,
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus {
|
.wp-core-ui .button:focus {
|
||||||
border-color: #717c87;
|
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus {
|
.wp-core-ui .button:focus {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: 0 0 0 1px #32373c;
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button:active {
|
.wp-core-ui .button:active {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.active,
|
.wp-core-ui .button.active,
|
||||||
.wp-core-ui .button.active:focus,
|
.wp-core-ui .button.active:focus,
|
||||||
.wp-core-ui .button.active:hover {
|
.wp-core-ui .button.active:hover {
|
||||||
border-color: #e14d43;
|
border-color: #e14d43;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: inset 0 2px 5px -3px #e14d43;
|
box-shadow: inset 0 2px 5px -3px #e14d43;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.active:focus {
|
.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:hover,
|
.wp-core-ui .button:hover,
|
||||||
.wp-core-ui .button-secondary:hover {
|
.wp-core-ui .button-secondary:hover {
|
||||||
border-color: #d02c21;
|
border-color: rgb(207.8348623853, 44.2201834862, 33.1651376147);
|
||||||
color: #d02c21;
|
color: rgb(207.8348623853, 44.2201834862, 33.1651376147);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus,
|
.wp-core-ui .button:focus,
|
||||||
.wp-core-ui .button-secondary:focus {
|
.wp-core-ui .button-secondary:focus {
|
||||||
border-color: #e8776f;
|
border-color: rgb(232.0183486239, 118.6422018349, 110.9816513761);
|
||||||
color: #a4231a;
|
color: rgb(163.8532110092, 34.8623853211, 26.1467889908);
|
||||||
box-shadow: 0 0 0 1px #e8776f;
|
box-shadow: 0 0 0 1px rgb(232.0183486239, 118.6422018349, 110.9816513761);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:hover {
|
.wp-core-ui .button-primary:hover {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
|
@ -149,23 +149,23 @@ textarea:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||||
background: #e35950;
|
background: rgb(227.1055045872, 89.4926605505, 80.1944954128);
|
||||||
border-color: #df4136;
|
border-color: rgb(222.8944954128, 64.5073394495, 53.8055045872);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:focus {
|
.wp-core-ui .button-primary:focus {
|
||||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #e14d43;
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #e14d43;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:active {
|
.wp-core-ui .button-primary:active {
|
||||||
background: #dd382d;
|
background: rgb(221.4908256881, 56.1788990826, 45.0091743119);
|
||||||
border-color: #dd382d;
|
border-color: rgb(221.4908256881, 56.1788990826, 45.0091743119);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||||
background: #e14d43;
|
background: #e14d43;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
border-color: #ba281e;
|
border-color: rgb(185.8440366972, 39.5412844037, 29.6559633028);
|
||||||
box-shadow: inset 0 2px 5px -3px #200705;
|
box-shadow: inset 0 2px 5px -3px rgb(31.9082568807, 6.7889908257, 5.0917431193);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-group > .button.active {
|
.wp-core-ui .button-group > .button.active {
|
||||||
border-color: #e14d43;
|
border-color: #e14d43;
|
||||||
|
|
@ -203,14 +203,14 @@ textarea:focus {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap .page-title-action:hover {
|
.wrap .page-title-action:hover {
|
||||||
color: #d02c21;
|
color: rgb(207.8348623853, 44.2201834862, 33.1651376147);
|
||||||
border-color: #d02c21;
|
border-color: rgb(207.8348623853, 44.2201834862, 33.1651376147);
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap .page-title-action:focus {
|
.wrap .page-title-action:focus {
|
||||||
border-color: #e8776f;
|
border-color: rgb(232.0183486239, 118.6422018349, 110.9816513761);
|
||||||
color: #a4231a;
|
color: rgb(163.8532110092, 34.8623853211, 26.1467889908);
|
||||||
box-shadow: 0 0 0 1px #e8776f;
|
box-shadow: 0 0 0 1px rgb(232.0183486239, 118.6422018349, 110.9816513761);
|
||||||
}
|
}
|
||||||
|
|
||||||
.view-switch a.current:before {
|
.view-switch a.current:before {
|
||||||
|
|
@ -262,23 +262,23 @@ textarea:focus {
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||||
#adminmenu a.wp-has-current-submenu:focus + .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.opensub:hover:after,
|
||||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within: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 {
|
#adminmenu .wp-submenu .wp-submenu-head {
|
||||||
color: #c3c4c5;
|
color: rgb(194.7, 196.2, 197.4);
|
||||||
}
|
}
|
||||||
|
|
||||||
#adminmenu .wp-submenu a,
|
#adminmenu .wp-submenu a,
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||||
#adminmenu .wp-has-current-submenu.opensub .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-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
#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:hover a .awaiting-mod,
|
||||||
#adminmenu li.menu-top:hover > a .update-plugins {
|
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: #26292c;
|
background: rgb(37.5230769231, 40.9974358974, 43.7769230769);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Menu: collapse button */
|
/* 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.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||||
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||||
color: #e14d43;
|
color: #e14d43;
|
||||||
background: #26292c;
|
background: rgb(37.5230769231, 40.9974358974, 43.7769230769);
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
||||||
|
|
@ -398,19 +398,19 @@ ul#adminmenu > li.current > a.current:after {
|
||||||
|
|
||||||
/* Admin Bar: submenu */
|
/* Admin Bar: submenu */
|
||||||
#wpadminbar .menupop .ab-sub-wrapper {
|
#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,
|
||||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
#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 .ab-submenu .ab-item,
|
||||||
#wpadminbar .quicklinks .menupop ul li a,
|
#wpadminbar .quicklinks .menupop ul li a,
|
||||||
#wpadminbar .quicklinks .menupop.hover ul li a,
|
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||||
#wpadminbar.nojs .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,
|
#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 {
|
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: #464d52;
|
background: rgb(70.4769230769, 77.0025641026, 82.2230769231);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: recovery mode */
|
/* 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:hover > .ab-item,
|
||||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background-color: #5f97a8;
|
background-color: rgb(94.5, 151.2, 168.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: my account */
|
/* Admin Bar: my account */
|
||||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||||
border-color: #464d52;
|
border-color: rgb(70.4769230769, 77.0025641026, 82.2230769231);
|
||||||
background-color: #464d52;
|
background-color: rgb(70.4769230769, 77.0025641026, 82.2230769231);
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
#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 {
|
#wpadminbar #wp-admin-bar-user-info .username {
|
||||||
color: #c3c4c5;
|
color: rgb(194.7, 196.2, 197.4);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Pointers */
|
/* Pointers */
|
||||||
.wp-pointer .wp-pointer-content h3 {
|
.wp-pointer .wp-pointer-content h3 {
|
||||||
background-color: #e14d43;
|
background-color: #e14d43;
|
||||||
border-color: #dd382d;
|
border-color: rgb(221.4908256881, 56.1788990826, 45.0091743119);
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-pointer .wp-pointer-content h3:before {
|
.wp-pointer .wp-pointer-content h3:before {
|
||||||
|
|
@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||||
|
|
||||||
/* Nav Menus */
|
/* Nav Menus */
|
||||||
.nav-menus-php .item-edit:focus:before {
|
.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 */
|
/* Responsive Component */
|
||||||
|
|
@ -600,7 +600,7 @@ div#wp-responsive-toggle a:before {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
.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 {
|
.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 #available-menu-items .item-add:focus:before,
|
||||||
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||||
.wp-core-ui #publish-settings: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.open .customize-help-toggle,
|
||||||
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
.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:hover .collapse-sidebar-arrow,
|
||||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .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 {
|
.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;
|
border-bottom-color: #e14d43;
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -16,7 +16,7 @@ a {
|
||||||
color: #0073aa;
|
color: #0073aa;
|
||||||
}
|
}
|
||||||
a:hover, a:active, a:focus {
|
a:hover, a:active, a:focus {
|
||||||
color: #0096dd;
|
color: rgb(0, 149.5, 221);
|
||||||
}
|
}
|
||||||
|
|
||||||
#post-body .misc-pub-post-status:before,
|
#post-body .misc-pub-post-status:before,
|
||||||
|
|
@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
|
||||||
color: #0073aa;
|
color: #0073aa;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
.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,
|
.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]:hover,
|
||||||
.wp-core-ui input[type=reset]:active {
|
.wp-core-ui input[type=reset]:active {
|
||||||
color: #0096dd;
|
color: rgb(0, 149.5, 221);
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=text]:focus,
|
input[type=text]:focus,
|
||||||
|
|
@ -98,25 +98,25 @@ textarea:focus {
|
||||||
.wp-core-ui .button:hover,
|
.wp-core-ui .button:hover,
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus {
|
.wp-core-ui .button:focus {
|
||||||
border-color: #717c87;
|
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus {
|
.wp-core-ui .button:focus {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: 0 0 0 1px #32373c;
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button:active {
|
.wp-core-ui .button:active {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.active,
|
.wp-core-ui .button.active,
|
||||||
.wp-core-ui .button.active:focus,
|
.wp-core-ui .button.active:focus,
|
||||||
.wp-core-ui .button.active:hover {
|
.wp-core-ui .button.active:hover {
|
||||||
border-color: #e14d43;
|
border-color: #e14d43;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: inset 0 2px 5px -3px #e14d43;
|
box-shadow: inset 0 2px 5px -3px #e14d43;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.active:focus {
|
.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:hover,
|
.wp-core-ui .button:hover,
|
||||||
.wp-core-ui .button-secondary:hover {
|
.wp-core-ui .button-secondary:hover {
|
||||||
border-color: #d02c21;
|
border-color: rgb(207.8348623853, 44.2201834862, 33.1651376147);
|
||||||
color: #d02c21;
|
color: rgb(207.8348623853, 44.2201834862, 33.1651376147);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus,
|
.wp-core-ui .button:focus,
|
||||||
.wp-core-ui .button-secondary:focus {
|
.wp-core-ui .button-secondary:focus {
|
||||||
border-color: #e8776f;
|
border-color: rgb(232.0183486239, 118.6422018349, 110.9816513761);
|
||||||
color: #a4231a;
|
color: rgb(163.8532110092, 34.8623853211, 26.1467889908);
|
||||||
box-shadow: 0 0 0 1px #e8776f;
|
box-shadow: 0 0 0 1px rgb(232.0183486239, 118.6422018349, 110.9816513761);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:hover {
|
.wp-core-ui .button-primary:hover {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
|
@ -149,23 +149,23 @@ textarea:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||||
background: #e35950;
|
background: rgb(227.1055045872, 89.4926605505, 80.1944954128);
|
||||||
border-color: #df4136;
|
border-color: rgb(222.8944954128, 64.5073394495, 53.8055045872);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:focus {
|
.wp-core-ui .button-primary:focus {
|
||||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #e14d43;
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #e14d43;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:active {
|
.wp-core-ui .button-primary:active {
|
||||||
background: #dd382d;
|
background: rgb(221.4908256881, 56.1788990826, 45.0091743119);
|
||||||
border-color: #dd382d;
|
border-color: rgb(221.4908256881, 56.1788990826, 45.0091743119);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||||
background: #e14d43;
|
background: #e14d43;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
border-color: #ba281e;
|
border-color: rgb(185.8440366972, 39.5412844037, 29.6559633028);
|
||||||
box-shadow: inset 0 2px 5px -3px #200705;
|
box-shadow: inset 0 2px 5px -3px rgb(31.9082568807, 6.7889908257, 5.0917431193);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-group > .button.active {
|
.wp-core-ui .button-group > .button.active {
|
||||||
border-color: #e14d43;
|
border-color: #e14d43;
|
||||||
|
|
@ -203,14 +203,14 @@ textarea:focus {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap .page-title-action:hover {
|
.wrap .page-title-action:hover {
|
||||||
color: #d02c21;
|
color: rgb(207.8348623853, 44.2201834862, 33.1651376147);
|
||||||
border-color: #d02c21;
|
border-color: rgb(207.8348623853, 44.2201834862, 33.1651376147);
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap .page-title-action:focus {
|
.wrap .page-title-action:focus {
|
||||||
border-color: #e8776f;
|
border-color: rgb(232.0183486239, 118.6422018349, 110.9816513761);
|
||||||
color: #a4231a;
|
color: rgb(163.8532110092, 34.8623853211, 26.1467889908);
|
||||||
box-shadow: 0 0 0 1px #e8776f;
|
box-shadow: 0 0 0 1px rgb(232.0183486239, 118.6422018349, 110.9816513761);
|
||||||
}
|
}
|
||||||
|
|
||||||
.view-switch a.current:before {
|
.view-switch a.current:before {
|
||||||
|
|
@ -262,23 +262,23 @@ textarea:focus {
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||||
#adminmenu a.wp-has-current-submenu:focus + .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.opensub:hover:after,
|
||||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within: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 {
|
#adminmenu .wp-submenu .wp-submenu-head {
|
||||||
color: #c3c4c5;
|
color: rgb(194.7, 196.2, 197.4);
|
||||||
}
|
}
|
||||||
|
|
||||||
#adminmenu .wp-submenu a,
|
#adminmenu .wp-submenu a,
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||||
#adminmenu .wp-has-current-submenu.opensub .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-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
#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:hover a .awaiting-mod,
|
||||||
#adminmenu li.menu-top:hover > a .update-plugins {
|
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: #26292c;
|
background: rgb(37.5230769231, 40.9974358974, 43.7769230769);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Menu: collapse button */
|
/* 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.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||||
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||||
color: #e14d43;
|
color: #e14d43;
|
||||||
background: #26292c;
|
background: rgb(37.5230769231, 40.9974358974, 43.7769230769);
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
||||||
|
|
@ -398,19 +398,19 @@ ul#adminmenu > li.current > a.current:after {
|
||||||
|
|
||||||
/* Admin Bar: submenu */
|
/* Admin Bar: submenu */
|
||||||
#wpadminbar .menupop .ab-sub-wrapper {
|
#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,
|
||||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
#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 .ab-submenu .ab-item,
|
||||||
#wpadminbar .quicklinks .menupop ul li a,
|
#wpadminbar .quicklinks .menupop ul li a,
|
||||||
#wpadminbar .quicklinks .menupop.hover ul li a,
|
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||||
#wpadminbar.nojs .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,
|
#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 {
|
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: #464d52;
|
background: rgb(70.4769230769, 77.0025641026, 82.2230769231);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: recovery mode */
|
/* 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:hover > .ab-item,
|
||||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background-color: #5f97a8;
|
background-color: rgb(94.5, 151.2, 168.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: my account */
|
/* Admin Bar: my account */
|
||||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||||
border-color: #464d52;
|
border-color: rgb(70.4769230769, 77.0025641026, 82.2230769231);
|
||||||
background-color: #464d52;
|
background-color: rgb(70.4769230769, 77.0025641026, 82.2230769231);
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
#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 {
|
#wpadminbar #wp-admin-bar-user-info .username {
|
||||||
color: #c3c4c5;
|
color: rgb(194.7, 196.2, 197.4);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Pointers */
|
/* Pointers */
|
||||||
.wp-pointer .wp-pointer-content h3 {
|
.wp-pointer .wp-pointer-content h3 {
|
||||||
background-color: #e14d43;
|
background-color: #e14d43;
|
||||||
border-color: #dd382d;
|
border-color: rgb(221.4908256881, 56.1788990826, 45.0091743119);
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-pointer .wp-pointer-content h3:before {
|
.wp-pointer .wp-pointer-content h3:before {
|
||||||
|
|
@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||||
|
|
||||||
/* Nav Menus */
|
/* Nav Menus */
|
||||||
.nav-menus-php .item-edit:focus:before {
|
.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 */
|
/* Responsive Component */
|
||||||
|
|
@ -600,7 +600,7 @@ div#wp-responsive-toggle a:before {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
.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 {
|
.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 #available-menu-items .item-add:focus:before,
|
||||||
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||||
.wp-core-ui #publish-settings: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.open .customize-help-toggle,
|
||||||
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
.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:hover .collapse-sidebar-arrow,
|
||||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .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 {
|
.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;
|
border-bottom-color: #e14d43;
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -1,3 +1,5 @@
|
||||||
|
@use "sass:color";
|
||||||
|
|
||||||
$scheme-name: "midnight";
|
$scheme-name: "midnight";
|
||||||
$base-color: #363b3f;
|
$base-color: #363b3f;
|
||||||
$highlight-color: #e14d43;
|
$highlight-color: #e14d43;
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ a {
|
||||||
color: #3858e9;
|
color: #3858e9;
|
||||||
}
|
}
|
||||||
a:hover, a:active, a:focus {
|
a:hover, a:active, a:focus {
|
||||||
color: #183ad6;
|
color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
|
||||||
}
|
}
|
||||||
|
|
||||||
#post-body .misc-pub-post-status:before,
|
#post-body .misc-pub-post-status:before,
|
||||||
|
|
@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
|
||||||
color: #3858e9;
|
color: #3858e9;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
.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,
|
.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]:hover,
|
||||||
.wp-core-ui input[type=reset]:active {
|
.wp-core-ui input[type=reset]:active {
|
||||||
color: #183ad6;
|
color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=text]:focus,
|
input[type=text]:focus,
|
||||||
|
|
@ -98,25 +98,25 @@ textarea:focus {
|
||||||
.wp-core-ui .button:hover,
|
.wp-core-ui .button:hover,
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus {
|
.wp-core-ui .button:focus {
|
||||||
border-color: #717c87;
|
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus {
|
.wp-core-ui .button:focus {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: 0 0 0 1px #32373c;
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button:active {
|
.wp-core-ui .button:active {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.active,
|
.wp-core-ui .button.active,
|
||||||
.wp-core-ui .button.active:focus,
|
.wp-core-ui .button.active:focus,
|
||||||
.wp-core-ui .button.active:hover {
|
.wp-core-ui .button.active:hover {
|
||||||
border-color: #3858e9;
|
border-color: #3858e9;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: inset 0 2px 5px -3px #3858e9;
|
box-shadow: inset 0 2px 5px -3px #3858e9;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.active:focus {
|
.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:hover,
|
.wp-core-ui .button:hover,
|
||||||
.wp-core-ui .button-secondary:hover {
|
.wp-core-ui .button-secondary:hover {
|
||||||
border-color: #183ad6;
|
border-color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
|
||||||
color: #183ad6;
|
color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus,
|
.wp-core-ui .button:focus,
|
||||||
.wp-core-ui .button-secondary:focus {
|
.wp-core-ui .button-secondary:focus {
|
||||||
border-color: #667fee;
|
border-color: rgb(101.9230769231, 126.5384615385, 238.0769230769);
|
||||||
color: #132ea8;
|
color: rgb(18.6153846154, 45.6923076923, 168.3846153846);
|
||||||
box-shadow: 0 0 0 1px #667fee;
|
box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:hover {
|
.wp-core-ui .button-primary:hover {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
|
@ -149,23 +149,23 @@ textarea:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||||
background: #4664eb;
|
background: rgb(69.7769230769, 99.5615384615, 234.5230769231);
|
||||||
border-color: #2a4ce7;
|
border-color: rgb(42.2230769231, 76.4384615385, 231.4769230769);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:focus {
|
.wp-core-ui .button-primary:focus {
|
||||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #3858e9;
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #3858e9;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:active {
|
.wp-core-ui .button-primary:active {
|
||||||
background: #2145e6;
|
background: rgb(33.0384615385, 68.7307692308, 230.4615384615);
|
||||||
border-color: #2145e6;
|
border-color: rgb(33.0384615385, 68.7307692308, 230.4615384615);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||||
background: #3858e9;
|
background: #3858e9;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
border-color: #1534bf;
|
border-color: rgb(21.1538461538, 51.9230769231, 191.3461538462);
|
||||||
box-shadow: inset 0 2px 5px -3px #03081f;
|
box-shadow: inset 0 2px 5px -3px rgb(3.3846153846, 8.3076923077, 30.6153846154);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-group > .button.active {
|
.wp-core-ui .button-group > .button.active {
|
||||||
border-color: #3858e9;
|
border-color: #3858e9;
|
||||||
|
|
@ -203,14 +203,14 @@ textarea:focus {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap .page-title-action:hover {
|
.wrap .page-title-action:hover {
|
||||||
color: #183ad6;
|
color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
|
||||||
border-color: #183ad6;
|
border-color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap .page-title-action:focus {
|
.wrap .page-title-action:focus {
|
||||||
border-color: #667fee;
|
border-color: rgb(101.9230769231, 126.5384615385, 238.0769230769);
|
||||||
color: #132ea8;
|
color: rgb(18.6153846154, 45.6923076923, 168.3846153846);
|
||||||
box-shadow: 0 0 0 1px #667fee;
|
box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769);
|
||||||
}
|
}
|
||||||
|
|
||||||
.view-switch a.current:before {
|
.view-switch a.current:before {
|
||||||
|
|
@ -262,23 +262,23 @@ textarea:focus {
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||||
#adminmenu a.wp-has-current-submenu:focus + .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.opensub:hover:after,
|
||||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within: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 {
|
#adminmenu .wp-submenu .wp-submenu-head {
|
||||||
color: #bcbcbc;
|
color: rgb(187.5, 187.5, 187.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
#adminmenu .wp-submenu a,
|
#adminmenu .wp-submenu a,
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||||
#adminmenu .wp-has-current-submenu.opensub .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-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
#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:hover a .awaiting-mod,
|
||||||
#adminmenu li.menu-top:hover > a .update-plugins {
|
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: #0c0c0c;
|
background: rgb(12.15, 12.15, 12.15);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Menu: collapse button */
|
/* 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.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||||
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||||
color: #33f078;
|
color: #33f078;
|
||||||
background: #0c0c0c;
|
background: rgb(12.15, 12.15, 12.15);
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
||||||
|
|
@ -398,19 +398,19 @@ ul#adminmenu > li.current > a.current:after {
|
||||||
|
|
||||||
/* Admin Bar: submenu */
|
/* Admin Bar: submenu */
|
||||||
#wpadminbar .menupop .ab-sub-wrapper {
|
#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,
|
||||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
#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 .ab-submenu .ab-item,
|
||||||
#wpadminbar .quicklinks .menupop ul li a,
|
#wpadminbar .quicklinks .menupop ul li a,
|
||||||
#wpadminbar .quicklinks .menupop.hover ul li a,
|
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||||
#wpadminbar.nojs .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,
|
#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 {
|
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: #303030;
|
background: rgb(47.85, 47.85, 47.85);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: recovery mode */
|
/* 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:hover > .ab-item,
|
||||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background-color: #324fd2;
|
background-color: rgb(50.4, 79.2, 209.7);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: my account */
|
/* Admin Bar: my account */
|
||||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||||
border-color: #303030;
|
border-color: rgb(47.85, 47.85, 47.85);
|
||||||
background-color: #303030;
|
background-color: rgb(47.85, 47.85, 47.85);
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
#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 {
|
#wpadminbar #wp-admin-bar-user-info .username {
|
||||||
color: #bcbcbc;
|
color: rgb(187.5, 187.5, 187.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Pointers */
|
/* Pointers */
|
||||||
.wp-pointer .wp-pointer-content h3 {
|
.wp-pointer .wp-pointer-content h3 {
|
||||||
background-color: #3858e9;
|
background-color: #3858e9;
|
||||||
border-color: #2145e6;
|
border-color: rgb(33.0384615385, 68.7307692308, 230.4615384615);
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-pointer .wp-pointer-content h3:before {
|
.wp-pointer .wp-pointer-content h3:before {
|
||||||
|
|
@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||||
|
|
||||||
/* Nav Menus */
|
/* Nav Menus */
|
||||||
.nav-menus-php .item-edit:focus:before {
|
.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 */
|
/* Responsive Component */
|
||||||
|
|
@ -600,7 +600,7 @@ div#wp-responsive-toggle a:before {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
.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 {
|
.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 #available-menu-items .item-add:focus:before,
|
||||||
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||||
.wp-core-ui #publish-settings: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.open .customize-help-toggle,
|
||||||
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
.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:hover .collapse-sidebar-arrow,
|
||||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .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 {
|
.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;
|
border-bottom-color: #3858e9;
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -16,7 +16,7 @@ a {
|
||||||
color: #3858e9;
|
color: #3858e9;
|
||||||
}
|
}
|
||||||
a:hover, a:active, a:focus {
|
a:hover, a:active, a:focus {
|
||||||
color: #183ad6;
|
color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
|
||||||
}
|
}
|
||||||
|
|
||||||
#post-body .misc-pub-post-status:before,
|
#post-body .misc-pub-post-status:before,
|
||||||
|
|
@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
|
||||||
color: #3858e9;
|
color: #3858e9;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
.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,
|
.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]:hover,
|
||||||
.wp-core-ui input[type=reset]:active {
|
.wp-core-ui input[type=reset]:active {
|
||||||
color: #183ad6;
|
color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=text]:focus,
|
input[type=text]:focus,
|
||||||
|
|
@ -98,25 +98,25 @@ textarea:focus {
|
||||||
.wp-core-ui .button:hover,
|
.wp-core-ui .button:hover,
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus {
|
.wp-core-ui .button:focus {
|
||||||
border-color: #717c87;
|
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus {
|
.wp-core-ui .button:focus {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: 0 0 0 1px #32373c;
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button:active {
|
.wp-core-ui .button:active {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.active,
|
.wp-core-ui .button.active,
|
||||||
.wp-core-ui .button.active:focus,
|
.wp-core-ui .button.active:focus,
|
||||||
.wp-core-ui .button.active:hover {
|
.wp-core-ui .button.active:hover {
|
||||||
border-color: #3858e9;
|
border-color: #3858e9;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: inset 0 2px 5px -3px #3858e9;
|
box-shadow: inset 0 2px 5px -3px #3858e9;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.active:focus {
|
.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:hover,
|
.wp-core-ui .button:hover,
|
||||||
.wp-core-ui .button-secondary:hover {
|
.wp-core-ui .button-secondary:hover {
|
||||||
border-color: #183ad6;
|
border-color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
|
||||||
color: #183ad6;
|
color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus,
|
.wp-core-ui .button:focus,
|
||||||
.wp-core-ui .button-secondary:focus {
|
.wp-core-ui .button-secondary:focus {
|
||||||
border-color: #667fee;
|
border-color: rgb(101.9230769231, 126.5384615385, 238.0769230769);
|
||||||
color: #132ea8;
|
color: rgb(18.6153846154, 45.6923076923, 168.3846153846);
|
||||||
box-shadow: 0 0 0 1px #667fee;
|
box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:hover {
|
.wp-core-ui .button-primary:hover {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
|
@ -149,23 +149,23 @@ textarea:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||||
background: #4664eb;
|
background: rgb(69.7769230769, 99.5615384615, 234.5230769231);
|
||||||
border-color: #2a4ce7;
|
border-color: rgb(42.2230769231, 76.4384615385, 231.4769230769);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:focus {
|
.wp-core-ui .button-primary:focus {
|
||||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #3858e9;
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #3858e9;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:active {
|
.wp-core-ui .button-primary:active {
|
||||||
background: #2145e6;
|
background: rgb(33.0384615385, 68.7307692308, 230.4615384615);
|
||||||
border-color: #2145e6;
|
border-color: rgb(33.0384615385, 68.7307692308, 230.4615384615);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||||
background: #3858e9;
|
background: #3858e9;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
border-color: #1534bf;
|
border-color: rgb(21.1538461538, 51.9230769231, 191.3461538462);
|
||||||
box-shadow: inset 0 2px 5px -3px #03081f;
|
box-shadow: inset 0 2px 5px -3px rgb(3.3846153846, 8.3076923077, 30.6153846154);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-group > .button.active {
|
.wp-core-ui .button-group > .button.active {
|
||||||
border-color: #3858e9;
|
border-color: #3858e9;
|
||||||
|
|
@ -203,14 +203,14 @@ textarea:focus {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap .page-title-action:hover {
|
.wrap .page-title-action:hover {
|
||||||
color: #183ad6;
|
color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
|
||||||
border-color: #183ad6;
|
border-color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap .page-title-action:focus {
|
.wrap .page-title-action:focus {
|
||||||
border-color: #667fee;
|
border-color: rgb(101.9230769231, 126.5384615385, 238.0769230769);
|
||||||
color: #132ea8;
|
color: rgb(18.6153846154, 45.6923076923, 168.3846153846);
|
||||||
box-shadow: 0 0 0 1px #667fee;
|
box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769);
|
||||||
}
|
}
|
||||||
|
|
||||||
.view-switch a.current:before {
|
.view-switch a.current:before {
|
||||||
|
|
@ -262,23 +262,23 @@ textarea:focus {
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||||
#adminmenu a.wp-has-current-submenu:focus + .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.opensub:hover:after,
|
||||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within: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 {
|
#adminmenu .wp-submenu .wp-submenu-head {
|
||||||
color: #bcbcbc;
|
color: rgb(187.5, 187.5, 187.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
#adminmenu .wp-submenu a,
|
#adminmenu .wp-submenu a,
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||||
#adminmenu .wp-has-current-submenu.opensub .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-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
#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:hover a .awaiting-mod,
|
||||||
#adminmenu li.menu-top:hover > a .update-plugins {
|
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: #0c0c0c;
|
background: rgb(12.15, 12.15, 12.15);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Menu: collapse button */
|
/* 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.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||||
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||||
color: #33f078;
|
color: #33f078;
|
||||||
background: #0c0c0c;
|
background: rgb(12.15, 12.15, 12.15);
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
||||||
|
|
@ -398,19 +398,19 @@ ul#adminmenu > li.current > a.current:after {
|
||||||
|
|
||||||
/* Admin Bar: submenu */
|
/* Admin Bar: submenu */
|
||||||
#wpadminbar .menupop .ab-sub-wrapper {
|
#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,
|
||||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
#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 .ab-submenu .ab-item,
|
||||||
#wpadminbar .quicklinks .menupop ul li a,
|
#wpadminbar .quicklinks .menupop ul li a,
|
||||||
#wpadminbar .quicklinks .menupop.hover ul li a,
|
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||||
#wpadminbar.nojs .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,
|
#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 {
|
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: #303030;
|
background: rgb(47.85, 47.85, 47.85);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: recovery mode */
|
/* 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:hover > .ab-item,
|
||||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background-color: #324fd2;
|
background-color: rgb(50.4, 79.2, 209.7);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: my account */
|
/* Admin Bar: my account */
|
||||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||||
border-color: #303030;
|
border-color: rgb(47.85, 47.85, 47.85);
|
||||||
background-color: #303030;
|
background-color: rgb(47.85, 47.85, 47.85);
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
#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 {
|
#wpadminbar #wp-admin-bar-user-info .username {
|
||||||
color: #bcbcbc;
|
color: rgb(187.5, 187.5, 187.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Pointers */
|
/* Pointers */
|
||||||
.wp-pointer .wp-pointer-content h3 {
|
.wp-pointer .wp-pointer-content h3 {
|
||||||
background-color: #3858e9;
|
background-color: #3858e9;
|
||||||
border-color: #2145e6;
|
border-color: rgb(33.0384615385, 68.7307692308, 230.4615384615);
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-pointer .wp-pointer-content h3:before {
|
.wp-pointer .wp-pointer-content h3:before {
|
||||||
|
|
@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||||
|
|
||||||
/* Nav Menus */
|
/* Nav Menus */
|
||||||
.nav-menus-php .item-edit:focus:before {
|
.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 */
|
/* Responsive Component */
|
||||||
|
|
@ -600,7 +600,7 @@ div#wp-responsive-toggle a:before {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
.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 {
|
.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 #available-menu-items .item-add:focus:before,
|
||||||
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||||
.wp-core-ui #publish-settings: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.open .customize-help-toggle,
|
||||||
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
.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:hover .collapse-sidebar-arrow,
|
||||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .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 {
|
.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;
|
border-bottom-color: #3858e9;
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -1,3 +1,5 @@
|
||||||
|
@use "sass:color";
|
||||||
|
|
||||||
$scheme-name: "modern";
|
$scheme-name: "modern";
|
||||||
$base-color: #1e1e1e;
|
$base-color: #1e1e1e;
|
||||||
$highlight-color: #3858e9;
|
$highlight-color: #3858e9;
|
||||||
|
|
@ -5,7 +7,7 @@ $menu-submenu-focus-text: #33f078;
|
||||||
$notification-color: $highlight-color;
|
$notification-color: $highlight-color;
|
||||||
|
|
||||||
$link: $highlight-color;
|
$link: $highlight-color;
|
||||||
$link-focus: darken($highlight-color, 10%);
|
$link-focus: color.adjust($highlight-color, $lightness: -10%);
|
||||||
|
|
||||||
$custom-welcome-panel: "false";
|
$custom-welcome-panel: "false";
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ a {
|
||||||
color: #0073aa;
|
color: #0073aa;
|
||||||
}
|
}
|
||||||
a:hover, a:active, a:focus {
|
a:hover, a:active, a:focus {
|
||||||
color: #0096dd;
|
color: rgb(0, 149.5, 221);
|
||||||
}
|
}
|
||||||
|
|
||||||
#post-body .misc-pub-post-status:before,
|
#post-body .misc-pub-post-status:before,
|
||||||
|
|
@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
|
||||||
color: #0073aa;
|
color: #0073aa;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
.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,
|
.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]:hover,
|
||||||
.wp-core-ui input[type=reset]:active {
|
.wp-core-ui input[type=reset]:active {
|
||||||
color: #0096dd;
|
color: rgb(0, 149.5, 221);
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=text]:focus,
|
input[type=text]:focus,
|
||||||
|
|
@ -98,25 +98,25 @@ textarea:focus {
|
||||||
.wp-core-ui .button:hover,
|
.wp-core-ui .button:hover,
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus {
|
.wp-core-ui .button:focus {
|
||||||
border-color: #717c87;
|
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus {
|
.wp-core-ui .button:focus {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: 0 0 0 1px #32373c;
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button:active {
|
.wp-core-ui .button:active {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.active,
|
.wp-core-ui .button.active,
|
||||||
.wp-core-ui .button.active:focus,
|
.wp-core-ui .button.active:focus,
|
||||||
.wp-core-ui .button.active:hover {
|
.wp-core-ui .button.active:hover {
|
||||||
border-color: #9ebaa0;
|
border-color: #9ebaa0;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: inset 0 2px 5px -3px #9ebaa0;
|
box-shadow: inset 0 2px 5px -3px #9ebaa0;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.active:focus {
|
.wp-core-ui .button.active:focus {
|
||||||
|
|
@ -128,23 +128,23 @@ textarea:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||||
background: #a7c0a9;
|
background: rgb(166.9403614458, 192.3596385542, 168.7560240964);
|
||||||
border-color: #95b497;
|
border-color: rgb(149.0596385542, 179.6403614458, 151.2439759036);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:focus {
|
.wp-core-ui .button-primary:focus {
|
||||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #9ebaa0;
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #9ebaa0;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:active {
|
.wp-core-ui .button-primary:active {
|
||||||
background: #8faf91;
|
background: rgb(143.0993975904, 175.4006024096, 145.406626506);
|
||||||
border-color: #8faf91;
|
border-color: rgb(143.0993975904, 175.4006024096, 145.406626506);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||||
background: #9ebaa0;
|
background: #9ebaa0;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
border-color: #719a74;
|
border-color: rgb(113.2981927711, 154.2018072289, 116.2198795181);
|
||||||
box-shadow: inset 0 2px 5px -3px #253426;
|
box-shadow: inset 0 2px 5px -3px rgb(36.9939759036, 52.0060240964, 38.0662650602);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-group > .button.active {
|
.wp-core-ui .button-group > .button.active {
|
||||||
border-color: #9ebaa0;
|
border-color: #9ebaa0;
|
||||||
|
|
@ -229,23 +229,23 @@ textarea:focus {
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||||
#adminmenu a.wp-has-current-submenu:focus + .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.opensub:hover:after,
|
||||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within: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 {
|
#adminmenu .wp-submenu .wp-submenu-head {
|
||||||
color: #d5dde0;
|
color: rgb(213, 221.1, 223.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
#adminmenu .wp-submenu a,
|
#adminmenu .wp-submenu a,
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||||
#adminmenu .wp-has-current-submenu.opensub .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-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
#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:hover a .awaiting-mod,
|
||||||
#adminmenu li.menu-top:hover > a .update-plugins {
|
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: #627c83;
|
background: rgb(98.2714285714, 123.5412244898, 131.0285714286);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Menu: collapse button */
|
/* 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.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||||
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||||
color: #9ebaa0;
|
color: #9ebaa0;
|
||||||
background: #627c83;
|
background: rgb(98.2714285714, 123.5412244898, 131.0285714286);
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
||||||
|
|
@ -365,19 +365,19 @@ ul#adminmenu > li.current > a.current:after {
|
||||||
|
|
||||||
/* Admin Bar: submenu */
|
/* Admin Bar: submenu */
|
||||||
#wpadminbar .menupop .ab-sub-wrapper {
|
#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,
|
||||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
#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 .ab-submenu .ab-item,
|
||||||
#wpadminbar .quicklinks .menupop ul li a,
|
#wpadminbar .quicklinks .menupop ul li a,
|
||||||
#wpadminbar .quicklinks .menupop.hover ul li a,
|
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||||
#wpadminbar.nojs .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,
|
#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 {
|
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: #879ea5;
|
background: rgb(135.4, 158.4657142857, 165.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: recovery mode */
|
/* 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:hover > .ab-item,
|
||||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background-color: #998d7a;
|
background-color: rgb(153, 141.3, 122.4);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: my account */
|
/* Admin Bar: my account */
|
||||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||||
border-color: #879ea5;
|
border-color: rgb(135.4, 158.4657142857, 165.3);
|
||||||
background-color: #879ea5;
|
background-color: rgb(135.4, 158.4657142857, 165.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
#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 {
|
#wpadminbar #wp-admin-bar-user-info .username {
|
||||||
color: #d5dde0;
|
color: rgb(213, 221.1, 223.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Pointers */
|
/* Pointers */
|
||||||
.wp-pointer .wp-pointer-content h3 {
|
.wp-pointer .wp-pointer-content h3 {
|
||||||
background-color: #9ebaa0;
|
background-color: #9ebaa0;
|
||||||
border-color: #8faf91;
|
border-color: rgb(143.0993975904, 175.4006024096, 145.406626506);
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-pointer .wp-pointer-content h3:before {
|
.wp-pointer .wp-pointer-content h3:before {
|
||||||
|
|
@ -553,7 +553,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||||
|
|
||||||
/* Nav Menus */
|
/* Nav Menus */
|
||||||
.nav-menus-php .item-edit:focus:before {
|
.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 */
|
/* Responsive Component */
|
||||||
|
|
@ -567,7 +567,7 @@ div#wp-responsive-toggle a:before {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
.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 {
|
.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 #available-menu-items .item-add:focus:before,
|
||||||
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||||
.wp-core-ui #publish-settings: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.open .customize-help-toggle,
|
||||||
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
.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:hover .collapse-sidebar-arrow,
|
||||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .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 {
|
.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;
|
border-bottom-color: #9ebaa0;
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -16,7 +16,7 @@ a {
|
||||||
color: #0073aa;
|
color: #0073aa;
|
||||||
}
|
}
|
||||||
a:hover, a:active, a:focus {
|
a:hover, a:active, a:focus {
|
||||||
color: #0096dd;
|
color: rgb(0, 149.5, 221);
|
||||||
}
|
}
|
||||||
|
|
||||||
#post-body .misc-pub-post-status:before,
|
#post-body .misc-pub-post-status:before,
|
||||||
|
|
@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
|
||||||
color: #0073aa;
|
color: #0073aa;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
.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,
|
.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]:hover,
|
||||||
.wp-core-ui input[type=reset]:active {
|
.wp-core-ui input[type=reset]:active {
|
||||||
color: #0096dd;
|
color: rgb(0, 149.5, 221);
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=text]:focus,
|
input[type=text]:focus,
|
||||||
|
|
@ -98,25 +98,25 @@ textarea:focus {
|
||||||
.wp-core-ui .button:hover,
|
.wp-core-ui .button:hover,
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus {
|
.wp-core-ui .button:focus {
|
||||||
border-color: #717c87;
|
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus {
|
.wp-core-ui .button:focus {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: 0 0 0 1px #32373c;
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button:active {
|
.wp-core-ui .button:active {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.active,
|
.wp-core-ui .button.active,
|
||||||
.wp-core-ui .button.active:focus,
|
.wp-core-ui .button.active:focus,
|
||||||
.wp-core-ui .button.active:hover {
|
.wp-core-ui .button.active:hover {
|
||||||
border-color: #9ebaa0;
|
border-color: #9ebaa0;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: inset 0 2px 5px -3px #9ebaa0;
|
box-shadow: inset 0 2px 5px -3px #9ebaa0;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.active:focus {
|
.wp-core-ui .button.active:focus {
|
||||||
|
|
@ -128,23 +128,23 @@ textarea:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||||
background: #a7c0a9;
|
background: rgb(166.9403614458, 192.3596385542, 168.7560240964);
|
||||||
border-color: #95b497;
|
border-color: rgb(149.0596385542, 179.6403614458, 151.2439759036);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:focus {
|
.wp-core-ui .button-primary:focus {
|
||||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #9ebaa0;
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #9ebaa0;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:active {
|
.wp-core-ui .button-primary:active {
|
||||||
background: #8faf91;
|
background: rgb(143.0993975904, 175.4006024096, 145.406626506);
|
||||||
border-color: #8faf91;
|
border-color: rgb(143.0993975904, 175.4006024096, 145.406626506);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||||
background: #9ebaa0;
|
background: #9ebaa0;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
border-color: #719a74;
|
border-color: rgb(113.2981927711, 154.2018072289, 116.2198795181);
|
||||||
box-shadow: inset 0 2px 5px -3px #253426;
|
box-shadow: inset 0 2px 5px -3px rgb(36.9939759036, 52.0060240964, 38.0662650602);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-group > .button.active {
|
.wp-core-ui .button-group > .button.active {
|
||||||
border-color: #9ebaa0;
|
border-color: #9ebaa0;
|
||||||
|
|
@ -229,23 +229,23 @@ textarea:focus {
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||||
#adminmenu a.wp-has-current-submenu:focus + .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.opensub:hover:after,
|
||||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within: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 {
|
#adminmenu .wp-submenu .wp-submenu-head {
|
||||||
color: #d5dde0;
|
color: rgb(213, 221.1, 223.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
#adminmenu .wp-submenu a,
|
#adminmenu .wp-submenu a,
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||||
#adminmenu .wp-has-current-submenu.opensub .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-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
#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:hover a .awaiting-mod,
|
||||||
#adminmenu li.menu-top:hover > a .update-plugins {
|
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: #627c83;
|
background: rgb(98.2714285714, 123.5412244898, 131.0285714286);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Menu: collapse button */
|
/* 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.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||||
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||||
color: #9ebaa0;
|
color: #9ebaa0;
|
||||||
background: #627c83;
|
background: rgb(98.2714285714, 123.5412244898, 131.0285714286);
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
||||||
|
|
@ -365,19 +365,19 @@ ul#adminmenu > li.current > a.current:after {
|
||||||
|
|
||||||
/* Admin Bar: submenu */
|
/* Admin Bar: submenu */
|
||||||
#wpadminbar .menupop .ab-sub-wrapper {
|
#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,
|
||||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
#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 .ab-submenu .ab-item,
|
||||||
#wpadminbar .quicklinks .menupop ul li a,
|
#wpadminbar .quicklinks .menupop ul li a,
|
||||||
#wpadminbar .quicklinks .menupop.hover ul li a,
|
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||||
#wpadminbar.nojs .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,
|
#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 {
|
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: #879ea5;
|
background: rgb(135.4, 158.4657142857, 165.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: recovery mode */
|
/* 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:hover > .ab-item,
|
||||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background-color: #998d7a;
|
background-color: rgb(153, 141.3, 122.4);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: my account */
|
/* Admin Bar: my account */
|
||||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||||
border-color: #879ea5;
|
border-color: rgb(135.4, 158.4657142857, 165.3);
|
||||||
background-color: #879ea5;
|
background-color: rgb(135.4, 158.4657142857, 165.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
#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 {
|
#wpadminbar #wp-admin-bar-user-info .username {
|
||||||
color: #d5dde0;
|
color: rgb(213, 221.1, 223.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Pointers */
|
/* Pointers */
|
||||||
.wp-pointer .wp-pointer-content h3 {
|
.wp-pointer .wp-pointer-content h3 {
|
||||||
background-color: #9ebaa0;
|
background-color: #9ebaa0;
|
||||||
border-color: #8faf91;
|
border-color: rgb(143.0993975904, 175.4006024096, 145.406626506);
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-pointer .wp-pointer-content h3:before {
|
.wp-pointer .wp-pointer-content h3:before {
|
||||||
|
|
@ -553,7 +553,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||||
|
|
||||||
/* Nav Menus */
|
/* Nav Menus */
|
||||||
.nav-menus-php .item-edit:focus:before {
|
.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 */
|
/* Responsive Component */
|
||||||
|
|
@ -567,7 +567,7 @@ div#wp-responsive-toggle a:before {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
.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 {
|
.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 #available-menu-items .item-add:focus:before,
|
||||||
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||||
.wp-core-ui #publish-settings: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.open .customize-help-toggle,
|
||||||
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
.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:hover .collapse-sidebar-arrow,
|
||||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .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 {
|
.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;
|
border-bottom-color: #9ebaa0;
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -1,3 +1,5 @@
|
||||||
|
@use "sass:color";
|
||||||
|
|
||||||
$scheme-name: "ocean";
|
$scheme-name: "ocean";
|
||||||
$base-color: #738e96;
|
$base-color: #738e96;
|
||||||
$icon-color: #f2fcff;
|
$icon-color: #f2fcff;
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ a {
|
||||||
color: #0073aa;
|
color: #0073aa;
|
||||||
}
|
}
|
||||||
a:hover, a:active, a:focus {
|
a:hover, a:active, a:focus {
|
||||||
color: #0096dd;
|
color: rgb(0, 149.5, 221);
|
||||||
}
|
}
|
||||||
|
|
||||||
#post-body .misc-pub-post-status:before,
|
#post-body .misc-pub-post-status:before,
|
||||||
|
|
@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
|
||||||
color: #0073aa;
|
color: #0073aa;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
.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,
|
.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]:hover,
|
||||||
.wp-core-ui input[type=reset]:active {
|
.wp-core-ui input[type=reset]:active {
|
||||||
color: #0096dd;
|
color: rgb(0, 149.5, 221);
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=text]:focus,
|
input[type=text]:focus,
|
||||||
|
|
@ -98,25 +98,25 @@ textarea:focus {
|
||||||
.wp-core-ui .button:hover,
|
.wp-core-ui .button:hover,
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus {
|
.wp-core-ui .button:focus {
|
||||||
border-color: #717c87;
|
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus {
|
.wp-core-ui .button:focus {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: 0 0 0 1px #32373c;
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button:active {
|
.wp-core-ui .button:active {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.active,
|
.wp-core-ui .button.active,
|
||||||
.wp-core-ui .button.active:focus,
|
.wp-core-ui .button.active:focus,
|
||||||
.wp-core-ui .button.active:hover {
|
.wp-core-ui .button.active:hover {
|
||||||
border-color: #dd823b;
|
border-color: #dd823b;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: inset 0 2px 5px -3px #dd823b;
|
box-shadow: inset 0 2px 5px -3px #dd823b;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.active:focus {
|
.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:hover,
|
.wp-core-ui .button:hover,
|
||||||
.wp-core-ui .button-secondary:hover {
|
.wp-core-ui .button-secondary:hover {
|
||||||
border-color: #c36922;
|
border-color: rgb(195.147826087, 104.5434782609, 33.852173913);
|
||||||
color: #c36922;
|
color: rgb(195.147826087, 104.5434782609, 33.852173913);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus,
|
.wp-core-ui .button:focus,
|
||||||
.wp-core-ui .button-secondary:focus {
|
.wp-core-ui .button-secondary:focus {
|
||||||
border-color: #e59e66;
|
border-color: rgb(228.5391304348, 157.7173913043, 102.4608695652);
|
||||||
color: #98511a;
|
color: rgb(151.6869565217, 81.2608695652, 26.3130434783);
|
||||||
box-shadow: 0 0 0 1px #e59e66;
|
box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:hover {
|
.wp-core-ui .button-primary:hover {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
|
@ -149,23 +149,23 @@ textarea:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||||
background: #df8a48;
|
background: rgb(223.2617391304, 138.3152173913, 72.0382608696);
|
||||||
border-color: #db7a2e;
|
border-color: rgb(218.7382608696, 121.6847826087, 45.9617391304);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:focus {
|
.wp-core-ui .button-primary:focus {
|
||||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #dd823b;
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #dd823b;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:active {
|
.wp-core-ui .button-primary:active {
|
||||||
background: #d97426;
|
background: rgb(216.8782608696, 116.1847826087, 37.6217391304);
|
||||||
border-color: #d97426;
|
border-color: rgb(216.8782608696, 116.1847826087, 37.6217391304);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||||
background: #dd823b;
|
background: #dd823b;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
border-color: #ad5d1e;
|
border-color: rgb(173.4173913043, 92.902173913, 30.0826086957);
|
||||||
box-shadow: inset 0 2px 5px -3px #150b04;
|
box-shadow: inset 0 2px 5px -3px rgb(21.3043478261, 11.4130434783, 3.6956521739);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-group > .button.active {
|
.wp-core-ui .button-group > .button.active {
|
||||||
border-color: #dd823b;
|
border-color: #dd823b;
|
||||||
|
|
@ -203,14 +203,14 @@ textarea:focus {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap .page-title-action:hover {
|
.wrap .page-title-action:hover {
|
||||||
color: #c36922;
|
color: rgb(195.147826087, 104.5434782609, 33.852173913);
|
||||||
border-color: #c36922;
|
border-color: rgb(195.147826087, 104.5434782609, 33.852173913);
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap .page-title-action:focus {
|
.wrap .page-title-action:focus {
|
||||||
border-color: #e59e66;
|
border-color: rgb(228.5391304348, 157.7173913043, 102.4608695652);
|
||||||
color: #98511a;
|
color: rgb(151.6869565217, 81.2608695652, 26.3130434783);
|
||||||
box-shadow: 0 0 0 1px #e59e66;
|
box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652);
|
||||||
}
|
}
|
||||||
|
|
||||||
.view-switch a.current:before {
|
.view-switch a.current:before {
|
||||||
|
|
@ -262,23 +262,23 @@ textarea:focus {
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||||
#adminmenu a.wp-has-current-submenu:focus + .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.opensub:hover:after,
|
||||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within: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 {
|
#adminmenu .wp-submenu .wp-submenu-head {
|
||||||
color: #f1c8c7;
|
color: rgb(240.6, 200.4, 198.9);
|
||||||
}
|
}
|
||||||
|
|
||||||
#adminmenu .wp-submenu a,
|
#adminmenu .wp-submenu a,
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||||
#adminmenu .wp-has-current-submenu.opensub .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-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
#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 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:focus,
|
||||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
|
||||||
color: #f7e3d3;
|
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Menu: current */
|
/* Admin Menu: current */
|
||||||
|
|
@ -301,7 +301,7 @@ textarea:focus {
|
||||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a: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:hover,
|
||||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus {
|
#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,
|
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:hover a .awaiting-mod,
|
||||||
#adminmenu li.menu-top:hover > a .update-plugins {
|
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: #be3631;
|
background: rgb(190.4217021277, 53.969787234, 48.8782978723);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Menu: collapse button */
|
/* Admin Menu: collapse button */
|
||||||
|
|
@ -351,7 +351,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||||
|
|
||||||
#collapse-button:hover,
|
#collapse-button:hover,
|
||||||
#collapse-button:focus {
|
#collapse-button:focus {
|
||||||
color: #f7e3d3;
|
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar */
|
/* Admin Bar */
|
||||||
|
|
@ -379,38 +379,38 @@ ul#adminmenu > li.current > a.current:after {
|
||||||
#wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus,
|
#wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus,
|
||||||
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||||
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||||
color: #f7e3d3;
|
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
|
||||||
background: #be3631;
|
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 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 {
|
#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-icon:before,
|
||||||
#wpadminbar:not(.mobile) li:hover .ab-item:before,
|
#wpadminbar:not(.mobile) li:hover .ab-item:before,
|
||||||
#wpadminbar:not(.mobile) li:hover .ab-item:after,
|
#wpadminbar:not(.mobile) li:hover .ab-item:after,
|
||||||
#wpadminbar:not(.mobile) li:hover #adminbarsearch:before {
|
#wpadminbar:not(.mobile) li:hover #adminbarsearch:before {
|
||||||
color: #f7e3d3;
|
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: submenu */
|
/* Admin Bar: submenu */
|
||||||
#wpadminbar .menupop .ab-sub-wrapper {
|
#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,
|
||||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
#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 .ab-submenu .ab-item,
|
||||||
#wpadminbar .quicklinks .menupop ul li a,
|
#wpadminbar .quicklinks .menupop ul li a,
|
||||||
#wpadminbar .quicklinks .menupop.hover ul li a,
|
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||||
#wpadminbar.nojs .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,
|
#wpadminbar .quicklinks li .blavatar,
|
||||||
|
|
@ -436,7 +436,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||||
#wpadminbar li.hover .ab-item:before,
|
#wpadminbar li.hover .ab-item:before,
|
||||||
#wpadminbar li:hover #adminbarsearch:before,
|
#wpadminbar li:hover #adminbarsearch:before,
|
||||||
#wpadminbar li #adminbarsearch.adminbar-focused:before {
|
#wpadminbar li #adminbarsearch.adminbar-focused:before {
|
||||||
color: #f7e3d3;
|
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpadminbar .quicklinks li a:hover .blavatar,
|
#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 .menupop .menupop > .ab-item:hover:before,
|
||||||
#wpadminbar.mobile .quicklinks .ab-icon:before,
|
#wpadminbar.mobile .quicklinks .ab-icon:before,
|
||||||
#wpadminbar.mobile .quicklinks .ab-item:before {
|
#wpadminbar.mobile .quicklinks .ab-item:before {
|
||||||
color: #f7e3d3;
|
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpadminbar.mobile .quicklinks .hover .ab-icon:before,
|
#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 {
|
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: #d66560;
|
background: rgb(214.2919148936, 100.6485106383, 96.4080851064);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: recovery mode */
|
/* 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:hover > .ab-item,
|
||||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background-color: #b89e0a;
|
background-color: rgb(183.6, 157.5, 9.9);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: my account */
|
/* Admin Bar: my account */
|
||||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||||
border-color: #d66560;
|
border-color: rgb(214.2919148936, 100.6485106383, 96.4080851064);
|
||||||
background-color: #d66560;
|
background-color: rgb(214.2919148936, 100.6485106383, 96.4080851064);
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
#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 {
|
#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 {
|
#wpadminbar #wp-admin-bar-user-info .username {
|
||||||
color: #f1c8c7;
|
color: rgb(240.6, 200.4, 198.9);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Pointers */
|
/* Pointers */
|
||||||
.wp-pointer .wp-pointer-content h3 {
|
.wp-pointer .wp-pointer-content h3 {
|
||||||
background-color: #dd823b;
|
background-color: #dd823b;
|
||||||
border-color: #d97426;
|
border-color: rgb(216.8782608696, 116.1847826087, 37.6217391304);
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-pointer .wp-pointer-content h3:before {
|
.wp-pointer .wp-pointer-content h3:before {
|
||||||
|
|
@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||||
|
|
||||||
/* Nav Menus */
|
/* Nav Menus */
|
||||||
.nav-menus-php .item-edit:focus:before {
|
.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 */
|
/* Responsive Component */
|
||||||
|
|
@ -600,7 +600,7 @@ div#wp-responsive-toggle a:before {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
.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 {
|
.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 #available-menu-items .item-add:focus:before,
|
||||||
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||||
.wp-core-ui #publish-settings: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.open .customize-help-toggle,
|
||||||
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
.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:hover .collapse-sidebar-arrow,
|
||||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .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 {
|
.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;
|
border-bottom-color: #dd823b;
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -16,7 +16,7 @@ a {
|
||||||
color: #0073aa;
|
color: #0073aa;
|
||||||
}
|
}
|
||||||
a:hover, a:active, a:focus {
|
a:hover, a:active, a:focus {
|
||||||
color: #0096dd;
|
color: rgb(0, 149.5, 221);
|
||||||
}
|
}
|
||||||
|
|
||||||
#post-body .misc-pub-post-status:before,
|
#post-body .misc-pub-post-status:before,
|
||||||
|
|
@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
|
||||||
color: #0073aa;
|
color: #0073aa;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
.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,
|
.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]:hover,
|
||||||
.wp-core-ui input[type=reset]:active {
|
.wp-core-ui input[type=reset]:active {
|
||||||
color: #0096dd;
|
color: rgb(0, 149.5, 221);
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=text]:focus,
|
input[type=text]:focus,
|
||||||
|
|
@ -98,25 +98,25 @@ textarea:focus {
|
||||||
.wp-core-ui .button:hover,
|
.wp-core-ui .button:hover,
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus {
|
.wp-core-ui .button:focus {
|
||||||
border-color: #717c87;
|
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus {
|
.wp-core-ui .button:focus {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: 0 0 0 1px #32373c;
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button:active {
|
.wp-core-ui .button:active {
|
||||||
border-color: #7e8993;
|
border-color: #7e8993;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.active,
|
.wp-core-ui .button.active,
|
||||||
.wp-core-ui .button.active:focus,
|
.wp-core-ui .button.active:focus,
|
||||||
.wp-core-ui .button.active:hover {
|
.wp-core-ui .button.active:hover {
|
||||||
border-color: #dd823b;
|
border-color: #dd823b;
|
||||||
color: #262a2e;
|
color: rgb(38.4090909091, 42.25, 46.0909090909);
|
||||||
box-shadow: inset 0 2px 5px -3px #dd823b;
|
box-shadow: inset 0 2px 5px -3px #dd823b;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.active:focus {
|
.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:hover,
|
.wp-core-ui .button:hover,
|
||||||
.wp-core-ui .button-secondary:hover {
|
.wp-core-ui .button-secondary:hover {
|
||||||
border-color: #c36922;
|
border-color: rgb(195.147826087, 104.5434782609, 33.852173913);
|
||||||
color: #c36922;
|
color: rgb(195.147826087, 104.5434782609, 33.852173913);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button.focus,
|
.wp-core-ui .button.focus,
|
||||||
.wp-core-ui .button:focus,
|
.wp-core-ui .button:focus,
|
||||||
.wp-core-ui .button-secondary:focus {
|
.wp-core-ui .button-secondary:focus {
|
||||||
border-color: #e59e66;
|
border-color: rgb(228.5391304348, 157.7173913043, 102.4608695652);
|
||||||
color: #98511a;
|
color: rgb(151.6869565217, 81.2608695652, 26.3130434783);
|
||||||
box-shadow: 0 0 0 1px #e59e66;
|
box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:hover {
|
.wp-core-ui .button-primary:hover {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
|
@ -149,23 +149,23 @@ textarea:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||||
background: #df8a48;
|
background: rgb(223.2617391304, 138.3152173913, 72.0382608696);
|
||||||
border-color: #db7a2e;
|
border-color: rgb(218.7382608696, 121.6847826087, 45.9617391304);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:focus {
|
.wp-core-ui .button-primary:focus {
|
||||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #dd823b;
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #dd823b;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary:active {
|
.wp-core-ui .button-primary:active {
|
||||||
background: #d97426;
|
background: rgb(216.8782608696, 116.1847826087, 37.6217391304);
|
||||||
border-color: #d97426;
|
border-color: rgb(216.8782608696, 116.1847826087, 37.6217391304);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||||
background: #dd823b;
|
background: #dd823b;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
border-color: #ad5d1e;
|
border-color: rgb(173.4173913043, 92.902173913, 30.0826086957);
|
||||||
box-shadow: inset 0 2px 5px -3px #150b04;
|
box-shadow: inset 0 2px 5px -3px rgb(21.3043478261, 11.4130434783, 3.6956521739);
|
||||||
}
|
}
|
||||||
.wp-core-ui .button-group > .button.active {
|
.wp-core-ui .button-group > .button.active {
|
||||||
border-color: #dd823b;
|
border-color: #dd823b;
|
||||||
|
|
@ -203,14 +203,14 @@ textarea:focus {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap .page-title-action:hover {
|
.wrap .page-title-action:hover {
|
||||||
color: #c36922;
|
color: rgb(195.147826087, 104.5434782609, 33.852173913);
|
||||||
border-color: #c36922;
|
border-color: rgb(195.147826087, 104.5434782609, 33.852173913);
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap .page-title-action:focus {
|
.wrap .page-title-action:focus {
|
||||||
border-color: #e59e66;
|
border-color: rgb(228.5391304348, 157.7173913043, 102.4608695652);
|
||||||
color: #98511a;
|
color: rgb(151.6869565217, 81.2608695652, 26.3130434783);
|
||||||
box-shadow: 0 0 0 1px #e59e66;
|
box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652);
|
||||||
}
|
}
|
||||||
|
|
||||||
.view-switch a.current:before {
|
.view-switch a.current:before {
|
||||||
|
|
@ -262,23 +262,23 @@ textarea:focus {
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu,
|
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||||
#adminmenu a.wp-has-current-submenu:focus + .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.opensub:hover:after,
|
||||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within: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 {
|
#adminmenu .wp-submenu .wp-submenu-head {
|
||||||
color: #f1c8c7;
|
color: rgb(240.6, 200.4, 198.9);
|
||||||
}
|
}
|
||||||
|
|
||||||
#adminmenu .wp-submenu a,
|
#adminmenu .wp-submenu a,
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||||
#adminmenu .wp-has-current-submenu.opensub .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-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||||
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
#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 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:focus,
|
||||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
|
||||||
color: #f7e3d3;
|
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Menu: current */
|
/* Admin Menu: current */
|
||||||
|
|
@ -301,7 +301,7 @@ textarea:focus {
|
||||||
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a: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:hover,
|
||||||
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus {
|
#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,
|
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:hover a .awaiting-mod,
|
||||||
#adminmenu li.menu-top:hover > a .update-plugins {
|
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: #be3631;
|
background: rgb(190.4217021277, 53.969787234, 48.8782978723);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Menu: collapse button */
|
/* Admin Menu: collapse button */
|
||||||
|
|
@ -351,7 +351,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||||
|
|
||||||
#collapse-button:hover,
|
#collapse-button:hover,
|
||||||
#collapse-button:focus {
|
#collapse-button:focus {
|
||||||
color: #f7e3d3;
|
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar */
|
/* Admin Bar */
|
||||||
|
|
@ -379,38 +379,38 @@ ul#adminmenu > li.current > a.current:after {
|
||||||
#wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus,
|
#wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus,
|
||||||
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||||
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||||
color: #f7e3d3;
|
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
|
||||||
background: #be3631;
|
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 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 {
|
#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-icon:before,
|
||||||
#wpadminbar:not(.mobile) li:hover .ab-item:before,
|
#wpadminbar:not(.mobile) li:hover .ab-item:before,
|
||||||
#wpadminbar:not(.mobile) li:hover .ab-item:after,
|
#wpadminbar:not(.mobile) li:hover .ab-item:after,
|
||||||
#wpadminbar:not(.mobile) li:hover #adminbarsearch:before {
|
#wpadminbar:not(.mobile) li:hover #adminbarsearch:before {
|
||||||
color: #f7e3d3;
|
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: submenu */
|
/* Admin Bar: submenu */
|
||||||
#wpadminbar .menupop .ab-sub-wrapper {
|
#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,
|
||||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
#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 .ab-submenu .ab-item,
|
||||||
#wpadminbar .quicklinks .menupop ul li a,
|
#wpadminbar .quicklinks .menupop ul li a,
|
||||||
#wpadminbar .quicklinks .menupop.hover ul li a,
|
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||||
#wpadminbar.nojs .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,
|
#wpadminbar .quicklinks li .blavatar,
|
||||||
|
|
@ -436,7 +436,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||||
#wpadminbar li.hover .ab-item:before,
|
#wpadminbar li.hover .ab-item:before,
|
||||||
#wpadminbar li:hover #adminbarsearch:before,
|
#wpadminbar li:hover #adminbarsearch:before,
|
||||||
#wpadminbar li #adminbarsearch.adminbar-focused:before {
|
#wpadminbar li #adminbarsearch.adminbar-focused:before {
|
||||||
color: #f7e3d3;
|
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpadminbar .quicklinks li a:hover .blavatar,
|
#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 .menupop .menupop > .ab-item:hover:before,
|
||||||
#wpadminbar.mobile .quicklinks .ab-icon:before,
|
#wpadminbar.mobile .quicklinks .ab-icon:before,
|
||||||
#wpadminbar.mobile .quicklinks .ab-item:before {
|
#wpadminbar.mobile .quicklinks .ab-item:before {
|
||||||
color: #f7e3d3;
|
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpadminbar.mobile .quicklinks .hover .ab-icon:before,
|
#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 {
|
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: #d66560;
|
background: rgb(214.2919148936, 100.6485106383, 96.4080851064);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: recovery mode */
|
/* 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:hover > .ab-item,
|
||||||
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background-color: #b89e0a;
|
background-color: rgb(183.6, 157.5, 9.9);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Bar: my account */
|
/* Admin Bar: my account */
|
||||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||||
border-color: #d66560;
|
border-color: rgb(214.2919148936, 100.6485106383, 96.4080851064);
|
||||||
background-color: #d66560;
|
background-color: rgb(214.2919148936, 100.6485106383, 96.4080851064);
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
#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 {
|
#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 {
|
#wpadminbar #wp-admin-bar-user-info .username {
|
||||||
color: #f1c8c7;
|
color: rgb(240.6, 200.4, 198.9);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Pointers */
|
/* Pointers */
|
||||||
.wp-pointer .wp-pointer-content h3 {
|
.wp-pointer .wp-pointer-content h3 {
|
||||||
background-color: #dd823b;
|
background-color: #dd823b;
|
||||||
border-color: #d97426;
|
border-color: rgb(216.8782608696, 116.1847826087, 37.6217391304);
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-pointer .wp-pointer-content h3:before {
|
.wp-pointer .wp-pointer-content h3:before {
|
||||||
|
|
@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
|
||||||
|
|
||||||
/* Nav Menus */
|
/* Nav Menus */
|
||||||
.nav-menus-php .item-edit:focus:before {
|
.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 */
|
/* Responsive Component */
|
||||||
|
|
@ -600,7 +600,7 @@ div#wp-responsive-toggle a:before {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
.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 {
|
.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 #available-menu-items .item-add:focus:before,
|
||||||
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||||
.wp-core-ui #publish-settings: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.open .customize-help-toggle,
|
||||||
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
.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:hover .collapse-sidebar-arrow,
|
||||||
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .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 {
|
.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;
|
border-bottom-color: #dd823b;
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -1,7 +1,9 @@
|
||||||
|
@use "sass:color";
|
||||||
|
|
||||||
$scheme-name: "sunrise";
|
$scheme-name: "sunrise";
|
||||||
$base-color: #cf4944;
|
$base-color: #cf4944;
|
||||||
$highlight-color: #dd823b;
|
$highlight-color: #dd823b;
|
||||||
$notification-color: #ccaf0b;
|
$notification-color: #ccaf0b;
|
||||||
$menu-submenu-focus-text: lighten( $highlight-color, 35% );
|
$menu-submenu-focus-text: color.adjust($highlight-color, $lightness: 35%);
|
||||||
|
|
||||||
@import "../_admin.scss";
|
@import "../_admin.scss";
|
||||||
|
|
|
||||||
|
|
@ -124,7 +124,6 @@
|
||||||
.ui-helper-hidden-accessible {
|
.ui-helper-hidden-accessible {
|
||||||
border: 0;
|
border: 0;
|
||||||
clip: rect(1px, 1px, 1px, 1px);
|
clip: rect(1px, 1px, 1px, 1px);
|
||||||
-webkit-clip-path: inset(50%);
|
|
||||||
clip-path: inset(50%);
|
clip-path: inset(50%);
|
||||||
height: 1px;
|
height: 1px;
|
||||||
margin: -1px;
|
margin: -1px;
|
||||||
|
|
@ -918,6 +917,11 @@ a#remove-post-thumbnail:hover,
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.application-password-display .success {
|
||||||
|
color: #007017;
|
||||||
|
margin-right: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
/*------------------------------------------------------------------------------
|
/*------------------------------------------------------------------------------
|
||||||
3.0 - Actions
|
3.0 - Actions
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
|
@ -1091,7 +1095,9 @@ th.action-links {
|
||||||
|
|
||||||
.wp-filter .search-form {
|
.wp-filter .search-form {
|
||||||
float: left;
|
float: left;
|
||||||
margin: 10px 0;
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
column-gap: .5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-filter .search-form input[type="search"] {
|
.wp-filter .search-form input[type="search"] {
|
||||||
|
|
@ -1120,7 +1126,6 @@ th.action-links {
|
||||||
.wp-filter .search-form.search-plugins .wp-filter-search,
|
.wp-filter .search-form.search-plugins .wp-filter-search,
|
||||||
.no-js .wp-filter .search-form.search-plugins .button {
|
.no-js .wp-filter .search-form.search-plugins .button {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-top: 10px;
|
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1181,6 +1186,17 @@ th.action-links {
|
||||||
overflow: hidden;
|
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-filters .filter-drawer,
|
||||||
.show-favorites-form .favorites-form {
|
.show-favorites-form .favorites-form {
|
||||||
display: block;
|
display: block;
|
||||||
|
|
@ -1289,11 +1305,13 @@ th.action-links {
|
||||||
}
|
}
|
||||||
|
|
||||||
.filtered-by .tags {
|
.filtered-by .tags {
|
||||||
display: inline;
|
display: flex;
|
||||||
|
align-items: flex-start;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.filtered-by .tag {
|
.filtered-by .tag {
|
||||||
margin: 0 5px;
|
|
||||||
padding: 4px 8px;
|
padding: 4px 8px;
|
||||||
border: 1px solid #dcdcde;
|
border: 1px solid #dcdcde;
|
||||||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
|
||||||
|
|
@ -1308,7 +1326,10 @@ th.action-links {
|
||||||
}
|
}
|
||||||
|
|
||||||
.filters-applied .filtered-by {
|
.filters-applied .filtered-by {
|
||||||
display: block;
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.filters-applied .filter-drawer {
|
.filters-applied .filter-drawer {
|
||||||
|
|
@ -1361,6 +1382,11 @@ th.action-links {
|
||||||
position: relative;
|
position: relative;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
|
.wp-filter .search-form {
|
||||||
|
margin: 11px 0;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
row-gap: 10px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (max-width: 782px) {
|
@media only screen and (max-width: 782px) {
|
||||||
|
|
@ -2027,7 +2053,7 @@ p.auto-update-status {
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
|
||||||
html.wp-toolbar {
|
html.wp-toolbar {
|
||||||
padding-top: 32px;
|
padding-top: var(--wp-admin--admin-bar--height);
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
-ms-overflow-style: scrollbar; /* See ticket #48545 */
|
-ms-overflow-style: scrollbar; /* See ticket #48545 */
|
||||||
}
|
}
|
||||||
|
|
@ -2406,8 +2432,59 @@ h1.nav-tab-wrapper, /* Back-compat for pre-4.4 */
|
||||||
|
|
||||||
/* Back-compat for nav-menus screen */
|
/* Back-compat for nav-menus screen */
|
||||||
.nav-menus-php .metabox-holder h3 {
|
.nav-menus-php .metabox-holder h3 {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.accordion-container h3.accordion-section-title {
|
||||||
|
padding: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.accordion-section-title button.accordion-trigger,
|
||||||
|
.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;
|
padding: 10px 14px 11px 10px;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.accordion-section-title button.accordion-trigger:focus,
|
||||||
|
.nav-menus-php .metabox-holder .accordion-section-title button.accordion-trigger:focus {
|
||||||
|
box-shadow: 0 0 0 2px #2271b1;
|
||||||
|
outline: 2px solid transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.accordion-section-title span.dashicons.dashicons-arrow-down,
|
||||||
|
.nav-menus-php .metabox-holder .accordion-section-title span.dashicons.dashicons-arrow-down {
|
||||||
|
position: absolute;
|
||||||
|
left: 10px;
|
||||||
|
right: auto;
|
||||||
|
color: #787c82;
|
||||||
|
border-radius: 50px;
|
||||||
|
top: 50%;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.accordion-section-title:hover span.dashicons.dashicons-arrow-down,
|
||||||
|
.nav-menus-php .metabox-holder .accordion-section-title:hover span.dashicons.dashicons-arrow-down {
|
||||||
|
color: #1d2327;
|
||||||
|
}
|
||||||
|
|
||||||
|
.accordion-section-title span.dashicons.dashicons-arrow-down::before,
|
||||||
|
.nav-menus-php .metabox-holder .accordion-section-title span.dashicons.dashicons-arrow-down::before {
|
||||||
|
position: relative;
|
||||||
|
right: -1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.accordion-section.open .accordion-section-title span.dashicons.dashicons-arrow-down,
|
||||||
|
.nav-menus-php .metabox-holder .accordion-section.open .accordion-section-title span.dashicons.dashicons-arrow-down {
|
||||||
|
transform: rotate(-180deg) translate(0, 50%);
|
||||||
}
|
}
|
||||||
|
|
||||||
#templateside ul li a {
|
#templateside ul li a {
|
||||||
|
|
@ -3497,9 +3574,9 @@ img {
|
||||||
|
|
||||||
/* @todo: can we use a common class for these? */
|
/* @todo: can we use a common class for these? */
|
||||||
.nav-menus-php .item-edit:before,
|
.nav-menus-php .item-edit:before,
|
||||||
.widget-top .widget-action .toggle-indicator:before,
|
.wp-customizer .control-section .accordion-section-title:after,
|
||||||
.control-section .accordion-section-title:after,
|
.wp-customizer .accordion-section-title:after,
|
||||||
.accordion-section-title:after {
|
.widget-top .widget-action .toggle-indicator:before {
|
||||||
content: "\f140";
|
content: "\f140";
|
||||||
font: normal 20px/1 dashicons;
|
font: normal 20px/1 dashicons;
|
||||||
speak: never;
|
speak: never;
|
||||||
|
|
@ -3517,8 +3594,7 @@ img {
|
||||||
.handlediv,
|
.handlediv,
|
||||||
.postbox .handlediv.button-link,
|
.postbox .handlediv.button-link,
|
||||||
.item-edit,
|
.item-edit,
|
||||||
.toggle-indicator,
|
.toggle-indicator {
|
||||||
.accordion-section-title:after {
|
|
||||||
color: #787c82;
|
color: #787c82;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -3534,8 +3610,7 @@ img {
|
||||||
.postbox .handlediv.button-link:focus,
|
.postbox .handlediv.button-link:focus,
|
||||||
.item-edit:hover,
|
.item-edit:hover,
|
||||||
.item-edit:focus,
|
.item-edit:focus,
|
||||||
.sidebar-name:hover .toggle-indicator,
|
.sidebar-name:hover .toggle-indicator {
|
||||||
.accordion-section-title:hover:after {
|
|
||||||
color: #1d2327;
|
color: #1d2327;
|
||||||
/* Only visible in Windows High Contrast mode */
|
/* Only visible in Windows High Contrast mode */
|
||||||
outline: 2px solid transparent;
|
outline: 2px solid transparent;
|
||||||
|
|
@ -3547,14 +3622,6 @@ img {
|
||||||
outline: 2px solid transparent;
|
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,
|
#customize-info.open .accordion-section-title:after,
|
||||||
.nav-menus-php .menu-item-edit-active .item-edit:before,
|
.nav-menus-php .menu-item-edit-active .item-edit:before,
|
||||||
.widget.open .widget-top .widget-action .toggle-indicator:before,
|
.widget.open .widget-top .widget-action .toggle-indicator:before,
|
||||||
|
|
@ -3599,7 +3666,6 @@ img {
|
||||||
|
|
||||||
.accordion-section-title {
|
.accordion-section-title {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 12px 15px 15px;
|
|
||||||
position: relative;
|
position: relative;
|
||||||
border-right: 1px solid #dcdcde;
|
border-right: 1px solid #dcdcde;
|
||||||
border-left: 1px solid #dcdcde;
|
border-left: 1px solid #dcdcde;
|
||||||
|
|
@ -3836,7 +3902,7 @@ img {
|
||||||
|
|
||||||
@media screen and (max-width: 782px) {
|
@media screen and (max-width: 782px) {
|
||||||
html.wp-toolbar {
|
html.wp-toolbar {
|
||||||
padding-top: 46px;
|
padding-top: var(--wp-admin--admin-bar--height);
|
||||||
}
|
}
|
||||||
|
|
||||||
.screen-reader-shortcut:focus {
|
.screen-reader-shortcut:focus {
|
||||||
|
|
@ -3944,6 +4010,10 @@ img {
|
||||||
padding: 12px;
|
padding: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.nav-menus-php .metabox-holder h3 {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.postbox .handlediv {
|
.postbox .handlediv {
|
||||||
margin-top: 3px;
|
margin-top: 3px;
|
||||||
}
|
}
|
||||||
|
|
@ -4133,7 +4203,6 @@ img {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-filter .search-form input[type="search"] {
|
.wp-filter .search-form input[type="search"] {
|
||||||
width: 100%;
|
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -4187,6 +4256,10 @@ img {
|
||||||
.nav-tab-active:focus:active {
|
.nav-tab-active:focus:active {
|
||||||
border-bottom: 1px solid #c3c4c7;
|
border-bottom: 1px solid #c3c4c7;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.wp-filter .search-form.search-plugins label {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 480px) {
|
@media screen and (max-width: 480px) {
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -123,7 +123,6 @@
|
||||||
.ui-helper-hidden-accessible {
|
.ui-helper-hidden-accessible {
|
||||||
border: 0;
|
border: 0;
|
||||||
clip: rect(1px, 1px, 1px, 1px);
|
clip: rect(1px, 1px, 1px, 1px);
|
||||||
-webkit-clip-path: inset(50%);
|
|
||||||
clip-path: inset(50%);
|
clip-path: inset(50%);
|
||||||
height: 1px;
|
height: 1px;
|
||||||
margin: -1px;
|
margin: -1px;
|
||||||
|
|
@ -917,6 +916,11 @@ a#remove-post-thumbnail:hover,
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.application-password-display .success {
|
||||||
|
color: #007017;
|
||||||
|
margin-left: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
/*------------------------------------------------------------------------------
|
/*------------------------------------------------------------------------------
|
||||||
3.0 - Actions
|
3.0 - Actions
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
|
@ -1090,7 +1094,9 @@ th.action-links {
|
||||||
|
|
||||||
.wp-filter .search-form {
|
.wp-filter .search-form {
|
||||||
float: right;
|
float: right;
|
||||||
margin: 10px 0;
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
column-gap: .5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-filter .search-form input[type="search"] {
|
.wp-filter .search-form input[type="search"] {
|
||||||
|
|
@ -1119,7 +1125,6 @@ th.action-links {
|
||||||
.wp-filter .search-form.search-plugins .wp-filter-search,
|
.wp-filter .search-form.search-plugins .wp-filter-search,
|
||||||
.no-js .wp-filter .search-form.search-plugins .button {
|
.no-js .wp-filter .search-form.search-plugins .button {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-top: 10px;
|
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1180,6 +1185,17 @@ th.action-links {
|
||||||
overflow: hidden;
|
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-filters .filter-drawer,
|
||||||
.show-favorites-form .favorites-form {
|
.show-favorites-form .favorites-form {
|
||||||
display: block;
|
display: block;
|
||||||
|
|
@ -1288,11 +1304,13 @@ th.action-links {
|
||||||
}
|
}
|
||||||
|
|
||||||
.filtered-by .tags {
|
.filtered-by .tags {
|
||||||
display: inline;
|
display: flex;
|
||||||
|
align-items: flex-start;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.filtered-by .tag {
|
.filtered-by .tag {
|
||||||
margin: 0 5px;
|
|
||||||
padding: 4px 8px;
|
padding: 4px 8px;
|
||||||
border: 1px solid #dcdcde;
|
border: 1px solid #dcdcde;
|
||||||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
|
||||||
|
|
@ -1307,7 +1325,10 @@ th.action-links {
|
||||||
}
|
}
|
||||||
|
|
||||||
.filters-applied .filtered-by {
|
.filters-applied .filtered-by {
|
||||||
display: block;
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.filters-applied .filter-drawer {
|
.filters-applied .filter-drawer {
|
||||||
|
|
@ -1360,6 +1381,11 @@ th.action-links {
|
||||||
position: relative;
|
position: relative;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
|
.wp-filter .search-form {
|
||||||
|
margin: 11px 0;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
row-gap: 10px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (max-width: 782px) {
|
@media only screen and (max-width: 782px) {
|
||||||
|
|
@ -2026,7 +2052,7 @@ p.auto-update-status {
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
|
||||||
html.wp-toolbar {
|
html.wp-toolbar {
|
||||||
padding-top: 32px;
|
padding-top: var(--wp-admin--admin-bar--height);
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
-ms-overflow-style: scrollbar; /* See ticket #48545 */
|
-ms-overflow-style: scrollbar; /* See ticket #48545 */
|
||||||
}
|
}
|
||||||
|
|
@ -2405,8 +2431,59 @@ h1.nav-tab-wrapper, /* Back-compat for pre-4.4 */
|
||||||
|
|
||||||
/* Back-compat for nav-menus screen */
|
/* Back-compat for nav-menus screen */
|
||||||
.nav-menus-php .metabox-holder h3 {
|
.nav-menus-php .metabox-holder h3 {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.accordion-container h3.accordion-section-title {
|
||||||
|
padding: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.accordion-section-title button.accordion-trigger,
|
||||||
|
.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;
|
padding: 10px 10px 11px 14px;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.accordion-section-title button.accordion-trigger:focus,
|
||||||
|
.nav-menus-php .metabox-holder .accordion-section-title button.accordion-trigger:focus {
|
||||||
|
box-shadow: 0 0 0 2px #2271b1;
|
||||||
|
outline: 2px solid transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.accordion-section-title span.dashicons.dashicons-arrow-down,
|
||||||
|
.nav-menus-php .metabox-holder .accordion-section-title span.dashicons.dashicons-arrow-down {
|
||||||
|
position: absolute;
|
||||||
|
right: 10px;
|
||||||
|
left: auto;
|
||||||
|
color: #787c82;
|
||||||
|
border-radius: 50px;
|
||||||
|
top: 50%;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.accordion-section-title:hover span.dashicons.dashicons-arrow-down,
|
||||||
|
.nav-menus-php .metabox-holder .accordion-section-title:hover span.dashicons.dashicons-arrow-down {
|
||||||
|
color: #1d2327;
|
||||||
|
}
|
||||||
|
|
||||||
|
.accordion-section-title span.dashicons.dashicons-arrow-down::before,
|
||||||
|
.nav-menus-php .metabox-holder .accordion-section-title span.dashicons.dashicons-arrow-down::before {
|
||||||
|
position: relative;
|
||||||
|
left: -1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.accordion-section.open .accordion-section-title span.dashicons.dashicons-arrow-down,
|
||||||
|
.nav-menus-php .metabox-holder .accordion-section.open .accordion-section-title span.dashicons.dashicons-arrow-down {
|
||||||
|
transform: rotate(180deg) translate(0, 50%);
|
||||||
}
|
}
|
||||||
|
|
||||||
#templateside ul li a {
|
#templateside ul li a {
|
||||||
|
|
@ -3496,9 +3573,9 @@ img {
|
||||||
|
|
||||||
/* @todo: can we use a common class for these? */
|
/* @todo: can we use a common class for these? */
|
||||||
.nav-menus-php .item-edit:before,
|
.nav-menus-php .item-edit:before,
|
||||||
.widget-top .widget-action .toggle-indicator:before,
|
.wp-customizer .control-section .accordion-section-title:after,
|
||||||
.control-section .accordion-section-title:after,
|
.wp-customizer .accordion-section-title:after,
|
||||||
.accordion-section-title:after {
|
.widget-top .widget-action .toggle-indicator:before {
|
||||||
content: "\f140";
|
content: "\f140";
|
||||||
font: normal 20px/1 dashicons;
|
font: normal 20px/1 dashicons;
|
||||||
speak: never;
|
speak: never;
|
||||||
|
|
@ -3516,8 +3593,7 @@ img {
|
||||||
.handlediv,
|
.handlediv,
|
||||||
.postbox .handlediv.button-link,
|
.postbox .handlediv.button-link,
|
||||||
.item-edit,
|
.item-edit,
|
||||||
.toggle-indicator,
|
.toggle-indicator {
|
||||||
.accordion-section-title:after {
|
|
||||||
color: #787c82;
|
color: #787c82;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -3533,8 +3609,7 @@ img {
|
||||||
.postbox .handlediv.button-link:focus,
|
.postbox .handlediv.button-link:focus,
|
||||||
.item-edit:hover,
|
.item-edit:hover,
|
||||||
.item-edit:focus,
|
.item-edit:focus,
|
||||||
.sidebar-name:hover .toggle-indicator,
|
.sidebar-name:hover .toggle-indicator {
|
||||||
.accordion-section-title:hover:after {
|
|
||||||
color: #1d2327;
|
color: #1d2327;
|
||||||
/* Only visible in Windows High Contrast mode */
|
/* Only visible in Windows High Contrast mode */
|
||||||
outline: 2px solid transparent;
|
outline: 2px solid transparent;
|
||||||
|
|
@ -3546,14 +3621,6 @@ img {
|
||||||
outline: 2px solid transparent;
|
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,
|
#customize-info.open .accordion-section-title:after,
|
||||||
.nav-menus-php .menu-item-edit-active .item-edit:before,
|
.nav-menus-php .menu-item-edit-active .item-edit:before,
|
||||||
.widget.open .widget-top .widget-action .toggle-indicator:before,
|
.widget.open .widget-top .widget-action .toggle-indicator:before,
|
||||||
|
|
@ -3598,7 +3665,6 @@ img {
|
||||||
|
|
||||||
.accordion-section-title {
|
.accordion-section-title {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 12px 15px 15px;
|
|
||||||
position: relative;
|
position: relative;
|
||||||
border-left: 1px solid #dcdcde;
|
border-left: 1px solid #dcdcde;
|
||||||
border-right: 1px solid #dcdcde;
|
border-right: 1px solid #dcdcde;
|
||||||
|
|
@ -3835,7 +3901,7 @@ img {
|
||||||
|
|
||||||
@media screen and (max-width: 782px) {
|
@media screen and (max-width: 782px) {
|
||||||
html.wp-toolbar {
|
html.wp-toolbar {
|
||||||
padding-top: 46px;
|
padding-top: var(--wp-admin--admin-bar--height);
|
||||||
}
|
}
|
||||||
|
|
||||||
.screen-reader-shortcut:focus {
|
.screen-reader-shortcut:focus {
|
||||||
|
|
@ -3943,6 +4009,10 @@ img {
|
||||||
padding: 12px;
|
padding: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.nav-menus-php .metabox-holder h3 {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.postbox .handlediv {
|
.postbox .handlediv {
|
||||||
margin-top: 3px;
|
margin-top: 3px;
|
||||||
}
|
}
|
||||||
|
|
@ -4132,7 +4202,6 @@ img {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-filter .search-form input[type="search"] {
|
.wp-filter .search-form input[type="search"] {
|
||||||
width: 100%;
|
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -4186,6 +4255,10 @@ img {
|
||||||
.nav-tab-active:focus:active {
|
.nav-tab-active:focus:active {
|
||||||
border-bottom: 1px solid #c3c4c7;
|
border-bottom: 1px solid #c3c4c7;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.wp-filter .search-form.search-plugins label {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 480px) {
|
@media screen and (max-width: 480px) {
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -32,7 +32,7 @@ body {
|
||||||
max-width: 366px;
|
max-width: 366px;
|
||||||
min-height: 64px;
|
min-height: 64px;
|
||||||
width: auto;
|
width: auto;
|
||||||
padding: 25px 109px 25px 25px;
|
padding: 25px;
|
||||||
position: relative;
|
position: relative;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
|
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
|
||||||
|
|
@ -42,6 +42,10 @@ body {
|
||||||
top: calc( 50% - 100px );
|
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 {
|
#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .currently-editing {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
@ -394,6 +398,7 @@ body.trashing #publish-settings {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#customize-control-site_icon .customize-control-description,
|
||||||
#customize-control-changeset_scheduled_date .customize-control-description {
|
#customize-control-changeset_scheduled_date .customize-control-description {
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
@ -427,6 +432,7 @@ body.trashing #publish-settings {
|
||||||
border-left: none;
|
border-left: none;
|
||||||
border-bottom: none;
|
border-bottom: none;
|
||||||
cursor: default;
|
cursor: default;
|
||||||
|
padding: 10px 14px 11px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#customize-controls .customize-info.open .accordion-section-title:after,
|
#customize-controls .customize-info.open .accordion-section-title:after,
|
||||||
|
|
@ -549,6 +555,24 @@ body.trashing #publish-settings {
|
||||||
.15s border-color ease-in-out;
|
.15s border-color ease-in-out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.accordion-section-title:has(button.accordion-trigger),
|
||||||
|
#customize-controls .current-panel .control-section > h3.accordion-section-title:has(button.accordion-trigger) {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.accordion-section-title button.accordion-trigger {
|
||||||
|
all: unset;
|
||||||
|
width: 100%;
|
||||||
|
padding: 10px 14px 11px 30px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.accordion-section-title button.accordion-trigger:has(.menu-in-location) {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
@media (prefers-reduced-motion: reduce) {
|
@media (prefers-reduced-motion: reduce) {
|
||||||
#customize-theme-controls .accordion-section-title,
|
#customize-theme-controls .accordion-section-title,
|
||||||
#customize-outer-theme-controls .accordion-section-title {
|
#customize-outer-theme-controls .accordion-section-title {
|
||||||
|
|
@ -566,6 +590,7 @@ body.trashing #publish-settings {
|
||||||
#customize-outer-theme-controls .accordion-section-title:after {
|
#customize-outer-theme-controls .accordion-section-title:after {
|
||||||
content: "\f341";
|
content: "\f341";
|
||||||
color: #a7aaad;
|
color: #a7aaad;
|
||||||
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#customize-theme-controls .accordion-section-content,
|
#customize-theme-controls .accordion-section-content,
|
||||||
|
|
@ -575,9 +600,9 @@ body.trashing #publish-settings {
|
||||||
}
|
}
|
||||||
|
|
||||||
#customize-controls .control-section:hover > .accordion-section-title,
|
#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.open .accordion-section-title,
|
||||||
#customize-controls .control-section .accordion-section-title:focus {
|
#customize-controls .control-section .accordion-section-title button:focus {
|
||||||
color: #2271b1;
|
color: #2271b1;
|
||||||
background: #f6f7f7;
|
background: #f6f7f7;
|
||||||
border-right-color: #2271b1;
|
border-right-color: #2271b1;
|
||||||
|
|
@ -1067,10 +1092,6 @@ p.customize-section-description {
|
||||||
line-height: 0;
|
line-height: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Remove descender space. */
|
|
||||||
.customize-control-site_icon .favicon-preview .browser-preview {
|
|
||||||
vertical-align: top;
|
|
||||||
}
|
|
||||||
|
|
||||||
.customize-control .thumbnail-image img {
|
.customize-control .thumbnail-image img {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
@ -1083,14 +1104,24 @@ p.customize-section-description {
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
#available-menu-items .accordion-section-content .new-content-item,
|
#available-menu-items .accordion-section-content .new-content-item-wrapper,
|
||||||
.customize-control-dropdown-pages .new-content-item {
|
.customize-control-dropdown-pages .new-content-item-wrapper {
|
||||||
width: calc(100% - 30px);
|
width: calc(100% - 30px);
|
||||||
padding: 8px 15px;
|
padding: 8px 15px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
z-index: 10;
|
z-index: 10;
|
||||||
background: #f0f0f1;
|
background: #f0f0f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.customize-control-dropdown-pages .new-content-item-wrapper {
|
||||||
|
width: 100%;
|
||||||
|
padding: 0;
|
||||||
|
position: static;
|
||||||
|
}
|
||||||
|
|
||||||
|
#available-menu-items .accordion-section-content .new-content-item,
|
||||||
|
.customize-control-dropdown-pages .new-content-item {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1100,6 +1131,14 @@ p.customize-section-description {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.customize-control-dropdown-pages .new-content-item-wrapper .new-content-item {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.customize-control-dropdown-pages .new-content-item-wrapper .new-content-item label {
|
||||||
|
line-height: 1.6;
|
||||||
|
}
|
||||||
|
|
||||||
#available-menu-items .new-content-item .create-item-input,
|
#available-menu-items .new-content-item .create-item-input,
|
||||||
.customize-control-dropdown-pages .new-content-item .create-item-input {
|
.customize-control-dropdown-pages .new-content-item .create-item-input {
|
||||||
flex-grow: 10;
|
flex-grow: 10;
|
||||||
|
|
@ -1690,7 +1729,7 @@ p.customize-section-description {
|
||||||
border-right: none;
|
border-right: none;
|
||||||
border-left: none;
|
border-left: none;
|
||||||
margin: 0 0 15px;
|
margin: 0 0 15px;
|
||||||
padding-left: 100px; /* Space for the button */
|
padding: 12px 15px 15px 100px; /* Space for the button */
|
||||||
}
|
}
|
||||||
|
|
||||||
#customize-theme-controls .control-section-themes .customize-themes-panel .accordion-section-title:first-child:hover, /* Not a focusable element. */
|
#customize-theme-controls .control-section-themes .customize-themes-panel .accordion-section-title:first-child:hover, /* Not a focusable element. */
|
||||||
|
|
@ -1816,11 +1855,6 @@ p.customize-section-description {
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.themes-filter-bar .feature-filter-toggle {
|
|
||||||
float: left;
|
|
||||||
margin: 3px 25px 3px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.themes-filter-bar .feature-filter-toggle:before {
|
.themes-filter-bar .feature-filter-toggle:before {
|
||||||
content: "\f111";
|
content: "\f111";
|
||||||
margin: 0 0 0 5px;
|
margin: 0 0 0 5px;
|
||||||
|
|
@ -1881,12 +1915,6 @@ p.customize-section-description {
|
||||||
animation: .6s themes-fade-in 1;
|
animation: .6s themes-fade-in 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.control-panel-themes .filter-themes-count {
|
|
||||||
position: relative;
|
|
||||||
float: left;
|
|
||||||
line-height: 2.6;
|
|
||||||
}
|
|
||||||
|
|
||||||
.control-panel-themes .filter-themes-count .themes-displayed {
|
.control-panel-themes .filter-themes-count .themes-displayed {
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
color: #50575e;
|
color: #50575e;
|
||||||
|
|
@ -2098,6 +2126,28 @@ p.customize-section-description {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
border-bottom: 1px solid #dcdcde;
|
border-bottom: 1px solid #dcdcde;
|
||||||
}
|
}
|
||||||
|
.customize-preview-header.themes-filter-bar,
|
||||||
|
.customize-preview-header.themes-filter-bar .search-form {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 10px;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.customize-preview-header.themes-filter-bar .search-form-input {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.customize-preview-header .filter-themes-wrapper {
|
||||||
|
display: grid;
|
||||||
|
align-items: center;
|
||||||
|
gap: 10px;
|
||||||
|
grid-template-columns: auto 1fr;
|
||||||
|
}
|
||||||
|
|
||||||
|
.customize-preview-header .filter-themes-wrapper .filter-themes-count {
|
||||||
|
justify-self: end;
|
||||||
|
}
|
||||||
|
|
||||||
@media screen and (min-width: 1670px) {
|
@media screen and (min-width: 1670px) {
|
||||||
.customize-preview-header.themes-filter-bar {
|
.customize-preview-header.themes-filter-bar {
|
||||||
|
|
@ -2110,6 +2160,9 @@ p.customize-section-description {
|
||||||
.themes-filter-bar .themes-filter-container {
|
.themes-filter-bar .themes-filter-container {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.themes-filter-bar .wp-filter-search {
|
.themes-filter-bar .wp-filter-search {
|
||||||
|
|
@ -2118,11 +2171,10 @@ p.customize-section-description {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
width: 40%;
|
width: 40%;
|
||||||
min-width: 300px;
|
min-width: 300px;
|
||||||
position: absolute;
|
|
||||||
top: 6px;
|
|
||||||
right: 25px;
|
|
||||||
height: 32px;
|
height: 32px;
|
||||||
margin: 1px 0;
|
margin: 1px 0;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Unstick the filter bar on short windows/screens. This breakpoint is based on the
|
/* Unstick the filter bar on short windows/screens. This breakpoint is based on the
|
||||||
|
|
@ -2156,18 +2208,31 @@ p.customize-section-description {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 900px) {
|
@media screen and (max-width: 960px) {
|
||||||
.customize-preview-header.themes-filter-bar {
|
.customize-preview-header.themes-filter-bar {
|
||||||
height: 86px;
|
height: 96px;
|
||||||
padding-top: 46px;
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 900px) {
|
||||||
.themes-filter-bar .wp-filter-search {
|
.themes-filter-bar .wp-filter-search {
|
||||||
width: calc(100% - 50px);
|
width: 100%;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
min-width: 200px;
|
min-width: 200px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.customize-preview-header.themes-filter-bar,
|
||||||
|
.customize-preview-header.themes-filter-bar .search-form
|
||||||
|
.themes-filter-bar .themes-filter-container {
|
||||||
|
display: grid;
|
||||||
|
gap: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.customize-preview-header.themes-filter-bar .search-form-input {
|
||||||
|
display: flex;
|
||||||
|
flex-grow: 1;
|
||||||
|
}
|
||||||
|
|
||||||
.filter-drawer {
|
.filter-drawer {
|
||||||
top: 86px;
|
top: 86px;
|
||||||
}
|
}
|
||||||
|
|
@ -2581,7 +2646,7 @@ body.adding-widget .add-new-widget:before,
|
||||||
}
|
}
|
||||||
|
|
||||||
#available-widgets-list {
|
#available-widgets-list {
|
||||||
top: 60px;
|
top: 82px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
|
|
@ -2625,7 +2690,7 @@ body.adding-widget .add-new-widget:before,
|
||||||
#available-widgets-filter .search-icon {
|
#available-widgets-filter .search-icon {
|
||||||
display: block;
|
display: block;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 15px; /* 13 container padding +1 input margin +1 input border */
|
bottom: 15px; /* 13 container padding +1 input margin +1 input border */
|
||||||
right: 16px;
|
right: 16px;
|
||||||
width: 30px;
|
width: 30px;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
|
|
@ -2635,9 +2700,9 @@ body.adding-widget .add-new-widget:before,
|
||||||
}
|
}
|
||||||
|
|
||||||
#available-widgets-filter .clear-results,
|
#available-widgets-filter .clear-results,
|
||||||
#available-menu-items-search .clear-results {
|
#available-menu-items-search .accordion-section-title .clear-results {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 15px; /* 13 container padding +1 input margin +1 input border */
|
top: 36px; /* 13 container padding +1 input margin +1 input border */
|
||||||
left: 16px;
|
left: 16px;
|
||||||
width: 30px;
|
width: 30px;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
|
|
@ -2696,8 +2761,8 @@ body.adding-widget .add-new-widget:before,
|
||||||
|
|
||||||
.themes-filter-bar .search-icon {
|
.themes-filter-bar .search-icon {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 7px;
|
top: 2px;
|
||||||
right: 26px;
|
right: 2px;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
color: #646970;
|
color: #646970;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
|
|
@ -2815,8 +2880,8 @@ body.adding-widget .add-new-widget:before,
|
||||||
margin-top: 12px;
|
margin-top: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-core-ui .themes-filter-bar .feature-filter-toggle {
|
.customize-preview-header.themes-filter-bar .search-icon {
|
||||||
margin: 3px 25px 3px 0;
|
top: 6px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -2953,22 +3018,18 @@ body.adding-widget .add-new-widget:before,
|
||||||
}
|
}
|
||||||
|
|
||||||
#available-widgets-list {
|
#available-widgets-list {
|
||||||
top: 130px;
|
top: 152px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#available-menu-items-search .clear-results,
|
#available-menu-items-search .clear-results {
|
||||||
#available-menu-items-search .search-icon {
|
top: 36px;
|
||||||
top: 85px; /* 70 section title height + 13 container padding +1 input margin +1 input border */
|
left: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.reorder,
|
.reorder,
|
||||||
.reordering .reorder-done {
|
.reordering .reorder-done {
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-core-ui .themes-filter-bar .feature-filter-toggle {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 600px) {
|
@media screen and (max-width: 600px) {
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -31,7 +31,7 @@ body {
|
||||||
max-width: 366px;
|
max-width: 366px;
|
||||||
min-height: 64px;
|
min-height: 64px;
|
||||||
width: auto;
|
width: auto;
|
||||||
padding: 25px 25px 25px 109px;
|
padding: 25px;
|
||||||
position: relative;
|
position: relative;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
|
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
|
||||||
|
|
@ -41,6 +41,10 @@ body {
|
||||||
top: calc( 50% - 100px );
|
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 {
|
#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .currently-editing {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
@ -393,6 +397,7 @@ body.trashing #publish-settings {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#customize-control-site_icon .customize-control-description,
|
||||||
#customize-control-changeset_scheduled_date .customize-control-description {
|
#customize-control-changeset_scheduled_date .customize-control-description {
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
@ -426,6 +431,7 @@ body.trashing #publish-settings {
|
||||||
border-right: none;
|
border-right: none;
|
||||||
border-bottom: none;
|
border-bottom: none;
|
||||||
cursor: default;
|
cursor: default;
|
||||||
|
padding: 10px 10px 11px 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#customize-controls .customize-info.open .accordion-section-title:after,
|
#customize-controls .customize-info.open .accordion-section-title:after,
|
||||||
|
|
@ -548,6 +554,24 @@ body.trashing #publish-settings {
|
||||||
.15s border-color ease-in-out;
|
.15s border-color ease-in-out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.accordion-section-title:has(button.accordion-trigger),
|
||||||
|
#customize-controls .current-panel .control-section > h3.accordion-section-title:has(button.accordion-trigger) {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.accordion-section-title button.accordion-trigger {
|
||||||
|
all: unset;
|
||||||
|
width: 100%;
|
||||||
|
padding: 10px 30px 11px 14px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.accordion-section-title button.accordion-trigger:has(.menu-in-location) {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
@media (prefers-reduced-motion: reduce) {
|
@media (prefers-reduced-motion: reduce) {
|
||||||
#customize-theme-controls .accordion-section-title,
|
#customize-theme-controls .accordion-section-title,
|
||||||
#customize-outer-theme-controls .accordion-section-title {
|
#customize-outer-theme-controls .accordion-section-title {
|
||||||
|
|
@ -565,6 +589,7 @@ body.trashing #publish-settings {
|
||||||
#customize-outer-theme-controls .accordion-section-title:after {
|
#customize-outer-theme-controls .accordion-section-title:after {
|
||||||
content: "\f345";
|
content: "\f345";
|
||||||
color: #a7aaad;
|
color: #a7aaad;
|
||||||
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#customize-theme-controls .accordion-section-content,
|
#customize-theme-controls .accordion-section-content,
|
||||||
|
|
@ -574,9 +599,9 @@ body.trashing #publish-settings {
|
||||||
}
|
}
|
||||||
|
|
||||||
#customize-controls .control-section:hover > .accordion-section-title,
|
#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.open .accordion-section-title,
|
||||||
#customize-controls .control-section .accordion-section-title:focus {
|
#customize-controls .control-section .accordion-section-title button:focus {
|
||||||
color: #2271b1;
|
color: #2271b1;
|
||||||
background: #f6f7f7;
|
background: #f6f7f7;
|
||||||
border-left-color: #2271b1;
|
border-left-color: #2271b1;
|
||||||
|
|
@ -1066,10 +1091,6 @@ p.customize-section-description {
|
||||||
line-height: 0;
|
line-height: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Remove descender space. */
|
|
||||||
.customize-control-site_icon .favicon-preview .browser-preview {
|
|
||||||
vertical-align: top;
|
|
||||||
}
|
|
||||||
|
|
||||||
.customize-control .thumbnail-image img {
|
.customize-control .thumbnail-image img {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
@ -1082,14 +1103,24 @@ p.customize-section-description {
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
#available-menu-items .accordion-section-content .new-content-item,
|
#available-menu-items .accordion-section-content .new-content-item-wrapper,
|
||||||
.customize-control-dropdown-pages .new-content-item {
|
.customize-control-dropdown-pages .new-content-item-wrapper {
|
||||||
width: calc(100% - 30px);
|
width: calc(100% - 30px);
|
||||||
padding: 8px 15px;
|
padding: 8px 15px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
z-index: 10;
|
z-index: 10;
|
||||||
background: #f0f0f1;
|
background: #f0f0f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.customize-control-dropdown-pages .new-content-item-wrapper {
|
||||||
|
width: 100%;
|
||||||
|
padding: 0;
|
||||||
|
position: static;
|
||||||
|
}
|
||||||
|
|
||||||
|
#available-menu-items .accordion-section-content .new-content-item,
|
||||||
|
.customize-control-dropdown-pages .new-content-item {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1099,6 +1130,14 @@ p.customize-section-description {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.customize-control-dropdown-pages .new-content-item-wrapper .new-content-item {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.customize-control-dropdown-pages .new-content-item-wrapper .new-content-item label {
|
||||||
|
line-height: 1.6;
|
||||||
|
}
|
||||||
|
|
||||||
#available-menu-items .new-content-item .create-item-input,
|
#available-menu-items .new-content-item .create-item-input,
|
||||||
.customize-control-dropdown-pages .new-content-item .create-item-input {
|
.customize-control-dropdown-pages .new-content-item .create-item-input {
|
||||||
flex-grow: 10;
|
flex-grow: 10;
|
||||||
|
|
@ -1689,7 +1728,7 @@ p.customize-section-description {
|
||||||
border-left: none;
|
border-left: none;
|
||||||
border-right: none;
|
border-right: none;
|
||||||
margin: 0 0 15px;
|
margin: 0 0 15px;
|
||||||
padding-right: 100px; /* Space for the button */
|
padding: 12px 100px 15px 15px; /* Space for the button */
|
||||||
}
|
}
|
||||||
|
|
||||||
#customize-theme-controls .control-section-themes .customize-themes-panel .accordion-section-title:first-child:hover, /* Not a focusable element. */
|
#customize-theme-controls .control-section-themes .customize-themes-panel .accordion-section-title:first-child:hover, /* Not a focusable element. */
|
||||||
|
|
@ -1815,11 +1854,6 @@ p.customize-section-description {
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.themes-filter-bar .feature-filter-toggle {
|
|
||||||
float: right;
|
|
||||||
margin: 3px 0 3px 25px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.themes-filter-bar .feature-filter-toggle:before {
|
.themes-filter-bar .feature-filter-toggle:before {
|
||||||
content: "\f111";
|
content: "\f111";
|
||||||
margin: 0 5px 0 0;
|
margin: 0 5px 0 0;
|
||||||
|
|
@ -1880,12 +1914,6 @@ p.customize-section-description {
|
||||||
animation: .6s themes-fade-in 1;
|
animation: .6s themes-fade-in 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.control-panel-themes .filter-themes-count {
|
|
||||||
position: relative;
|
|
||||||
float: right;
|
|
||||||
line-height: 2.6;
|
|
||||||
}
|
|
||||||
|
|
||||||
.control-panel-themes .filter-themes-count .themes-displayed {
|
.control-panel-themes .filter-themes-count .themes-displayed {
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
color: #50575e;
|
color: #50575e;
|
||||||
|
|
@ -2097,6 +2125,28 @@ p.customize-section-description {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
border-bottom: 1px solid #dcdcde;
|
border-bottom: 1px solid #dcdcde;
|
||||||
}
|
}
|
||||||
|
.customize-preview-header.themes-filter-bar,
|
||||||
|
.customize-preview-header.themes-filter-bar .search-form {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 10px;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.customize-preview-header.themes-filter-bar .search-form-input {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.customize-preview-header .filter-themes-wrapper {
|
||||||
|
display: grid;
|
||||||
|
align-items: center;
|
||||||
|
gap: 10px;
|
||||||
|
grid-template-columns: auto 1fr;
|
||||||
|
}
|
||||||
|
|
||||||
|
.customize-preview-header .filter-themes-wrapper .filter-themes-count {
|
||||||
|
justify-self: end;
|
||||||
|
}
|
||||||
|
|
||||||
@media screen and (min-width: 1670px) {
|
@media screen and (min-width: 1670px) {
|
||||||
.customize-preview-header.themes-filter-bar {
|
.customize-preview-header.themes-filter-bar {
|
||||||
|
|
@ -2109,6 +2159,9 @@ p.customize-section-description {
|
||||||
.themes-filter-bar .themes-filter-container {
|
.themes-filter-bar .themes-filter-container {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.themes-filter-bar .wp-filter-search {
|
.themes-filter-bar .wp-filter-search {
|
||||||
|
|
@ -2117,11 +2170,10 @@ p.customize-section-description {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
width: 40%;
|
width: 40%;
|
||||||
min-width: 300px;
|
min-width: 300px;
|
||||||
position: absolute;
|
|
||||||
top: 6px;
|
|
||||||
left: 25px;
|
|
||||||
height: 32px;
|
height: 32px;
|
||||||
margin: 1px 0;
|
margin: 1px 0;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Unstick the filter bar on short windows/screens. This breakpoint is based on the
|
/* Unstick the filter bar on short windows/screens. This breakpoint is based on the
|
||||||
|
|
@ -2155,18 +2207,31 @@ p.customize-section-description {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 900px) {
|
@media screen and (max-width: 960px) {
|
||||||
.customize-preview-header.themes-filter-bar {
|
.customize-preview-header.themes-filter-bar {
|
||||||
height: 86px;
|
height: 96px;
|
||||||
padding-top: 46px;
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 900px) {
|
||||||
.themes-filter-bar .wp-filter-search {
|
.themes-filter-bar .wp-filter-search {
|
||||||
width: calc(100% - 50px);
|
width: 100%;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
min-width: 200px;
|
min-width: 200px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.customize-preview-header.themes-filter-bar,
|
||||||
|
.customize-preview-header.themes-filter-bar .search-form
|
||||||
|
.themes-filter-bar .themes-filter-container {
|
||||||
|
display: grid;
|
||||||
|
gap: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.customize-preview-header.themes-filter-bar .search-form-input {
|
||||||
|
display: flex;
|
||||||
|
flex-grow: 1;
|
||||||
|
}
|
||||||
|
|
||||||
.filter-drawer {
|
.filter-drawer {
|
||||||
top: 86px;
|
top: 86px;
|
||||||
}
|
}
|
||||||
|
|
@ -2580,7 +2645,7 @@ body.adding-widget .add-new-widget:before,
|
||||||
}
|
}
|
||||||
|
|
||||||
#available-widgets-list {
|
#available-widgets-list {
|
||||||
top: 60px;
|
top: 82px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
|
|
@ -2624,7 +2689,7 @@ body.adding-widget .add-new-widget:before,
|
||||||
#available-widgets-filter .search-icon {
|
#available-widgets-filter .search-icon {
|
||||||
display: block;
|
display: block;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 15px; /* 13 container padding +1 input margin +1 input border */
|
bottom: 15px; /* 13 container padding +1 input margin +1 input border */
|
||||||
left: 16px;
|
left: 16px;
|
||||||
width: 30px;
|
width: 30px;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
|
|
@ -2634,9 +2699,9 @@ body.adding-widget .add-new-widget:before,
|
||||||
}
|
}
|
||||||
|
|
||||||
#available-widgets-filter .clear-results,
|
#available-widgets-filter .clear-results,
|
||||||
#available-menu-items-search .clear-results {
|
#available-menu-items-search .accordion-section-title .clear-results {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 15px; /* 13 container padding +1 input margin +1 input border */
|
top: 36px; /* 13 container padding +1 input margin +1 input border */
|
||||||
right: 16px;
|
right: 16px;
|
||||||
width: 30px;
|
width: 30px;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
|
|
@ -2695,8 +2760,8 @@ body.adding-widget .add-new-widget:before,
|
||||||
|
|
||||||
.themes-filter-bar .search-icon {
|
.themes-filter-bar .search-icon {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 7px;
|
top: 2px;
|
||||||
left: 26px;
|
left: 2px;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
color: #646970;
|
color: #646970;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
|
|
@ -2814,8 +2879,8 @@ body.adding-widget .add-new-widget:before,
|
||||||
margin-top: 12px;
|
margin-top: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-core-ui .themes-filter-bar .feature-filter-toggle {
|
.customize-preview-header.themes-filter-bar .search-icon {
|
||||||
margin: 3px 0 3px 25px;
|
top: 6px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -2952,22 +3017,18 @@ body.adding-widget .add-new-widget:before,
|
||||||
}
|
}
|
||||||
|
|
||||||
#available-widgets-list {
|
#available-widgets-list {
|
||||||
top: 130px;
|
top: 152px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#available-menu-items-search .clear-results,
|
#available-menu-items-search .clear-results {
|
||||||
#available-menu-items-search .search-icon {
|
top: 36px;
|
||||||
top: 85px; /* 70 section title height + 13 container padding +1 input margin +1 input border */
|
right: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.reorder,
|
.reorder,
|
||||||
.reordering .reorder-done {
|
.reordering .reorder-done {
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-core-ui .themes-filter-bar .feature-filter-toggle {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 600px) {
|
@media screen and (max-width: 600px) {
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -543,8 +543,9 @@
|
||||||
background: transparent;
|
background: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
#available-menu-items .accordion-section-title button {
|
#available-menu-items .accordion-section-title button .toggle-indicator {
|
||||||
display: block;
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
width: 28px;
|
width: 28px;
|
||||||
height: 35px;
|
height: 35px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
|
@ -558,7 +559,7 @@
|
||||||
|
|
||||||
#available-menu-items .accordion-section-title .no-items,
|
#available-menu-items .accordion-section-title .no-items,
|
||||||
#available-menu-items .cannot-expand .accordion-section-title .spinner,
|
#available-menu-items .cannot-expand .accordion-section-title .spinner,
|
||||||
#available-menu-items .cannot-expand .accordion-section-title > button {
|
#available-menu-items .cannot-expand .accordion-section-title > button:not(#available-menu-items-search button.is-visible) {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -582,7 +583,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
#available-menu-items .accordion-section-content .available-menu-items-list {
|
#available-menu-items .accordion-section-content .available-menu-items-list {
|
||||||
margin: 0 0 45px;
|
margin: 0 0 64px;
|
||||||
padding: 1px 15px 15px;
|
padding: 1px 15px 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -681,7 +682,7 @@
|
||||||
|
|
||||||
#available-menu-items-search .spinner {
|
#available-menu-items-search .spinner {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 20px; /* 13 container padding +1 input margin +6 ( ( 32 input height - 20 spinner height ) / 2 ) */
|
bottom: 20px; /* 13 container padding +1 input margin +6 ( ( 32 input height - 20 spinner height ) / 2 ) */
|
||||||
left: 21px;
|
left: 21px;
|
||||||
margin: 0 !important;
|
margin: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
@ -690,7 +691,7 @@
|
||||||
#available-menu-items #available-menu-items-search .accordion-section-content {
|
#available-menu-items #available-menu-items-search .accordion-section-content {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 0;
|
right: 0;
|
||||||
top: 60px; /* below title div / search input */
|
top: 75px; /* below title div / search input */
|
||||||
bottom: 0; /* 100% height that still triggers lazy load */
|
bottom: 0; /* 100% height that still triggers lazy load */
|
||||||
max-height: none;
|
max-height: none;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
@ -879,6 +880,6 @@ li.assigned-to-menu-location .add-new-menu-item {
|
||||||
|
|
||||||
@media screen and (max-width: 640px) {
|
@media screen and (max-width: 640px) {
|
||||||
#available-menu-items #available-menu-items-search .accordion-section-content {
|
#available-menu-items #available-menu-items-search .accordion-section-content {
|
||||||
top: 130px;
|
top: 146px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -542,8 +542,9 @@
|
||||||
background: transparent;
|
background: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
#available-menu-items .accordion-section-title button {
|
#available-menu-items .accordion-section-title button .toggle-indicator {
|
||||||
display: block;
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
width: 28px;
|
width: 28px;
|
||||||
height: 35px;
|
height: 35px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
|
@ -557,7 +558,7 @@
|
||||||
|
|
||||||
#available-menu-items .accordion-section-title .no-items,
|
#available-menu-items .accordion-section-title .no-items,
|
||||||
#available-menu-items .cannot-expand .accordion-section-title .spinner,
|
#available-menu-items .cannot-expand .accordion-section-title .spinner,
|
||||||
#available-menu-items .cannot-expand .accordion-section-title > button {
|
#available-menu-items .cannot-expand .accordion-section-title > button:not(#available-menu-items-search button.is-visible) {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -581,7 +582,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
#available-menu-items .accordion-section-content .available-menu-items-list {
|
#available-menu-items .accordion-section-content .available-menu-items-list {
|
||||||
margin: 0 0 45px;
|
margin: 0 0 64px;
|
||||||
padding: 1px 15px 15px;
|
padding: 1px 15px 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -680,7 +681,7 @@
|
||||||
|
|
||||||
#available-menu-items-search .spinner {
|
#available-menu-items-search .spinner {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 20px; /* 13 container padding +1 input margin +6 ( ( 32 input height - 20 spinner height ) / 2 ) */
|
bottom: 20px; /* 13 container padding +1 input margin +6 ( ( 32 input height - 20 spinner height ) / 2 ) */
|
||||||
right: 21px;
|
right: 21px;
|
||||||
margin: 0 !important;
|
margin: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
@ -689,7 +690,7 @@
|
||||||
#available-menu-items #available-menu-items-search .accordion-section-content {
|
#available-menu-items #available-menu-items-search .accordion-section-content {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 0;
|
left: 0;
|
||||||
top: 60px; /* below title div / search input */
|
top: 75px; /* below title div / search input */
|
||||||
bottom: 0; /* 100% height that still triggers lazy load */
|
bottom: 0; /* 100% height that still triggers lazy load */
|
||||||
max-height: none;
|
max-height: none;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
@ -878,6 +879,6 @@ li.assigned-to-menu-location .add-new-menu-item {
|
||||||
|
|
||||||
@media screen and (max-width: 640px) {
|
@media screen and (max-width: 640px) {
|
||||||
#available-menu-items #available-menu-items-search .accordion-section-content {
|
#available-menu-items #available-menu-items-search .accordion-section-content {
|
||||||
top: 130px;
|
top: 146px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -713,6 +713,11 @@ body #dashboard-widgets .postbox form .submit {
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#network_dashboard_right_now p input {
|
||||||
|
margin: 2px 1px;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
/* Dashboard right now - Colors */
|
/* Dashboard right now - Colors */
|
||||||
|
|
||||||
#dashboard_right_now .sub {
|
#dashboard_right_now .sub {
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -712,6 +712,11 @@ body #dashboard-widgets .postbox form .submit {
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#network_dashboard_right_now p input {
|
||||||
|
margin: 2px 1px;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
/* Dashboard right now - Colors */
|
/* Dashboard right now - Colors */
|
||||||
|
|
||||||
#dashboard_right_now .sub {
|
#dashboard_right_now .sub {
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -76,6 +76,14 @@
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#titlewrap .skiplink:focus {
|
||||||
|
clip: inherit;
|
||||||
|
clip-path: inherit;
|
||||||
|
left: 4px;
|
||||||
|
top: 4px;
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
|
||||||
input#link_description,
|
input#link_description,
|
||||||
input#link_url {
|
input#link_url {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
@ -301,7 +309,6 @@ ul.wp-tab-bar li {
|
||||||
#postimagediv .inside img {
|
#postimagediv .inside img {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
height: auto;
|
height: auto;
|
||||||
width: auto;
|
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
background-image: linear-gradient(-45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7), linear-gradient(-45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7);
|
background-image: linear-gradient(-45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7), linear-gradient(-45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7);
|
||||||
background-position: 100% 0, 10px 10px;
|
background-position: 100% 0, 10px 10px;
|
||||||
|
|
@ -1039,6 +1046,14 @@ form#tags-filter {
|
||||||
white-space: normal;
|
white-space: normal;
|
||||||
line-height: 1.8;
|
line-height: 1.8;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#edit-slug-box {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#titlewrap .skiplink:focus {
|
||||||
|
top: 5px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (max-width: 1004px) {
|
@media only screen and (max-width: 1004px) {
|
||||||
|
|
@ -1298,7 +1313,7 @@ div.tabs-panel-active:focus {
|
||||||
/* Only visible in Windows High Contrast mode */
|
/* Only visible in Windows High Contrast mode */
|
||||||
outline: 2px solid transparent;
|
outline: 2px solid transparent;
|
||||||
}
|
}
|
||||||
|
.options-discussion-php .indent-children ul,
|
||||||
#front-page-warning,
|
#front-page-warning,
|
||||||
#front-static-pages ul,
|
#front-static-pages ul,
|
||||||
ul.export-filters,
|
ul.export-filters,
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -75,6 +75,14 @@
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#titlewrap .skiplink:focus {
|
||||||
|
clip: inherit;
|
||||||
|
clip-path: inherit;
|
||||||
|
right: 4px;
|
||||||
|
top: 4px;
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
|
||||||
input#link_description,
|
input#link_description,
|
||||||
input#link_url {
|
input#link_url {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
@ -300,7 +308,6 @@ ul.wp-tab-bar li {
|
||||||
#postimagediv .inside img {
|
#postimagediv .inside img {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
height: auto;
|
height: auto;
|
||||||
width: auto;
|
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
background-image: linear-gradient(45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7), linear-gradient(45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7);
|
background-image: linear-gradient(45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7), linear-gradient(45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7);
|
||||||
background-position: 0 0, 10px 10px;
|
background-position: 0 0, 10px 10px;
|
||||||
|
|
@ -1038,6 +1045,14 @@ form#tags-filter {
|
||||||
white-space: normal;
|
white-space: normal;
|
||||||
line-height: 1.8;
|
line-height: 1.8;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#edit-slug-box {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#titlewrap .skiplink:focus {
|
||||||
|
top: 5px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (max-width: 1004px) {
|
@media only screen and (max-width: 1004px) {
|
||||||
|
|
@ -1297,7 +1312,7 @@ div.tabs-panel-active:focus {
|
||||||
/* Only visible in Windows High Contrast mode */
|
/* Only visible in Windows High Contrast mode */
|
||||||
outline: 2px solid transparent;
|
outline: 2px solid transparent;
|
||||||
}
|
}
|
||||||
|
.options-discussion-php .indent-children ul,
|
||||||
#front-page-warning,
|
#front-page-warning,
|
||||||
#front-static-pages ul,
|
#front-static-pages ul,
|
||||||
ul.export-filters,
|
ul.export-filters,
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -721,8 +721,13 @@ fieldset label,
|
||||||
}
|
}
|
||||||
|
|
||||||
p.search-box {
|
p.search-box {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
align-items: center;
|
||||||
|
column-gap: 0.5rem;
|
||||||
|
position: relative;
|
||||||
float: left;
|
float: left;
|
||||||
margin: 0;
|
margin: 11px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.network-admin.themes-php p.search-box {
|
.network-admin.themes-php p.search-box {
|
||||||
|
|
@ -799,6 +804,8 @@ ul#add-to-blog-users {
|
||||||
padding: 9px 0;
|
padding: 9px 0;
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
max-width: 270px;
|
max-width: 270px;
|
||||||
|
border-radius: 4px;
|
||||||
|
background: #f0f0f1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.button-add-site-icon:focus,
|
.button-add-site-icon:focus,
|
||||||
|
|
@ -806,18 +813,6 @@ ul#add-to-blog-users {
|
||||||
background: #fff;
|
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 {
|
.button-add-site-icon:focus {
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
border-color: #3582c4;
|
border-color: #3582c4;
|
||||||
|
|
@ -1008,6 +1003,7 @@ table.form-table td .updated p {
|
||||||
}
|
}
|
||||||
|
|
||||||
.application-password-display input.code {
|
.application-password-display input.code {
|
||||||
|
margin-bottom: 6px;
|
||||||
width: 19em;
|
width: 19em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -720,8 +720,13 @@ fieldset label,
|
||||||
}
|
}
|
||||||
|
|
||||||
p.search-box {
|
p.search-box {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
align-items: center;
|
||||||
|
column-gap: 0.5rem;
|
||||||
|
position: relative;
|
||||||
float: right;
|
float: right;
|
||||||
margin: 0;
|
margin: 11px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.network-admin.themes-php p.search-box {
|
.network-admin.themes-php p.search-box {
|
||||||
|
|
@ -798,6 +803,8 @@ ul#add-to-blog-users {
|
||||||
padding: 9px 0;
|
padding: 9px 0;
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
max-width: 270px;
|
max-width: 270px;
|
||||||
|
border-radius: 4px;
|
||||||
|
background: #f0f0f1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.button-add-site-icon:focus,
|
.button-add-site-icon:focus,
|
||||||
|
|
@ -805,18 +812,6 @@ ul#add-to-blog-users {
|
||||||
background: #fff;
|
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 {
|
.button-add-site-icon:focus {
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
border-color: #3582c4;
|
border-color: #3582c4;
|
||||||
|
|
@ -1007,6 +1002,7 @@ table.form-table td .updated p {
|
||||||
}
|
}
|
||||||
|
|
||||||
.application-password-display input.code {
|
.application-password-display input.code {
|
||||||
|
margin-bottom: 6px;
|
||||||
width: 19em;
|
width: 19em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -351,7 +351,6 @@ body.language-chooser {
|
||||||
.screen-reader-text {
|
.screen-reader-text {
|
||||||
border: 0;
|
border: 0;
|
||||||
clip: rect(1px, 1px, 1px, 1px);
|
clip: rect(1px, 1px, 1px, 1px);
|
||||||
-webkit-clip-path: inset(50%);
|
|
||||||
clip-path: inset(50%);
|
clip-path: inset(50%);
|
||||||
height: 1px;
|
height: 1px;
|
||||||
margin: -1px;
|
margin: -1px;
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -350,7 +350,6 @@ body.language-chooser {
|
||||||
.screen-reader-text {
|
.screen-reader-text {
|
||||||
border: 0;
|
border: 0;
|
||||||
clip: rect(1px, 1px, 1px, 1px);
|
clip: rect(1px, 1px, 1px, 1px);
|
||||||
-webkit-clip-path: inset(50%);
|
|
||||||
clip-path: inset(50%);
|
clip-path: inset(50%);
|
||||||
height: 1px;
|
height: 1px;
|
||||||
margin: -1px;
|
margin: -1px;
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -67,6 +67,14 @@ body.locale-he-il .press-this a.wp-switch-editor {
|
||||||
.locale-de-de-formal #customize-header-actions .spinner {
|
.locale-de-de-formal #customize-header-actions .spinner {
|
||||||
margin: 16px 3px 0; /* default 16px 4px 0 5px */
|
margin: 16px 3px 0; /* default 16px 4px 0 5px */
|
||||||
}
|
}
|
||||||
|
body[class*="locale-de-"] .inline-edit-row fieldset label span.title,
|
||||||
|
body[class*="locale-de-"] .inline-edit-row fieldset.inline-edit-date legend {
|
||||||
|
width: 7em; /* default 6em */
|
||||||
|
}
|
||||||
|
body[class*="locale-de-"] .inline-edit-row fieldset label span.input-text-wrap,
|
||||||
|
body[class*="locale-de-"] .inline-edit-row fieldset .timestamp-wrap {
|
||||||
|
margin-right: 7em; /* default 6em */
|
||||||
|
}
|
||||||
|
|
||||||
/* ru_RU: Text needs more room to breathe. */
|
/* ru_RU: Text needs more room to breathe. */
|
||||||
.locale-ru-ru #adminmenu {
|
.locale-ru-ru #adminmenu {
|
||||||
|
|
@ -111,7 +119,16 @@ body.locale-he-il .press-this a.wp-switch-editor {
|
||||||
margin-right: 8em; /* default 6em */
|
margin-right: 8em; /* default 6em */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Fix overridden width for adjusted locales */
|
||||||
|
body[class*="locale-de-"] .quick-edit-row-post fieldset.inline-edit-col-right label span.title,
|
||||||
|
.locale-ru-ru .quick-edit-row-post fieldset.inline-edit-col-right label span.title,
|
||||||
|
.locale-lt-lt .quick-edit-row-post fieldset.inline-edit-col-right label span.title {
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 782px) {
|
@media screen and (max-width: 782px) {
|
||||||
|
body[class*="locale-de-"] .inline-edit-row fieldset label span.input-text-wrap,
|
||||||
|
body[class*="locale-de-"] .inline-edit-row fieldset .timestamp-wrap,
|
||||||
.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap,
|
.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap,
|
||||||
.locale-ru-ru .inline-edit-row fieldset .timestamp-wrap,
|
.locale-ru-ru .inline-edit-row fieldset .timestamp-wrap,
|
||||||
.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap,
|
.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap,
|
||||||
|
|
|
||||||
|
|
@ -1,2 +1,2 @@
|
||||||
/*! This file is auto-generated */
|
/*! This file is auto-generated */
|
||||||
body.rtl,body.rtl .press-this a.wp-switch-editor{font-family:Tahoma,Arial,sans-serif}.rtl h1,.rtl h2,.rtl h3,.rtl h4,.rtl h5,.rtl h6{font-family:Arial,sans-serif;font-weight:600}body.locale-he-il,body.locale-he-il .press-this a.wp-switch-editor{font-family:Arial,sans-serif}.locale-he-il em{font-style:normal;font-weight:600}.locale-zh-cn #local-time,.locale-zh-cn #utc-time,.locale-zh-cn .form-wrap p,.locale-zh-cn .howto,.locale-zh-cn .inline-edit-row fieldset span.checkbox-title,.locale-zh-cn .inline-edit-row fieldset span.title,.locale-zh-cn .js .input-with-default-title,.locale-zh-cn .link-to-original,.locale-zh-cn .tablenav .displaying-num,.locale-zh-cn p.description,.locale-zh-cn p.help,.locale-zh-cn p.install-help,.locale-zh-cn span.description{font-style:normal}.locale-zh-cn .hdnle a{font-size:12px}.locale-zh-cn form.upgrade .hint{font-style:normal;font-size:100%}.locale-zh-cn #sort-buttons{font-size:1em!important}.locale-de-de #customize-header-actions .button,.locale-de-de-formal #customize-header-actions .button{padding:0 5px 1px}.locale-de-de #customize-header-actions .spinner,.locale-de-de-formal #customize-header-actions .spinner{margin:16px 3px 0}.locale-ru-ru #adminmenu{width:inherit}.locale-ru-ru #adminmenu,.locale-ru-ru #wpbody{margin-right:0}.locale-ru-ru .inline-edit-row fieldset label span.title,.locale-ru-ru .inline-edit-row fieldset.inline-edit-date legend{width:8em}.locale-ru-ru .inline-edit-row fieldset .timestamp-wrap,.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap{margin-right:8em}.locale-ru-ru.post-new-php .tagsdiv .newtag,.locale-ru-ru.post-php .tagsdiv .newtag{width:165px}.locale-ru-ru.press-this .posting{margin-left:277px}.locale-ru-ru .press-this-sidebar{width:265px}.locale-ru-ru #customize-header-actions .button{padding:0 5px 1px}.locale-ru-ru #customize-header-actions .spinner{margin:16px 3px 0}.locale-lt-lt .inline-edit-row fieldset label span.title,.locale-lt-lt .inline-edit-row fieldset.inline-edit-date legend{width:8em}.locale-lt-lt .inline-edit-row fieldset .timestamp-wrap,.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap{margin-right:8em}@media screen and (max-width:782px){.locale-lt-lt .inline-edit-row fieldset .timestamp-wrap,.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap,.locale-ru-ru .inline-edit-row fieldset .timestamp-wrap,.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap{margin-right:0}}
|
body.rtl,body.rtl .press-this a.wp-switch-editor{font-family:Tahoma,Arial,sans-serif}.rtl h1,.rtl h2,.rtl h3,.rtl h4,.rtl h5,.rtl h6{font-family:Arial,sans-serif;font-weight:600}body.locale-he-il,body.locale-he-il .press-this a.wp-switch-editor{font-family:Arial,sans-serif}.locale-he-il em{font-style:normal;font-weight:600}.locale-zh-cn #local-time,.locale-zh-cn #utc-time,.locale-zh-cn .form-wrap p,.locale-zh-cn .howto,.locale-zh-cn .inline-edit-row fieldset span.checkbox-title,.locale-zh-cn .inline-edit-row fieldset span.title,.locale-zh-cn .js .input-with-default-title,.locale-zh-cn .link-to-original,.locale-zh-cn .tablenav .displaying-num,.locale-zh-cn p.description,.locale-zh-cn p.help,.locale-zh-cn p.install-help,.locale-zh-cn span.description{font-style:normal}.locale-zh-cn .hdnle a{font-size:12px}.locale-zh-cn form.upgrade .hint{font-style:normal;font-size:100%}.locale-zh-cn #sort-buttons{font-size:1em!important}.locale-de-de #customize-header-actions .button,.locale-de-de-formal #customize-header-actions .button{padding:0 5px 1px}.locale-de-de #customize-header-actions .spinner,.locale-de-de-formal #customize-header-actions .spinner{margin:16px 3px 0}body[class*=locale-de-] .inline-edit-row fieldset label span.title,body[class*=locale-de-] .inline-edit-row fieldset.inline-edit-date legend{width:7em}body[class*=locale-de-] .inline-edit-row fieldset .timestamp-wrap,body[class*=locale-de-] .inline-edit-row fieldset label span.input-text-wrap{margin-right:7em}.locale-ru-ru #adminmenu{width:inherit}.locale-ru-ru #adminmenu,.locale-ru-ru #wpbody{margin-right:0}.locale-ru-ru .inline-edit-row fieldset label span.title,.locale-ru-ru .inline-edit-row fieldset.inline-edit-date legend{width:8em}.locale-ru-ru .inline-edit-row fieldset .timestamp-wrap,.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap{margin-right:8em}.locale-ru-ru.post-new-php .tagsdiv .newtag,.locale-ru-ru.post-php .tagsdiv .newtag{width:165px}.locale-ru-ru.press-this .posting{margin-left:277px}.locale-ru-ru .press-this-sidebar{width:265px}.locale-ru-ru #customize-header-actions .button{padding:0 5px 1px}.locale-ru-ru #customize-header-actions .spinner{margin:16px 3px 0}.locale-lt-lt .inline-edit-row fieldset label span.title,.locale-lt-lt .inline-edit-row fieldset.inline-edit-date legend{width:8em}.locale-lt-lt .inline-edit-row fieldset .timestamp-wrap,.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap{margin-right:8em}.locale-lt-lt .quick-edit-row-post fieldset.inline-edit-col-right label span.title,.locale-ru-ru .quick-edit-row-post fieldset.inline-edit-col-right label span.title,body[class*=locale-de-] .quick-edit-row-post fieldset.inline-edit-col-right label span.title{width:auto}@media screen and (max-width:782px){.locale-lt-lt .inline-edit-row fieldset .timestamp-wrap,.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap,.locale-ru-ru .inline-edit-row fieldset .timestamp-wrap,.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap,body[class*=locale-de-] .inline-edit-row fieldset .timestamp-wrap,body[class*=locale-de-] .inline-edit-row fieldset label span.input-text-wrap{margin-right:0}}
|
||||||
|
|
@ -66,6 +66,14 @@ body.locale-he-il .press-this a.wp-switch-editor {
|
||||||
.locale-de-de-formal #customize-header-actions .spinner {
|
.locale-de-de-formal #customize-header-actions .spinner {
|
||||||
margin: 16px 3px 0; /* default 16px 4px 0 5px */
|
margin: 16px 3px 0; /* default 16px 4px 0 5px */
|
||||||
}
|
}
|
||||||
|
body[class*="locale-de-"] .inline-edit-row fieldset label span.title,
|
||||||
|
body[class*="locale-de-"] .inline-edit-row fieldset.inline-edit-date legend {
|
||||||
|
width: 7em; /* default 6em */
|
||||||
|
}
|
||||||
|
body[class*="locale-de-"] .inline-edit-row fieldset label span.input-text-wrap,
|
||||||
|
body[class*="locale-de-"] .inline-edit-row fieldset .timestamp-wrap {
|
||||||
|
margin-left: 7em; /* default 6em */
|
||||||
|
}
|
||||||
|
|
||||||
/* ru_RU: Text needs more room to breathe. */
|
/* ru_RU: Text needs more room to breathe. */
|
||||||
.locale-ru-ru #adminmenu {
|
.locale-ru-ru #adminmenu {
|
||||||
|
|
@ -110,7 +118,16 @@ body.locale-he-il .press-this a.wp-switch-editor {
|
||||||
margin-left: 8em; /* default 6em */
|
margin-left: 8em; /* default 6em */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Fix overridden width for adjusted locales */
|
||||||
|
body[class*="locale-de-"] .quick-edit-row-post fieldset.inline-edit-col-right label span.title,
|
||||||
|
.locale-ru-ru .quick-edit-row-post fieldset.inline-edit-col-right label span.title,
|
||||||
|
.locale-lt-lt .quick-edit-row-post fieldset.inline-edit-col-right label span.title {
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 782px) {
|
@media screen and (max-width: 782px) {
|
||||||
|
body[class*="locale-de-"] .inline-edit-row fieldset label span.input-text-wrap,
|
||||||
|
body[class*="locale-de-"] .inline-edit-row fieldset .timestamp-wrap,
|
||||||
.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap,
|
.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap,
|
||||||
.locale-ru-ru .inline-edit-row fieldset .timestamp-wrap,
|
.locale-ru-ru .inline-edit-row fieldset .timestamp-wrap,
|
||||||
.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap,
|
.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap,
|
||||||
|
|
|
||||||
|
|
@ -1,2 +1,2 @@
|
||||||
/*! This file is auto-generated */
|
/*! This file is auto-generated */
|
||||||
body.rtl,body.rtl .press-this a.wp-switch-editor{font-family:Tahoma,Arial,sans-serif}.rtl h1,.rtl h2,.rtl h3,.rtl h4,.rtl h5,.rtl h6{font-family:Arial,sans-serif;font-weight:600}body.locale-he-il,body.locale-he-il .press-this a.wp-switch-editor{font-family:Arial,sans-serif}.locale-he-il em{font-style:normal;font-weight:600}.locale-zh-cn #local-time,.locale-zh-cn #utc-time,.locale-zh-cn .form-wrap p,.locale-zh-cn .howto,.locale-zh-cn .inline-edit-row fieldset span.checkbox-title,.locale-zh-cn .inline-edit-row fieldset span.title,.locale-zh-cn .js .input-with-default-title,.locale-zh-cn .link-to-original,.locale-zh-cn .tablenav .displaying-num,.locale-zh-cn p.description,.locale-zh-cn p.help,.locale-zh-cn p.install-help,.locale-zh-cn span.description{font-style:normal}.locale-zh-cn .hdnle a{font-size:12px}.locale-zh-cn form.upgrade .hint{font-style:normal;font-size:100%}.locale-zh-cn #sort-buttons{font-size:1em!important}.locale-de-de #customize-header-actions .button,.locale-de-de-formal #customize-header-actions .button{padding:0 5px 1px}.locale-de-de #customize-header-actions .spinner,.locale-de-de-formal #customize-header-actions .spinner{margin:16px 3px 0}.locale-ru-ru #adminmenu{width:inherit}.locale-ru-ru #adminmenu,.locale-ru-ru #wpbody{margin-left:0}.locale-ru-ru .inline-edit-row fieldset label span.title,.locale-ru-ru .inline-edit-row fieldset.inline-edit-date legend{width:8em}.locale-ru-ru .inline-edit-row fieldset .timestamp-wrap,.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap{margin-left:8em}.locale-ru-ru.post-new-php .tagsdiv .newtag,.locale-ru-ru.post-php .tagsdiv .newtag{width:165px}.locale-ru-ru.press-this .posting{margin-right:277px}.locale-ru-ru .press-this-sidebar{width:265px}.locale-ru-ru #customize-header-actions .button{padding:0 5px 1px}.locale-ru-ru #customize-header-actions .spinner{margin:16px 3px 0}.locale-lt-lt .inline-edit-row fieldset label span.title,.locale-lt-lt .inline-edit-row fieldset.inline-edit-date legend{width:8em}.locale-lt-lt .inline-edit-row fieldset .timestamp-wrap,.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap{margin-left:8em}@media screen and (max-width:782px){.locale-lt-lt .inline-edit-row fieldset .timestamp-wrap,.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap,.locale-ru-ru .inline-edit-row fieldset .timestamp-wrap,.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap{margin-left:0}}
|
body.rtl,body.rtl .press-this a.wp-switch-editor{font-family:Tahoma,Arial,sans-serif}.rtl h1,.rtl h2,.rtl h3,.rtl h4,.rtl h5,.rtl h6{font-family:Arial,sans-serif;font-weight:600}body.locale-he-il,body.locale-he-il .press-this a.wp-switch-editor{font-family:Arial,sans-serif}.locale-he-il em{font-style:normal;font-weight:600}.locale-zh-cn #local-time,.locale-zh-cn #utc-time,.locale-zh-cn .form-wrap p,.locale-zh-cn .howto,.locale-zh-cn .inline-edit-row fieldset span.checkbox-title,.locale-zh-cn .inline-edit-row fieldset span.title,.locale-zh-cn .js .input-with-default-title,.locale-zh-cn .link-to-original,.locale-zh-cn .tablenav .displaying-num,.locale-zh-cn p.description,.locale-zh-cn p.help,.locale-zh-cn p.install-help,.locale-zh-cn span.description{font-style:normal}.locale-zh-cn .hdnle a{font-size:12px}.locale-zh-cn form.upgrade .hint{font-style:normal;font-size:100%}.locale-zh-cn #sort-buttons{font-size:1em!important}.locale-de-de #customize-header-actions .button,.locale-de-de-formal #customize-header-actions .button{padding:0 5px 1px}.locale-de-de #customize-header-actions .spinner,.locale-de-de-formal #customize-header-actions .spinner{margin:16px 3px 0}body[class*=locale-de-] .inline-edit-row fieldset label span.title,body[class*=locale-de-] .inline-edit-row fieldset.inline-edit-date legend{width:7em}body[class*=locale-de-] .inline-edit-row fieldset .timestamp-wrap,body[class*=locale-de-] .inline-edit-row fieldset label span.input-text-wrap{margin-left:7em}.locale-ru-ru #adminmenu{width:inherit}.locale-ru-ru #adminmenu,.locale-ru-ru #wpbody{margin-left:0}.locale-ru-ru .inline-edit-row fieldset label span.title,.locale-ru-ru .inline-edit-row fieldset.inline-edit-date legend{width:8em}.locale-ru-ru .inline-edit-row fieldset .timestamp-wrap,.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap{margin-left:8em}.locale-ru-ru.post-new-php .tagsdiv .newtag,.locale-ru-ru.post-php .tagsdiv .newtag{width:165px}.locale-ru-ru.press-this .posting{margin-right:277px}.locale-ru-ru .press-this-sidebar{width:265px}.locale-ru-ru #customize-header-actions .button{padding:0 5px 1px}.locale-ru-ru #customize-header-actions .spinner{margin:16px 3px 0}.locale-lt-lt .inline-edit-row fieldset label span.title,.locale-lt-lt .inline-edit-row fieldset.inline-edit-date legend{width:8em}.locale-lt-lt .inline-edit-row fieldset .timestamp-wrap,.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap{margin-left:8em}.locale-lt-lt .quick-edit-row-post fieldset.inline-edit-col-right label span.title,.locale-ru-ru .quick-edit-row-post fieldset.inline-edit-col-right label span.title,body[class*=locale-de-] .quick-edit-row-post fieldset.inline-edit-col-right label span.title{width:auto}@media screen and (max-width:782px){.locale-lt-lt .inline-edit-row fieldset .timestamp-wrap,.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap,.locale-ru-ru .inline-edit-row fieldset .timestamp-wrap,.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap,body[class*=locale-de-] .inline-edit-row fieldset .timestamp-wrap,body[class*=locale-de-] .inline-edit-row fieldset label span.input-text-wrap{margin-left:0}}
|
||||||
|
|
@ -320,7 +320,6 @@ table.fixed {
|
||||||
|
|
||||||
.fixed .column-role,
|
.fixed .column-role,
|
||||||
.fixed .column-posts {
|
.fixed .column-posts {
|
||||||
-webkit-hyphens: auto;
|
|
||||||
hyphens: auto;
|
hyphens: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -905,7 +904,7 @@ tr:hover .row-actions,
|
||||||
|
|
||||||
tr.inline-edit-row td {
|
tr.inline-edit-row td {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
/* Prevents the focus style on .inline-edit-wrapper from being cutted-off */
|
/* Prevents the focus style on .inline-edit-wrapper from being cut-off */
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1132,7 +1131,7 @@ tr.inline-edit-row td {
|
||||||
width: 75%;
|
width: 75%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.inline-edit-row #post_parent,
|
.inline-edit-row select[name="post_parent"],
|
||||||
.inline-edit-row select[name="page_template"] {
|
.inline-edit-row select[name="page_template"] {
|
||||||
max-width: 80%;
|
max-width: 80%;
|
||||||
}
|
}
|
||||||
|
|
@ -2004,7 +2003,6 @@ div.action-links,
|
||||||
/* Show comment bubble as text instead */
|
/* Show comment bubble as text instead */
|
||||||
.post-com-count .screen-reader-text {
|
.post-com-count .screen-reader-text {
|
||||||
position: static;
|
position: static;
|
||||||
-webkit-clip-path: none;
|
|
||||||
clip-path: none;
|
clip-path: none;
|
||||||
width: auto;
|
width: auto;
|
||||||
height: auto;
|
height: auto;
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -319,7 +319,6 @@ table.fixed {
|
||||||
|
|
||||||
.fixed .column-role,
|
.fixed .column-role,
|
||||||
.fixed .column-posts {
|
.fixed .column-posts {
|
||||||
-webkit-hyphens: auto;
|
|
||||||
hyphens: auto;
|
hyphens: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -904,7 +903,7 @@ tr:hover .row-actions,
|
||||||
|
|
||||||
tr.inline-edit-row td {
|
tr.inline-edit-row td {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
/* Prevents the focus style on .inline-edit-wrapper from being cutted-off */
|
/* Prevents the focus style on .inline-edit-wrapper from being cut-off */
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1131,7 +1130,7 @@ tr.inline-edit-row td {
|
||||||
width: 75%;
|
width: 75%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.inline-edit-row #post_parent,
|
.inline-edit-row select[name="post_parent"],
|
||||||
.inline-edit-row select[name="page_template"] {
|
.inline-edit-row select[name="page_template"] {
|
||||||
max-width: 80%;
|
max-width: 80%;
|
||||||
}
|
}
|
||||||
|
|
@ -2003,7 +2002,6 @@ div.action-links,
|
||||||
/* Show comment bubble as text instead */
|
/* Show comment bubble as text instead */
|
||||||
.post-com-count .screen-reader-text {
|
.post-com-count .screen-reader-text {
|
||||||
position: static;
|
position: static;
|
||||||
-webkit-clip-path: none;
|
|
||||||
clip-path: none;
|
clip-path: none;
|
||||||
width: auto;
|
width: auto;
|
||||||
height: auto;
|
height: auto;
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -142,7 +142,7 @@ p {
|
||||||
.login form {
|
.login form {
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
padding: 26px 24px 34px;
|
padding: 26px 24px;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
|
|
@ -225,7 +225,7 @@ p {
|
||||||
margin: 1.1em 0;
|
margin: 1.1em 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.login h1.admin-email__heading {
|
.login .admin-email__heading {
|
||||||
border-bottom: 1px #f0f0f1 solid;
|
border-bottom: 1px #f0f0f1 solid;
|
||||||
color: #50575e;
|
color: #50575e;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
|
|
@ -409,7 +409,6 @@ body.interim-login {
|
||||||
.screen-reader-text span {
|
.screen-reader-text span {
|
||||||
border: 0;
|
border: 0;
|
||||||
clip: rect(1px, 1px, 1px, 1px);
|
clip: rect(1px, 1px, 1px, 1px);
|
||||||
-webkit-clip-path: inset(50%);
|
|
||||||
clip-path: inset(50%);
|
clip-path: inset(50%);
|
||||||
height: 1px;
|
height: 1px;
|
||||||
margin: -1px;
|
margin: -1px;
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -141,7 +141,7 @@ p {
|
||||||
.login form {
|
.login form {
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
padding: 26px 24px 34px;
|
padding: 26px 24px;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
|
|
@ -224,7 +224,7 @@ p {
|
||||||
margin: 1.1em 0;
|
margin: 1.1em 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.login h1.admin-email__heading {
|
.login .admin-email__heading {
|
||||||
border-bottom: 1px #f0f0f1 solid;
|
border-bottom: 1px #f0f0f1 solid;
|
||||||
color: #50575e;
|
color: #50575e;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
|
|
@ -408,7 +408,6 @@ body.interim-login {
|
||||||
.screen-reader-text span {
|
.screen-reader-text span {
|
||||||
border: 0;
|
border: 0;
|
||||||
clip: rect(1px, 1px, 1px, 1px);
|
clip: rect(1px, 1px, 1px, 1px);
|
||||||
-webkit-clip-path: inset(50%);
|
|
||||||
clip-path: inset(50%);
|
clip-path: inset(50%);
|
||||||
height: 1px;
|
height: 1px;
|
||||||
margin: -1px;
|
margin: -1px;
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue