Compare commits

..

60 Commits

Author SHA1 Message Date
audrasjb
00a39b7510 Tag 6.6.2
Built from https://develop.svn.wordpress.org/tags/6.6.2@59006


git-svn-id: http://core.svn.wordpress.org/tags/6.6.2@58402 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-09-10 15:22:16 +00:00
audrasjb
904be9b358 Help/About: Fix number of bugs without raising the number of bugs.
Built from https://develop.svn.wordpress.org/branches/6.6@59005


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58401 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-09-10 15:16:11 +00:00
audrasjb
dccc2fce72 WordPress 6.6.2.
Built from https://develop.svn.wordpress.org/branches/6.6@59004


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58400 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-09-10 15:08:19 +00:00
Aaron Jorbin
6a74fbbdb4 Post WordPress 6.6.2 RC1 version bump.
Built from https://develop.svn.wordpress.org/branches/6.6@58991


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58387 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-09-04 18:34:15 +00:00
Aaron Jorbin
59b90e00ba WordPress 6.6.2 RC1
Built from https://develop.svn.wordpress.org/branches/6.6@58990


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58386 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-09-04 18:14:12 +00:00
Aaron Jorbin
c4f71d7126 Editor: Update packages for 6.6.2 RC1.
Updates the versions from the [a74a70ed20 released packages] for the following bugfixes:

- [https://github.com/WordPress/gutenberg/pull/63980 Global Styles: Fix block custom CSS pseudo element selectors]
- [https://github.com/WordPress/gutenberg/pull/64463 Featured Image Block: Reduce CSS specificity]
- [https://github.com/WordPress/gutenberg/pull/64076 Fix bumped specificity for layout styles in non-iframed editor]
- [https://github.com/WordPress/gutenberg/pull/64379 Don't allow duplicating template parts in non-block-based themes]
- [https://github.com/WordPress/gutenberg/pull/64250 Data Views: Don't render action modal when there are no eligible items]
- [https://github.com/WordPress/gutenberg/pull/63724 Fix canvas issues by removing VisualEditor’s height]
- [https://github.com/WordPress/gutenberg/pull/64992 Post Editor: fix click space after post content to append]
- [https://github.com/WordPress/gutenberg/pull/63939 Post Editor: Prevent popover from being hidden by metabox]
- [https://github.com/WordPress/gutenberg/pull/64639 Post editor: apply space below content using a pseudo-element instead of padding-bottom]
- [https://github.com/WordPress/gutenberg/pull/64015 Avoid errors for post types without a 'menu_icon']
- [https://github.com/WordPress/gutenberg/pull/64458 Update postcss-prefixwrap dependency to 1.51.0 to fix prefixing in :where selectors]

Reviewed by jorbin, hellofromTonya.
Merges [58988] to the 6.6 branch.

Props vcanales.
Fixes #61982.
See #61704, #61769, #61829.

Built from https://develop.svn.wordpress.org/branches/6.6@58989


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58385 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-09-04 16:49:19 +00:00
hellofromTonya
63a2a7d749 Editor: Fix block custom CSS pseudo element selectors in global styles.
Fixes a regression introduced in [58241] where selectors with pseudo elements are wrapped within `:where()` causing malformed CSS and the CSS rule(s) not being applied.

When processing custom CSS for blocks, this changeset:

* Strips the pseudo-elements from the original nested selector, performs the required wrapping in `:root :where`, then re-appends the pseudo-element selector with its leading combinators if present.
* Removes empty CSS rules.

It includes the PHP changes.

Reference:
* PHP changes from [https://github.com/WordPress/gutenberg/pull/63980 Gutenberg PR 63980].

Follow-up to [58241], [56812], [55216].

Reviewed by andrewserong.
Merges [58896] to the 6.6 branch.

Props aaronrobertshaw, wongjn, harlet7, dballari, ramonopoly, andrewserong, aristath, hellofromTonya.
Fixes #61769.
Built from https://develop.svn.wordpress.org/branches/6.6@58987


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58383 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-09-04 14:24:13 +00:00
hellofromTonya
40923799b4 Editor: Fix bumped specificity for layout styles in non-iframed editor.
Fixes a regression introduced in [58241] which inadvertently bumped the specificity in a non-iframed editor for `.editor-styles-wrapper .is-layout-flow > *` from (0,1,0) to (0,2,0). This fix restores theme.json spacing rules taking precedence over the implicit spacing rules in a non-iframed editor.

**The What**

When the block editor is not iframed (which can happen when Custom Fields are active, or blocks that use and older `apiVersion` are present), style rules are processed using post css to append the `.editor-styles-wrapper` class name. This has the effect of scoping the the style rules to ensure they don't affect the editor chrome or admin.

With [58241], one of the rules was changed to `.is-layout-flow > *`. In a iframed editor, the specificity of this rule is okay (0,1,0), but in a non-iframed editor it becomes `.editor-styles-wrapper .is-layout-flow > *`, a specificity of (0,2,0). Comparing this to before [58241], the same rule was `.editor-styles-wrapper :where(body .is-layout-flow) > *` (specificity 0,1,0). This is a regression in specificity that has caused some issues. Notably themes can no longer properly override the spacing for blocks using theme.json and have the results correctly shown in the non-iframed editor.

**The How**

This changeset modifies the selector to `:root :where(.is-layout-flow) > *` (still specificity 0,1,0). `transformStyles` handles 'root' selectors a little differently, it'll instead replace the `:root` part so it becomes `.editor-styles-wrapper where(.is-layout-flow) > *` (keeping the specificity at 0,1,0).

The other layout selector that this affects is the `:first-child` `:last-child` selectors that are responsible for resetting margin at the start and end of a block list. They traditionally have a 0,2,0 specificity so that they can override both the above rule and any rules in the theme.json. Those selectors are also maintained at 0,2,0 with this change, they become something like `:root :where(.is-layout-flow) > :first-child`.

**References:**
* PHP changes from [https://github.com/WordPress/gutenberg/pull/64076 Gutenberg PR 64076].

Reviewed by andrewserong.
Merges [58890] to the 6.6 branch.

Follow-up to [58241], [58228], [55956], [54162].

Props talldanwp, aaronrobertshaw, andrewserong, markhowellsmead, ramonopoly, hellofromTonya, munyagu, apmeyer.
Fixes #61829.
Built from https://develop.svn.wordpress.org/branches/6.6@58986


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58382 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-09-04 14:02:17 +00:00
joedolson
b80e93cc7c Docs: Add changing existing items recommendations to 'admin_bar_menu' action.
Improves the `'admin_bar_menu'` docblock by adding recommendations for customizing / changing existing items.

It also improves the `wp_admin_bar_render()` function's docblock by removing the "most optimal point" sentence.

The [58748] changeset moved the user menu to a higher priority level (of `9991`) to achieve:

> so nodes added with higher priorities will still be shown visually before the user and recovery menu items, as they were prior to [58215].

When hooking into `'admin_bar_menu'` with a priority level less than 9991 and attempting to get the `'my-account'` node, `null` is returned. While the preferred approach is to hook into `'wp_before_admin_bar_render'`, the documentation of the `'admin_bar_menu'` action was previously misleading.

Follow-up to [58748], [58759].

Reviewed by joedolson.
Merges [58978] to the 6.6 branch.

Props michaelwp85, narenin, sabernhardt, joedolson, costdev, jorbin, hellofromTonya, mukesh27, pbiron.
Fixes #61738.
Built from https://develop.svn.wordpress.org/branches/6.6@58982


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58378 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-09-03 20:45:16 +00:00
hellofromTonya
b0aca7258d HTML API: Indicate when WordPress rejects attribute updates.
When setting an an attribute value in the HTML API, WordPress may reject
an update based on rules in `kses`. In these cases, the return value from
an escaping function will be an empty string, and the HTML API should
reject the update. Unfortunately, it currently reports that it updates the
attribute but sets an empty string value, which is misleading.

In this changeset, the HTML API will refuse the attribute update and return
false to indicate as much when WordPress rejects the updates.

Reviewed by jorbin, hellofromTonya.
Merges [58844] to the 6.6 branch.

Follow-up to [58472].

Props amitraj2203, dmsnell, mukesh27.
Fixes #61719.
Built from https://develop.svn.wordpress.org/branches/6.6@58980


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58376 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-09-03 20:15:09 +00:00
hellofromTonya
fd299ecfd5 Help/About: Fix text wrapping on non-English locales.
In [57715], headings on the About pages were given `text-wrap: balance`. This rule causes unexpected breaks in non-latin langauges, e.g., Japanese, Korean. This fix sets the text-wrap to `pretty` for browsers that support it, and uses `balance` for English-only.

Reviewed by hellofromTonya.
Merges [58976] to the 6.6 branch.

Props akshat2802, wildworks, ryelle, sabernhardt, hellofromTonya.
Fixes #60892.
Built from https://develop.svn.wordpress.org/branches/6.6@58979


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58375 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-09-03 20:06:14 +00:00
joedolson
cc7e4357b2 Customize: Sanitize autofocus URL parameter as an array.
[58069] introduced calling sanitize_text_field() with $_REQUEST['autofocus'] (which is an array) and setting its default to a string. This fix restores the array data type for autofocus.

The fix also relocates the unslash for url, return, and autofocus before sanitizing.

Follow-up to [58069], [34269], [29026], [21028].

Reviewed by joedolson.
Merges [58804] to the 6.6 branch.

Props jamesros161, swissspidy, dlh, audrasjb, hellofromTonya, ironprogrammer, debarghyabanerjee.
Fixes #61561.
Built from https://develop.svn.wordpress.org/branches/6.6@58973


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58369 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-09-03 16:41:13 +00:00
hellofromTonya
2463b10f68 Themes: Fix themes search event not firing on enter.
Attach the submit event to the parent search form in the installed and add new theme screen. Following [58405], the submit event was no longer attached to an object that was able to handle form submissions.

Reviewed by hellofromTonya.
Merges [58914] to the 6.6 branch.

Follow-up to [58405].

Props nithi22, nithins53, josklever, the-ank, debarghyabanerjee, sabernhardt, jeherve, hellofromTonya.
Fixes #61578.
Built from https://develop.svn.wordpress.org/branches/6.6@58916


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58312 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-08-20 14:09:17 +00:00
hellofromTonya
3ab9d9a827 Site Health: Check if directories exist before checking size.
Prevents the Site Health Debug tab from stalling when reporting directory sizes if the directory does not exist.

Reviewed by hellofromTonya.
Merges [58884] to the 6.6 branch.

Props clorith, aristath, narenin, kowsar89, hellofromTonya, ironprogrammer, shailu25.
Fixes #61638.
Built from https://develop.svn.wordpress.org/branches/6.6@58891


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58287 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-08-13 18:41:18 +00:00
hellofromTonya
c5f96c8c1e Theme JSON: Ensure root selector (body) is not wrapped in :root :where().
Pre-WordPress 6.6, the `body` selector was used for styles associated with the body.

In 6.6, this was mistakenly changed to `:root :where(body)`, an increase in specificity, causing some issues for themes.

This change reverts the specificity increase, styles again use the `body` selector.

Syncs PHP changes from https://github.com/WordPress/gutenberg/pull/63726.

Reviewed by hellofromTonya.
Merges [58856] and [58861] to the 6.6 branch.

Props talldanwp, andrewserong, aaronrobertshaw, mukesh27, hellofromTonya.
Fixes #61704.
Built from https://develop.svn.wordpress.org/branches/6.6@58874


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58270 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-08-09 15:40:19 +00:00
luisherranz
634f735534 Interactivity API: Allow server derived state to appear in non-final position
In some cases, derived state returns an associative array. Directives may wish to continue to access properties of the associative array, when using the syntax `state.arrayReturnedByClosure.property`. This patch continues evaluating the path after the associative array has been returned by the Closure.

Reviewed by adamsilverstein and gziolo.
Merges [58825] to the 6.6 branch.

Props jonsurrell, luisherranz, adamsilverstein, gziolo.

Fixes #61741.
Built from https://develop.svn.wordpress.org/branches/6.6@58869


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58265 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-08-08 11:30:18 +00:00
hellofromTonya
04747a1a91 General: Cast $max_depth and $depth to an integer in the Walker class.
This ensures that the arguments are correctly interpreted when passed as a query string, i.e. when `wp_parse_args()` is involved. For example, `wp_list_pages( 'depth=0' )` should display a list of all pages to the maximum depth.

Follow-up to [57848].

Reviewed by peterwilsoncc.
Merges [58812] to the 6.6 branch.

Props freibergergarcia, peterwilsoncc, ahortin.
Fixes #61749.
Built from https://develop.svn.wordpress.org/branches/6.6@58863


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58259 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-08-07 19:47:10 +00:00
hellofromTonya
8aab47c60b Media: Check if content URL includes a hostname in wp_calculate_image_srcset().
This resolves an `Undefined array key "host"` PHP warning if `WP_CONTENT_URL` is set to a relative URL.

Follow-up to [58097].

Reviewed by hellofromTonya.
Merges [58773] to the 6.6 branch.

Props mattraines, narenin, pamprn, SergeyBiryukov.
Fixes #61690.
Built from https://develop.svn.wordpress.org/branches/6.6@58862


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58258 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-08-07 19:43:11 +00:00
hellofromTonya
9bb65cc1a2 Block Styles: Fix ordering of stylesheets when a style variation is applied.
Adjusts the dependency order to ensure stylesheets are output in the correct order.

Syncs the PHP changes from https://github.com/WordPress/gutenberg/pull/63918.

Reviewed by hellofromTonya.
Merges [58850] to the 6.6 branch.

Props talldanwp, aaronrobertshaw, andrewserong, aristath, mukesh27, ramonopoly, ytfeldrawkcab.
Fixes #61748.
Built from https://develop.svn.wordpress.org/branches/6.6@58861


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58257 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-08-07 19:38:17 +00:00
hellofromTonya
7694fd6237 I18N: Correctly output the None translatable strings.
Includes updating the context to match the pre-existing block editor translations.

Follow-up to [58284].

Reviewed by hellofromTonya.
Merges [58774] to the 6.6 branch.

Props sabernhardt, Marius84.
Fixes #61714.
Built from https://develop.svn.wordpress.org/branches/6.6@58805


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58201 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-24 17:32:15 +00:00
Bernhard Reiter
da8c2720e8 Block Hooks: Don't erase post content if it isn't changed by client.
The `inject_ignored_hooked_blocks_metadata_attributes` filter that is attached to both the `rest_pre_insert_wp_template` and `rest_pre_insert_wp_template_part` hooks receives a `stdClass` object from the Templates REST API controller that contains all fields that the client would like to modify when making a `POST` request (plus the `id` to identify the relevant template or template part, respectively).

There are cases when the `post_content` field is not set, e.g. when the client would like to rename an existing template (in which case it would only set the `title` field).

Prior to this changeset, the filter would erroneously apply the Block Hooks algorithm to the non-existent `post_content` field regardless, which would result in it being set to the empty string `''`. As a consequence, renaming a template would have the unwanted side effect of wiping its contents.

This changeset fixes the issue by returning early from the filter if the `post_content` field is not set.

Reviewed by gziolo.
Merges [58785] to the 6.6 branch.

Props alshakero, bernhard-reiter.
Fixes #61550.
Built from https://develop.svn.wordpress.org/branches/6.6@58802


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58198 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-24 14:40:15 +00:00
Aaron Jorbin
4827cf62a2 Post WordPress 6.6.1 version bump.
Built from https://develop.svn.wordpress.org/branches/6.6@58788


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58190 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-23 16:01:09 +00:00
Aaron Jorbin
71a92b774c WordPress 6.6.1
Built from https://develop.svn.wordpress.org/branches/6.6@58786


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58188 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-23 15:11:12 +00:00
Aaron Jorbin
ef7eafa4ce Post WordPress 6.6.1 RC1 version bump.
Built from https://develop.svn.wordpress.org/branches/6.6@58766


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58168 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-18 19:34:13 +00:00
Aaron Jorbin
1cd7b9badb WordPress 6.6.1 RC1
Built from https://develop.svn.wordpress.org/branches/6.6@58765


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58167 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-18 19:16:16 +00:00
Aaron Jorbin
40b07bd32d General: Provide _is_utf8_charset() in compat.php for early use
#61182 introduced is_utf8_charset() as a way of standardizing checks for charset slugs referring to UTF-8. This is called by _mb_strlen() inside of compat.php, but is_utf8_charset() is defined in functions.php, which isn't loaded early on. Code calling mb_strlen() early on before functions.php loads in hosts without the multibyte extension therefore may crash.

Reviewed by hellofromTonya.
Merges [58763] to the 6.6 branch.

Props dmsnell, jonsurrell, joemcgill, jorbin.
Fixes #61680.

Built from https://develop.svn.wordpress.org/branches/6.6@58764


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58166 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-18 18:22:16 +00:00
hellofromTonya
89c4da675f Comments: Fix fatal error when get_comment_author() receives an object with no comment_id.
[58335] introduced `(string)` type casting of the passed in `$comment_id` value. If `$comment_id` is a scalar, it works as expected. But if it's an `object`, the following fatal error is thrown:

{{{
Object of class WP_Comment could not be converted to string
}}}

This fatal error happens when the incoming `$comment_id` is an instance of `WP_Comment` (or any object) without a `comment_ID` (empty). 

This changeset adds tests to demonstrate the fatal error and validate the fix.

It fixes the fatal error by restructuring the ternary checks into an `if/elseif/else` structure for the 3 paths:

- When `$comment->comment_ID` is not empty, then it uses the property.
- When `$comment_id` is scalar, then it type casts it to a `string`.
- Else, the default is an empty `string`.

Follow-up to [58335], [41127], [52818].

Reviewed by SergeyBiryukov, jorbin.
Merges [58755,58756] to the 6.6 branch.

Props ambrosiawt, hellofromTonya, jorbin, mukesh27, SergeyBiryukov.
Fixes #61681.
Built from https://develop.svn.wordpress.org/branches/6.6@58762


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58164 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-18 17:58:15 +00:00
hellofromTonya
2ce6913586 Block Themes: Fix invalid css for nested fullwidth layouts with zero padding applied
In the Layout block support, handle 0 values for padding as 0px in calc() rules. This resolves a bug for nested fullwidth layouts when zero padding is applied. Due to how calc() works, without supplying the unit, the rule will not
work, resulting in a horizontal scrollbar.

Ref: PHP changes from https://github.com/WordPress/gutenberg/pull/63436.

Reviewed by hellofromTonya.
Merges [58750]  to the 6.6 branch.

Fixes #61656.
Props andrewserong, mukesh27, aaronrobertshaw.
Built from https://develop.svn.wordpress.org/branches/6.6@58761


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58163 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-18 17:04:15 +00:00
hellofromTonya
e6d8ac1656 Editor: Update packages for 6.6.1.
Bugfixes included:

* [https://github.com/WordPress/gutenberg/pull/63637 Elements: Avoid specificity bump for top-level element-only selectors].
* [https://github.com/WordPress/gutenberg/pull/63406 Navigation block: Allow themes to override block library text-decoration rule].
* [https://github.com/WordPress/gutenberg/pull/63436 Fix invalid css for nested fullwidth layouts with zero padding applied].
* [https://github.com/WordPress/gutenberg/pull/63397 Prevent empty void at the bottom of editor when block directory results are present].
* [https://github.com/WordPress/gutenberg/pull/63291 Pattern overrides: Ensure "Reset" button always shows as last item and with border].
* [https://github.com/WordPress/gutenberg/pull/63562 Global Styles: Disable "Reset styles" button when there are no changes].
* [https://github.com/WordPress/gutenberg/pull/63093 Fix: Removed shuffle button when only 1 pattern is present].
* [https://github.com/WordPress/gutenberg/pull/62675 fix: wp icon focus issue].
* [https://github.com/WordPress/gutenberg/pull/63565 useBlockElement: return null until ref callback has time to clean up the old element].

Reviewed by spacedmonkey.
Merges [58757] to the 6.6 branch.

Props ellatrix.
Fixes #61692.
See #61660, #61630, #61656.
Built from https://develop.svn.wordpress.org/branches/6.6@58760


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58162 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-18 16:54:17 +00:00
hellofromTonya
c7fdc6880e Toolbar: Move user and recovery menus to a higher priority.
Following [58215], admin bar items in the top-secondary group have a changed visual order. Increase the priority of the user and recovery menu items so nodes added with higher priorities will still be shown visually before the user and recovery menu items, as they were prior to 58215.

The items will appear in the reverse of the previous order, but the new order now matches their priority order, rather than being the opposite.

Reviewed by hellofromTonya.
Merges [58748] to the 6.6 branch.

Props sabernhardt, joemcgill, pbiron, joedolson.
Fixes #61615.
Built from https://develop.svn.wordpress.org/branches/6.6@58759


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58161 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-18 16:45:13 +00:00
hellofromTonya
be59e6ba32 Editor: Limit scope of resizable menu container CSS.
The CSS to make menu item containers resizable in the admin menu editor was too broadly scoped, and caused classic editor metaboxes to have unconstrained height. Limit the scope of the CSS changes to only impact menu item containers.

Reviewed by jorbin.
Merges [58747] to the 6.6 branch.

Props neotrope, sabernhardt, joedolson.
Fixes #61662.
Built from https://develop.svn.wordpress.org/branches/6.6@58758


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58160 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-18 16:15:16 +00:00
hellofromTonya
a305bc9b34 Block Themes: Avoid specificity bump for top-level element-only selectors.
Prevent issues (e.g. links being underlined) caused by a bump in CSS specificity for top-level element-only global element styles.

Ref: PHP changes from https://github.com/WordPress/gutenberg/pull/63403.

Reviewed by hellofromTonya.
Merges [58749] to the 6.6 branch.

Props aaronrobertshaw, andrewserong, noisysocks, annubis, butterflymedia, clarktbt, hellofromTonya, jorbin, joedolson, swissspidy, courane01, raquelandefeld, talldanwp, markhowellsmead, youknowriad, poena, cbirdsong.
Fixes #61630, #61660.
Built from https://develop.svn.wordpress.org/branches/6.6@58751


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58153 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-18 12:00:13 +00:00
hellofromTonya
083603e40b Upgrade/Install: Update the $_old_files array for 6.6.
Reviewed by hellofromTonya.
Merges [58744] to the 6.6 branch.

Props dd32, audrasjb, hellofromTonya.
Fixes #61665.
Built from https://develop.svn.wordpress.org/branches/6.6@58746


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58148 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-17 23:20:14 +00:00
audrasjb
89fd1a92f8 Post WordPress 6.6 version bump.
The 6.6 branch is now 6.6.1-alpha.


Built from https://develop.svn.wordpress.org/branches/6.6@58737


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58139 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-16 17:09:16 +00:00
audrasjb
356ec11f9d WordPress 6.6.
Built from https://develop.svn.wordpress.org/branches/6.6@58735


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58137 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-16 16:18:12 +00:00
audrasjb
3b5ab3f14b Post WordPress 6.6 RC4 version bump.
Built from https://develop.svn.wordpress.org/branches/6.6@58723


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58125 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-15 15:15:10 +00:00
audrasjb
727cf8b0f4 WordPress 6.6 RC4.
Built from https://develop.svn.wordpress.org/branches/6.6@58722


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58124 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-15 14:59:16 +00:00
davidbaumwald
b67821a2bd Bundled Themes: Bump default theme versions for release with 6.6.
This updates the version of each default theme to the following versions:

- Twenty Ten: 4.2
- Twenty Eleven: 4.7
- Twenty Twelve: 4.3
- Twenty Thirteen: 4.2
- Twenty Fourteen: 4.0
- Twenty Fifteen: 3.8
- Twenty Sixteen: 3.3
- Twenty Seventeen: 3.7
- Twenty Nineteen: 2.9
- Twenty Twenty: 2.7
- Twenty Twenty-One: 2.3
- Twenty Twenty-Two: 1.8
- Twenty Twenty-Three: 1.5
- Twenty Twenty-Four: 1.2

These versions will released in coordination with WordPress 6.6.

Reviewed by hellofromTonya.
Merges [58718] to the 6.6 branch.

Props sabernhardt, shailu25, rudlinkon, kapilpaul.
Fixes #60701.
Built from https://develop.svn.wordpress.org/branches/6.6@58721


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58123 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-15 14:32:10 +00:00
audrasjb
83e01e562b Editor: Update packages for 6.6 RC 4.
This package update includes only one revert PR:
https://github.com/WordPress/gutenberg/pull/63412

You can confirm the changes in this package update here:
https://github.com/WordPress/gutenberg/commits/wp/6.6/

Reviewed by ellatrix, audrasjb.
Merges [58719] to the 6.6 branch.

Fixes #61654.
Props santosguillamot.


Built from https://develop.svn.wordpress.org/branches/6.6@58720


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58122 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-15 14:24:19 +00:00
Joe McGill
74381dbbc2 Editor: Revert caching of global styles for blocks.
This reverts [58334] to fix a bug where edits to block styles made in the site editor were not showing in the front end.

Reviewed by hellofromtonya.
Merges [58710] to the 6.6 branch.

Props joemcgill, spacedmonkey, andrewserong, hellofromtonya, audrasjb.
See #59595.

Built from https://develop.svn.wordpress.org/branches/6.6@58711


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58113 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-12 20:01:15 +00:00
audrasjb
4726b812e8 Post WordPress 6.6 RC3 version bump.
Built from https://develop.svn.wordpress.org/branches/6.6@58701


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58103 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-09 17:36:16 +00:00
audrasjb
6e0d362bcc WordPress 6.6 RC3.
Built from https://develop.svn.wordpress.org/branches/6.6@58700


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58102 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-09 17:19:14 +00:00
hellofromTonya
98b5022652 Editor: Fix ref values within block style variations.
Fixes an issue where block style variations that use `ref` values to reference styles elsewhere in theme.json weren't working.

Retrieves reference values when generating styles for block style variations. How? When retrieving variation data, to generate styles from, also retrieve any referenced values.

Reviewed by audrasjb.
Merges [58691] to the 6.6 branch.

Props aaronrobertshaw, andrewserong, ramonopoly.
Fixes #61589.
Built from https://develop.svn.wordpress.org/branches/6.6@58699


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58101 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-09 16:08:15 +00:00
davidbaumwald
df6f9bdc6a Editor: Prevent flash of block style variation styling in post editor.
These changes prevent a flash of style updates for applied block style variations when the global styles data is loaded into the block editor. This is done by preloading the global styles REST API paths which also brings the post and site editors further into line.

Reviewed by audrasjb.
Merges [58690] to the 6.6 branch.

Props aaronrobertshaw, andrewserong, ramonopoly, ellatrix, hellofromTonya.
Fixes #61553.
Built from https://develop.svn.wordpress.org/branches/6.6@58698


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58100 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-09 15:59:16 +00:00
audrasjb
52d04586c1 Docs: Update AJAX in Plugins HelpHub link to avoid unnecessary redirection.
Follow-up to [17045], [20713], [41065], [45674], [55412], [57854], [58131], [58132].

Reviewed by desrosj, davidbaumwald.
Merges [58672] to the 6.6 branch.

Props shailu25.
Fixes #60732.
See #60699.


Built from https://develop.svn.wordpress.org/branches/6.6@58697


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58099 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-09 15:43:14 +00:00
davidbaumwald
14e9ba9312 Editor: Fix root padding for alignwide blocks.
Updates the root padding CSS selectors so wide width container blocks with constrained layout don’t receive padding.

Reviewed by audrasjb.
Merges [58685] to the 6.6 branch.

Props isabel_brison, mukesh27, aaronrobertshaw, hellofromTonya.
Fixes #61587.
Built from https://develop.svn.wordpress.org/branches/6.6@58696


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58098 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-09 15:33:17 +00:00
davidbaumwald
1851213287 Editor: Update packages for 6.6 RC 3.
Reviewed by hellofromTonya.
Merges [58693] to the 6.6 branch.

Props ellatrix, youknowriad.
Fixes #61603.
Built from https://develop.svn.wordpress.org/branches/6.6@58695


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58097 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-09 14:42:25 +00:00
davidbaumwald
1dbdbb2152 REST API: Correct image cropping tools in the block editor.
As of [58457], the width and height cropping values are cast to an integer before the comparison to see if the target width and height differ from the original width and height.
Since they are now integers, it exposes a bug where the && of the if conditional meant that if you were only cropping in one dimension, the check wouldn't pass, and cropping would not occur.
In the block editor, the cropping tools are aspect ratio based, so one of the dimensions will always match that of the source image. Therefore, now that the values are cast as integers, the condition that allows a cropping to occur needs to be updated. If either width or height is different from the source image, then a crop should be allowed.

Follow-up to [50124], [58457].

Reviewed by davidbaumwald.
Merges [58612] to the 6.6 branch.

Props andrewserong, jrf, kevin940726.
Fixes #61514. See #59782.
Built from https://develop.svn.wordpress.org/branches/6.6@58692


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58094 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-09 13:07:13 +00:00
Peter Wilson
8f9eafb8d0 Help/About: Update performance improvements string.
Updates the performance improvements string with the finalized percentage improvement in the editor and to improve styling and language consistency.

Reviewed by ryelle.
Merges [58671] to the 6.6 branch.

Props ryelle, annezazu, peterwilsoncc.
Fixes #61320.

Built from https://develop.svn.wordpress.org/branches/6.6@58675


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58077 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-04 22:32:18 +00:00
desrosj
98a9717a62 Build/Test Tools: Change the default value of LOCAL_PHP.
This changes the default values for `LOCAL_PHP` and `LOCAL_DB_VERSION` in the 6.6 branch from `latest` to `8.3-fpm` and `8.0`, respectively, to properly reflect the highest version of PHP this branch will support (with beta support).

See #61533.
Built from https://develop.svn.wordpress.org/branches/6.6@58657


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58071 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-03 17:23:14 +00:00
desrosj
3c60d0f021 Build/Test Tools: Update the reusable PHPUnit workflow name.
Follow up to [58645] for the 6.6 branch.

Props jorbin.
See #61213.
Built from https://develop.svn.wordpress.org/branches/6.6@58646


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58066 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-03 15:57:16 +00:00
hellofromTonya
a49a0799f1 Post WordPress 6.6 RC2.
Built from https://develop.svn.wordpress.org/branches/6.6@58622


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58055 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-02 17:05:17 +00:00
hellofromTonya
97d360e154 WordPress 6.6 RC2.
Built from https://develop.svn.wordpress.org/branches/6.6@58621


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58054 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-02 16:48:18 +00:00
ryelle
67523c0063 Help/About: Add images to the About page.
The images have been uploaded to the w.org CDN and added into the About page. Additionally, the link to the release page has been fixed, and an extra translator note about the escaped percent sign has been added.

Follow-up to [58568].

Reviewed by davidbaumwald.
Merges [58618] to the 6.6 branch.

Props ryelle, joen.
See #61320.


Built from https://develop.svn.wordpress.org/branches/6.6@58620


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58053 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-02 15:23:13 +00:00
desrosj
3ef7134941 Editor: Update packages for 6.6 RC 2.
Fixes #61548.
Fixes https://github.com/WordPress/wordpress-develop/pull/6953.

See https://make.wordpress.org/core/handbook/about/release-cycle/block-editor-release-process-for-major-releases/#package-updates-and-core-patches.

Merges [58617] to the 6.6 branch.

Props ellatrix, youknowriad.
Built from https://develop.svn.wordpress.org/branches/6.6@58619


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58052 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-07-02 15:16:43 +00:00
gziolo
7949f94836 HTML API: Report breadcrumbs properly when visiting virtual nodes.
The breadcrumbs have been updated to account for the virtual nodes
and the depth method has been updated to rely on the fixed breadcrumb logic.

Reviewed by jonsurrell, zieladam, gziolo.
Merges [58588] to the 6.6 branch.

Follow-up to [58304].

Props dmsnell, hellofromtonya, joemcgill, jonsurrell, zieladam.
Fixes #61348.


Built from https://develop.svn.wordpress.org/branches/6.6@58590


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58037 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-06-28 07:13:13 +00:00
desrosj
c43d34cc8f Build/Test Tools: Revert uglify-js update.
This partially reverts [58563], which applied an update of the `uglify-js` devDependency from `3.17.4` to `3.18.0`.

The `3.18.0` update is causing some JavaScript errors in the `media-views.min.js` file, so needs to be investigated further.

Reviewed by jorbin, hellofromTonya.
Merges [58585] to the 6.6 branch.

Props david.binda, mukesh27, alshakero, jorbin, hellofromTonya.
Fixes #61519.
Built from https://develop.svn.wordpress.org/branches/6.6@58586


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58033 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-06-27 13:51:43 +00:00
hellofromTonya
5cef392972 Branch 6.6
Built from https://develop.svn.wordpress.org/branches/6.6@58574


git-svn-id: http://core.svn.wordpress.org/branches/6.6@58022 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-06-25 17:35:08 +00:00
davidbaumwald
6acd6b188d Delete 6.6 branch erroneously created while attempting to branch 6.5.
Unprops davidbaumwald.
Built from https://develop.svn.wordpress.org/branches/6.6@57780


git-svn-id: http://core.svn.wordpress.org/branches/6.6@57281 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-03-05 21:03:39 +00:00
davidbaumwald
2d50a4104f Branching 6.6
Built from https://develop.svn.wordpress.org/branches/6.6@57779


git-svn-id: http://core.svn.wordpress.org/branches/6.6@57280 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-03-05 16:44:13 +00:00
1675 changed files with 113664 additions and 209403 deletions

View File

@ -1,6 +1,6 @@
WordPress - Web publishing software
Copyright 2011-2025 by the contributors
Copyright 2011-2024 by the contributors
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by

View File

@ -15,18 +15,6 @@ $title = _x( 'About', 'page title' );
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';
?>
<div class="wrap about__container">
@ -53,6 +41,62 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<a href="contribute.php" class="nav-tab"><?php _e( 'Get Involved' ); ?></a>
</nav>
<div class="about__section changelog has-subtle-background-color">
<div class="column">
<h2><?php _e( 'Maintenance and Security Releases' ); ?></h2>
<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.',
26
),
'6.6.2',
'26'
);
?>
<?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.6.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.6.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.6.1' )
)
);
?>
</p>
</div>
</div>
<div class="about__section">
<div class="column">
<h2>
@ -65,22 +109,19 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
?>
</h2>
<p class="is-subheading">
<?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.' ); ?>
<?php _e( 'Create and deploy beautiful and coherent design elements across your sites with WordPress 6.6. A new rollback option for auto-updating plugins gives you control, flexibility, and peace of mind.' ); ?>
</p>
</div>
</div>
<div class="about__section has-2-columns">
<div class="column is-vertically-aligned-center">
<h3><?php _e( 'Introducing Twenty Twenty-Five' ); ?></h3>
<p>
<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>
<h3><?php _e( 'Color palettes & font sets' ); ?></h3>
<p><strong><?php _e( 'Add more design options to any block theme.' ); ?></strong> <?php _e( 'Block theme authors can create unlimited individual color or font sets to offer more specific design options within the same theme. These sets provide more contained design possibilities, allowing for customization without changing the site&#8217;s broader styling, beyond color or typography settings.' ); ?></p>
</div>
<div class="column is-vertically-aligned-center">
<div class="about__image">
<img src="https://s.w.org/images/core/6.7/feature-tt5-2.webp" alt="" height="436" width="436" />
<img src="https://s.w.org/images/core/6.6/color-palettes.webp" alt="" height="436" width="436" />
</div>
</div>
</div>
@ -88,29 +129,23 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<div class="about__section has-2-columns">
<div class="column is-vertically-aligned-center">
<div class="about__image">
<img src="https://s.w.org/images/core/6.7/feature-zoom-2.webp" alt="" height="436" width="436" />
<img src="https://s.w.org/images/core/6.6/page-previews.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>
<h3><?php _e( 'Quick previews for pages' ); ?></h3>
<p><strong><?php _e( 'Simplify your workflow with a new layout built for pages.' ); ?></strong> <?php _e( 'See all of your pages and a preview of any selected page before you edit via a new side-by-side layout in the Site Editor.' ); ?></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&#8217;t already.' ); ?>
</p>
<h3><?php _e( 'Rollbacks for plugin auto-updates' ); ?></h3>
<p><strong><?php _e( 'Auto-update your plugins with peace of mind.' ); ?></strong> <?php _e( 'Enjoy the ease of plugin auto-updates with the safety of rollbacks if anything goes wrong, improving your site&#8217;s security while minimizing potential downtime.' ); ?></p>
</div>
<div class="column is-vertically-aligned-center">
<div class="about__image">
<img src="https://s.w.org/images/core/6.7/feature-block-bindings-2.webp" alt="" height="436" width="436" />
<img src="https://s.w.org/images/core/6.6/feature-rollbacks.webp" alt="" height="436" width="436" />
</div>
</div>
</div>
@ -118,15 +153,12 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<div class="about__section has-2-columns">
<div class="column is-vertically-aligned-center">
<div class="about__image">
<img src="https://s.w.org/images/core/6.7/feature-font-presets-2.png" alt="" height="436" width="436" />
<img src="https://s.w.org/images/core/6.6/overrides.webp" alt="" height="436" width="436" />
</div>
</div>
<div class="column is-vertically-aligned-center">
<h3><?php _e( 'Embrace your inner font nerd' ); ?></h3>
<p>
<strong><?php _e( 'New style section, new possibilities' ); ?></strong><br />
<?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>
<h3><?php _e( 'Overrides' ); ?></h3>
<p><strong><?php _e( 'Add the ability to customize content in synced patterns.' ); ?></strong> <?php _e( 'Allow specific pieces of content to be customized in each instance of a synced pattern while keeping a consistent style for all instances, simplifying future updates. Currently, you can set overrides for Heading, Paragraph, Button, and Image blocks.' ); ?></p>
</div>
</div>
@ -136,21 +168,35 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<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">
<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 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"/>
<rect width="48" height="48" rx="4"/>
<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>
<h3><?php _e( 'Performance updates' ); ?></h3>
<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>
<p>
<?php
printf(
/* translators: %1$s: code-formatted "WP_Theme_JSON", %2$s: code-formatted "data-wp-on-async", %%: escaped percent sign, leave as %%. */
__( 'WordPress 6.6 includes important updates like removing redundant %1$s calls, disabling autoload for large options, eliminating unnecessary polyfill dependencies, lazy loading post embeds, introducing the %2$s directive, and a 33%% reduction in template loading time in the editor.' ),
'<code>WP_Theme_JSON</code>',
'<code>data-wp-on-async</code>'
);
?>
</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">
<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"/>
<rect width="48" height="48" rx="4"/>
<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><?php _e( 'Accessibility improvements' ); ?></h3>
<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>
<p><?php _e( '55+ accessibility fixes and enhancements focus on foundational aspects of the WordPress experience, particularly the data views component powering the new site editing experience and areas like the Inserter that provide a key way of interacting with blocks and patterns.' ); ?></p>
</div>
</div>
@ -159,19 +205,11 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<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">
<p>
<?php
printf(
/* translators: %s: Version number. */
__( 'For a comprehensive overview of all the new features and enhancements in WordPress %s, please visit the feature-showcase website.' ),
$display_version
);
?>
</p>
<p><?php _e( 'For a comprehensive overview of all the new features and enhancements in WordPress 6.6, please visit the feature-showcase website.' ); ?></p>
</div>
<div class="column aligncenter">
<div class="about__image">
<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>
<a href="<?php echo esc_url( __( 'https://wordpress.org/download/releases/6-6/' ) ); ?>" class="button button-primary button-hero"><?php _e( 'See everything new' ); ?></a>
</div>
</div>
</div>
@ -180,7 +218,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<div class="about__section has-3-columns">
<div class="column about__image is-vertically-aligned-top">
<img src="<?php echo esc_url( admin_url( 'images/about-release-badge.svg?ver=6.7' ) ); ?>" alt="" height="280" width="280" />
<img src="<?php echo esc_url( admin_url( 'images/about-release-badge.svg?ver=6.6' ) ); ?>" alt="" height="280" width="280" />
</div>
<div class="column is-vertically-aligned-center" style="grid-column-end:span 2">
<h3>
@ -209,27 +247,17 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<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">
<path fill="#1e1e1e" d="M32 15.5H16v3h16v-3ZM16 22h16v3H16v-3ZM28 28.5H16v3h12v-3Z"/>
<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"/>
<rect width="48" height="48" rx="4"/>
<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"/>
</svg>
</div>
<h4 style="margin-top: calc(var(--gap) / 2); margin-bottom: calc(var(--gap) / 2);">
<a href="<?php echo esc_url( $release_notes_url ); ?>">
<?php
printf(
/* translators: %s: WordPress version number. */
__( 'WordPress %s Release Notes' ),
'6.7'
);
?>
</a>
</h4>
<p>
<p style="margin-top:calc(var(--gap) / 2);">
<?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'
/* translators: 1: WordPress Field Guide link, 2: 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.' ),
esc_url( __( 'https://make.wordpress.org/core/wordpress-6-6-field-guide/' ) ),
'6.6'
);
?>
</p>
@ -237,26 +265,22 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<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">
<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"/>
<rect width="48" height="48" rx="4"/>
<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>
</div>
<h4 style="margin-top: calc(var(--gap) / 2); margin-bottom: calc(var(--gap) / 2);">
<a href="<?php echo esc_url( $field_guide_url ); ?>">
<?php
printf(
/* translators: %s: WordPress version number. */
__( 'WordPress %s Field Guide' ),
'6.7'
);
?>
</a>
</h4>
<p>
<p style="margin-top:calc(var(--gap) / 2);">
<?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'
/* 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. */
esc_url( __( 'https://wordpress.org/documentation/wordpress-version/version-%s/' ) ),
'6-6'
),
'6.6'
);
?>
</p>

View File

@ -35,7 +35,7 @@ global $hook_suffix;
$text = sprintf(
/* translators: %s: https://wordpress.org/ */
__( 'Thank you for creating with <a href="%s">WordPress</a>.' ),
esc_url( __( 'https://wordpress.org/' ) )
__( 'https://wordpress.org/' )
);
/**

View File

@ -9,11 +9,6 @@
* @subpackage Administration
*/
// Don't load directly.
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}
_deprecated_file( basename( __FILE__ ), '2.5.0', 'wp-admin/includes/admin.php' );
/** WordPress Administration API: Includes all Administration functions. */

View File

@ -6,11 +6,6 @@
* @subpackage Administration
*/
// Don't load directly.
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}
header( 'Content-Type: ' . get_option( 'html_type' ) . '; charset=' . get_option( 'blog_charset' ) );
if ( ! defined( 'WP_ADMIN' ) ) {
require_once __DIR__ . '/admin.php';
@ -208,17 +203,12 @@ if ( is_network_admin() ) {
$admin_body_class .= ' network-admin';
}
$admin_body_class .= ' no-customize-support svg';
$admin_body_class .= ' no-customize-support no-svg';
if ( $current_screen->is_block_editor() ) {
$admin_body_class .= ' block-editor-page wp-embed-responsive';
}
$admin_body_class .= ' wp-theme-' . sanitize_html_class( get_template() );
if ( is_child_theme() ) {
$admin_body_class .= ' wp-child-theme-' . sanitize_html_class( get_stylesheet() );
}
$error_get_last = error_get_last();
// Print a CSS class to make PHP errors visible.

View File

@ -13,8 +13,11 @@ if ( ! defined( 'WP_ADMIN' ) ) {
define( 'WP_ADMIN', true );
}
/** Load WordPress Bootstrap */
require_once dirname( __DIR__ ) . '/wp-load.php';
if ( defined( 'ABSPATH' ) ) {
require_once ABSPATH . 'wp-load.php';
} else {
require_once dirname( __DIR__ ) . '/wp-load.php';
}
/** Allow for cross-domain requests (from the front end). */
send_origin_headers();

View File

@ -31,7 +31,6 @@ if ( isset( $_GET['import'] ) && ! defined( 'WP_LOAD_IMPORTERS' ) ) {
define( 'WP_LOAD_IMPORTERS', true );
}
/** Load WordPress Bootstrap */
require_once dirname( __DIR__ ) . '/wp-load.php';
nocache_headers();
@ -39,7 +38,7 @@ nocache_headers();
if ( get_option( 'db_upgraded' ) ) {
flush_rewrite_rules();
update_option( 'db_upgraded', false, true );
update_option( 'db_upgraded', false );
/**
* Fires on the next page load after a successful DB upgrade.

View File

@ -14,8 +14,11 @@ if ( ! defined( 'WP_ADMIN' ) ) {
define( 'WP_ADMIN', true );
}
/** Load WordPress Bootstrap */
require_once dirname( __DIR__ ) . '/wp-load.php';
if ( defined( 'ABSPATH' ) ) {
require_once ABSPATH . 'wp-load.php';
} else {
require_once dirname( __DIR__ ) . '/wp-load.php';
}
require_once ABSPATH . 'wp-admin/admin.php';
@ -71,9 +74,7 @@ if ( isset( $_REQUEST['attachment_id'] ) && (int) $_REQUEST['attachment_id'] &&
}
?>
<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>
<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>
</div>

View File

@ -133,19 +133,5 @@ __( 'Lead Developer' );
__( 'Release Lead' );
__( 'Release Design Lead' );
__( 'Release Deputy' );
__( 'Release Coordination' );
__( 'Minor Release Lead' );
__( 'Core Developer' );
__( 'Core Tech Lead' );
__( 'Core Triage Lead' );
__( 'Editor Tech Lead' );
__( 'Editor Triage Lead' );
__( 'Documentation Lead' );
__( 'Test Lead' );
__( 'Design Lead' );
__( 'Performance Lead' );
__( 'Default Theme Design Lead' );
__( 'Default Theme Development Lead' );
__( 'Tech Lead' );
__( 'Triage Lead' );
__( 'External Libraries' );

View File

@ -455,12 +455,7 @@
}
.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 {

File diff suppressed because one or more lines are too long

View File

@ -454,12 +454,7 @@
}
.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 {

File diff suppressed because one or more lines are too long

View File

@ -12,9 +12,6 @@
top: 0;
bottom: -120px;
z-index: 1; /* positive z-index to avoid elastic scrolling woes in Safari */
/* Only visible in Windows High Contrast mode */
outline: 1px solid transparent;
}
.php-error #adminmenuback {
@ -181,7 +178,9 @@
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
#adminmenu li.current a.menu-top,
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
#adminmenu .wp-menu-arrow,
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head,
#adminmenu .wp-menu-arrow div {
background: #2271b1;
color: #fff;
}
@ -207,8 +206,7 @@
.folded #adminmenu .wp-has-current-submenu .wp-submenu {
min-width: 160px;
width: auto;
border: 1px solid transparent;
border-right-width: 5px;
border-right: 5px solid transparent;
}
#adminmenu .wp-submenu li.current,
@ -271,6 +269,7 @@
word-wrap: break-word;
-ms-word-break: break-all;
word-break: break-word;
-webkit-hyphens: auto;
hyphens: auto;
}
@ -332,6 +331,12 @@ div.wp-menu-image:before {
position: fixed;
}
/* A new arrow */
.wp-menu-arrow {
display: none !important;
}
ul#adminmenu a.wp-has-current-submenu {
position: relative;
}
@ -345,7 +350,7 @@ ul#adminmenu > li.current > a.current:after {
width: 0;
position: absolute;
pointer-events: none;
border-left-color: #fff;
border-left-color: #f0f0f1;
top: 50%;
margin-top: -8px;
}
@ -411,8 +416,8 @@ ul#adminmenu > li.current > a.current:after {
font-weight: 400;
font-size: 14px;
padding: 5px 11px 5px 4px;
margin: -8px -5px 4px -1px;
border-width: 3px 5px 3px 1px;
margin: -7px -5px 4px 0;
border-width: 3px 5px 3px 0;
border-style: solid;
border-color: transparent;
}
@ -577,10 +582,8 @@ li#wp-admin-bar-menu-toggle {
}
.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
min-width: 160px;
min-width: 150px;
width: auto;
border: 1px solid transparent;
border-right-width: 5px;
}
.auto-fold #adminmenu .wp-has-current-submenu li > a {
@ -769,9 +772,8 @@ li#wp-admin-bar-menu-toggle {
}
#adminmenu .wp-not-current-submenu .wp-submenu,
.folded #adminmenu .wp-has-current-submenu .wp-submenu,
.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
border: none;
.folded #adminmenu .wp-has-current-submenu .wp-submenu {
border-right: none;
}
/* Remove submenu headers and adjust sub meu*/

File diff suppressed because one or more lines are too long

View File

@ -11,9 +11,6 @@
top: 0;
bottom: -120px;
z-index: 1; /* positive z-index to avoid elastic scrolling woes in Safari */
/* Only visible in Windows High Contrast mode */
outline: 1px solid transparent;
}
.php-error #adminmenuback {
@ -180,7 +177,9 @@
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
#adminmenu li.current a.menu-top,
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
#adminmenu .wp-menu-arrow,
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head,
#adminmenu .wp-menu-arrow div {
background: #2271b1;
color: #fff;
}
@ -206,8 +205,7 @@
.folded #adminmenu .wp-has-current-submenu .wp-submenu {
min-width: 160px;
width: auto;
border: 1px solid transparent;
border-left-width: 5px;
border-left: 5px solid transparent;
}
#adminmenu .wp-submenu li.current,
@ -270,6 +268,7 @@
word-wrap: break-word;
-ms-word-break: break-all;
word-break: break-word;
-webkit-hyphens: auto;
hyphens: auto;
}
@ -331,6 +330,12 @@ div.wp-menu-image:before {
position: fixed;
}
/* A new arrow */
.wp-menu-arrow {
display: none !important;
}
ul#adminmenu a.wp-has-current-submenu {
position: relative;
}
@ -344,7 +349,7 @@ ul#adminmenu > li.current > a.current:after {
width: 0;
position: absolute;
pointer-events: none;
border-right-color: #fff;
border-right-color: #f0f0f1;
top: 50%;
margin-top: -8px;
}
@ -410,8 +415,8 @@ ul#adminmenu > li.current > a.current:after {
font-weight: 400;
font-size: 14px;
padding: 5px 4px 5px 11px;
margin: -8px -1px 4px -5px;
border-width: 3px 1px 3px 5px;
margin: -7px 0 4px -5px;
border-width: 3px 0 3px 5px;
border-style: solid;
border-color: transparent;
}
@ -576,10 +581,8 @@ li#wp-admin-bar-menu-toggle {
}
.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
min-width: 160px;
min-width: 150px;
width: auto;
border: 1px solid transparent;
border-left-width: 5px;
}
.auto-fold #adminmenu .wp-has-current-submenu li > a {
@ -768,9 +771,8 @@ li#wp-admin-bar-menu-toggle {
}
#adminmenu .wp-not-current-submenu .wp-submenu,
.folded #adminmenu .wp-has-current-submenu .wp-submenu,
.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
border: none;
.folded #adminmenu .wp-has-current-submenu .wp-submenu {
border-left: none;
}
/* Remove submenu headers and adjust sub meu*/

File diff suppressed because one or more lines are too long

View File

@ -1,31 +1,29 @@
@use 'sass:color';
@use 'sass:string';
@forward 'variables' show $scheme-name, $base-color, $body-background, $button-color, $custom-welcome-panel, $dashboard-accent-1, $dashboard-accent-2, $dashboard-icon-background, $form-checked, $highlight-color, $icon-color, $link, $link-focus, $low-contrast-theme, $menu-bubble-text, $menu-collapse-focus-icon, $menu-collapse-text, $menu-highlight-background, $menu-highlight-icon, $menu-highlight-text, $menu-submenu-text, $menu-submenu-focus-text, $menu-submenu-background, $notification-color, $text-color;
@use 'variables';
@use 'mixins';
@import 'variables';
@import 'mixins';
/**
* This function name uses British English to maintain backward compatibility, as developers
* may use the function in their own admin CSS files. See #56811.
*/
@function url-friendly-colour( $color ) {
@return '%23' + string.slice( '#{ $color }', 2, -1 );
@return '%23' + str-slice( '#{ $color }', 2, -1 );
}
body {
background: variables.$body-background;
background: $body-background;
}
/* Links */
a {
color: variables.$link;
color: $link;
&:hover,
&:active,
&:focus {
color: variables.$link-focus;
color: $link-focus;
}
}
@ -38,12 +36,12 @@ span.wp-media-buttons-icon:before {
}
.wp-core-ui .button-link {
color: variables.$link;
color: $link;
&:hover,
&:active,
&:focus {
color: variables.$link-focus;
color: $link-focus;
}
}
@ -68,16 +66,16 @@ span.wp-media-buttons-icon:before {
/* Forms */
input[type=checkbox]:checked::before {
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27#{url-friendly-colour(variables.$form-checked)}%27%2F%3E%3C%2Fsvg%3E");
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27#{url-friendly-colour($form-checked)}%27%2F%3E%3C%2Fsvg%3E");
}
input[type=radio]:checked::before {
background: variables.$form-checked;
background: $form-checked;
}
.wp-core-ui input[type="reset"]:hover,
.wp-core-ui input[type="reset"]:active {
color: variables.$link-focus;
color: $link-focus;
}
input[type="text"]:focus,
@ -99,8 +97,8 @@ input[type="checkbox"]:focus,
input[type="radio"]:focus,
select:focus,
textarea:focus {
border-color: variables.$highlight-color;
box-shadow: 0 0 0 1px variables.$highlight-color;
border-color: $highlight-color;
box-shadow: 0 0 0 1px $highlight-color;
}
@ -117,55 +115,55 @@ textarea:focus {
.button:hover,
.button.focus,
.button:focus {
border-color: color.adjust(#7e8993, $lightness: -5%);
color: color.adjust(#32373c, $lightness: -5%);
border-color: darken( #7e8993, 5% );
color: darken( #32373c, 5% );
}
.button.focus,
.button:focus {
border-color: #7e8993;
color: color.adjust(#32373c, $lightness: -5%);
color: darken( #32373c, 5% );
box-shadow: 0 0 0 1px #32373c;
}
.button:active {
border-color: #7e8993;
color: color.adjust(#32373c, $lightness: -5%);
color: darken( #32373c, 5% );
box-shadow: none;
}
.button.active,
.button.active:focus,
.button.active:hover {
border-color: variables.$button-color;
color: color.adjust(#32373c, $lightness: -5%);
box-shadow: inset 0 2px 5px -3px variables.$button-color;
border-color: $button-color;
color: darken( #32373c, 5% );
box-shadow: inset 0 2px 5px -3px $button-color;
}
.button.active:focus {
box-shadow: 0 0 0 1px #32373c;
}
@if ( variables.$low-contrast-theme != "true" ) {
@if ( $low-contrast-theme != "true" ) {
.button,
.button-secondary {
color: variables.$highlight-color;
border-color: variables.$highlight-color;
color: $highlight-color;
border-color: $highlight-color;
}
.button.hover,
.button:hover,
.button-secondary:hover{
border-color: color.adjust(variables.$highlight-color, $lightness: -10%);
color: color.adjust(variables.$highlight-color, $lightness: -10%);
border-color: darken($highlight-color, 10);
color: darken($highlight-color, 10);
}
.button.focus,
.button:focus,
.button-secondary:focus {
border-color: color.adjust(variables.$highlight-color, $lightness: 10%);
color: color.adjust(variables.$highlight-color, $lightness: -20%);
box-shadow: 0 0 0 1px color.adjust(variables.$highlight-color, $lightness: 10%);
border-color: lighten($highlight-color, 10);
color: darken($highlight-color, 20);;
box-shadow: 0 0 0 1px lighten($highlight-color, 10);
}
.button-primary {
@ -176,74 +174,74 @@ textarea:focus {
}
.button-primary {
@include mixins.button( variables.$button-color );
@include button( $button-color );
}
.button-group > .button.active {
border-color: variables.$button-color;
border-color: $button-color;
}
.wp-ui-primary {
color: variables.$text-color;
background-color: variables.$base-color;
color: $text-color;
background-color: $base-color;
}
.wp-ui-text-primary {
color: variables.$base-color;
color: $base-color;
}
.wp-ui-highlight {
color: variables.$menu-highlight-text;
background-color: variables.$menu-highlight-background;
color: $menu-highlight-text;
background-color: $menu-highlight-background;
}
.wp-ui-text-highlight {
color: variables.$menu-highlight-background;
color: $menu-highlight-background;
}
.wp-ui-notification {
color: variables.$menu-bubble-text;
background-color: variables.$menu-bubble-background;
color: $menu-bubble-text;
background-color: $menu-bubble-background;
}
.wp-ui-text-notification {
color: variables.$menu-bubble-background;
color: $menu-bubble-background;
}
.wp-ui-text-icon {
color: variables.$menu-icon;
color: $menu-icon;
}
}
/* List tables */
@if variables.$low-contrast-theme == "true" {
@if $low-contrast-theme == "true" {
.wrap .page-title-action:hover {
color: variables.$menu-text;
background-color: variables.$menu-background;
color: $menu-text;
background-color: $menu-background;
}
} @else {
.wrap .page-title-action,
.wrap .page-title-action:active {
border: 1px solid variables.$highlight-color;
color: variables.$highlight-color;
border: 1px solid $highlight-color;
color: $highlight-color;
}
.wrap .page-title-action:hover {
color: color.adjust(variables.$highlight-color, $lightness: -10%);
border-color: color.adjust(variables.$highlight-color, $lightness: -10%);
color: darken($highlight-color, 10);
border-color: darken($highlight-color, 10);
}
.wrap .page-title-action:focus {
border-color: color.adjust(variables.$highlight-color, $lightness: 10%);
color: color.adjust(variables.$highlight-color, $lightness: -20%);
box-shadow: 0 0 0 1px color.adjust(variables.$highlight-color, $lightness: 10%);
border-color: lighten($highlight-color, 10);
color: darken($highlight-color, 20);;
box-shadow: 0 0 0 1px lighten($highlight-color, 10);
}
}
.view-switch a.current:before {
color: variables.$menu-background;
color: $menu-background;
}
.view-switch a:hover:before {
color: variables.$menu-bubble-background;
color: $menu-bubble-background;
}
@ -252,28 +250,28 @@ textarea:focus {
#adminmenuback,
#adminmenuwrap,
#adminmenu {
background: variables.$menu-background;
background: $menu-background;
}
#adminmenu a {
color: variables.$menu-text;
color: $menu-text;
}
#adminmenu div.wp-menu-image:before {
color: variables.$menu-icon;
color: $menu-icon;
}
#adminmenu a:hover,
#adminmenu li.menu-top:hover,
#adminmenu li.opensub > a.menu-top,
#adminmenu li > a.menu-top:focus {
color: variables.$menu-highlight-text;
background-color: variables.$menu-highlight-background;
color: $menu-highlight-text;
background-color: $menu-highlight-background;
}
#adminmenu li.menu-top:hover div.wp-menu-image:before,
#adminmenu li.opensub > a.menu-top div.wp-menu-image:before {
color: variables.$menu-highlight-icon;
color: $menu-highlight-icon;
}
@ -282,8 +280,8 @@ textarea:focus {
.about-wrap .nav-tab-active,
.nav-tab-active,
.nav-tab-active:hover {
background-color: variables.$body-background;
border-bottom-color: variables.$body-background;
background-color: $body-background;
border-bottom-color: $body-background;
}
@ -293,26 +291,26 @@ textarea:focus {
#adminmenu .wp-has-current-submenu .wp-submenu,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
background: variables.$menu-submenu-background;
background: $menu-submenu-background;
}
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
border-right-color: variables.$menu-submenu-background;
border-right-color: $menu-submenu-background;
}
#adminmenu .wp-submenu .wp-submenu-head {
color: variables.$menu-submenu-text;
color: $menu-submenu-text;
}
#adminmenu .wp-submenu a,
#adminmenu .wp-has-current-submenu .wp-submenu a,
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
color: variables.$menu-submenu-text;
color: $menu-submenu-text;
&:focus, &:hover {
color: variables.$menu-submenu-focus-text;
color: $menu-submenu-focus-text;
}
}
@ -322,24 +320,24 @@ textarea:focus {
#adminmenu .wp-submenu li.current a,
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a {
color: variables.$menu-submenu-current-text;
color: $menu-submenu-current-text;
&:hover, &:focus {
color: variables.$menu-submenu-focus-text;
color: $menu-submenu-focus-text;
}
}
ul#adminmenu a.wp-has-current-submenu:after,
ul#adminmenu > li.current > a.current:after {
border-right-color: variables.$body-background;
border-right-color: $body-background;
}
#adminmenu li.current a.menu-top,
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,
.folded #adminmenu li.current.menu-top {
color: variables.$menu-current-text;
background: variables.$menu-current-background;
color: $menu-current-text;
background: $menu-current-background;
}
#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,
@ -350,7 +348,7 @@ ul#adminmenu > li.current > a.current:after {
#adminmenu li:hover div.wp-menu-image:before,
#adminmenu li a:focus div.wp-menu-image:before,
#adminmenu li.opensub div.wp-menu-image:before {
color: variables.$menu-current-icon;
color: $menu-current-icon;
}
@ -359,49 +357,49 @@ ul#adminmenu > li.current > a.current:after {
#adminmenu .menu-counter,
#adminmenu .awaiting-mod,
#adminmenu .update-plugins {
color: variables.$menu-bubble-text;
background: variables.$menu-bubble-background;
color: $menu-bubble-text;
background: $menu-bubble-background;
}
#adminmenu li.current a .awaiting-mod,
#adminmenu li a.wp-has-current-submenu .update-plugins,
#adminmenu li:hover a .awaiting-mod,
#adminmenu li.menu-top:hover > a .update-plugins {
color: variables.$menu-bubble-current-text;
background: variables.$menu-bubble-current-background;
color: $menu-bubble-current-text;
background: $menu-bubble-current-background;
}
/* Admin Menu: collapse button */
#collapse-button {
color: variables.$menu-collapse-text;
color: $menu-collapse-text;
}
#collapse-button:hover,
#collapse-button:focus {
color: variables.$menu-submenu-focus-text;
color: $menu-submenu-focus-text;
}
/* Admin Bar */
#wpadminbar {
color: variables.$menu-text;
background: variables.$menu-background;
color: $menu-text;
background: $menu-background;
}
#wpadminbar .ab-item,
#wpadminbar a.ab-item,
#wpadminbar > #wp-toolbar span.ab-label,
#wpadminbar > #wp-toolbar span.noticon {
color: variables.$menu-text;
color: $menu-text;
}
#wpadminbar .ab-icon,
#wpadminbar .ab-icon:before,
#wpadminbar .ab-item:before,
#wpadminbar .ab-item:after {
color: variables.$menu-icon;
color: $menu-icon;
}
#wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item,
@ -409,45 +407,45 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus,
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
color: variables.$menu-submenu-focus-text;
background: variables.$menu-submenu-background;
color: $menu-submenu-focus-text;
background: $menu-submenu-background;
}
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
#wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label,
#wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label {
color: variables.$menu-submenu-focus-text;
color: $menu-submenu-focus-text;
}
#wpadminbar:not(.mobile) li:hover .ab-icon:before,
#wpadminbar:not(.mobile) li:hover .ab-item:before,
#wpadminbar:not(.mobile) li:hover .ab-item:after,
#wpadminbar:not(.mobile) li:hover #adminbarsearch:before {
color: variables.$menu-submenu-focus-text;
color: $menu-submenu-focus-text;
}
/* Admin Bar: submenu */
#wpadminbar .menupop .ab-sub-wrapper {
background: variables.$menu-submenu-background;
background: $menu-submenu-background;
}
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
background: variables.$menu-submenu-background-alt;
background: $menu-submenu-background-alt;
}
#wpadminbar .ab-submenu .ab-item,
#wpadminbar .quicklinks .menupop ul li a,
#wpadminbar .quicklinks .menupop.hover ul li a,
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
color: variables.$menu-submenu-text;
color: $menu-submenu-text;
}
#wpadminbar .quicklinks li .blavatar,
#wpadminbar .menupop .menupop > .ab-item:before {
color: variables.$menu-icon;
color: $menu-icon;
}
#wpadminbar .quicklinks .menupop ul li a:hover,
@ -468,7 +466,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar li.hover .ab-item:before,
#wpadminbar li:hover #adminbarsearch:before,
#wpadminbar li #adminbarsearch.adminbar-focused:before {
color: variables.$menu-submenu-focus-text;
color: $menu-submenu-focus-text;
}
#wpadminbar .quicklinks li a:hover .blavatar,
@ -477,82 +475,82 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar .menupop .menupop > .ab-item:hover:before,
#wpadminbar.mobile .quicklinks .ab-icon:before,
#wpadminbar.mobile .quicklinks .ab-item:before {
color: variables.$menu-submenu-focus-text;
color: $menu-submenu-focus-text;
}
#wpadminbar.mobile .quicklinks .hover .ab-icon:before,
#wpadminbar.mobile .quicklinks .hover .ab-item:before {
color: variables.$menu-icon;
color: $menu-icon;
}
/* Admin Bar: search */
#wpadminbar #adminbarsearch:before {
color: variables.$menu-icon;
color: $menu-icon;
}
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
color: variables.$menu-text;
background: variables.$adminbar-input-background;
color: $menu-text;
background: $adminbar-input-background;
}
/* Admin Bar: recovery mode */
#wpadminbar #wp-admin-bar-recovery-mode {
color: variables.$adminbar-recovery-exit-text;
background-color: variables.$adminbar-recovery-exit-background;
color: $adminbar-recovery-exit-text;
background-color: $adminbar-recovery-exit-background;
}
#wpadminbar #wp-admin-bar-recovery-mode .ab-item,
#wpadminbar #wp-admin-bar-recovery-mode a.ab-item {
color: variables.$adminbar-recovery-exit-text;
color: $adminbar-recovery-exit-text;
}
#wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover >.ab-item,
#wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
color: variables.$adminbar-recovery-exit-text;
background-color: variables.$adminbar-recovery-exit-background-alt;
color: $adminbar-recovery-exit-text;
background-color: $adminbar-recovery-exit-background-alt;
}
/* Admin Bar: my account */
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
border-color: variables.$adminbar-avatar-frame;
background-color: variables.$adminbar-avatar-frame;
border-color: $adminbar-avatar-frame;
background-color: $adminbar-avatar-frame;
}
#wpadminbar #wp-admin-bar-user-info .display-name {
color: variables.$menu-text;
color: $menu-text;
}
#wpadminbar #wp-admin-bar-user-info a:hover .display-name {
color: variables.$menu-submenu-focus-text;
color: $menu-submenu-focus-text;
}
#wpadminbar #wp-admin-bar-user-info .username {
color: variables.$menu-submenu-text;
color: $menu-submenu-text;
}
/* Pointers */
.wp-pointer .wp-pointer-content h3 {
background-color: variables.$highlight-color;
border-color: color.adjust(variables.$highlight-color, $lightness: -5%);
background-color: $highlight-color;
border-color: darken( $highlight-color, 5% );
}
.wp-pointer .wp-pointer-content h3:before {
color: variables.$highlight-color;
color: $highlight-color;
}
.wp-pointer.wp-pointer-top .wp-pointer-arrow,
.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,
.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,
.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner {
border-bottom-color: variables.$highlight-color;
border-bottom-color: $highlight-color;
}
@ -560,22 +558,22 @@ ul#adminmenu > li.current > a.current:after {
.media-item .bar,
.media-progress-bar div {
background-color: variables.$highlight-color;
background-color: $highlight-color;
}
.details.attachment {
box-shadow:
inset 0 0 0 3px #fff,
inset 0 0 0 7px variables.$highlight-color;
inset 0 0 0 7px $highlight-color;
}
.attachment.details .check {
background-color: variables.$highlight-color;
box-shadow: 0 0 0 1px #fff, 0 0 0 2px variables.$highlight-color;
background-color: $highlight-color;
box-shadow: 0 0 0 1px #fff, 0 0 0 2px $highlight-color;
}
.media-selection .attachment.selection.details .thumbnail {
box-shadow: 0 0 0 1px #fff, 0 0 0 3px variables.$highlight-color;
box-shadow: 0 0 0 1px #fff, 0 0 0 3px $highlight-color;
}
@ -584,49 +582,49 @@ ul#adminmenu > li.current > a.current:after {
.theme-browser .theme.active .theme-name,
.theme-browser .theme.add-new-theme a:hover:after,
.theme-browser .theme.add-new-theme a:focus:after {
background: variables.$highlight-color;
background: $highlight-color;
}
.theme-browser .theme.add-new-theme a:hover span:after,
.theme-browser .theme.add-new-theme a:focus span:after {
color: variables.$highlight-color;
color: $highlight-color;
}
.theme-section.current,
.theme-filter.current {
border-bottom-color: variables.$menu-background;
border-bottom-color: $menu-background;
}
body.more-filters-opened .more-filters {
color: variables.$menu-text;
background-color: variables.$menu-background;
color: $menu-text;
background-color: $menu-background;
}
body.more-filters-opened .more-filters:before {
color: variables.$menu-text;
color: $menu-text;
}
body.more-filters-opened .more-filters:hover,
body.more-filters-opened .more-filters:focus {
background-color: variables.$menu-highlight-background;
color: variables.$menu-highlight-text;
background-color: $menu-highlight-background;
color: $menu-highlight-text;
}
body.more-filters-opened .more-filters:hover:before,
body.more-filters-opened .more-filters:focus:before {
color: variables.$menu-highlight-text;
color: $menu-highlight-text;
}
/* Widgets */
.widgets-chooser li.widgets-chooser-selected {
background-color: variables.$menu-highlight-background;
color: variables.$menu-highlight-text;
background-color: $menu-highlight-background;
color: $menu-highlight-text;
}
.widgets-chooser li.widgets-chooser-selected:before,
.widgets-chooser li.widgets-chooser-selected:focus:before {
color: variables.$menu-highlight-text;
color: $menu-highlight-text;
}
@ -634,29 +632,29 @@ body.more-filters-opened .more-filters:focus:before {
.nav-menus-php .item-edit:focus:before {
box-shadow:
0 0 0 1px color.adjust(variables.$button-color, $lightness: 10%),
0 0 2px 1px variables.$button-color;
0 0 0 1px lighten($button-color, 10),
0 0 2px 1px $button-color;
}
/* Responsive Component */
div#wp-responsive-toggle a:before {
color: variables.$menu-icon;
color: $menu-icon;
}
.wp-responsive-open div#wp-responsive-toggle a {
// ToDo: make inset border
border-color: transparent;
background: variables.$menu-highlight-background;
background: $menu-highlight-background;
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
background: variables.$menu-submenu-background;
background: $menu-submenu-background;
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
color: variables.$menu-icon;
color: $menu-icon;
}
/* TinyMCE */
@ -666,7 +664,7 @@ div#wp-responsive-toggle a:before {
.mce-container.mce-menu .mce-menu-item:focus,
.mce-container.mce-menu .mce-menu-item-normal.mce-active,
.mce-container.mce-menu .mce-menu-item-preview.mce-active {
background: variables.$highlight-color;
background: $highlight-color;
}
/* Customizer */
@ -675,24 +673,24 @@ div#wp-responsive-toggle a:before {
#customize-controls .control-section .accordion-section-title:hover,
#customize-controls .control-section.open .accordion-section-title,
#customize-controls .control-section .accordion-section-title:focus {
color: variables.$link;
border-left-color: variables.$button-color;
color: $link;
border-left-color: $button-color;
}
.customize-controls-close:focus,
.customize-controls-close:hover,
.customize-controls-preview-toggle:focus,
.customize-controls-preview-toggle:hover {
color: variables.$link;
border-top-color: variables.$button-color;
color: $link;
border-top-color: $button-color;
}
.customize-panel-back:hover,
.customize-panel-back:focus,
.customize-section-back:hover,
.customize-section-back:focus {
color: variables.$link;
border-left-color: variables.$button-color;
color: $link;
border-left-color: $button-color;
}
.customize-screen-options-toggle:hover,
@ -702,7 +700,7 @@ div#wp-responsive-toggle a:before {
#customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,
#customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,
#customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus {
color: variables.$link;
color: $link;
}
.customize-screen-options-toggle:focus:before,
@ -713,28 +711,28 @@ div#wp-responsive-toggle a:before {
#customize-save-button-wrapper .save:focus,
#publish-settings:focus {
box-shadow:
0 0 0 1px color.adjust(variables.$button-color, $lightness: 10%),
0 0 2px 1px variables.$button-color;
0 0 0 1px lighten($button-color, 10),
0 0 2px 1px $button-color;
}
#customize-controls .customize-info.open .customize-help-toggle,
#customize-controls .customize-info .customize-help-toggle:focus,
#customize-controls .customize-info .customize-help-toggle:hover {
color: variables.$link;
color: $link;
}
.control-panel-themes .customize-themes-section-title:focus,
.control-panel-themes .customize-themes-section-title:hover {
border-left-color: variables.$button-color;
color: variables.$link;
border-left-color: $button-color;
color: $link;
}
.control-panel-themes .theme-section .customize-themes-section-title.selected:after {
background: variables.$button-color;
background: $button-color;
}
.control-panel-themes .customize-themes-section-title.selected {
color: variables.$link;
color: $link;
}
#customize-theme-controls .control-section:hover > .accordion-section-title:after,
@ -745,37 +743,37 @@ div#wp-responsive-toggle a:before {
#customize-outer-theme-controls .control-section .accordion-section-title:hover:after,
#customize-outer-theme-controls .control-section.open .accordion-section-title:after,
#customize-outer-theme-controls .control-section .accordion-section-title:focus:after {
color: variables.$link;
color: $link;
}
.customize-control .attachment-media-view .button-add-media:focus {
background-color: #fbfbfc;
border-color: variables.$button-color;
border-color: $button-color;
border-style: solid;
box-shadow: 0 0 0 1px variables.$button-color;
box-shadow: 0 0 0 1px $button-color;
outline: 2px solid transparent;
}
.wp-full-overlay-footer .devices button:focus,
.wp-full-overlay-footer .devices button.active:hover {
border-bottom-color: variables.$button-color;
border-bottom-color: $button-color;
}
.wp-full-overlay-footer .devices button:hover:before,
.wp-full-overlay-footer .devices button:focus:before {
color: variables.$button-color;
color: $button-color;
}
.wp-full-overlay .collapse-sidebar:hover,
.wp-full-overlay .collapse-sidebar:focus {
color: variables.$button-color;
color: $button-color;
}
.wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
.wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
box-shadow:
0 0 0 1px color.adjust(variables.$button-color, $lightness: 10%),
0 0 2px 1px variables.$button-color;
0 0 0 1px lighten($button-color, 10),
0 0 2px 1px $button-color;
}
&.wp-customizer .theme-overlay .theme-header .close:focus,
@ -784,7 +782,7 @@ div#wp-responsive-toggle a:before {
&.wp-customizer .theme-overlay .theme-header .right:hover,
&.wp-customizer .theme-overlay .theme-header .left:focus,
&.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: variables.$button-color;
color: variables.$link;
border-bottom-color: $button-color;
color: $link;
}
}

View File

@ -1,5 +1,3 @@
@use 'sass:color';
/*
* Button mixin- creates a button effect with correct
* highlights/shadows, based on a base color.
@ -11,8 +9,8 @@
&:hover,
&:focus {
background: color.adjust($button-color, $lightness: 3%);
border-color: color.adjust($button-color, $lightness: -3%);
background: lighten( $button-color, 3% );
border-color: darken( $button-color, 3% );
color: $button-text-color;
}
@ -23,8 +21,8 @@
}
&:active {
background: color.adjust($button-color, $lightness: -5%);
border-color: color.adjust($button-color, $lightness: -5%);
background: darken( $button-color, 5% );
border-color: darken( $button-color, 5% );
color: $button-text-color;
}
@ -33,7 +31,7 @@
&.active:hover {
background: $button-color;
color: $button-text-color;
border-color: color.adjust($button-color, $lightness: -15%);
box-shadow: inset 0 2px 5px -3px color.adjust($button-color, $lightness: -50%);
border-color: darken( $button-color, 15% );
box-shadow: inset 0 2px 5px -3px darken( $button-color, 50% );
}
}

View File

@ -1,5 +1,3 @@
@use "sass:color";
// assign default value to all undefined variables
$scheme-name: "default" !default;
@ -8,17 +6,17 @@ $scheme-name: "default" !default;
$text-color: #fff !default;
$base-color: #23282d !default;
$icon-color: hsl(color.channel($base-color, "hue", $space: hsl), 7%, 95%) !default;
$icon-color: hsl( hue( $base-color ), 7%, 95% ) !default;
$highlight-color: #0073aa !default;
$notification-color: #d54e21 !default;
// global
$body-background: #fff !default;
$body-background: #f1f1f1 !default;
$link: #0073aa !default;
$link-focus: color.adjust($link, $lightness: 10%) !default;
$link-focus: lighten( $link, 10% ) !default;
$button-color: $highlight-color !default;
$button-text-color: $text-color !default;
@ -39,9 +37,9 @@ $menu-current-text: $menu-highlight-text !default;
$menu-current-icon: $menu-highlight-icon !default;
$menu-current-background: $menu-highlight-background !default;
$menu-submenu-text: color.mix( $base-color, $text-color, 30% ) !default;
$menu-submenu-background: color.adjust($base-color, $lightness: -7%) !default;
$menu-submenu-background-alt: color.adjust(color.adjust($menu-background, $lightness: 7%), $saturation: -7%) !default;
$menu-submenu-text: mix( $base-color, $text-color, 30% ) !default;
$menu-submenu-background: darken( $base-color, 7% ) !default;
$menu-submenu-background-alt: desaturate( lighten( $menu-background, 7% ), 7% ) !default;
$menu-submenu-focus-text: $highlight-color !default;
$menu-submenu-current-text: $text-color !default;
@ -56,14 +54,14 @@ $menu-collapse-icon: $menu-icon !default;
$menu-collapse-focus-text: $text-color !default;
$menu-collapse-focus-icon: $menu-highlight-icon !default;
$adminbar-avatar-frame: color.adjust($menu-background, $lightness: 7%) !default;
$adminbar-input-background: color.adjust($menu-background, $lightness: 7%) !default;
$adminbar-avatar-frame: lighten( $menu-background, 7% ) !default;
$adminbar-input-background: lighten( $menu-background, 7% ) !default;
$adminbar-recovery-exit-text: $menu-bubble-text !default;
$adminbar-recovery-exit-background: $menu-bubble-background !default;
$adminbar-recovery-exit-background-alt: color.mix(black, $adminbar-recovery-exit-background, 10%) !default;
$adminbar-recovery-exit-background-alt: mix(black, $adminbar-recovery-exit-background, 10%) !default;
$menu-customizer-text: color.mix( $base-color, $text-color, 40% ) !default;
$menu-customizer-text: mix( $base-color, $text-color, 40% ) !default;
// Dashboard Colors

View File

@ -8,7 +8,7 @@
* may use the function in their own admin CSS files. See #56811.
*/
body {
background: #fff;
background: #f1f1f1;
}
/* Links */
@ -16,7 +16,7 @@ a {
color: #0073aa;
}
a:hover, a:active, a:focus {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
#post-body .misc-pub-post-status:before,
@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
color: #0073aa;
}
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
.media-modal .delete-attachment,
@ -63,7 +63,7 @@ input[type=radio]:checked::before {
.wp-core-ui input[type=reset]:hover,
.wp-core-ui input[type=reset]:active {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
input[type=text]:focus,
@ -98,25 +98,25 @@ textarea:focus {
.wp-core-ui .button:hover,
.wp-core-ui .button.focus,
.wp-core-ui .button:focus {
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
color: rgb(38.4090909091, 42.25, 46.0909090909);
border-color: #717c87;
color: #262a2e;
}
.wp-core-ui .button.focus,
.wp-core-ui .button:focus {
border-color: #7e8993;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: 0 0 0 1px #32373c;
}
.wp-core-ui .button:active {
border-color: #7e8993;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: none;
}
.wp-core-ui .button.active,
.wp-core-ui .button.active:focus,
.wp-core-ui .button.active:hover {
border-color: #e1a948;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: inset 0 2px 5px -3px #e1a948;
}
.wp-core-ui .button.active:focus {
@ -130,15 +130,15 @@ textarea:focus {
.wp-core-ui .button.hover,
.wp-core-ui .button:hover,
.wp-core-ui .button-secondary:hover {
border-color: rgb(5.7446808511, 63.829787234, 84.2553191489);
color: rgb(5.7446808511, 63.829787234, 84.2553191489);
border-color: #064054;
color: #064054;
}
.wp-core-ui .button.focus,
.wp-core-ui .button:focus,
.wp-core-ui .button-secondary:focus {
border-color: rgb(12.2553191489, 136.170212766, 179.7446808511);
color: rgb(2.4893617021, 27.6595744681, 36.5106382979);
box-shadow: 0 0 0 1px rgb(12.2553191489, 136.170212766, 179.7446808511);
border-color: #0c88b4;
color: #021c25;
box-shadow: 0 0 0 1px #0c88b4;
}
.wp-core-ui .button-primary:hover {
color: #fff;
@ -149,23 +149,23 @@ textarea:focus {
color: #fff;
}
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
background: rgb(227.1549295775, 175.1774647887, 85.1450704225);
border-color: rgb(222.8450704225, 162.8225352113, 58.8549295775);
background: #e3af55;
border-color: #dfa33b;
color: #fff;
}
.wp-core-ui .button-primary:focus {
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #e1a948;
}
.wp-core-ui .button-primary:active {
background: rgb(221.4084507042, 158.7042253521, 50.0915492958);
border-color: rgb(221.4084507042, 158.7042253521, 50.0915492958);
background: #dd9f32;
border-color: #dd9f32;
color: #fff;
}
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
background: #e1a948;
color: #fff;
border-color: rgb(189.4436619718, 131.4718309859, 31.0563380282);
box-shadow: inset 0 2px 5px -3px rgb(36.0845070423, 25.0422535211, 5.9154929577);
border-color: #bd831f;
box-shadow: inset 0 2px 5px -3px #241906;
}
.wp-core-ui .button-group > .button.active {
border-color: #e1a948;
@ -203,14 +203,14 @@ textarea:focus {
}
.wrap .page-title-action:hover {
color: rgb(5.7446808511, 63.829787234, 84.2553191489);
border-color: rgb(5.7446808511, 63.829787234, 84.2553191489);
color: #064054;
border-color: #064054;
}
.wrap .page-title-action:focus {
border-color: rgb(12.2553191489, 136.170212766, 179.7446808511);
color: rgb(2.4893617021, 27.6595744681, 36.5106382979);
box-shadow: 0 0 0 1px rgb(12.2553191489, 136.170212766, 179.7446808511);
border-color: #0c88b4;
color: #021c25;
box-shadow: 0 0 0 1px #0c88b4;
}
.view-switch a.current:before {
@ -253,8 +253,8 @@ textarea:focus {
.about-wrap .nav-tab-active,
.nav-tab-active,
.nav-tab-active:hover {
background-color: #fff;
border-bottom-color: #fff;
background-color: #f1f1f1;
border-bottom-color: #f1f1f1;
}
/* Admin Menu: submenu */
@ -306,7 +306,7 @@ textarea:focus {
ul#adminmenu a.wp-has-current-submenu:after,
ul#adminmenu > li.current > a.current:after {
border-left-color: #fff;
border-left-color: #f1f1f1;
}
#adminmenu li.current a.menu-top,
@ -403,7 +403,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
background: rgb(116.162375, 182.0949364754, 205.537625);
background: #74b6ce;
}
#wpadminbar .ab-submenu .ab-item,
@ -460,7 +460,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
color: #fff;
background: rgb(109.571875, 185.228125, 212.128125);
background: #6eb9d4;
}
/* Admin Bar: recovery mode */
@ -479,13 +479,13 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
color: #fff;
background-color: rgb(202.5, 152.1, 64.8);
background-color: #cb9841;
}
/* Admin Bar: my account */
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
border-color: rgb(109.571875, 185.228125, 212.128125);
background-color: rgb(109.571875, 185.228125, 212.128125);
border-color: #6eb9d4;
background-color: #6eb9d4;
}
#wpadminbar #wp-admin-bar-user-info .display-name {
@ -503,7 +503,7 @@ ul#adminmenu > li.current > a.current:after {
/* Pointers */
.wp-pointer .wp-pointer-content h3 {
background-color: #096484;
border-color: rgb(7.3723404255, 81.914893617, 108.1276595745);
border-color: #07526c;
}
.wp-pointer .wp-pointer-content h3:before {
@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
/* Nav Menus */
.nav-menus-php .item-edit:focus:before {
box-shadow: 0 0 0 1px rgb(232.1830985915, 189.5915492958, 115.8169014085), 0 0 2px 1px #e1a948;
box-shadow: 0 0 0 1px #e8be74, 0 0 2px 1px #e1a948;
}
/* Responsive Component */
@ -653,7 +653,7 @@ div#wp-responsive-toggle a:before {
.wp-core-ui #available-menu-items .item-add:focus:before,
.wp-core-ui #customize-save-button-wrapper .save:focus,
.wp-core-ui #publish-settings:focus {
box-shadow: 0 0 0 1px rgb(232.1830985915, 189.5915492958, 115.8169014085), 0 0 2px 1px #e1a948;
box-shadow: 0 0 0 1px #e8be74, 0 0 2px 1px #e1a948;
}
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
@ -702,7 +702,7 @@ div#wp-responsive-toggle a:before {
}
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
box-shadow: 0 0 0 1px rgb(232.1830985915, 189.5915492958, 115.8169014085), 0 0 2px 1px #e1a948;
box-shadow: 0 0 0 1px #e8be74, 0 0 2px 1px #e1a948;
}
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #e1a948;

File diff suppressed because one or more lines are too long

View File

@ -8,7 +8,7 @@
* may use the function in their own admin CSS files. See #56811.
*/
body {
background: #fff;
background: #f1f1f1;
}
/* Links */
@ -16,7 +16,7 @@ a {
color: #0073aa;
}
a:hover, a:active, a:focus {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
#post-body .misc-pub-post-status:before,
@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
color: #0073aa;
}
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
.media-modal .delete-attachment,
@ -63,7 +63,7 @@ input[type=radio]:checked::before {
.wp-core-ui input[type=reset]:hover,
.wp-core-ui input[type=reset]:active {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
input[type=text]:focus,
@ -98,25 +98,25 @@ textarea:focus {
.wp-core-ui .button:hover,
.wp-core-ui .button.focus,
.wp-core-ui .button:focus {
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
color: rgb(38.4090909091, 42.25, 46.0909090909);
border-color: #717c87;
color: #262a2e;
}
.wp-core-ui .button.focus,
.wp-core-ui .button:focus {
border-color: #7e8993;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: 0 0 0 1px #32373c;
}
.wp-core-ui .button:active {
border-color: #7e8993;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: none;
}
.wp-core-ui .button.active,
.wp-core-ui .button.active:focus,
.wp-core-ui .button.active:hover {
border-color: #e1a948;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: inset 0 2px 5px -3px #e1a948;
}
.wp-core-ui .button.active:focus {
@ -130,15 +130,15 @@ textarea:focus {
.wp-core-ui .button.hover,
.wp-core-ui .button:hover,
.wp-core-ui .button-secondary:hover {
border-color: rgb(5.7446808511, 63.829787234, 84.2553191489);
color: rgb(5.7446808511, 63.829787234, 84.2553191489);
border-color: #064054;
color: #064054;
}
.wp-core-ui .button.focus,
.wp-core-ui .button:focus,
.wp-core-ui .button-secondary:focus {
border-color: rgb(12.2553191489, 136.170212766, 179.7446808511);
color: rgb(2.4893617021, 27.6595744681, 36.5106382979);
box-shadow: 0 0 0 1px rgb(12.2553191489, 136.170212766, 179.7446808511);
border-color: #0c88b4;
color: #021c25;
box-shadow: 0 0 0 1px #0c88b4;
}
.wp-core-ui .button-primary:hover {
color: #fff;
@ -149,23 +149,23 @@ textarea:focus {
color: #fff;
}
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
background: rgb(227.1549295775, 175.1774647887, 85.1450704225);
border-color: rgb(222.8450704225, 162.8225352113, 58.8549295775);
background: #e3af55;
border-color: #dfa33b;
color: #fff;
}
.wp-core-ui .button-primary:focus {
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #e1a948;
}
.wp-core-ui .button-primary:active {
background: rgb(221.4084507042, 158.7042253521, 50.0915492958);
border-color: rgb(221.4084507042, 158.7042253521, 50.0915492958);
background: #dd9f32;
border-color: #dd9f32;
color: #fff;
}
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
background: #e1a948;
color: #fff;
border-color: rgb(189.4436619718, 131.4718309859, 31.0563380282);
box-shadow: inset 0 2px 5px -3px rgb(36.0845070423, 25.0422535211, 5.9154929577);
border-color: #bd831f;
box-shadow: inset 0 2px 5px -3px #241906;
}
.wp-core-ui .button-group > .button.active {
border-color: #e1a948;
@ -203,14 +203,14 @@ textarea:focus {
}
.wrap .page-title-action:hover {
color: rgb(5.7446808511, 63.829787234, 84.2553191489);
border-color: rgb(5.7446808511, 63.829787234, 84.2553191489);
color: #064054;
border-color: #064054;
}
.wrap .page-title-action:focus {
border-color: rgb(12.2553191489, 136.170212766, 179.7446808511);
color: rgb(2.4893617021, 27.6595744681, 36.5106382979);
box-shadow: 0 0 0 1px rgb(12.2553191489, 136.170212766, 179.7446808511);
border-color: #0c88b4;
color: #021c25;
box-shadow: 0 0 0 1px #0c88b4;
}
.view-switch a.current:before {
@ -253,8 +253,8 @@ textarea:focus {
.about-wrap .nav-tab-active,
.nav-tab-active,
.nav-tab-active:hover {
background-color: #fff;
border-bottom-color: #fff;
background-color: #f1f1f1;
border-bottom-color: #f1f1f1;
}
/* Admin Menu: submenu */
@ -306,7 +306,7 @@ textarea:focus {
ul#adminmenu a.wp-has-current-submenu:after,
ul#adminmenu > li.current > a.current:after {
border-right-color: #fff;
border-right-color: #f1f1f1;
}
#adminmenu li.current a.menu-top,
@ -403,7 +403,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
background: rgb(116.162375, 182.0949364754, 205.537625);
background: #74b6ce;
}
#wpadminbar .ab-submenu .ab-item,
@ -460,7 +460,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
color: #fff;
background: rgb(109.571875, 185.228125, 212.128125);
background: #6eb9d4;
}
/* Admin Bar: recovery mode */
@ -479,13 +479,13 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
color: #fff;
background-color: rgb(202.5, 152.1, 64.8);
background-color: #cb9841;
}
/* Admin Bar: my account */
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
border-color: rgb(109.571875, 185.228125, 212.128125);
background-color: rgb(109.571875, 185.228125, 212.128125);
border-color: #6eb9d4;
background-color: #6eb9d4;
}
#wpadminbar #wp-admin-bar-user-info .display-name {
@ -503,7 +503,7 @@ ul#adminmenu > li.current > a.current:after {
/* Pointers */
.wp-pointer .wp-pointer-content h3 {
background-color: #096484;
border-color: rgb(7.3723404255, 81.914893617, 108.1276595745);
border-color: #07526c;
}
.wp-pointer .wp-pointer-content h3:before {
@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
/* Nav Menus */
.nav-menus-php .item-edit:focus:before {
box-shadow: 0 0 0 1px rgb(232.1830985915, 189.5915492958, 115.8169014085), 0 0 2px 1px #e1a948;
box-shadow: 0 0 0 1px #e8be74, 0 0 2px 1px #e1a948;
}
/* Responsive Component */
@ -653,7 +653,7 @@ div#wp-responsive-toggle a:before {
.wp-core-ui #available-menu-items .item-add:focus:before,
.wp-core-ui #customize-save-button-wrapper .save:focus,
.wp-core-ui #publish-settings:focus {
box-shadow: 0 0 0 1px rgb(232.1830985915, 189.5915492958, 115.8169014085), 0 0 2px 1px #e1a948;
box-shadow: 0 0 0 1px #e8be74, 0 0 2px 1px #e1a948;
}
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
@ -702,7 +702,7 @@ div#wp-responsive-toggle a:before {
}
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
box-shadow: 0 0 0 1px rgb(232.1830985915, 189.5915492958, 115.8169014085), 0 0 2px 1px #e1a948;
box-shadow: 0 0 0 1px #e8be74, 0 0 2px 1px #e1a948;
}
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #e1a948;

File diff suppressed because one or more lines are too long

View File

@ -1,16 +1,14 @@
$scheme-name: "blue";
$base-color: #52accc;
$icon-color: #e5f8ff;
$highlight-color: #096484;
$notification-color: #e1a948;
$button-color: #e1a948;
@use "../_admin.scss" with (
$scheme-name: "blue",
$base-color: #52accc,
$icon-color: #e5f8ff,
$highlight-color: $highlight-color,
$notification-color: #e1a948,
$button-color: #e1a948,
$menu-submenu-text: #e2ecf1;
$menu-submenu-focus-text: #fff;
$menu-submenu-background: #4796b3;
$menu-submenu-text: #e2ecf1,
$menu-submenu-focus-text: #fff,
$menu-submenu-background: #4796b3,
$dashboard-icon-background: $highlight-color;
$dashboard-icon-background: $highlight-color
);
@import "../_admin.scss";

View File

@ -8,7 +8,7 @@
* may use the function in their own admin CSS files. See #56811.
*/
body {
background: #fff;
background: #f1f1f1;
}
/* Links */
@ -16,7 +16,7 @@ a {
color: #0073aa;
}
a:hover, a:active, a:focus {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
#post-body .misc-pub-post-status:before,
@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
color: #0073aa;
}
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
.media-modal .delete-attachment,
@ -63,7 +63,7 @@ input[type=radio]:checked::before {
.wp-core-ui input[type=reset]:hover,
.wp-core-ui input[type=reset]:active {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
input[type=text]:focus,
@ -98,25 +98,25 @@ textarea:focus {
.wp-core-ui .button:hover,
.wp-core-ui .button.focus,
.wp-core-ui .button:focus {
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
color: rgb(38.4090909091, 42.25, 46.0909090909);
border-color: #717c87;
color: #262a2e;
}
.wp-core-ui .button.focus,
.wp-core-ui .button:focus {
border-color: #7e8993;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: 0 0 0 1px #32373c;
}
.wp-core-ui .button:active {
border-color: #7e8993;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: none;
}
.wp-core-ui .button.active,
.wp-core-ui .button.active:focus,
.wp-core-ui .button.active:hover {
border-color: #c7a589;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: inset 0 2px 5px -3px #c7a589;
}
.wp-core-ui .button.active:focus {
@ -128,23 +128,23 @@ textarea:focus {
color: #fff;
}
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
background: rgb(203.924137931, 172.9137931034, 147.375862069);
border-color: rgb(194.075862069, 157.0862068966, 126.624137931);
background: #ccad93;
border-color: #c29d7f;
color: #fff;
}
.wp-core-ui .button-primary:focus {
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #c7a589;
}
.wp-core-ui .button-primary:active {
background: rgb(190.7931034483, 151.8103448276, 119.7068965517);
border-color: rgb(190.7931034483, 151.8103448276, 119.7068965517);
background: #bf9878;
border-color: #bf9878;
color: #fff;
}
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
background: #c7a589;
color: #fff;
border-color: rgb(174.3793103448, 125.4310344828, 85.1206896552);
box-shadow: inset 0 2px 5px -3px rgb(54.9310344828, 39.1034482759, 26.0689655172);
border-color: #ae7d55;
box-shadow: inset 0 2px 5px -3px #37271a;
}
.wp-core-ui .button-group > .button.active {
border-color: #c7a589;
@ -220,8 +220,8 @@ textarea:focus {
.about-wrap .nav-tab-active,
.nav-tab-active,
.nav-tab-active:hover {
background-color: #fff;
border-bottom-color: #fff;
background-color: #f1f1f1;
border-bottom-color: #f1f1f1;
}
/* Admin Menu: submenu */
@ -229,23 +229,23 @@ textarea:focus {
#adminmenu .wp-has-current-submenu .wp-submenu,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
background: rgb(69.7436363636, 64.2581818182, 59.5563636364);
background: #46403c;
}
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
border-left-color: rgb(69.7436363636, 64.2581818182, 59.5563636364);
border-left-color: #46403c;
}
#adminmenu .wp-submenu .wp-submenu-head {
color: rgb(205.2, 203.1, 201.3);
color: #cdcbc9;
}
#adminmenu .wp-submenu a,
#adminmenu .wp-has-current-submenu .wp-submenu a,
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
color: rgb(205.2, 203.1, 201.3);
color: #cdcbc9;
}
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
@ -273,7 +273,7 @@ textarea:focus {
ul#adminmenu a.wp-has-current-submenu:after,
ul#adminmenu > li.current > a.current:after {
border-left-color: #fff;
border-left-color: #f1f1f1;
}
#adminmenu li.current a.menu-top,
@ -308,7 +308,7 @@ ul#adminmenu > li.current > a.current:after {
#adminmenu li:hover a .awaiting-mod,
#adminmenu li.menu-top:hover > a .update-plugins {
color: #fff;
background: rgb(69.7436363636, 64.2581818182, 59.5563636364);
background: #46403c;
}
/* Admin Menu: collapse button */
@ -347,7 +347,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
color: #c7a589;
background: rgb(69.7436363636, 64.2581818182, 59.5563636364);
background: #46403c;
}
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
@ -365,19 +365,19 @@ ul#adminmenu > li.current > a.current:after {
/* Admin Bar: submenu */
#wpadminbar .menupop .ab-sub-wrapper {
background: rgb(69.7436363636, 64.2581818182, 59.5563636364);
background: #46403c;
}
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
background: rgb(101.2318636364, 100.2821643357, 99.4681363636);
background: #656463;
}
#wpadminbar .ab-submenu .ab-item,
#wpadminbar .quicklinks .menupop ul li a,
#wpadminbar .quicklinks .menupop.hover ul li a,
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
color: rgb(205.2, 203.1, 201.3);
color: #cdcbc9;
}
#wpadminbar .quicklinks li .blavatar,
@ -427,7 +427,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
color: #fff;
background: rgb(108.2563636364, 99.7418181818, 92.4436363636);
background: #6c645c;
}
/* Admin Bar: recovery mode */
@ -446,13 +446,13 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
color: #fff;
background-color: rgb(142.2, 147.6, 106.2);
background-color: #8e946a;
}
/* Admin Bar: my account */
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
border-color: rgb(108.2563636364, 99.7418181818, 92.4436363636);
background-color: rgb(108.2563636364, 99.7418181818, 92.4436363636);
border-color: #6c645c;
background-color: #6c645c;
}
#wpadminbar #wp-admin-bar-user-info .display-name {
@ -464,13 +464,13 @@ ul#adminmenu > li.current > a.current:after {
}
#wpadminbar #wp-admin-bar-user-info .username {
color: rgb(205.2, 203.1, 201.3);
color: #cdcbc9;
}
/* Pointers */
.wp-pointer .wp-pointer-content h3 {
background-color: #c7a589;
border-color: rgb(190.7931034483, 151.8103448276, 119.7068965517);
border-color: #bf9878;
}
.wp-pointer .wp-pointer-content h3:before {
@ -553,7 +553,7 @@ body.more-filters-opened .more-filters:focus:before {
/* Nav Menus */
.nav-menus-php .item-edit:focus:before {
box-shadow: 0 0 0 1px rgb(215.4137931034, 191.3793103448, 171.5862068966), 0 0 2px 1px #c7a589;
box-shadow: 0 0 0 1px #d7bfac, 0 0 2px 1px #c7a589;
}
/* Responsive Component */
@ -567,7 +567,7 @@ div#wp-responsive-toggle a:before {
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
background: rgb(69.7436363636, 64.2581818182, 59.5563636364);
background: #46403c;
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
@ -620,7 +620,7 @@ div#wp-responsive-toggle a:before {
.wp-core-ui #available-menu-items .item-add:focus:before,
.wp-core-ui #customize-save-button-wrapper .save:focus,
.wp-core-ui #publish-settings:focus {
box-shadow: 0 0 0 1px rgb(215.4137931034, 191.3793103448, 171.5862068966), 0 0 2px 1px #c7a589;
box-shadow: 0 0 0 1px #d7bfac, 0 0 2px 1px #c7a589;
}
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
@ -669,7 +669,7 @@ div#wp-responsive-toggle a:before {
}
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
box-shadow: 0 0 0 1px rgb(215.4137931034, 191.3793103448, 171.5862068966), 0 0 2px 1px #c7a589;
box-shadow: 0 0 0 1px #d7bfac, 0 0 2px 1px #c7a589;
}
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #c7a589;

File diff suppressed because one or more lines are too long

View File

@ -8,7 +8,7 @@
* may use the function in their own admin CSS files. See #56811.
*/
body {
background: #fff;
background: #f1f1f1;
}
/* Links */
@ -16,7 +16,7 @@ a {
color: #0073aa;
}
a:hover, a:active, a:focus {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
#post-body .misc-pub-post-status:before,
@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
color: #0073aa;
}
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
.media-modal .delete-attachment,
@ -63,7 +63,7 @@ input[type=radio]:checked::before {
.wp-core-ui input[type=reset]:hover,
.wp-core-ui input[type=reset]:active {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
input[type=text]:focus,
@ -98,25 +98,25 @@ textarea:focus {
.wp-core-ui .button:hover,
.wp-core-ui .button.focus,
.wp-core-ui .button:focus {
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
color: rgb(38.4090909091, 42.25, 46.0909090909);
border-color: #717c87;
color: #262a2e;
}
.wp-core-ui .button.focus,
.wp-core-ui .button:focus {
border-color: #7e8993;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: 0 0 0 1px #32373c;
}
.wp-core-ui .button:active {
border-color: #7e8993;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: none;
}
.wp-core-ui .button.active,
.wp-core-ui .button.active:focus,
.wp-core-ui .button.active:hover {
border-color: #c7a589;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: inset 0 2px 5px -3px #c7a589;
}
.wp-core-ui .button.active:focus {
@ -128,23 +128,23 @@ textarea:focus {
color: #fff;
}
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
background: rgb(203.924137931, 172.9137931034, 147.375862069);
border-color: rgb(194.075862069, 157.0862068966, 126.624137931);
background: #ccad93;
border-color: #c29d7f;
color: #fff;
}
.wp-core-ui .button-primary:focus {
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #c7a589;
}
.wp-core-ui .button-primary:active {
background: rgb(190.7931034483, 151.8103448276, 119.7068965517);
border-color: rgb(190.7931034483, 151.8103448276, 119.7068965517);
background: #bf9878;
border-color: #bf9878;
color: #fff;
}
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
background: #c7a589;
color: #fff;
border-color: rgb(174.3793103448, 125.4310344828, 85.1206896552);
box-shadow: inset 0 2px 5px -3px rgb(54.9310344828, 39.1034482759, 26.0689655172);
border-color: #ae7d55;
box-shadow: inset 0 2px 5px -3px #37271a;
}
.wp-core-ui .button-group > .button.active {
border-color: #c7a589;
@ -220,8 +220,8 @@ textarea:focus {
.about-wrap .nav-tab-active,
.nav-tab-active,
.nav-tab-active:hover {
background-color: #fff;
border-bottom-color: #fff;
background-color: #f1f1f1;
border-bottom-color: #f1f1f1;
}
/* Admin Menu: submenu */
@ -229,23 +229,23 @@ textarea:focus {
#adminmenu .wp-has-current-submenu .wp-submenu,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
background: rgb(69.7436363636, 64.2581818182, 59.5563636364);
background: #46403c;
}
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
border-right-color: rgb(69.7436363636, 64.2581818182, 59.5563636364);
border-right-color: #46403c;
}
#adminmenu .wp-submenu .wp-submenu-head {
color: rgb(205.2, 203.1, 201.3);
color: #cdcbc9;
}
#adminmenu .wp-submenu a,
#adminmenu .wp-has-current-submenu .wp-submenu a,
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
color: rgb(205.2, 203.1, 201.3);
color: #cdcbc9;
}
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
@ -273,7 +273,7 @@ textarea:focus {
ul#adminmenu a.wp-has-current-submenu:after,
ul#adminmenu > li.current > a.current:after {
border-right-color: #fff;
border-right-color: #f1f1f1;
}
#adminmenu li.current a.menu-top,
@ -308,7 +308,7 @@ ul#adminmenu > li.current > a.current:after {
#adminmenu li:hover a .awaiting-mod,
#adminmenu li.menu-top:hover > a .update-plugins {
color: #fff;
background: rgb(69.7436363636, 64.2581818182, 59.5563636364);
background: #46403c;
}
/* Admin Menu: collapse button */
@ -347,7 +347,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
color: #c7a589;
background: rgb(69.7436363636, 64.2581818182, 59.5563636364);
background: #46403c;
}
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
@ -365,19 +365,19 @@ ul#adminmenu > li.current > a.current:after {
/* Admin Bar: submenu */
#wpadminbar .menupop .ab-sub-wrapper {
background: rgb(69.7436363636, 64.2581818182, 59.5563636364);
background: #46403c;
}
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
background: rgb(101.2318636364, 100.2821643357, 99.4681363636);
background: #656463;
}
#wpadminbar .ab-submenu .ab-item,
#wpadminbar .quicklinks .menupop ul li a,
#wpadminbar .quicklinks .menupop.hover ul li a,
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
color: rgb(205.2, 203.1, 201.3);
color: #cdcbc9;
}
#wpadminbar .quicklinks li .blavatar,
@ -427,7 +427,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
color: #fff;
background: rgb(108.2563636364, 99.7418181818, 92.4436363636);
background: #6c645c;
}
/* Admin Bar: recovery mode */
@ -446,13 +446,13 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
color: #fff;
background-color: rgb(142.2, 147.6, 106.2);
background-color: #8e946a;
}
/* Admin Bar: my account */
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
border-color: rgb(108.2563636364, 99.7418181818, 92.4436363636);
background-color: rgb(108.2563636364, 99.7418181818, 92.4436363636);
border-color: #6c645c;
background-color: #6c645c;
}
#wpadminbar #wp-admin-bar-user-info .display-name {
@ -464,13 +464,13 @@ ul#adminmenu > li.current > a.current:after {
}
#wpadminbar #wp-admin-bar-user-info .username {
color: rgb(205.2, 203.1, 201.3);
color: #cdcbc9;
}
/* Pointers */
.wp-pointer .wp-pointer-content h3 {
background-color: #c7a589;
border-color: rgb(190.7931034483, 151.8103448276, 119.7068965517);
border-color: #bf9878;
}
.wp-pointer .wp-pointer-content h3:before {
@ -553,7 +553,7 @@ body.more-filters-opened .more-filters:focus:before {
/* Nav Menus */
.nav-menus-php .item-edit:focus:before {
box-shadow: 0 0 0 1px rgb(215.4137931034, 191.3793103448, 171.5862068966), 0 0 2px 1px #c7a589;
box-shadow: 0 0 0 1px #d7bfac, 0 0 2px 1px #c7a589;
}
/* Responsive Component */
@ -567,7 +567,7 @@ div#wp-responsive-toggle a:before {
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
background: rgb(69.7436363636, 64.2581818182, 59.5563636364);
background: #46403c;
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
@ -620,7 +620,7 @@ div#wp-responsive-toggle a:before {
.wp-core-ui #available-menu-items .item-add:focus:before,
.wp-core-ui #customize-save-button-wrapper .save:focus,
.wp-core-ui #publish-settings:focus {
box-shadow: 0 0 0 1px rgb(215.4137931034, 191.3793103448, 171.5862068966), 0 0 2px 1px #c7a589;
box-shadow: 0 0 0 1px #d7bfac, 0 0 2px 1px #c7a589;
}
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
@ -669,7 +669,7 @@ div#wp-responsive-toggle a:before {
}
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
box-shadow: 0 0 0 1px rgb(215.4137931034, 191.3793103448, 171.5862068966), 0 0 2px 1px #c7a589;
box-shadow: 0 0 0 1px #d7bfac, 0 0 2px 1px #c7a589;
}
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #c7a589;

File diff suppressed because one or more lines are too long

View File

@ -1,11 +1,9 @@
$scheme-name: "coffee";
$base-color: #59524c;
$highlight-color: #c7a589;
$notification-color: #9ea476;
$low-contrast-theme: "true";
@use "../_admin.scss" with (
$scheme-name: "coffee",
$base-color: $base-color,
$highlight-color: #c7a589,
$notification-color: #9ea476,
$form-checked: $base-color,
$form-checked: $base-color;
$low-contrast-theme: "true"
);
@import "../_admin.scss";

View File

@ -8,7 +8,7 @@
* may use the function in their own admin CSS files. See #56811.
*/
body {
background: #fff;
background: #f1f1f1;
}
/* Links */
@ -16,7 +16,7 @@ a {
color: #0073aa;
}
a:hover, a:active, a:focus {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
#post-body .misc-pub-post-status:before,
@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
color: #0073aa;
}
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
.media-modal .delete-attachment,
@ -63,7 +63,7 @@ input[type=radio]:checked::before {
.wp-core-ui input[type=reset]:hover,
.wp-core-ui input[type=reset]:active {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
input[type=text]:focus,
@ -98,25 +98,25 @@ textarea:focus {
.wp-core-ui .button:hover,
.wp-core-ui .button.focus,
.wp-core-ui .button:focus {
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
color: rgb(38.4090909091, 42.25, 46.0909090909);
border-color: #717c87;
color: #262a2e;
}
.wp-core-ui .button.focus,
.wp-core-ui .button:focus {
border-color: #7e8993;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: 0 0 0 1px #32373c;
}
.wp-core-ui .button:active {
border-color: #7e8993;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: none;
}
.wp-core-ui .button.active,
.wp-core-ui .button.active:focus,
.wp-core-ui .button.active:hover {
border-color: #a3b745;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: inset 0 2px 5px -3px #a3b745;
}
.wp-core-ui .button.active:focus {
@ -130,15 +130,15 @@ textarea:focus {
.wp-core-ui .button.hover,
.wp-core-ui .button:hover,
.wp-core-ui .button-secondary:hover {
border-color: rgb(130.0119047619, 145.9642857143, 55.0357142857);
color: rgb(130.0119047619, 145.9642857143, 55.0357142857);
border-color: #829237;
color: #829237;
}
.wp-core-ui .button.focus,
.wp-core-ui .button:focus,
.wp-core-ui .button-secondary:focus {
border-color: rgb(181.8928571429, 198.3214285714, 104.6785714286);
color: rgb(97.0238095238, 108.9285714286, 41.0714285714);
box-shadow: 0 0 0 1px rgb(181.8928571429, 198.3214285714, 104.6785714286);
border-color: #b6c669;
color: #616d29;
box-shadow: 0 0 0 1px #b6c669;
}
.wp-core-ui .button-primary:hover {
color: #fff;
@ -149,23 +149,23 @@ textarea:focus {
color: #fff;
}
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
background: rgb(169.2845238095, 188.5464285714, 78.7535714286);
border-color: rgb(153.1035714286, 171.8892857143, 64.8107142857);
background: #a9bd4f;
border-color: #99ac41;
color: #fff;
}
.wp-core-ui .button-primary:focus {
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #a3b745;
}
.wp-core-ui .button-primary:active {
background: rgb(146.505952381, 164.4821428571, 62.0178571429);
border-color: rgb(146.505952381, 164.4821428571, 62.0178571429);
background: #93a43e;
border-color: #93a43e;
color: #fff;
}
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
background: #a3b745;
color: #fff;
border-color: rgb(113.5178571429, 127.4464285714, 48.0535714286);
box-shadow: inset 0 2px 5px -3px hsl(70.5263157895, 45.2380952381%, -0.5882352941%);
border-color: #727f30;
box-shadow: inset 0 2px 5px -3px black;
}
.wp-core-ui .button-group > .button.active {
border-color: #a3b745;
@ -203,14 +203,14 @@ textarea:focus {
}
.wrap .page-title-action:hover {
color: rgb(130.0119047619, 145.9642857143, 55.0357142857);
border-color: rgb(130.0119047619, 145.9642857143, 55.0357142857);
color: #829237;
border-color: #829237;
}
.wrap .page-title-action:focus {
border-color: rgb(181.8928571429, 198.3214285714, 104.6785714286);
color: rgb(97.0238095238, 108.9285714286, 41.0714285714);
box-shadow: 0 0 0 1px rgb(181.8928571429, 198.3214285714, 104.6785714286);
border-color: #b6c669;
color: #616d29;
box-shadow: 0 0 0 1px #b6c669;
}
.view-switch a.current:before {
@ -253,8 +253,8 @@ textarea:focus {
.about-wrap .nav-tab-active,
.nav-tab-active,
.nav-tab-active:hover {
background-color: #fff;
border-bottom-color: #fff;
background-color: #f1f1f1;
border-bottom-color: #f1f1f1;
}
/* Admin Menu: submenu */
@ -262,23 +262,23 @@ textarea:focus {
#adminmenu .wp-has-current-submenu .wp-submenu,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
background: rgb(64.9802325581, 49.9238372093, 86.3761627907);
background: #413256;
}
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
border-left-color: rgb(64.9802325581, 49.9238372093, 86.3761627907);
border-left-color: #413256;
}
#adminmenu .wp-submenu .wp-submenu-head {
color: rgb(203.1, 197.4, 211.2);
color: #cbc5d3;
}
#adminmenu .wp-submenu a,
#adminmenu .wp-has-current-submenu .wp-submenu a,
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
color: rgb(203.1, 197.4, 211.2);
color: #cbc5d3;
}
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
@ -306,7 +306,7 @@ textarea:focus {
ul#adminmenu a.wp-has-current-submenu:after,
ul#adminmenu > li.current > a.current:after {
border-left-color: #fff;
border-left-color: #f1f1f1;
}
#adminmenu li.current a.menu-top,
@ -341,7 +341,7 @@ ul#adminmenu > li.current > a.current:after {
#adminmenu li:hover a .awaiting-mod,
#adminmenu li.menu-top:hover > a .update-plugins {
color: #fff;
background: rgb(64.9802325581, 49.9238372093, 86.3761627907);
background: #413256;
}
/* Admin Menu: collapse button */
@ -380,7 +380,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
color: #a3b745;
background: rgb(64.9802325581, 49.9238372093, 86.3761627907);
background: #413256;
}
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
@ -398,19 +398,19 @@ ul#adminmenu > li.current > a.current:after {
/* Admin Bar: submenu */
#wpadminbar .menupop .ab-sub-wrapper {
background: rgb(64.9802325581, 49.9238372093, 86.3761627907);
background: #413256;
}
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
background: rgb(100.2840283114, 83.3456627907, 124.3543372093);
background: #64537c;
}
#wpadminbar .ab-submenu .ab-item,
#wpadminbar .quicklinks .menupop ul li a,
#wpadminbar .quicklinks .menupop.hover ul li a,
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
color: rgb(203.1, 197.4, 211.2);
color: #cbc5d3;
}
#wpadminbar .quicklinks li .blavatar,
@ -460,7 +460,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
color: #fff;
background: rgb(99.0197674419, 76.0761627907, 131.6238372093);
background: #634c84;
}
/* Admin Bar: recovery mode */
@ -479,13 +479,13 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
color: #fff;
background-color: rgb(190.8, 99.9, 18.9);
background-color: #bf6413;
}
/* Admin Bar: my account */
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
border-color: rgb(99.0197674419, 76.0761627907, 131.6238372093);
background-color: rgb(99.0197674419, 76.0761627907, 131.6238372093);
border-color: #634c84;
background-color: #634c84;
}
#wpadminbar #wp-admin-bar-user-info .display-name {
@ -497,13 +497,13 @@ ul#adminmenu > li.current > a.current:after {
}
#wpadminbar #wp-admin-bar-user-info .username {
color: rgb(203.1, 197.4, 211.2);
color: #cbc5d3;
}
/* Pointers */
.wp-pointer .wp-pointer-content h3 {
background-color: #a3b745;
border-color: rgb(146.505952381, 164.4821428571, 62.0178571429);
border-color: #93a43e;
}
.wp-pointer .wp-pointer-content h3:before {
@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
/* Nav Menus */
.nav-menus-php .item-edit:focus:before {
box-shadow: 0 0 0 1px rgb(181.8928571429, 198.3214285714, 104.6785714286), 0 0 2px 1px #a3b745;
box-shadow: 0 0 0 1px #b6c669, 0 0 2px 1px #a3b745;
}
/* Responsive Component */
@ -600,7 +600,7 @@ div#wp-responsive-toggle a:before {
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
background: rgb(64.9802325581, 49.9238372093, 86.3761627907);
background: #413256;
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
@ -653,7 +653,7 @@ div#wp-responsive-toggle a:before {
.wp-core-ui #available-menu-items .item-add:focus:before,
.wp-core-ui #customize-save-button-wrapper .save:focus,
.wp-core-ui #publish-settings:focus {
box-shadow: 0 0 0 1px rgb(181.8928571429, 198.3214285714, 104.6785714286), 0 0 2px 1px #a3b745;
box-shadow: 0 0 0 1px #b6c669, 0 0 2px 1px #a3b745;
}
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
@ -702,7 +702,7 @@ div#wp-responsive-toggle a:before {
}
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
box-shadow: 0 0 0 1px rgb(181.8928571429, 198.3214285714, 104.6785714286), 0 0 2px 1px #a3b745;
box-shadow: 0 0 0 1px #b6c669, 0 0 2px 1px #a3b745;
}
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #a3b745;

File diff suppressed because one or more lines are too long

View File

@ -8,7 +8,7 @@
* may use the function in their own admin CSS files. See #56811.
*/
body {
background: #fff;
background: #f1f1f1;
}
/* Links */
@ -16,7 +16,7 @@ a {
color: #0073aa;
}
a:hover, a:active, a:focus {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
#post-body .misc-pub-post-status:before,
@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
color: #0073aa;
}
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
.media-modal .delete-attachment,
@ -63,7 +63,7 @@ input[type=radio]:checked::before {
.wp-core-ui input[type=reset]:hover,
.wp-core-ui input[type=reset]:active {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
input[type=text]:focus,
@ -98,25 +98,25 @@ textarea:focus {
.wp-core-ui .button:hover,
.wp-core-ui .button.focus,
.wp-core-ui .button:focus {
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
color: rgb(38.4090909091, 42.25, 46.0909090909);
border-color: #717c87;
color: #262a2e;
}
.wp-core-ui .button.focus,
.wp-core-ui .button:focus {
border-color: #7e8993;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: 0 0 0 1px #32373c;
}
.wp-core-ui .button:active {
border-color: #7e8993;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: none;
}
.wp-core-ui .button.active,
.wp-core-ui .button.active:focus,
.wp-core-ui .button.active:hover {
border-color: #a3b745;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: inset 0 2px 5px -3px #a3b745;
}
.wp-core-ui .button.active:focus {
@ -130,15 +130,15 @@ textarea:focus {
.wp-core-ui .button.hover,
.wp-core-ui .button:hover,
.wp-core-ui .button-secondary:hover {
border-color: rgb(130.0119047619, 145.9642857143, 55.0357142857);
color: rgb(130.0119047619, 145.9642857143, 55.0357142857);
border-color: #829237;
color: #829237;
}
.wp-core-ui .button.focus,
.wp-core-ui .button:focus,
.wp-core-ui .button-secondary:focus {
border-color: rgb(181.8928571429, 198.3214285714, 104.6785714286);
color: rgb(97.0238095238, 108.9285714286, 41.0714285714);
box-shadow: 0 0 0 1px rgb(181.8928571429, 198.3214285714, 104.6785714286);
border-color: #b6c669;
color: #616d29;
box-shadow: 0 0 0 1px #b6c669;
}
.wp-core-ui .button-primary:hover {
color: #fff;
@ -149,23 +149,23 @@ textarea:focus {
color: #fff;
}
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
background: rgb(169.2845238095, 188.5464285714, 78.7535714286);
border-color: rgb(153.1035714286, 171.8892857143, 64.8107142857);
background: #a9bd4f;
border-color: #99ac41;
color: #fff;
}
.wp-core-ui .button-primary:focus {
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #a3b745;
}
.wp-core-ui .button-primary:active {
background: rgb(146.505952381, 164.4821428571, 62.0178571429);
border-color: rgb(146.505952381, 164.4821428571, 62.0178571429);
background: #93a43e;
border-color: #93a43e;
color: #fff;
}
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
background: #a3b745;
color: #fff;
border-color: rgb(113.5178571429, 127.4464285714, 48.0535714286);
box-shadow: inset 0 2px 5px -3px hsl(70.5263157895, 45.2380952381%, -0.5882352941%);
border-color: #727f30;
box-shadow: inset 0 2px 5px -3px black;
}
.wp-core-ui .button-group > .button.active {
border-color: #a3b745;
@ -203,14 +203,14 @@ textarea:focus {
}
.wrap .page-title-action:hover {
color: rgb(130.0119047619, 145.9642857143, 55.0357142857);
border-color: rgb(130.0119047619, 145.9642857143, 55.0357142857);
color: #829237;
border-color: #829237;
}
.wrap .page-title-action:focus {
border-color: rgb(181.8928571429, 198.3214285714, 104.6785714286);
color: rgb(97.0238095238, 108.9285714286, 41.0714285714);
box-shadow: 0 0 0 1px rgb(181.8928571429, 198.3214285714, 104.6785714286);
border-color: #b6c669;
color: #616d29;
box-shadow: 0 0 0 1px #b6c669;
}
.view-switch a.current:before {
@ -253,8 +253,8 @@ textarea:focus {
.about-wrap .nav-tab-active,
.nav-tab-active,
.nav-tab-active:hover {
background-color: #fff;
border-bottom-color: #fff;
background-color: #f1f1f1;
border-bottom-color: #f1f1f1;
}
/* Admin Menu: submenu */
@ -262,23 +262,23 @@ textarea:focus {
#adminmenu .wp-has-current-submenu .wp-submenu,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
background: rgb(64.9802325581, 49.9238372093, 86.3761627907);
background: #413256;
}
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
border-right-color: rgb(64.9802325581, 49.9238372093, 86.3761627907);
border-right-color: #413256;
}
#adminmenu .wp-submenu .wp-submenu-head {
color: rgb(203.1, 197.4, 211.2);
color: #cbc5d3;
}
#adminmenu .wp-submenu a,
#adminmenu .wp-has-current-submenu .wp-submenu a,
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
color: rgb(203.1, 197.4, 211.2);
color: #cbc5d3;
}
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
@ -306,7 +306,7 @@ textarea:focus {
ul#adminmenu a.wp-has-current-submenu:after,
ul#adminmenu > li.current > a.current:after {
border-right-color: #fff;
border-right-color: #f1f1f1;
}
#adminmenu li.current a.menu-top,
@ -341,7 +341,7 @@ ul#adminmenu > li.current > a.current:after {
#adminmenu li:hover a .awaiting-mod,
#adminmenu li.menu-top:hover > a .update-plugins {
color: #fff;
background: rgb(64.9802325581, 49.9238372093, 86.3761627907);
background: #413256;
}
/* Admin Menu: collapse button */
@ -380,7 +380,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
color: #a3b745;
background: rgb(64.9802325581, 49.9238372093, 86.3761627907);
background: #413256;
}
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
@ -398,19 +398,19 @@ ul#adminmenu > li.current > a.current:after {
/* Admin Bar: submenu */
#wpadminbar .menupop .ab-sub-wrapper {
background: rgb(64.9802325581, 49.9238372093, 86.3761627907);
background: #413256;
}
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
background: rgb(100.2840283114, 83.3456627907, 124.3543372093);
background: #64537c;
}
#wpadminbar .ab-submenu .ab-item,
#wpadminbar .quicklinks .menupop ul li a,
#wpadminbar .quicklinks .menupop.hover ul li a,
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
color: rgb(203.1, 197.4, 211.2);
color: #cbc5d3;
}
#wpadminbar .quicklinks li .blavatar,
@ -460,7 +460,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
color: #fff;
background: rgb(99.0197674419, 76.0761627907, 131.6238372093);
background: #634c84;
}
/* Admin Bar: recovery mode */
@ -479,13 +479,13 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
color: #fff;
background-color: rgb(190.8, 99.9, 18.9);
background-color: #bf6413;
}
/* Admin Bar: my account */
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
border-color: rgb(99.0197674419, 76.0761627907, 131.6238372093);
background-color: rgb(99.0197674419, 76.0761627907, 131.6238372093);
border-color: #634c84;
background-color: #634c84;
}
#wpadminbar #wp-admin-bar-user-info .display-name {
@ -497,13 +497,13 @@ ul#adminmenu > li.current > a.current:after {
}
#wpadminbar #wp-admin-bar-user-info .username {
color: rgb(203.1, 197.4, 211.2);
color: #cbc5d3;
}
/* Pointers */
.wp-pointer .wp-pointer-content h3 {
background-color: #a3b745;
border-color: rgb(146.505952381, 164.4821428571, 62.0178571429);
border-color: #93a43e;
}
.wp-pointer .wp-pointer-content h3:before {
@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
/* Nav Menus */
.nav-menus-php .item-edit:focus:before {
box-shadow: 0 0 0 1px rgb(181.8928571429, 198.3214285714, 104.6785714286), 0 0 2px 1px #a3b745;
box-shadow: 0 0 0 1px #b6c669, 0 0 2px 1px #a3b745;
}
/* Responsive Component */
@ -600,7 +600,7 @@ div#wp-responsive-toggle a:before {
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
background: rgb(64.9802325581, 49.9238372093, 86.3761627907);
background: #413256;
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
@ -653,7 +653,7 @@ div#wp-responsive-toggle a:before {
.wp-core-ui #available-menu-items .item-add:focus:before,
.wp-core-ui #customize-save-button-wrapper .save:focus,
.wp-core-ui #publish-settings:focus {
box-shadow: 0 0 0 1px rgb(181.8928571429, 198.3214285714, 104.6785714286), 0 0 2px 1px #a3b745;
box-shadow: 0 0 0 1px #b6c669, 0 0 2px 1px #a3b745;
}
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
@ -702,7 +702,7 @@ div#wp-responsive-toggle a:before {
}
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
box-shadow: 0 0 0 1px rgb(181.8928571429, 198.3214285714, 104.6785714286), 0 0 2px 1px #a3b745;
box-shadow: 0 0 0 1px #b6c669, 0 0 2px 1px #a3b745;
}
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #a3b745;

File diff suppressed because one or more lines are too long

View File

@ -1,11 +1,9 @@
$scheme-name: "ectoplasm";
$base-color: #523f6d;
$icon-color: #ece6f6;
$highlight-color: #a3b745;
$notification-color: #d46f15;
@use "../_admin.scss" with (
$scheme-name: "ectoplasm",
$base-color: $base-color,
$icon-color: #ece6f6,
$highlight-color: #a3b745,
$notification-color: #d46f15,
$form-checked: $base-color;
$form-checked: $base-color,
);
@import "../_admin.scss";

View File

@ -16,7 +16,7 @@ a {
color: #0073aa;
}
a:hover, a:active, a:focus {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
#post-body .misc-pub-post-status:before,
@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
color: #0073aa;
}
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
.media-modal .delete-attachment,
@ -63,7 +63,7 @@ input[type=radio]:checked::before {
.wp-core-ui input[type=reset]:hover,
.wp-core-ui input[type=reset]:active {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
input[type=text]:focus,
@ -98,25 +98,25 @@ textarea:focus {
.wp-core-ui .button:hover,
.wp-core-ui .button.focus,
.wp-core-ui .button:focus {
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
color: rgb(38.4090909091, 42.25, 46.0909090909);
border-color: #717c87;
color: #262a2e;
}
.wp-core-ui .button.focus,
.wp-core-ui .button:focus {
border-color: #7e8993;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: 0 0 0 1px #32373c;
}
.wp-core-ui .button:active {
border-color: #7e8993;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: none;
}
.wp-core-ui .button.active,
.wp-core-ui .button.active:focus,
.wp-core-ui .button.active:hover {
border-color: #04a4cc;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: inset 0 2px 5px -3px #04a4cc;
}
.wp-core-ui .button.active:focus {
@ -130,15 +130,15 @@ textarea:focus {
.wp-core-ui .button.hover,
.wp-core-ui .button:hover,
.wp-core-ui .button-secondary:hover {
border-color: rgb(3.0192307692, 123.7884615385, 153.9807692308);
color: rgb(3.0192307692, 123.7884615385, 153.9807692308);
border-color: #037c9a;
color: #037c9a;
}
.wp-core-ui .button.focus,
.wp-core-ui .button:focus,
.wp-core-ui .button-secondary:focus {
border-color: rgb(8.8269230769, 201.9038461538, 250.1730769231);
color: rgb(2.0384615385, 83.5769230769, 103.9615384615);
box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231);
border-color: #09cafa;
color: #025468;
box-shadow: 0 0 0 1px #09cafa;
}
.wp-core-ui .button-primary:hover {
color: #fff;
@ -149,23 +149,23 @@ textarea:focus {
color: #fff;
}
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
background: rgb(4.2942307692, 176.0634615385, 219.0057692308);
border-color: rgb(3.7057692308, 151.9365384615, 188.9942307692);
background: #04b0db;
border-color: #0498bd;
color: #fff;
}
.wp-core-ui .button-primary:focus {
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #04a4cc;
}
.wp-core-ui .button-primary:active {
background: rgb(3.5096153846, 143.8942307692, 178.9903846154);
border-color: rgb(3.5096153846, 143.8942307692, 178.9903846154);
background: #0490b3;
border-color: #0490b3;
color: #fff;
}
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
background: #04a4cc;
color: #fff;
border-color: rgb(2.5288461538, 103.6826923077, 128.9711538462);
box-shadow: inset 0 2px 5px -3px hsl(192, 96.1538461538%, -9.2156862745%);
border-color: #036881;
box-shadow: inset 0 2px 5px -3px black;
}
.wp-core-ui .button-group > .button.active {
border-color: #04a4cc;
@ -203,14 +203,14 @@ textarea:focus {
}
.wrap .page-title-action:hover {
color: rgb(3.0192307692, 123.7884615385, 153.9807692308);
border-color: rgb(3.0192307692, 123.7884615385, 153.9807692308);
color: #037c9a;
border-color: #037c9a;
}
.wrap .page-title-action:focus {
border-color: rgb(8.8269230769, 201.9038461538, 250.1730769231);
color: rgb(2.0384615385, 83.5769230769, 103.9615384615);
box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231);
border-color: #09cafa;
color: #025468;
box-shadow: 0 0 0 1px #09cafa;
}
.view-switch a.current:before {
@ -271,14 +271,14 @@ textarea:focus {
}
#adminmenu .wp-submenu .wp-submenu-head {
color: rgb(104.4, 104.4, 104.4);
color: #686868;
}
#adminmenu .wp-submenu a,
#adminmenu .wp-has-current-submenu .wp-submenu a,
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
color: rgb(104.4, 104.4, 104.4);
color: #686868;
}
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
@ -403,14 +403,14 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
background: rgb(246.85, 246.85, 246.85);
background: #f7f7f7;
}
#wpadminbar .ab-submenu .ab-item,
#wpadminbar .quicklinks .menupop ul li a,
#wpadminbar .quicklinks .menupop.hover ul li a,
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
color: rgb(104.4, 104.4, 104.4);
color: #686868;
}
#wpadminbar .quicklinks li .blavatar,
@ -460,7 +460,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
color: #333;
background: rgb(246.85, 246.85, 246.85);
background: #f7f7f7;
}
/* Admin Bar: recovery mode */
@ -479,13 +479,13 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
color: #fff;
background-color: rgb(192.6, 70.2, 6.3);
background-color: #c14606;
}
/* Admin Bar: my account */
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
border-color: rgb(246.85, 246.85, 246.85);
background-color: rgb(246.85, 246.85, 246.85);
border-color: #f7f7f7;
background-color: #f7f7f7;
}
#wpadminbar #wp-admin-bar-user-info .display-name {
@ -497,13 +497,13 @@ ul#adminmenu > li.current > a.current:after {
}
#wpadminbar #wp-admin-bar-user-info .username {
color: rgb(104.4, 104.4, 104.4);
color: #686868;
}
/* Pointers */
.wp-pointer .wp-pointer-content h3 {
background-color: #04a4cc;
border-color: rgb(3.5096153846, 143.8942307692, 178.9903846154);
border-color: #0490b3;
}
.wp-pointer .wp-pointer-content h3:before {
@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
/* Nav Menus */
.nav-menus-php .item-edit:focus:before {
box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231), 0 0 2px 1px #04a4cc;
box-shadow: 0 0 0 1px #09cafa, 0 0 2px 1px #04a4cc;
}
/* Responsive Component */
@ -653,7 +653,7 @@ div#wp-responsive-toggle a:before {
.wp-core-ui #available-menu-items .item-add:focus:before,
.wp-core-ui #customize-save-button-wrapper .save:focus,
.wp-core-ui #publish-settings:focus {
box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231), 0 0 2px 1px #04a4cc;
box-shadow: 0 0 0 1px #09cafa, 0 0 2px 1px #04a4cc;
}
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
@ -702,7 +702,7 @@ div#wp-responsive-toggle a:before {
}
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231), 0 0 2px 1px #04a4cc;
box-shadow: 0 0 0 1px #09cafa, 0 0 2px 1px #04a4cc;
}
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #04a4cc;

File diff suppressed because one or more lines are too long

View File

@ -16,7 +16,7 @@ a {
color: #0073aa;
}
a:hover, a:active, a:focus {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
#post-body .misc-pub-post-status:before,
@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
color: #0073aa;
}
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
.media-modal .delete-attachment,
@ -63,7 +63,7 @@ input[type=radio]:checked::before {
.wp-core-ui input[type=reset]:hover,
.wp-core-ui input[type=reset]:active {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
input[type=text]:focus,
@ -98,25 +98,25 @@ textarea:focus {
.wp-core-ui .button:hover,
.wp-core-ui .button.focus,
.wp-core-ui .button:focus {
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
color: rgb(38.4090909091, 42.25, 46.0909090909);
border-color: #717c87;
color: #262a2e;
}
.wp-core-ui .button.focus,
.wp-core-ui .button:focus {
border-color: #7e8993;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: 0 0 0 1px #32373c;
}
.wp-core-ui .button:active {
border-color: #7e8993;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: none;
}
.wp-core-ui .button.active,
.wp-core-ui .button.active:focus,
.wp-core-ui .button.active:hover {
border-color: #04a4cc;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: inset 0 2px 5px -3px #04a4cc;
}
.wp-core-ui .button.active:focus {
@ -130,15 +130,15 @@ textarea:focus {
.wp-core-ui .button.hover,
.wp-core-ui .button:hover,
.wp-core-ui .button-secondary:hover {
border-color: rgb(3.0192307692, 123.7884615385, 153.9807692308);
color: rgb(3.0192307692, 123.7884615385, 153.9807692308);
border-color: #037c9a;
color: #037c9a;
}
.wp-core-ui .button.focus,
.wp-core-ui .button:focus,
.wp-core-ui .button-secondary:focus {
border-color: rgb(8.8269230769, 201.9038461538, 250.1730769231);
color: rgb(2.0384615385, 83.5769230769, 103.9615384615);
box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231);
border-color: #09cafa;
color: #025468;
box-shadow: 0 0 0 1px #09cafa;
}
.wp-core-ui .button-primary:hover {
color: #fff;
@ -149,23 +149,23 @@ textarea:focus {
color: #fff;
}
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
background: rgb(4.2942307692, 176.0634615385, 219.0057692308);
border-color: rgb(3.7057692308, 151.9365384615, 188.9942307692);
background: #04b0db;
border-color: #0498bd;
color: #fff;
}
.wp-core-ui .button-primary:focus {
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #04a4cc;
}
.wp-core-ui .button-primary:active {
background: rgb(3.5096153846, 143.8942307692, 178.9903846154);
border-color: rgb(3.5096153846, 143.8942307692, 178.9903846154);
background: #0490b3;
border-color: #0490b3;
color: #fff;
}
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
background: #04a4cc;
color: #fff;
border-color: rgb(2.5288461538, 103.6826923077, 128.9711538462);
box-shadow: inset 0 2px 5px -3px hsl(192, 96.1538461538%, -9.2156862745%);
border-color: #036881;
box-shadow: inset 0 2px 5px -3px black;
}
.wp-core-ui .button-group > .button.active {
border-color: #04a4cc;
@ -203,14 +203,14 @@ textarea:focus {
}
.wrap .page-title-action:hover {
color: rgb(3.0192307692, 123.7884615385, 153.9807692308);
border-color: rgb(3.0192307692, 123.7884615385, 153.9807692308);
color: #037c9a;
border-color: #037c9a;
}
.wrap .page-title-action:focus {
border-color: rgb(8.8269230769, 201.9038461538, 250.1730769231);
color: rgb(2.0384615385, 83.5769230769, 103.9615384615);
box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231);
border-color: #09cafa;
color: #025468;
box-shadow: 0 0 0 1px #09cafa;
}
.view-switch a.current:before {
@ -271,14 +271,14 @@ textarea:focus {
}
#adminmenu .wp-submenu .wp-submenu-head {
color: rgb(104.4, 104.4, 104.4);
color: #686868;
}
#adminmenu .wp-submenu a,
#adminmenu .wp-has-current-submenu .wp-submenu a,
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
color: rgb(104.4, 104.4, 104.4);
color: #686868;
}
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
@ -403,14 +403,14 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
background: rgb(246.85, 246.85, 246.85);
background: #f7f7f7;
}
#wpadminbar .ab-submenu .ab-item,
#wpadminbar .quicklinks .menupop ul li a,
#wpadminbar .quicklinks .menupop.hover ul li a,
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
color: rgb(104.4, 104.4, 104.4);
color: #686868;
}
#wpadminbar .quicklinks li .blavatar,
@ -460,7 +460,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
color: #333;
background: rgb(246.85, 246.85, 246.85);
background: #f7f7f7;
}
/* Admin Bar: recovery mode */
@ -479,13 +479,13 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
color: #fff;
background-color: rgb(192.6, 70.2, 6.3);
background-color: #c14606;
}
/* Admin Bar: my account */
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
border-color: rgb(246.85, 246.85, 246.85);
background-color: rgb(246.85, 246.85, 246.85);
border-color: #f7f7f7;
background-color: #f7f7f7;
}
#wpadminbar #wp-admin-bar-user-info .display-name {
@ -497,13 +497,13 @@ ul#adminmenu > li.current > a.current:after {
}
#wpadminbar #wp-admin-bar-user-info .username {
color: rgb(104.4, 104.4, 104.4);
color: #686868;
}
/* Pointers */
.wp-pointer .wp-pointer-content h3 {
background-color: #04a4cc;
border-color: rgb(3.5096153846, 143.8942307692, 178.9903846154);
border-color: #0490b3;
}
.wp-pointer .wp-pointer-content h3:before {
@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
/* Nav Menus */
.nav-menus-php .item-edit:focus:before {
box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231), 0 0 2px 1px #04a4cc;
box-shadow: 0 0 0 1px #09cafa, 0 0 2px 1px #04a4cc;
}
/* Responsive Component */
@ -653,7 +653,7 @@ div#wp-responsive-toggle a:before {
.wp-core-ui #available-menu-items .item-add:focus:before,
.wp-core-ui #customize-save-button-wrapper .save:focus,
.wp-core-ui #publish-settings:focus {
box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231), 0 0 2px 1px #04a4cc;
box-shadow: 0 0 0 1px #09cafa, 0 0 2px 1px #04a4cc;
}
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
@ -702,7 +702,7 @@ div#wp-responsive-toggle a:before {
}
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231), 0 0 2px 1px #04a4cc;
box-shadow: 0 0 0 1px #09cafa, 0 0 2px 1px #04a4cc;
}
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #04a4cc;

File diff suppressed because one or more lines are too long

View File

@ -1,36 +1,31 @@
@use "sass:color";
$highlight-color: #04a4cc;
$scheme-name: "light";
$base-color: #e5e5e5;
$icon-color: #999;
$text-color: #333;
$highlight-color: #04a4cc;
$notification-color: #d64e07;
$body-background: #f5f5f5;
$menu-highlight-text: #fff;
$menu-highlight-icon: #ccc;
$menu-highlight-background: #888;
$menu-bubble-text: #fff;
$menu-avatar-frame: #aaa;
$menu-submenu-background: #fff;
@use "../_admin.scss" with (
$scheme-name: "light",
$base-color: #e5e5e5,
$icon-color: #999,
$text-color: $text-color,
$highlight-color: $highlight-color,
$notification-color: #d64e07,
$menu-collapse-text: #777;
$menu-collapse-focus-icon: #555;
$body-background: #f5f5f5,
$dashboard-accent-1: $highlight-color;
$dashboard-accent-2: desaturate( lighten( $highlight-color, 7% ), 15% );
$dashboard-icon-background: $text-color;
$menu-highlight-text: #fff,
$menu-highlight-icon: #ccc,
$menu-highlight-background: #888,
$menu-bubble-text: #fff,
$menu-submenu-background: #fff,
$menu-collapse-text: #777,
$menu-collapse-focus-icon: #555,
$dashboard-accent-1: $highlight-color,
$dashboard-accent-2: color.adjust(color.adjust($highlight-color, $lightness: 7%), $saturation: -15%),
$dashboard-icon-background: $text-color
);
@import "../_admin.scss";
/* Override the theme filter highlight color for this scheme */
.theme-section.current,
.theme-filter.current {
border-bottom-color: admin.$highlight-color;
border-bottom-color: $highlight-color;
}

View File

@ -8,7 +8,7 @@
* may use the function in their own admin CSS files. See #56811.
*/
body {
background: #fff;
background: #f1f1f1;
}
/* Links */
@ -16,7 +16,7 @@ a {
color: #0073aa;
}
a:hover, a:active, a:focus {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
#post-body .misc-pub-post-status:before,
@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
color: #0073aa;
}
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
.media-modal .delete-attachment,
@ -63,7 +63,7 @@ input[type=radio]:checked::before {
.wp-core-ui input[type=reset]:hover,
.wp-core-ui input[type=reset]:active {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
input[type=text]:focus,
@ -98,25 +98,25 @@ textarea:focus {
.wp-core-ui .button:hover,
.wp-core-ui .button.focus,
.wp-core-ui .button:focus {
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
color: rgb(38.4090909091, 42.25, 46.0909090909);
border-color: #717c87;
color: #262a2e;
}
.wp-core-ui .button.focus,
.wp-core-ui .button:focus {
border-color: #7e8993;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: 0 0 0 1px #32373c;
}
.wp-core-ui .button:active {
border-color: #7e8993;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: none;
}
.wp-core-ui .button.active,
.wp-core-ui .button.active:focus,
.wp-core-ui .button.active:hover {
border-color: #e14d43;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: inset 0 2px 5px -3px #e14d43;
}
.wp-core-ui .button.active:focus {
@ -130,15 +130,15 @@ textarea:focus {
.wp-core-ui .button.hover,
.wp-core-ui .button:hover,
.wp-core-ui .button-secondary:hover {
border-color: rgb(207.8348623853, 44.2201834862, 33.1651376147);
color: rgb(207.8348623853, 44.2201834862, 33.1651376147);
border-color: #d02c21;
color: #d02c21;
}
.wp-core-ui .button.focus,
.wp-core-ui .button:focus,
.wp-core-ui .button-secondary:focus {
border-color: rgb(232.0183486239, 118.6422018349, 110.9816513761);
color: rgb(163.8532110092, 34.8623853211, 26.1467889908);
box-shadow: 0 0 0 1px rgb(232.0183486239, 118.6422018349, 110.9816513761);
border-color: #e8776f;
color: #a4231a;
box-shadow: 0 0 0 1px #e8776f;
}
.wp-core-ui .button-primary:hover {
color: #fff;
@ -149,23 +149,23 @@ textarea:focus {
color: #fff;
}
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
background: rgb(227.1055045872, 89.4926605505, 80.1944954128);
border-color: rgb(222.8944954128, 64.5073394495, 53.8055045872);
background: #e35950;
border-color: #df4136;
color: #fff;
}
.wp-core-ui .button-primary:focus {
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #e14d43;
}
.wp-core-ui .button-primary:active {
background: rgb(221.4908256881, 56.1788990826, 45.0091743119);
border-color: rgb(221.4908256881, 56.1788990826, 45.0091743119);
background: #dd382d;
border-color: #dd382d;
color: #fff;
}
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
background: #e14d43;
color: #fff;
border-color: rgb(185.8440366972, 39.5412844037, 29.6559633028);
box-shadow: inset 0 2px 5px -3px rgb(31.9082568807, 6.7889908257, 5.0917431193);
border-color: #ba281e;
box-shadow: inset 0 2px 5px -3px #200705;
}
.wp-core-ui .button-group > .button.active {
border-color: #e14d43;
@ -203,14 +203,14 @@ textarea:focus {
}
.wrap .page-title-action:hover {
color: rgb(207.8348623853, 44.2201834862, 33.1651376147);
border-color: rgb(207.8348623853, 44.2201834862, 33.1651376147);
color: #d02c21;
border-color: #d02c21;
}
.wrap .page-title-action:focus {
border-color: rgb(232.0183486239, 118.6422018349, 110.9816513761);
color: rgb(163.8532110092, 34.8623853211, 26.1467889908);
box-shadow: 0 0 0 1px rgb(232.0183486239, 118.6422018349, 110.9816513761);
border-color: #e8776f;
color: #a4231a;
box-shadow: 0 0 0 1px #e8776f;
}
.view-switch a.current:before {
@ -253,8 +253,8 @@ textarea:focus {
.about-wrap .nav-tab-active,
.nav-tab-active,
.nav-tab-active:hover {
background-color: #fff;
border-bottom-color: #fff;
background-color: #f1f1f1;
border-bottom-color: #f1f1f1;
}
/* Admin Menu: submenu */
@ -262,23 +262,23 @@ textarea:focus {
#adminmenu .wp-has-current-submenu .wp-submenu,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
background: rgb(37.5230769231, 40.9974358974, 43.7769230769);
background: #26292c;
}
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
border-left-color: rgb(37.5230769231, 40.9974358974, 43.7769230769);
border-left-color: #26292c;
}
#adminmenu .wp-submenu .wp-submenu-head {
color: rgb(194.7, 196.2, 197.4);
color: #c3c4c5;
}
#adminmenu .wp-submenu a,
#adminmenu .wp-has-current-submenu .wp-submenu a,
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
color: rgb(194.7, 196.2, 197.4);
color: #c3c4c5;
}
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
@ -306,7 +306,7 @@ textarea:focus {
ul#adminmenu a.wp-has-current-submenu:after,
ul#adminmenu > li.current > a.current:after {
border-left-color: #fff;
border-left-color: #f1f1f1;
}
#adminmenu li.current a.menu-top,
@ -341,7 +341,7 @@ ul#adminmenu > li.current > a.current:after {
#adminmenu li:hover a .awaiting-mod,
#adminmenu li.menu-top:hover > a .update-plugins {
color: #fff;
background: rgb(37.5230769231, 40.9974358974, 43.7769230769);
background: #26292c;
}
/* Admin Menu: collapse button */
@ -380,7 +380,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
color: #e14d43;
background: rgb(37.5230769231, 40.9974358974, 43.7769230769);
background: #26292c;
}
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
@ -398,19 +398,19 @@ ul#adminmenu > li.current > a.current:after {
/* Admin Bar: submenu */
#wpadminbar .menupop .ab-sub-wrapper {
background: rgb(37.5230769231, 40.9974358974, 43.7769230769);
background: #26292c;
}
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
background: rgb(75.8214230769, 76.4087307692, 76.8785769231);
background: #4c4c4d;
}
#wpadminbar .ab-submenu .ab-item,
#wpadminbar .quicklinks .menupop ul li a,
#wpadminbar .quicklinks .menupop.hover ul li a,
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
color: rgb(194.7, 196.2, 197.4);
color: #c3c4c5;
}
#wpadminbar .quicklinks li .blavatar,
@ -460,7 +460,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
color: #fff;
background: rgb(70.4769230769, 77.0025641026, 82.2230769231);
background: #464d52;
}
/* Admin Bar: recovery mode */
@ -479,13 +479,13 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
color: #fff;
background-color: rgb(94.5, 151.2, 168.3);
background-color: #5f97a8;
}
/* Admin Bar: my account */
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
border-color: rgb(70.4769230769, 77.0025641026, 82.2230769231);
background-color: rgb(70.4769230769, 77.0025641026, 82.2230769231);
border-color: #464d52;
background-color: #464d52;
}
#wpadminbar #wp-admin-bar-user-info .display-name {
@ -497,13 +497,13 @@ ul#adminmenu > li.current > a.current:after {
}
#wpadminbar #wp-admin-bar-user-info .username {
color: rgb(194.7, 196.2, 197.4);
color: #c3c4c5;
}
/* Pointers */
.wp-pointer .wp-pointer-content h3 {
background-color: #e14d43;
border-color: rgb(221.4908256881, 56.1788990826, 45.0091743119);
border-color: #dd382d;
}
.wp-pointer .wp-pointer-content h3:before {
@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
/* Nav Menus */
.nav-menus-php .item-edit:focus:before {
box-shadow: 0 0 0 1px rgb(232.0183486239, 118.6422018349, 110.9816513761), 0 0 2px 1px #e14d43;
box-shadow: 0 0 0 1px #e8776f, 0 0 2px 1px #e14d43;
}
/* Responsive Component */
@ -600,7 +600,7 @@ div#wp-responsive-toggle a:before {
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
background: rgb(37.5230769231, 40.9974358974, 43.7769230769);
background: #26292c;
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
@ -653,7 +653,7 @@ div#wp-responsive-toggle a:before {
.wp-core-ui #available-menu-items .item-add:focus:before,
.wp-core-ui #customize-save-button-wrapper .save:focus,
.wp-core-ui #publish-settings:focus {
box-shadow: 0 0 0 1px rgb(232.0183486239, 118.6422018349, 110.9816513761), 0 0 2px 1px #e14d43;
box-shadow: 0 0 0 1px #e8776f, 0 0 2px 1px #e14d43;
}
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
@ -702,7 +702,7 @@ div#wp-responsive-toggle a:before {
}
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
box-shadow: 0 0 0 1px rgb(232.0183486239, 118.6422018349, 110.9816513761), 0 0 2px 1px #e14d43;
box-shadow: 0 0 0 1px #e8776f, 0 0 2px 1px #e14d43;
}
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #e14d43;

File diff suppressed because one or more lines are too long

View File

@ -8,7 +8,7 @@
* may use the function in their own admin CSS files. See #56811.
*/
body {
background: #fff;
background: #f1f1f1;
}
/* Links */
@ -16,7 +16,7 @@ a {
color: #0073aa;
}
a:hover, a:active, a:focus {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
#post-body .misc-pub-post-status:before,
@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
color: #0073aa;
}
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
.media-modal .delete-attachment,
@ -63,7 +63,7 @@ input[type=radio]:checked::before {
.wp-core-ui input[type=reset]:hover,
.wp-core-ui input[type=reset]:active {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
input[type=text]:focus,
@ -98,25 +98,25 @@ textarea:focus {
.wp-core-ui .button:hover,
.wp-core-ui .button.focus,
.wp-core-ui .button:focus {
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
color: rgb(38.4090909091, 42.25, 46.0909090909);
border-color: #717c87;
color: #262a2e;
}
.wp-core-ui .button.focus,
.wp-core-ui .button:focus {
border-color: #7e8993;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: 0 0 0 1px #32373c;
}
.wp-core-ui .button:active {
border-color: #7e8993;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: none;
}
.wp-core-ui .button.active,
.wp-core-ui .button.active:focus,
.wp-core-ui .button.active:hover {
border-color: #e14d43;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: inset 0 2px 5px -3px #e14d43;
}
.wp-core-ui .button.active:focus {
@ -130,15 +130,15 @@ textarea:focus {
.wp-core-ui .button.hover,
.wp-core-ui .button:hover,
.wp-core-ui .button-secondary:hover {
border-color: rgb(207.8348623853, 44.2201834862, 33.1651376147);
color: rgb(207.8348623853, 44.2201834862, 33.1651376147);
border-color: #d02c21;
color: #d02c21;
}
.wp-core-ui .button.focus,
.wp-core-ui .button:focus,
.wp-core-ui .button-secondary:focus {
border-color: rgb(232.0183486239, 118.6422018349, 110.9816513761);
color: rgb(163.8532110092, 34.8623853211, 26.1467889908);
box-shadow: 0 0 0 1px rgb(232.0183486239, 118.6422018349, 110.9816513761);
border-color: #e8776f;
color: #a4231a;
box-shadow: 0 0 0 1px #e8776f;
}
.wp-core-ui .button-primary:hover {
color: #fff;
@ -149,23 +149,23 @@ textarea:focus {
color: #fff;
}
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
background: rgb(227.1055045872, 89.4926605505, 80.1944954128);
border-color: rgb(222.8944954128, 64.5073394495, 53.8055045872);
background: #e35950;
border-color: #df4136;
color: #fff;
}
.wp-core-ui .button-primary:focus {
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #e14d43;
}
.wp-core-ui .button-primary:active {
background: rgb(221.4908256881, 56.1788990826, 45.0091743119);
border-color: rgb(221.4908256881, 56.1788990826, 45.0091743119);
background: #dd382d;
border-color: #dd382d;
color: #fff;
}
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
background: #e14d43;
color: #fff;
border-color: rgb(185.8440366972, 39.5412844037, 29.6559633028);
box-shadow: inset 0 2px 5px -3px rgb(31.9082568807, 6.7889908257, 5.0917431193);
border-color: #ba281e;
box-shadow: inset 0 2px 5px -3px #200705;
}
.wp-core-ui .button-group > .button.active {
border-color: #e14d43;
@ -203,14 +203,14 @@ textarea:focus {
}
.wrap .page-title-action:hover {
color: rgb(207.8348623853, 44.2201834862, 33.1651376147);
border-color: rgb(207.8348623853, 44.2201834862, 33.1651376147);
color: #d02c21;
border-color: #d02c21;
}
.wrap .page-title-action:focus {
border-color: rgb(232.0183486239, 118.6422018349, 110.9816513761);
color: rgb(163.8532110092, 34.8623853211, 26.1467889908);
box-shadow: 0 0 0 1px rgb(232.0183486239, 118.6422018349, 110.9816513761);
border-color: #e8776f;
color: #a4231a;
box-shadow: 0 0 0 1px #e8776f;
}
.view-switch a.current:before {
@ -253,8 +253,8 @@ textarea:focus {
.about-wrap .nav-tab-active,
.nav-tab-active,
.nav-tab-active:hover {
background-color: #fff;
border-bottom-color: #fff;
background-color: #f1f1f1;
border-bottom-color: #f1f1f1;
}
/* Admin Menu: submenu */
@ -262,23 +262,23 @@ textarea:focus {
#adminmenu .wp-has-current-submenu .wp-submenu,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
background: rgb(37.5230769231, 40.9974358974, 43.7769230769);
background: #26292c;
}
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
border-right-color: rgb(37.5230769231, 40.9974358974, 43.7769230769);
border-right-color: #26292c;
}
#adminmenu .wp-submenu .wp-submenu-head {
color: rgb(194.7, 196.2, 197.4);
color: #c3c4c5;
}
#adminmenu .wp-submenu a,
#adminmenu .wp-has-current-submenu .wp-submenu a,
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
color: rgb(194.7, 196.2, 197.4);
color: #c3c4c5;
}
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
@ -306,7 +306,7 @@ textarea:focus {
ul#adminmenu a.wp-has-current-submenu:after,
ul#adminmenu > li.current > a.current:after {
border-right-color: #fff;
border-right-color: #f1f1f1;
}
#adminmenu li.current a.menu-top,
@ -341,7 +341,7 @@ ul#adminmenu > li.current > a.current:after {
#adminmenu li:hover a .awaiting-mod,
#adminmenu li.menu-top:hover > a .update-plugins {
color: #fff;
background: rgb(37.5230769231, 40.9974358974, 43.7769230769);
background: #26292c;
}
/* Admin Menu: collapse button */
@ -380,7 +380,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
color: #e14d43;
background: rgb(37.5230769231, 40.9974358974, 43.7769230769);
background: #26292c;
}
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
@ -398,19 +398,19 @@ ul#adminmenu > li.current > a.current:after {
/* Admin Bar: submenu */
#wpadminbar .menupop .ab-sub-wrapper {
background: rgb(37.5230769231, 40.9974358974, 43.7769230769);
background: #26292c;
}
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
background: rgb(75.8214230769, 76.4087307692, 76.8785769231);
background: #4c4c4d;
}
#wpadminbar .ab-submenu .ab-item,
#wpadminbar .quicklinks .menupop ul li a,
#wpadminbar .quicklinks .menupop.hover ul li a,
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
color: rgb(194.7, 196.2, 197.4);
color: #c3c4c5;
}
#wpadminbar .quicklinks li .blavatar,
@ -460,7 +460,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
color: #fff;
background: rgb(70.4769230769, 77.0025641026, 82.2230769231);
background: #464d52;
}
/* Admin Bar: recovery mode */
@ -479,13 +479,13 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
color: #fff;
background-color: rgb(94.5, 151.2, 168.3);
background-color: #5f97a8;
}
/* Admin Bar: my account */
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
border-color: rgb(70.4769230769, 77.0025641026, 82.2230769231);
background-color: rgb(70.4769230769, 77.0025641026, 82.2230769231);
border-color: #464d52;
background-color: #464d52;
}
#wpadminbar #wp-admin-bar-user-info .display-name {
@ -497,13 +497,13 @@ ul#adminmenu > li.current > a.current:after {
}
#wpadminbar #wp-admin-bar-user-info .username {
color: rgb(194.7, 196.2, 197.4);
color: #c3c4c5;
}
/* Pointers */
.wp-pointer .wp-pointer-content h3 {
background-color: #e14d43;
border-color: rgb(221.4908256881, 56.1788990826, 45.0091743119);
border-color: #dd382d;
}
.wp-pointer .wp-pointer-content h3:before {
@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
/* Nav Menus */
.nav-menus-php .item-edit:focus:before {
box-shadow: 0 0 0 1px rgb(232.0183486239, 118.6422018349, 110.9816513761), 0 0 2px 1px #e14d43;
box-shadow: 0 0 0 1px #e8776f, 0 0 2px 1px #e14d43;
}
/* Responsive Component */
@ -600,7 +600,7 @@ div#wp-responsive-toggle a:before {
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
background: rgb(37.5230769231, 40.9974358974, 43.7769230769);
background: #26292c;
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
@ -653,7 +653,7 @@ div#wp-responsive-toggle a:before {
.wp-core-ui #available-menu-items .item-add:focus:before,
.wp-core-ui #customize-save-button-wrapper .save:focus,
.wp-core-ui #publish-settings:focus {
box-shadow: 0 0 0 1px rgb(232.0183486239, 118.6422018349, 110.9816513761), 0 0 2px 1px #e14d43;
box-shadow: 0 0 0 1px #e8776f, 0 0 2px 1px #e14d43;
}
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
@ -702,7 +702,7 @@ div#wp-responsive-toggle a:before {
}
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
box-shadow: 0 0 0 1px rgb(232.0183486239, 118.6422018349, 110.9816513761), 0 0 2px 1px #e14d43;
box-shadow: 0 0 0 1px #e8776f, 0 0 2px 1px #e14d43;
}
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #e14d43;

File diff suppressed because one or more lines are too long

View File

@ -1,14 +1,8 @@
@use "sass:color";
$scheme-name: "midnight";
$base-color: #363b3f;
$highlight-color: #e14d43;
$notification-color: #69a8bb;
@use "../_admin.scss" with (
$scheme-name: "midnight",
$base-color: $base-color,
$highlight-color: $highlight-color,
$notification-color: $notification-color,
$dashboard-accent-2: mix($base-color, $notification-color, 90%);
$dashboard-accent-2: color.mix($base-color, $notification-color, 90%),
);
@import "../_admin.scss";

View File

@ -8,7 +8,7 @@
* may use the function in their own admin CSS files. See #56811.
*/
body {
background: #fff;
background: #f1f1f1;
}
/* Links */
@ -16,7 +16,7 @@ a {
color: #3858e9;
}
a:hover, a:active, a:focus {
color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
color: #183ad6;
}
#post-body .misc-pub-post-status:before,
@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
color: #3858e9;
}
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
color: #183ad6;
}
.media-modal .delete-attachment,
@ -63,7 +63,7 @@ input[type=radio]:checked::before {
.wp-core-ui input[type=reset]:hover,
.wp-core-ui input[type=reset]:active {
color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
color: #183ad6;
}
input[type=text]:focus,
@ -98,25 +98,25 @@ textarea:focus {
.wp-core-ui .button:hover,
.wp-core-ui .button.focus,
.wp-core-ui .button:focus {
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
color: rgb(38.4090909091, 42.25, 46.0909090909);
border-color: #717c87;
color: #262a2e;
}
.wp-core-ui .button.focus,
.wp-core-ui .button:focus {
border-color: #7e8993;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: 0 0 0 1px #32373c;
}
.wp-core-ui .button:active {
border-color: #7e8993;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: none;
}
.wp-core-ui .button.active,
.wp-core-ui .button.active:focus,
.wp-core-ui .button.active:hover {
border-color: #3858e9;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: inset 0 2px 5px -3px #3858e9;
}
.wp-core-ui .button.active:focus {
@ -130,15 +130,15 @@ textarea:focus {
.wp-core-ui .button.hover,
.wp-core-ui .button:hover,
.wp-core-ui .button-secondary:hover {
border-color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
border-color: #183ad6;
color: #183ad6;
}
.wp-core-ui .button.focus,
.wp-core-ui .button:focus,
.wp-core-ui .button-secondary:focus {
border-color: rgb(101.9230769231, 126.5384615385, 238.0769230769);
color: rgb(18.6153846154, 45.6923076923, 168.3846153846);
box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769);
border-color: #667fee;
color: #132ea8;
box-shadow: 0 0 0 1px #667fee;
}
.wp-core-ui .button-primary:hover {
color: #fff;
@ -149,23 +149,23 @@ textarea:focus {
color: #fff;
}
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
background: rgb(69.7769230769, 99.5615384615, 234.5230769231);
border-color: rgb(42.2230769231, 76.4384615385, 231.4769230769);
background: #4664eb;
border-color: #2a4ce7;
color: #fff;
}
.wp-core-ui .button-primary:focus {
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #3858e9;
}
.wp-core-ui .button-primary:active {
background: rgb(33.0384615385, 68.7307692308, 230.4615384615);
border-color: rgb(33.0384615385, 68.7307692308, 230.4615384615);
background: #2145e6;
border-color: #2145e6;
color: #fff;
}
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
background: #3858e9;
color: #fff;
border-color: rgb(21.1538461538, 51.9230769231, 191.3461538462);
box-shadow: inset 0 2px 5px -3px rgb(3.3846153846, 8.3076923077, 30.6153846154);
border-color: #1534bf;
box-shadow: inset 0 2px 5px -3px #03081f;
}
.wp-core-ui .button-group > .button.active {
border-color: #3858e9;
@ -203,14 +203,14 @@ textarea:focus {
}
.wrap .page-title-action:hover {
color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
border-color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
color: #183ad6;
border-color: #183ad6;
}
.wrap .page-title-action:focus {
border-color: rgb(101.9230769231, 126.5384615385, 238.0769230769);
color: rgb(18.6153846154, 45.6923076923, 168.3846153846);
box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769);
border-color: #667fee;
color: #132ea8;
box-shadow: 0 0 0 1px #667fee;
}
.view-switch a.current:before {
@ -253,8 +253,8 @@ textarea:focus {
.about-wrap .nav-tab-active,
.nav-tab-active,
.nav-tab-active:hover {
background-color: #fff;
border-bottom-color: #fff;
background-color: #f1f1f1;
border-bottom-color: #f1f1f1;
}
/* Admin Menu: submenu */
@ -262,23 +262,23 @@ textarea:focus {
#adminmenu .wp-has-current-submenu .wp-submenu,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
background: rgb(12.15, 12.15, 12.15);
background: #0c0c0c;
}
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
border-left-color: rgb(12.15, 12.15, 12.15);
border-left-color: #0c0c0c;
}
#adminmenu .wp-submenu .wp-submenu-head {
color: rgb(187.5, 187.5, 187.5);
color: #bcbcbc;
}
#adminmenu .wp-submenu a,
#adminmenu .wp-has-current-submenu .wp-submenu a,
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
color: rgb(187.5, 187.5, 187.5);
color: #bcbcbc;
}
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
@ -287,7 +287,7 @@ textarea:focus {
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
color: #7b90ff;
color: #33f078;
}
/* Admin Menu: current */
@ -301,12 +301,12 @@ textarea:focus {
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus {
color: #7b90ff;
color: #33f078;
}
ul#adminmenu a.wp-has-current-submenu:after,
ul#adminmenu > li.current > a.current:after {
border-left-color: #fff;
border-left-color: #f1f1f1;
}
#adminmenu li.current a.menu-top,
@ -341,7 +341,7 @@ ul#adminmenu > li.current > a.current:after {
#adminmenu li:hover a .awaiting-mod,
#adminmenu li.menu-top:hover > a .update-plugins {
color: #fff;
background: rgb(12.15, 12.15, 12.15);
background: #0c0c0c;
}
/* Admin Menu: collapse button */
@ -351,7 +351,7 @@ ul#adminmenu > li.current > a.current:after {
#collapse-button:hover,
#collapse-button:focus {
color: #7b90ff;
color: #33f078;
}
/* Admin Bar */
@ -379,38 +379,38 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus,
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
color: #7b90ff;
background: rgb(12.15, 12.15, 12.15);
color: #33f078;
background: #0c0c0c;
}
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
#wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label,
#wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label {
color: #7b90ff;
color: #33f078;
}
#wpadminbar:not(.mobile) li:hover .ab-icon:before,
#wpadminbar:not(.mobile) li:hover .ab-item:before,
#wpadminbar:not(.mobile) li:hover .ab-item:after,
#wpadminbar:not(.mobile) li:hover #adminbarsearch:before {
color: #7b90ff;
color: #33f078;
}
/* Admin Bar: submenu */
#wpadminbar .menupop .ab-sub-wrapper {
background: rgb(12.15, 12.15, 12.15);
background: #0c0c0c;
}
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
background: rgb(47.85, 47.85, 47.85);
background: #303030;
}
#wpadminbar .ab-submenu .ab-item,
#wpadminbar .quicklinks .menupop ul li a,
#wpadminbar .quicklinks .menupop.hover ul li a,
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
color: rgb(187.5, 187.5, 187.5);
color: #bcbcbc;
}
#wpadminbar .quicklinks li .blavatar,
@ -436,7 +436,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar li.hover .ab-item:before,
#wpadminbar li:hover #adminbarsearch:before,
#wpadminbar li #adminbarsearch.adminbar-focused:before {
color: #7b90ff;
color: #33f078;
}
#wpadminbar .quicklinks li a:hover .blavatar,
@ -445,7 +445,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar .menupop .menupop > .ab-item:hover:before,
#wpadminbar.mobile .quicklinks .ab-icon:before,
#wpadminbar.mobile .quicklinks .ab-item:before {
color: #7b90ff;
color: #33f078;
}
#wpadminbar.mobile .quicklinks .hover .ab-icon:before,
@ -460,7 +460,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
color: #fff;
background: rgb(47.85, 47.85, 47.85);
background: #303030;
}
/* Admin Bar: recovery mode */
@ -479,13 +479,13 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
color: #fff;
background-color: rgb(50.4, 79.2, 209.7);
background-color: #324fd2;
}
/* Admin Bar: my account */
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
border-color: rgb(47.85, 47.85, 47.85);
background-color: rgb(47.85, 47.85, 47.85);
border-color: #303030;
background-color: #303030;
}
#wpadminbar #wp-admin-bar-user-info .display-name {
@ -493,17 +493,17 @@ ul#adminmenu > li.current > a.current:after {
}
#wpadminbar #wp-admin-bar-user-info a:hover .display-name {
color: #7b90ff;
color: #33f078;
}
#wpadminbar #wp-admin-bar-user-info .username {
color: rgb(187.5, 187.5, 187.5);
color: #bcbcbc;
}
/* Pointers */
.wp-pointer .wp-pointer-content h3 {
background-color: #3858e9;
border-color: rgb(33.0384615385, 68.7307692308, 230.4615384615);
border-color: #2145e6;
}
.wp-pointer .wp-pointer-content h3:before {
@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
/* Nav Menus */
.nav-menus-php .item-edit:focus:before {
box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769), 0 0 2px 1px #3858e9;
box-shadow: 0 0 0 1px #667fee, 0 0 2px 1px #3858e9;
}
/* Responsive Component */
@ -600,7 +600,7 @@ div#wp-responsive-toggle a:before {
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
background: rgb(12.15, 12.15, 12.15);
background: #0c0c0c;
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
@ -653,7 +653,7 @@ div#wp-responsive-toggle a:before {
.wp-core-ui #available-menu-items .item-add:focus:before,
.wp-core-ui #customize-save-button-wrapper .save:focus,
.wp-core-ui #publish-settings:focus {
box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769), 0 0 2px 1px #3858e9;
box-shadow: 0 0 0 1px #667fee, 0 0 2px 1px #3858e9;
}
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
@ -702,7 +702,7 @@ div#wp-responsive-toggle a:before {
}
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769), 0 0 2px 1px #3858e9;
box-shadow: 0 0 0 1px #667fee, 0 0 2px 1px #3858e9;
}
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #3858e9;

File diff suppressed because one or more lines are too long

View File

@ -8,7 +8,7 @@
* may use the function in their own admin CSS files. See #56811.
*/
body {
background: #fff;
background: #f1f1f1;
}
/* Links */
@ -16,7 +16,7 @@ a {
color: #3858e9;
}
a:hover, a:active, a:focus {
color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
color: #183ad6;
}
#post-body .misc-pub-post-status:before,
@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
color: #3858e9;
}
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
color: #183ad6;
}
.media-modal .delete-attachment,
@ -63,7 +63,7 @@ input[type=radio]:checked::before {
.wp-core-ui input[type=reset]:hover,
.wp-core-ui input[type=reset]:active {
color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
color: #183ad6;
}
input[type=text]:focus,
@ -98,25 +98,25 @@ textarea:focus {
.wp-core-ui .button:hover,
.wp-core-ui .button.focus,
.wp-core-ui .button:focus {
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
color: rgb(38.4090909091, 42.25, 46.0909090909);
border-color: #717c87;
color: #262a2e;
}
.wp-core-ui .button.focus,
.wp-core-ui .button:focus {
border-color: #7e8993;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: 0 0 0 1px #32373c;
}
.wp-core-ui .button:active {
border-color: #7e8993;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: none;
}
.wp-core-ui .button.active,
.wp-core-ui .button.active:focus,
.wp-core-ui .button.active:hover {
border-color: #3858e9;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: inset 0 2px 5px -3px #3858e9;
}
.wp-core-ui .button.active:focus {
@ -130,15 +130,15 @@ textarea:focus {
.wp-core-ui .button.hover,
.wp-core-ui .button:hover,
.wp-core-ui .button-secondary:hover {
border-color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
border-color: #183ad6;
color: #183ad6;
}
.wp-core-ui .button.focus,
.wp-core-ui .button:focus,
.wp-core-ui .button-secondary:focus {
border-color: rgb(101.9230769231, 126.5384615385, 238.0769230769);
color: rgb(18.6153846154, 45.6923076923, 168.3846153846);
box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769);
border-color: #667fee;
color: #132ea8;
box-shadow: 0 0 0 1px #667fee;
}
.wp-core-ui .button-primary:hover {
color: #fff;
@ -149,23 +149,23 @@ textarea:focus {
color: #fff;
}
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
background: rgb(69.7769230769, 99.5615384615, 234.5230769231);
border-color: rgb(42.2230769231, 76.4384615385, 231.4769230769);
background: #4664eb;
border-color: #2a4ce7;
color: #fff;
}
.wp-core-ui .button-primary:focus {
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #3858e9;
}
.wp-core-ui .button-primary:active {
background: rgb(33.0384615385, 68.7307692308, 230.4615384615);
border-color: rgb(33.0384615385, 68.7307692308, 230.4615384615);
background: #2145e6;
border-color: #2145e6;
color: #fff;
}
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
background: #3858e9;
color: #fff;
border-color: rgb(21.1538461538, 51.9230769231, 191.3461538462);
box-shadow: inset 0 2px 5px -3px rgb(3.3846153846, 8.3076923077, 30.6153846154);
border-color: #1534bf;
box-shadow: inset 0 2px 5px -3px #03081f;
}
.wp-core-ui .button-group > .button.active {
border-color: #3858e9;
@ -203,14 +203,14 @@ textarea:focus {
}
.wrap .page-title-action:hover {
color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
border-color: rgb(23.6923076923, 58.1538461538, 214.3076923077);
color: #183ad6;
border-color: #183ad6;
}
.wrap .page-title-action:focus {
border-color: rgb(101.9230769231, 126.5384615385, 238.0769230769);
color: rgb(18.6153846154, 45.6923076923, 168.3846153846);
box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769);
border-color: #667fee;
color: #132ea8;
box-shadow: 0 0 0 1px #667fee;
}
.view-switch a.current:before {
@ -253,8 +253,8 @@ textarea:focus {
.about-wrap .nav-tab-active,
.nav-tab-active,
.nav-tab-active:hover {
background-color: #fff;
border-bottom-color: #fff;
background-color: #f1f1f1;
border-bottom-color: #f1f1f1;
}
/* Admin Menu: submenu */
@ -262,23 +262,23 @@ textarea:focus {
#adminmenu .wp-has-current-submenu .wp-submenu,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
background: rgb(12.15, 12.15, 12.15);
background: #0c0c0c;
}
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
border-right-color: rgb(12.15, 12.15, 12.15);
border-right-color: #0c0c0c;
}
#adminmenu .wp-submenu .wp-submenu-head {
color: rgb(187.5, 187.5, 187.5);
color: #bcbcbc;
}
#adminmenu .wp-submenu a,
#adminmenu .wp-has-current-submenu .wp-submenu a,
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
color: rgb(187.5, 187.5, 187.5);
color: #bcbcbc;
}
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
@ -287,7 +287,7 @@ textarea:focus {
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
color: #7b90ff;
color: #33f078;
}
/* Admin Menu: current */
@ -301,12 +301,12 @@ textarea:focus {
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus {
color: #7b90ff;
color: #33f078;
}
ul#adminmenu a.wp-has-current-submenu:after,
ul#adminmenu > li.current > a.current:after {
border-right-color: #fff;
border-right-color: #f1f1f1;
}
#adminmenu li.current a.menu-top,
@ -341,7 +341,7 @@ ul#adminmenu > li.current > a.current:after {
#adminmenu li:hover a .awaiting-mod,
#adminmenu li.menu-top:hover > a .update-plugins {
color: #fff;
background: rgb(12.15, 12.15, 12.15);
background: #0c0c0c;
}
/* Admin Menu: collapse button */
@ -351,7 +351,7 @@ ul#adminmenu > li.current > a.current:after {
#collapse-button:hover,
#collapse-button:focus {
color: #7b90ff;
color: #33f078;
}
/* Admin Bar */
@ -379,38 +379,38 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus,
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
color: #7b90ff;
background: rgb(12.15, 12.15, 12.15);
color: #33f078;
background: #0c0c0c;
}
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
#wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label,
#wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label {
color: #7b90ff;
color: #33f078;
}
#wpadminbar:not(.mobile) li:hover .ab-icon:before,
#wpadminbar:not(.mobile) li:hover .ab-item:before,
#wpadminbar:not(.mobile) li:hover .ab-item:after,
#wpadminbar:not(.mobile) li:hover #adminbarsearch:before {
color: #7b90ff;
color: #33f078;
}
/* Admin Bar: submenu */
#wpadminbar .menupop .ab-sub-wrapper {
background: rgb(12.15, 12.15, 12.15);
background: #0c0c0c;
}
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
background: rgb(47.85, 47.85, 47.85);
background: #303030;
}
#wpadminbar .ab-submenu .ab-item,
#wpadminbar .quicklinks .menupop ul li a,
#wpadminbar .quicklinks .menupop.hover ul li a,
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
color: rgb(187.5, 187.5, 187.5);
color: #bcbcbc;
}
#wpadminbar .quicklinks li .blavatar,
@ -436,7 +436,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar li.hover .ab-item:before,
#wpadminbar li:hover #adminbarsearch:before,
#wpadminbar li #adminbarsearch.adminbar-focused:before {
color: #7b90ff;
color: #33f078;
}
#wpadminbar .quicklinks li a:hover .blavatar,
@ -445,7 +445,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar .menupop .menupop > .ab-item:hover:before,
#wpadminbar.mobile .quicklinks .ab-icon:before,
#wpadminbar.mobile .quicklinks .ab-item:before {
color: #7b90ff;
color: #33f078;
}
#wpadminbar.mobile .quicklinks .hover .ab-icon:before,
@ -460,7 +460,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
color: #fff;
background: rgb(47.85, 47.85, 47.85);
background: #303030;
}
/* Admin Bar: recovery mode */
@ -479,13 +479,13 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
color: #fff;
background-color: rgb(50.4, 79.2, 209.7);
background-color: #324fd2;
}
/* Admin Bar: my account */
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
border-color: rgb(47.85, 47.85, 47.85);
background-color: rgb(47.85, 47.85, 47.85);
border-color: #303030;
background-color: #303030;
}
#wpadminbar #wp-admin-bar-user-info .display-name {
@ -493,17 +493,17 @@ ul#adminmenu > li.current > a.current:after {
}
#wpadminbar #wp-admin-bar-user-info a:hover .display-name {
color: #7b90ff;
color: #33f078;
}
#wpadminbar #wp-admin-bar-user-info .username {
color: rgb(187.5, 187.5, 187.5);
color: #bcbcbc;
}
/* Pointers */
.wp-pointer .wp-pointer-content h3 {
background-color: #3858e9;
border-color: rgb(33.0384615385, 68.7307692308, 230.4615384615);
border-color: #2145e6;
}
.wp-pointer .wp-pointer-content h3:before {
@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
/* Nav Menus */
.nav-menus-php .item-edit:focus:before {
box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769), 0 0 2px 1px #3858e9;
box-shadow: 0 0 0 1px #667fee, 0 0 2px 1px #3858e9;
}
/* Responsive Component */
@ -600,7 +600,7 @@ div#wp-responsive-toggle a:before {
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
background: rgb(12.15, 12.15, 12.15);
background: #0c0c0c;
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
@ -653,7 +653,7 @@ div#wp-responsive-toggle a:before {
.wp-core-ui #available-menu-items .item-add:focus:before,
.wp-core-ui #customize-save-button-wrapper .save:focus,
.wp-core-ui #publish-settings:focus {
box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769), 0 0 2px 1px #3858e9;
box-shadow: 0 0 0 1px #667fee, 0 0 2px 1px #3858e9;
}
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
@ -702,7 +702,7 @@ div#wp-responsive-toggle a:before {
}
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769), 0 0 2px 1px #3858e9;
box-shadow: 0 0 0 1px #667fee, 0 0 2px 1px #3858e9;
}
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #3858e9;

File diff suppressed because one or more lines are too long

View File

@ -1,16 +1,12 @@
@use "sass:color";
$scheme-name: "modern";
$base-color: #1e1e1e;
$highlight-color: #3858e9;
$menu-submenu-focus-text: #33f078;
$notification-color: $highlight-color;
@use "../_admin.scss" with (
$scheme-name: "modern",
$base-color: #1e1e1e,
$highlight-color: #3858e9,
$menu-submenu-focus-text: #7b90ff,
$notification-color: $highlight-color,
$link: $highlight-color;
$link-focus: darken($highlight-color, 10%);
$link: $highlight-color,
$link-focus: color.adjust($highlight-color, $lightness: -10%),
$custom-welcome-panel: "false";
$custom-welcome-panel: "false"
);
@import "../_admin.scss";

View File

@ -8,7 +8,7 @@
* may use the function in their own admin CSS files. See #56811.
*/
body {
background: #fff;
background: #f1f1f1;
}
/* Links */
@ -16,7 +16,7 @@ a {
color: #0073aa;
}
a:hover, a:active, a:focus {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
#post-body .misc-pub-post-status:before,
@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
color: #0073aa;
}
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
.media-modal .delete-attachment,
@ -63,7 +63,7 @@ input[type=radio]:checked::before {
.wp-core-ui input[type=reset]:hover,
.wp-core-ui input[type=reset]:active {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
input[type=text]:focus,
@ -98,25 +98,25 @@ textarea:focus {
.wp-core-ui .button:hover,
.wp-core-ui .button.focus,
.wp-core-ui .button:focus {
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
color: rgb(38.4090909091, 42.25, 46.0909090909);
border-color: #717c87;
color: #262a2e;
}
.wp-core-ui .button.focus,
.wp-core-ui .button:focus {
border-color: #7e8993;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: 0 0 0 1px #32373c;
}
.wp-core-ui .button:active {
border-color: #7e8993;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: none;
}
.wp-core-ui .button.active,
.wp-core-ui .button.active:focus,
.wp-core-ui .button.active:hover {
border-color: #9ebaa0;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: inset 0 2px 5px -3px #9ebaa0;
}
.wp-core-ui .button.active:focus {
@ -128,23 +128,23 @@ textarea:focus {
color: #fff;
}
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
background: rgb(166.9403614458, 192.3596385542, 168.7560240964);
border-color: rgb(149.0596385542, 179.6403614458, 151.2439759036);
background: #a7c0a9;
border-color: #95b497;
color: #fff;
}
.wp-core-ui .button-primary:focus {
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #9ebaa0;
}
.wp-core-ui .button-primary:active {
background: rgb(143.0993975904, 175.4006024096, 145.406626506);
border-color: rgb(143.0993975904, 175.4006024096, 145.406626506);
background: #8faf91;
border-color: #8faf91;
color: #fff;
}
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
background: #9ebaa0;
color: #fff;
border-color: rgb(113.2981927711, 154.2018072289, 116.2198795181);
box-shadow: inset 0 2px 5px -3px rgb(36.9939759036, 52.0060240964, 38.0662650602);
border-color: #719a74;
box-shadow: inset 0 2px 5px -3px #253426;
}
.wp-core-ui .button-group > .button.active {
border-color: #9ebaa0;
@ -220,8 +220,8 @@ textarea:focus {
.about-wrap .nav-tab-active,
.nav-tab-active,
.nav-tab-active:hover {
background-color: #fff;
border-bottom-color: #fff;
background-color: #f1f1f1;
border-bottom-color: #f1f1f1;
}
/* Admin Menu: submenu */
@ -229,23 +229,23 @@ textarea:focus {
#adminmenu .wp-has-current-submenu .wp-submenu,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
background: rgb(98.2714285714, 123.5412244898, 131.0285714286);
background: #627c83;
}
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
border-left-color: rgb(98.2714285714, 123.5412244898, 131.0285714286);
border-left-color: #627c83;
}
#adminmenu .wp-submenu .wp-submenu-head {
color: rgb(213, 221.1, 223.5);
color: #d5dde0;
}
#adminmenu .wp-submenu a,
#adminmenu .wp-has-current-submenu .wp-submenu a,
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
color: rgb(213, 221.1, 223.5);
color: #d5dde0;
}
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
@ -273,7 +273,7 @@ textarea:focus {
ul#adminmenu a.wp-has-current-submenu:after,
ul#adminmenu > li.current > a.current:after {
border-left-color: #fff;
border-left-color: #f1f1f1;
}
#adminmenu li.current a.menu-top,
@ -308,7 +308,7 @@ ul#adminmenu > li.current > a.current:after {
#adminmenu li:hover a .awaiting-mod,
#adminmenu li.menu-top:hover > a .update-plugins {
color: #fff;
background: rgb(98.2714285714, 123.5412244898, 131.0285714286);
background: #627c83;
}
/* Admin Menu: collapse button */
@ -347,7 +347,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
color: #9ebaa0;
background: rgb(98.2714285714, 123.5412244898, 131.0285714286);
background: #627c83;
}
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
@ -365,19 +365,19 @@ ul#adminmenu > li.current > a.current:after {
/* Admin Bar: submenu */
#wpadminbar .menupop .ab-sub-wrapper {
background: rgb(98.2714285714, 123.5412244898, 131.0285714286);
background: #627c83;
}
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
background: rgb(142.7255, 154.4890142857, 157.9745);
background: #8f9a9e;
}
#wpadminbar .ab-submenu .ab-item,
#wpadminbar .quicklinks .menupop ul li a,
#wpadminbar .quicklinks .menupop.hover ul li a,
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
color: rgb(213, 221.1, 223.5);
color: #d5dde0;
}
#wpadminbar .quicklinks li .blavatar,
@ -427,7 +427,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
color: #fff;
background: rgb(135.4, 158.4657142857, 165.3);
background: #879ea5;
}
/* Admin Bar: recovery mode */
@ -446,13 +446,13 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
color: #fff;
background-color: rgb(153, 141.3, 122.4);
background-color: #998d7a;
}
/* Admin Bar: my account */
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
border-color: rgb(135.4, 158.4657142857, 165.3);
background-color: rgb(135.4, 158.4657142857, 165.3);
border-color: #879ea5;
background-color: #879ea5;
}
#wpadminbar #wp-admin-bar-user-info .display-name {
@ -464,13 +464,13 @@ ul#adminmenu > li.current > a.current:after {
}
#wpadminbar #wp-admin-bar-user-info .username {
color: rgb(213, 221.1, 223.5);
color: #d5dde0;
}
/* Pointers */
.wp-pointer .wp-pointer-content h3 {
background-color: #9ebaa0;
border-color: rgb(143.0993975904, 175.4006024096, 145.406626506);
border-color: #8faf91;
}
.wp-pointer .wp-pointer-content h3:before {
@ -553,7 +553,7 @@ body.more-filters-opened .more-filters:focus:before {
/* Nav Menus */
.nav-menus-php .item-edit:focus:before {
box-shadow: 0 0 0 1px rgb(187.8012048193, 207.1987951807, 189.186746988), 0 0 2px 1px #9ebaa0;
box-shadow: 0 0 0 1px #bccfbd, 0 0 2px 1px #9ebaa0;
}
/* Responsive Component */
@ -567,7 +567,7 @@ div#wp-responsive-toggle a:before {
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
background: rgb(98.2714285714, 123.5412244898, 131.0285714286);
background: #627c83;
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
@ -620,7 +620,7 @@ div#wp-responsive-toggle a:before {
.wp-core-ui #available-menu-items .item-add:focus:before,
.wp-core-ui #customize-save-button-wrapper .save:focus,
.wp-core-ui #publish-settings:focus {
box-shadow: 0 0 0 1px rgb(187.8012048193, 207.1987951807, 189.186746988), 0 0 2px 1px #9ebaa0;
box-shadow: 0 0 0 1px #bccfbd, 0 0 2px 1px #9ebaa0;
}
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
@ -669,7 +669,7 @@ div#wp-responsive-toggle a:before {
}
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
box-shadow: 0 0 0 1px rgb(187.8012048193, 207.1987951807, 189.186746988), 0 0 2px 1px #9ebaa0;
box-shadow: 0 0 0 1px #bccfbd, 0 0 2px 1px #9ebaa0;
}
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #9ebaa0;

File diff suppressed because one or more lines are too long

View File

@ -8,7 +8,7 @@
* may use the function in their own admin CSS files. See #56811.
*/
body {
background: #fff;
background: #f1f1f1;
}
/* Links */
@ -16,7 +16,7 @@ a {
color: #0073aa;
}
a:hover, a:active, a:focus {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
#post-body .misc-pub-post-status:before,
@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
color: #0073aa;
}
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
.media-modal .delete-attachment,
@ -63,7 +63,7 @@ input[type=radio]:checked::before {
.wp-core-ui input[type=reset]:hover,
.wp-core-ui input[type=reset]:active {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
input[type=text]:focus,
@ -98,25 +98,25 @@ textarea:focus {
.wp-core-ui .button:hover,
.wp-core-ui .button.focus,
.wp-core-ui .button:focus {
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
color: rgb(38.4090909091, 42.25, 46.0909090909);
border-color: #717c87;
color: #262a2e;
}
.wp-core-ui .button.focus,
.wp-core-ui .button:focus {
border-color: #7e8993;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: 0 0 0 1px #32373c;
}
.wp-core-ui .button:active {
border-color: #7e8993;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: none;
}
.wp-core-ui .button.active,
.wp-core-ui .button.active:focus,
.wp-core-ui .button.active:hover {
border-color: #9ebaa0;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: inset 0 2px 5px -3px #9ebaa0;
}
.wp-core-ui .button.active:focus {
@ -128,23 +128,23 @@ textarea:focus {
color: #fff;
}
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
background: rgb(166.9403614458, 192.3596385542, 168.7560240964);
border-color: rgb(149.0596385542, 179.6403614458, 151.2439759036);
background: #a7c0a9;
border-color: #95b497;
color: #fff;
}
.wp-core-ui .button-primary:focus {
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #9ebaa0;
}
.wp-core-ui .button-primary:active {
background: rgb(143.0993975904, 175.4006024096, 145.406626506);
border-color: rgb(143.0993975904, 175.4006024096, 145.406626506);
background: #8faf91;
border-color: #8faf91;
color: #fff;
}
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
background: #9ebaa0;
color: #fff;
border-color: rgb(113.2981927711, 154.2018072289, 116.2198795181);
box-shadow: inset 0 2px 5px -3px rgb(36.9939759036, 52.0060240964, 38.0662650602);
border-color: #719a74;
box-shadow: inset 0 2px 5px -3px #253426;
}
.wp-core-ui .button-group > .button.active {
border-color: #9ebaa0;
@ -220,8 +220,8 @@ textarea:focus {
.about-wrap .nav-tab-active,
.nav-tab-active,
.nav-tab-active:hover {
background-color: #fff;
border-bottom-color: #fff;
background-color: #f1f1f1;
border-bottom-color: #f1f1f1;
}
/* Admin Menu: submenu */
@ -229,23 +229,23 @@ textarea:focus {
#adminmenu .wp-has-current-submenu .wp-submenu,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
background: rgb(98.2714285714, 123.5412244898, 131.0285714286);
background: #627c83;
}
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
border-right-color: rgb(98.2714285714, 123.5412244898, 131.0285714286);
border-right-color: #627c83;
}
#adminmenu .wp-submenu .wp-submenu-head {
color: rgb(213, 221.1, 223.5);
color: #d5dde0;
}
#adminmenu .wp-submenu a,
#adminmenu .wp-has-current-submenu .wp-submenu a,
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
color: rgb(213, 221.1, 223.5);
color: #d5dde0;
}
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
@ -273,7 +273,7 @@ textarea:focus {
ul#adminmenu a.wp-has-current-submenu:after,
ul#adminmenu > li.current > a.current:after {
border-right-color: #fff;
border-right-color: #f1f1f1;
}
#adminmenu li.current a.menu-top,
@ -308,7 +308,7 @@ ul#adminmenu > li.current > a.current:after {
#adminmenu li:hover a .awaiting-mod,
#adminmenu li.menu-top:hover > a .update-plugins {
color: #fff;
background: rgb(98.2714285714, 123.5412244898, 131.0285714286);
background: #627c83;
}
/* Admin Menu: collapse button */
@ -347,7 +347,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
color: #9ebaa0;
background: rgb(98.2714285714, 123.5412244898, 131.0285714286);
background: #627c83;
}
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
@ -365,19 +365,19 @@ ul#adminmenu > li.current > a.current:after {
/* Admin Bar: submenu */
#wpadminbar .menupop .ab-sub-wrapper {
background: rgb(98.2714285714, 123.5412244898, 131.0285714286);
background: #627c83;
}
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
background: rgb(142.7255, 154.4890142857, 157.9745);
background: #8f9a9e;
}
#wpadminbar .ab-submenu .ab-item,
#wpadminbar .quicklinks .menupop ul li a,
#wpadminbar .quicklinks .menupop.hover ul li a,
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
color: rgb(213, 221.1, 223.5);
color: #d5dde0;
}
#wpadminbar .quicklinks li .blavatar,
@ -427,7 +427,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
color: #fff;
background: rgb(135.4, 158.4657142857, 165.3);
background: #879ea5;
}
/* Admin Bar: recovery mode */
@ -446,13 +446,13 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
color: #fff;
background-color: rgb(153, 141.3, 122.4);
background-color: #998d7a;
}
/* Admin Bar: my account */
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
border-color: rgb(135.4, 158.4657142857, 165.3);
background-color: rgb(135.4, 158.4657142857, 165.3);
border-color: #879ea5;
background-color: #879ea5;
}
#wpadminbar #wp-admin-bar-user-info .display-name {
@ -464,13 +464,13 @@ ul#adminmenu > li.current > a.current:after {
}
#wpadminbar #wp-admin-bar-user-info .username {
color: rgb(213, 221.1, 223.5);
color: #d5dde0;
}
/* Pointers */
.wp-pointer .wp-pointer-content h3 {
background-color: #9ebaa0;
border-color: rgb(143.0993975904, 175.4006024096, 145.406626506);
border-color: #8faf91;
}
.wp-pointer .wp-pointer-content h3:before {
@ -553,7 +553,7 @@ body.more-filters-opened .more-filters:focus:before {
/* Nav Menus */
.nav-menus-php .item-edit:focus:before {
box-shadow: 0 0 0 1px rgb(187.8012048193, 207.1987951807, 189.186746988), 0 0 2px 1px #9ebaa0;
box-shadow: 0 0 0 1px #bccfbd, 0 0 2px 1px #9ebaa0;
}
/* Responsive Component */
@ -567,7 +567,7 @@ div#wp-responsive-toggle a:before {
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
background: rgb(98.2714285714, 123.5412244898, 131.0285714286);
background: #627c83;
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
@ -620,7 +620,7 @@ div#wp-responsive-toggle a:before {
.wp-core-ui #available-menu-items .item-add:focus:before,
.wp-core-ui #customize-save-button-wrapper .save:focus,
.wp-core-ui #publish-settings:focus {
box-shadow: 0 0 0 1px rgb(187.8012048193, 207.1987951807, 189.186746988), 0 0 2px 1px #9ebaa0;
box-shadow: 0 0 0 1px #bccfbd, 0 0 2px 1px #9ebaa0;
}
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
@ -669,7 +669,7 @@ div#wp-responsive-toggle a:before {
}
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
box-shadow: 0 0 0 1px rgb(187.8012048193, 207.1987951807, 189.186746988), 0 0 2px 1px #9ebaa0;
box-shadow: 0 0 0 1px #bccfbd, 0 0 2px 1px #9ebaa0;
}
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #9ebaa0;

File diff suppressed because one or more lines are too long

View File

@ -1,12 +1,10 @@
$scheme-name: "ocean";
$base-color: #738e96;
$icon-color: #f2fcff;
$highlight-color: #9ebaa0;
$notification-color: #aa9d88;
$low-contrast-theme: "true";
@use "../_admin.scss" with (
$scheme-name: "ocean",
$base-color: $base-color,
$icon-color: #f2fcff,
$highlight-color: #9ebaa0,
$notification-color: #aa9d88,
$form-checked: $base-color,
$form-checked: $base-color;
$low-contrast-theme: "true"
);
@import "../_admin.scss";

View File

@ -8,7 +8,7 @@
* may use the function in their own admin CSS files. See #56811.
*/
body {
background: #fff;
background: #f1f1f1;
}
/* Links */
@ -16,7 +16,7 @@ a {
color: #0073aa;
}
a:hover, a:active, a:focus {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
#post-body .misc-pub-post-status:before,
@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
color: #0073aa;
}
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
.media-modal .delete-attachment,
@ -63,7 +63,7 @@ input[type=radio]:checked::before {
.wp-core-ui input[type=reset]:hover,
.wp-core-ui input[type=reset]:active {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
input[type=text]:focus,
@ -98,25 +98,25 @@ textarea:focus {
.wp-core-ui .button:hover,
.wp-core-ui .button.focus,
.wp-core-ui .button:focus {
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
color: rgb(38.4090909091, 42.25, 46.0909090909);
border-color: #717c87;
color: #262a2e;
}
.wp-core-ui .button.focus,
.wp-core-ui .button:focus {
border-color: #7e8993;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: 0 0 0 1px #32373c;
}
.wp-core-ui .button:active {
border-color: #7e8993;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: none;
}
.wp-core-ui .button.active,
.wp-core-ui .button.active:focus,
.wp-core-ui .button.active:hover {
border-color: #dd823b;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: inset 0 2px 5px -3px #dd823b;
}
.wp-core-ui .button.active:focus {
@ -130,15 +130,15 @@ textarea:focus {
.wp-core-ui .button.hover,
.wp-core-ui .button:hover,
.wp-core-ui .button-secondary:hover {
border-color: rgb(195.147826087, 104.5434782609, 33.852173913);
color: rgb(195.147826087, 104.5434782609, 33.852173913);
border-color: #c36922;
color: #c36922;
}
.wp-core-ui .button.focus,
.wp-core-ui .button:focus,
.wp-core-ui .button-secondary:focus {
border-color: rgb(228.5391304348, 157.7173913043, 102.4608695652);
color: rgb(151.6869565217, 81.2608695652, 26.3130434783);
box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652);
border-color: #e59e66;
color: #98511a;
box-shadow: 0 0 0 1px #e59e66;
}
.wp-core-ui .button-primary:hover {
color: #fff;
@ -149,23 +149,23 @@ textarea:focus {
color: #fff;
}
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
background: rgb(223.2617391304, 138.3152173913, 72.0382608696);
border-color: rgb(218.7382608696, 121.6847826087, 45.9617391304);
background: #df8a48;
border-color: #db7a2e;
color: #fff;
}
.wp-core-ui .button-primary:focus {
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #dd823b;
}
.wp-core-ui .button-primary:active {
background: rgb(216.8782608696, 116.1847826087, 37.6217391304);
border-color: rgb(216.8782608696, 116.1847826087, 37.6217391304);
background: #d97426;
border-color: #d97426;
color: #fff;
}
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
background: #dd823b;
color: #fff;
border-color: rgb(173.4173913043, 92.902173913, 30.0826086957);
box-shadow: inset 0 2px 5px -3px rgb(21.3043478261, 11.4130434783, 3.6956521739);
border-color: #ad5d1e;
box-shadow: inset 0 2px 5px -3px #150b04;
}
.wp-core-ui .button-group > .button.active {
border-color: #dd823b;
@ -203,14 +203,14 @@ textarea:focus {
}
.wrap .page-title-action:hover {
color: rgb(195.147826087, 104.5434782609, 33.852173913);
border-color: rgb(195.147826087, 104.5434782609, 33.852173913);
color: #c36922;
border-color: #c36922;
}
.wrap .page-title-action:focus {
border-color: rgb(228.5391304348, 157.7173913043, 102.4608695652);
color: rgb(151.6869565217, 81.2608695652, 26.3130434783);
box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652);
border-color: #e59e66;
color: #98511a;
box-shadow: 0 0 0 1px #e59e66;
}
.view-switch a.current:before {
@ -253,8 +253,8 @@ textarea:focus {
.about-wrap .nav-tab-active,
.nav-tab-active,
.nav-tab-active:hover {
background-color: #fff;
border-bottom-color: #fff;
background-color: #f1f1f1;
border-bottom-color: #f1f1f1;
}
/* Admin Menu: submenu */
@ -262,23 +262,23 @@ textarea:focus {
#adminmenu .wp-has-current-submenu .wp-submenu,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
background: rgb(190.4217021277, 53.969787234, 48.8782978723);
background: #be3631;
}
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
border-left-color: rgb(190.4217021277, 53.969787234, 48.8782978723);
border-left-color: #be3631;
}
#adminmenu .wp-submenu .wp-submenu-head {
color: rgb(240.6, 200.4, 198.9);
color: #f1c8c7;
}
#adminmenu .wp-submenu a,
#adminmenu .wp-has-current-submenu .wp-submenu a,
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
color: rgb(240.6, 200.4, 198.9);
color: #f1c8c7;
}
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
@ -287,7 +287,7 @@ textarea:focus {
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
color: #f7e3d3;
}
/* Admin Menu: current */
@ -301,12 +301,12 @@ textarea:focus {
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus {
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
color: #f7e3d3;
}
ul#adminmenu a.wp-has-current-submenu:after,
ul#adminmenu > li.current > a.current:after {
border-left-color: #fff;
border-left-color: #f1f1f1;
}
#adminmenu li.current a.menu-top,
@ -341,7 +341,7 @@ ul#adminmenu > li.current > a.current:after {
#adminmenu li:hover a .awaiting-mod,
#adminmenu li.menu-top:hover > a .update-plugins {
color: #fff;
background: rgb(190.4217021277, 53.969787234, 48.8782978723);
background: #be3631;
}
/* Admin Menu: collapse button */
@ -351,7 +351,7 @@ ul#adminmenu > li.current > a.current:after {
#collapse-button:hover,
#collapse-button:focus {
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
color: #f7e3d3;
}
/* Admin Bar */
@ -379,38 +379,38 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus,
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
background: rgb(190.4217021277, 53.969787234, 48.8782978723);
color: #f7e3d3;
background: #be3631;
}
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
#wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label,
#wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label {
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
color: #f7e3d3;
}
#wpadminbar:not(.mobile) li:hover .ab-icon:before,
#wpadminbar:not(.mobile) li:hover .ab-item:before,
#wpadminbar:not(.mobile) li:hover .ab-item:after,
#wpadminbar:not(.mobile) li:hover #adminbarsearch:before {
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
color: #f7e3d3;
}
/* Admin Bar: submenu */
#wpadminbar .menupop .ab-sub-wrapper {
background: rgb(190.4217021277, 53.969787234, 48.8782978723);
background: #be3631;
}
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
background: rgb(207.3164148936, 107.1221761059, 103.3835851064);
background: #cf6b67;
}
#wpadminbar .ab-submenu .ab-item,
#wpadminbar .quicklinks .menupop ul li a,
#wpadminbar .quicklinks .menupop.hover ul li a,
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
color: rgb(240.6, 200.4, 198.9);
color: #f1c8c7;
}
#wpadminbar .quicklinks li .blavatar,
@ -436,7 +436,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar li.hover .ab-item:before,
#wpadminbar li:hover #adminbarsearch:before,
#wpadminbar li #adminbarsearch.adminbar-focused:before {
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
color: #f7e3d3;
}
#wpadminbar .quicklinks li a:hover .blavatar,
@ -445,7 +445,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar .menupop .menupop > .ab-item:hover:before,
#wpadminbar.mobile .quicklinks .ab-icon:before,
#wpadminbar.mobile .quicklinks .ab-item:before {
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
color: #f7e3d3;
}
#wpadminbar.mobile .quicklinks .hover .ab-icon:before,
@ -460,7 +460,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
color: #fff;
background: rgb(214.2919148936, 100.6485106383, 96.4080851064);
background: #d66560;
}
/* Admin Bar: recovery mode */
@ -479,13 +479,13 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
color: #fff;
background-color: rgb(183.6, 157.5, 9.9);
background-color: #b89e0a;
}
/* Admin Bar: my account */
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
border-color: rgb(214.2919148936, 100.6485106383, 96.4080851064);
background-color: rgb(214.2919148936, 100.6485106383, 96.4080851064);
border-color: #d66560;
background-color: #d66560;
}
#wpadminbar #wp-admin-bar-user-info .display-name {
@ -493,17 +493,17 @@ ul#adminmenu > li.current > a.current:after {
}
#wpadminbar #wp-admin-bar-user-info a:hover .display-name {
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
color: #f7e3d3;
}
#wpadminbar #wp-admin-bar-user-info .username {
color: rgb(240.6, 200.4, 198.9);
color: #f1c8c7;
}
/* Pointers */
.wp-pointer .wp-pointer-content h3 {
background-color: #dd823b;
border-color: rgb(216.8782608696, 116.1847826087, 37.6217391304);
border-color: #d97426;
}
.wp-pointer .wp-pointer-content h3:before {
@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
/* Nav Menus */
.nav-menus-php .item-edit:focus:before {
box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652), 0 0 2px 1px #dd823b;
box-shadow: 0 0 0 1px #e59e66, 0 0 2px 1px #dd823b;
}
/* Responsive Component */
@ -600,7 +600,7 @@ div#wp-responsive-toggle a:before {
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
background: rgb(190.4217021277, 53.969787234, 48.8782978723);
background: #be3631;
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
@ -653,7 +653,7 @@ div#wp-responsive-toggle a:before {
.wp-core-ui #available-menu-items .item-add:focus:before,
.wp-core-ui #customize-save-button-wrapper .save:focus,
.wp-core-ui #publish-settings:focus {
box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652), 0 0 2px 1px #dd823b;
box-shadow: 0 0 0 1px #e59e66, 0 0 2px 1px #dd823b;
}
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
@ -702,7 +702,7 @@ div#wp-responsive-toggle a:before {
}
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652), 0 0 2px 1px #dd823b;
box-shadow: 0 0 0 1px #e59e66, 0 0 2px 1px #dd823b;
}
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #dd823b;

File diff suppressed because one or more lines are too long

View File

@ -8,7 +8,7 @@
* may use the function in their own admin CSS files. See #56811.
*/
body {
background: #fff;
background: #f1f1f1;
}
/* Links */
@ -16,7 +16,7 @@ a {
color: #0073aa;
}
a:hover, a:active, a:focus {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
#post-body .misc-pub-post-status:before,
@ -31,7 +31,7 @@ span.wp-media-buttons-icon:before {
color: #0073aa;
}
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
.media-modal .delete-attachment,
@ -63,7 +63,7 @@ input[type=radio]:checked::before {
.wp-core-ui input[type=reset]:hover,
.wp-core-ui input[type=reset]:active {
color: rgb(0, 149.5, 221);
color: #0096dd;
}
input[type=text]:focus,
@ -98,25 +98,25 @@ textarea:focus {
.wp-core-ui .button:hover,
.wp-core-ui .button.focus,
.wp-core-ui .button:focus {
border-color: rgb(112.7848101266, 124.2721518987, 134.7151898734);
color: rgb(38.4090909091, 42.25, 46.0909090909);
border-color: #717c87;
color: #262a2e;
}
.wp-core-ui .button.focus,
.wp-core-ui .button:focus {
border-color: #7e8993;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: 0 0 0 1px #32373c;
}
.wp-core-ui .button:active {
border-color: #7e8993;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: none;
}
.wp-core-ui .button.active,
.wp-core-ui .button.active:focus,
.wp-core-ui .button.active:hover {
border-color: #dd823b;
color: rgb(38.4090909091, 42.25, 46.0909090909);
color: #262a2e;
box-shadow: inset 0 2px 5px -3px #dd823b;
}
.wp-core-ui .button.active:focus {
@ -130,15 +130,15 @@ textarea:focus {
.wp-core-ui .button.hover,
.wp-core-ui .button:hover,
.wp-core-ui .button-secondary:hover {
border-color: rgb(195.147826087, 104.5434782609, 33.852173913);
color: rgb(195.147826087, 104.5434782609, 33.852173913);
border-color: #c36922;
color: #c36922;
}
.wp-core-ui .button.focus,
.wp-core-ui .button:focus,
.wp-core-ui .button-secondary:focus {
border-color: rgb(228.5391304348, 157.7173913043, 102.4608695652);
color: rgb(151.6869565217, 81.2608695652, 26.3130434783);
box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652);
border-color: #e59e66;
color: #98511a;
box-shadow: 0 0 0 1px #e59e66;
}
.wp-core-ui .button-primary:hover {
color: #fff;
@ -149,23 +149,23 @@ textarea:focus {
color: #fff;
}
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
background: rgb(223.2617391304, 138.3152173913, 72.0382608696);
border-color: rgb(218.7382608696, 121.6847826087, 45.9617391304);
background: #df8a48;
border-color: #db7a2e;
color: #fff;
}
.wp-core-ui .button-primary:focus {
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #dd823b;
}
.wp-core-ui .button-primary:active {
background: rgb(216.8782608696, 116.1847826087, 37.6217391304);
border-color: rgb(216.8782608696, 116.1847826087, 37.6217391304);
background: #d97426;
border-color: #d97426;
color: #fff;
}
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
background: #dd823b;
color: #fff;
border-color: rgb(173.4173913043, 92.902173913, 30.0826086957);
box-shadow: inset 0 2px 5px -3px rgb(21.3043478261, 11.4130434783, 3.6956521739);
border-color: #ad5d1e;
box-shadow: inset 0 2px 5px -3px #150b04;
}
.wp-core-ui .button-group > .button.active {
border-color: #dd823b;
@ -203,14 +203,14 @@ textarea:focus {
}
.wrap .page-title-action:hover {
color: rgb(195.147826087, 104.5434782609, 33.852173913);
border-color: rgb(195.147826087, 104.5434782609, 33.852173913);
color: #c36922;
border-color: #c36922;
}
.wrap .page-title-action:focus {
border-color: rgb(228.5391304348, 157.7173913043, 102.4608695652);
color: rgb(151.6869565217, 81.2608695652, 26.3130434783);
box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652);
border-color: #e59e66;
color: #98511a;
box-shadow: 0 0 0 1px #e59e66;
}
.view-switch a.current:before {
@ -253,8 +253,8 @@ textarea:focus {
.about-wrap .nav-tab-active,
.nav-tab-active,
.nav-tab-active:hover {
background-color: #fff;
border-bottom-color: #fff;
background-color: #f1f1f1;
border-bottom-color: #f1f1f1;
}
/* Admin Menu: submenu */
@ -262,23 +262,23 @@ textarea:focus {
#adminmenu .wp-has-current-submenu .wp-submenu,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
background: rgb(190.4217021277, 53.969787234, 48.8782978723);
background: #be3631;
}
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
border-right-color: rgb(190.4217021277, 53.969787234, 48.8782978723);
border-right-color: #be3631;
}
#adminmenu .wp-submenu .wp-submenu-head {
color: rgb(240.6, 200.4, 198.9);
color: #f1c8c7;
}
#adminmenu .wp-submenu a,
#adminmenu .wp-has-current-submenu .wp-submenu a,
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
color: rgb(240.6, 200.4, 198.9);
color: #f1c8c7;
}
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
@ -287,7 +287,7 @@ textarea:focus {
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
color: #f7e3d3;
}
/* Admin Menu: current */
@ -301,12 +301,12 @@ textarea:focus {
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus {
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
color: #f7e3d3;
}
ul#adminmenu a.wp-has-current-submenu:after,
ul#adminmenu > li.current > a.current:after {
border-right-color: #fff;
border-right-color: #f1f1f1;
}
#adminmenu li.current a.menu-top,
@ -341,7 +341,7 @@ ul#adminmenu > li.current > a.current:after {
#adminmenu li:hover a .awaiting-mod,
#adminmenu li.menu-top:hover > a .update-plugins {
color: #fff;
background: rgb(190.4217021277, 53.969787234, 48.8782978723);
background: #be3631;
}
/* Admin Menu: collapse button */
@ -351,7 +351,7 @@ ul#adminmenu > li.current > a.current:after {
#collapse-button:hover,
#collapse-button:focus {
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
color: #f7e3d3;
}
/* Admin Bar */
@ -379,38 +379,38 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus,
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
background: rgb(190.4217021277, 53.969787234, 48.8782978723);
color: #f7e3d3;
background: #be3631;
}
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
#wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label,
#wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label {
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
color: #f7e3d3;
}
#wpadminbar:not(.mobile) li:hover .ab-icon:before,
#wpadminbar:not(.mobile) li:hover .ab-item:before,
#wpadminbar:not(.mobile) li:hover .ab-item:after,
#wpadminbar:not(.mobile) li:hover #adminbarsearch:before {
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
color: #f7e3d3;
}
/* Admin Bar: submenu */
#wpadminbar .menupop .ab-sub-wrapper {
background: rgb(190.4217021277, 53.969787234, 48.8782978723);
background: #be3631;
}
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
background: rgb(207.3164148936, 107.1221761059, 103.3835851064);
background: #cf6b67;
}
#wpadminbar .ab-submenu .ab-item,
#wpadminbar .quicklinks .menupop ul li a,
#wpadminbar .quicklinks .menupop.hover ul li a,
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
color: rgb(240.6, 200.4, 198.9);
color: #f1c8c7;
}
#wpadminbar .quicklinks li .blavatar,
@ -436,7 +436,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar li.hover .ab-item:before,
#wpadminbar li:hover #adminbarsearch:before,
#wpadminbar li #adminbarsearch.adminbar-focused:before {
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
color: #f7e3d3;
}
#wpadminbar .quicklinks li a:hover .blavatar,
@ -445,7 +445,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar .menupop .menupop > .ab-item:hover:before,
#wpadminbar.mobile .quicklinks .ab-icon:before,
#wpadminbar.mobile .quicklinks .ab-item:before {
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
color: #f7e3d3;
}
#wpadminbar.mobile .quicklinks .hover .ab-icon:before,
@ -460,7 +460,7 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
color: #fff;
background: rgb(214.2919148936, 100.6485106383, 96.4080851064);
background: #d66560;
}
/* Admin Bar: recovery mode */
@ -479,13 +479,13 @@ ul#adminmenu > li.current > a.current:after {
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
color: #fff;
background-color: rgb(183.6, 157.5, 9.9);
background-color: #b89e0a;
}
/* Admin Bar: my account */
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
border-color: rgb(214.2919148936, 100.6485106383, 96.4080851064);
background-color: rgb(214.2919148936, 100.6485106383, 96.4080851064);
border-color: #d66560;
background-color: #d66560;
}
#wpadminbar #wp-admin-bar-user-info .display-name {
@ -493,17 +493,17 @@ ul#adminmenu > li.current > a.current:after {
}
#wpadminbar #wp-admin-bar-user-info a:hover .display-name {
color: rgb(247.3869565217, 227.0108695652, 211.1130434783);
color: #f7e3d3;
}
#wpadminbar #wp-admin-bar-user-info .username {
color: rgb(240.6, 200.4, 198.9);
color: #f1c8c7;
}
/* Pointers */
.wp-pointer .wp-pointer-content h3 {
background-color: #dd823b;
border-color: rgb(216.8782608696, 116.1847826087, 37.6217391304);
border-color: #d97426;
}
.wp-pointer .wp-pointer-content h3:before {
@ -586,7 +586,7 @@ body.more-filters-opened .more-filters:focus:before {
/* Nav Menus */
.nav-menus-php .item-edit:focus:before {
box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652), 0 0 2px 1px #dd823b;
box-shadow: 0 0 0 1px #e59e66, 0 0 2px 1px #dd823b;
}
/* Responsive Component */
@ -600,7 +600,7 @@ div#wp-responsive-toggle a:before {
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
background: rgb(190.4217021277, 53.969787234, 48.8782978723);
background: #be3631;
}
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
@ -653,7 +653,7 @@ div#wp-responsive-toggle a:before {
.wp-core-ui #available-menu-items .item-add:focus:before,
.wp-core-ui #customize-save-button-wrapper .save:focus,
.wp-core-ui #publish-settings:focus {
box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652), 0 0 2px 1px #dd823b;
box-shadow: 0 0 0 1px #e59e66, 0 0 2px 1px #dd823b;
}
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
@ -702,7 +702,7 @@ div#wp-responsive-toggle a:before {
}
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652), 0 0 2px 1px #dd823b;
box-shadow: 0 0 0 1px #e59e66, 0 0 2px 1px #dd823b;
}
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #dd823b;

File diff suppressed because one or more lines are too long

View File

@ -1,11 +1,7 @@
@use "sass:color";
$scheme-name: "sunrise";
$base-color: #cf4944;
$highlight-color: #dd823b;
$notification-color: #ccaf0b;
$menu-submenu-focus-text: lighten( $highlight-color, 35% );
@use "../_admin.scss" with (
$scheme-name: "sunrise",
$base-color: #cf4944,
$highlight-color: $highlight-color,
$notification-color: #ccaf0b,
$menu-submenu-focus-text: color.adjust($highlight-color, $lightness: 35%)
);
@import "../_admin.scss";

View File

@ -123,6 +123,7 @@
.screen-reader-text span,
.ui-helper-hidden-accessible {
border: 0;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
margin: -1px;
@ -220,6 +221,7 @@ body {
}
body {
background: #f0f0f1;
color: #3c434a;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
font-size: 13px;
@ -915,11 +917,6 @@ a#remove-post-thumbnail:hover,
border: none;
}
.application-password-display .success {
color: #007017;
margin-right: 0.5rem;
}
/*------------------------------------------------------------------------------
3.0 - Actions
------------------------------------------------------------------------------*/
@ -1115,6 +1112,11 @@ th.action-links {
align-items: center;
}
.wp-filter .search-form.search-plugins {
/* This element is a flex item: the inherited float won't have any effect. */
margin-top: 0;
}
.wp-filter .search-form.search-plugins select,
.wp-filter .search-form.search-plugins .wp-filter-search,
.no-js .wp-filter .search-form.search-plugins .button {
@ -1179,17 +1181,6 @@ th.action-links {
overflow: hidden;
}
.wp-filter .favorites-form .favorites-username {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 0.5rem;
}
.wp-filter .favorites-form .favorites-username input {
margin: 0;
}
.show-filters .filter-drawer,
.show-favorites-form .favorites-form {
display: block;
@ -1298,13 +1289,11 @@ th.action-links {
}
.filtered-by .tags {
display: flex;
align-items: flex-start;
flex-wrap: wrap;
gap: 8px;
display: inline;
}
.filtered-by .tag {
margin: 0 5px;
padding: 4px 8px;
border: 1px solid #dcdcde;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
@ -1319,10 +1308,7 @@ th.action-links {
}
.filters-applied .filtered-by {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 10px;
display: block;
}
.filters-applied .filter-drawer {
@ -1347,12 +1333,6 @@ th.action-links {
float: none;
}
@media only screen and (max-width: 1138px) {
.wp-filter .search-form {
margin: 11px 0;
}
}
@media only screen and (max-width: 1120px) {
.filter-drawer {
border-bottom: 1px solid #f0f0f1;
@ -2052,7 +2032,7 @@ p.auto-update-status {
------------------------------------------------------------------------------*/
html.wp-toolbar {
padding-top: var(--wp-admin--admin-bar--height);
padding-top: 32px;
box-sizing: border-box;
-ms-overflow-style: scrollbar; /* See ticket #48545 */
}
@ -2431,59 +2411,8 @@ h1.nav-tab-wrapper, /* Back-compat for pre-4.4 */
/* Back-compat for nav-menus screen */
.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;
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 {
@ -3573,9 +3502,9 @@ img {
/* @todo: can we use a common class for these? */
.nav-menus-php .item-edit:before,
.wp-customizer .control-section .accordion-section-title:after,
.wp-customizer .accordion-section-title:after,
.widget-top .widget-action .toggle-indicator:before {
.widget-top .widget-action .toggle-indicator:before,
.control-section .accordion-section-title:after,
.accordion-section-title:after {
content: "\f140";
font: normal 20px/1 dashicons;
speak: never;
@ -3593,7 +3522,8 @@ img {
.handlediv,
.postbox .handlediv.button-link,
.item-edit,
.toggle-indicator {
.toggle-indicator,
.accordion-section-title:after {
color: #787c82;
}
@ -3609,7 +3539,8 @@ img {
.postbox .handlediv.button-link:focus,
.item-edit:hover,
.item-edit:focus,
.sidebar-name:hover .toggle-indicator {
.sidebar-name:hover .toggle-indicator,
.accordion-section-title:hover:after {
color: #1d2327;
/* Only visible in Windows High Contrast mode */
outline: 2px solid transparent;
@ -3621,6 +3552,14 @@ img {
outline: 2px solid transparent;
}
.control-section .accordion-section-title:after,
.accordion-section-title:after {
float: left;
left: 20px;
top: -2px;
}
.control-section.open .accordion-section-title:after,
#customize-info.open .accordion-section-title:after,
.nav-menus-php .menu-item-edit-active .item-edit:before,
.widget.open .widget-top .widget-action .toggle-indicator:before,
@ -3665,6 +3604,7 @@ img {
.accordion-section-title {
margin: 0;
padding: 12px 15px 15px;
position: relative;
border-right: 1px solid #dcdcde;
border-left: 1px solid #dcdcde;
@ -3901,7 +3841,7 @@ img {
@media screen and (max-width: 782px) {
html.wp-toolbar {
padding-top: var(--wp-admin--admin-bar--height);
padding-top: 46px;
}
.screen-reader-shortcut:focus {
@ -4009,10 +3949,6 @@ img {
padding: 12px;
}
.nav-menus-php .metabox-holder h3 {
padding: 0;
}
.postbox .handlediv {
margin-top: 3px;
}

File diff suppressed because one or more lines are too long

View File

@ -122,6 +122,7 @@
.screen-reader-text span,
.ui-helper-hidden-accessible {
border: 0;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
margin: -1px;
@ -219,6 +220,7 @@ body {
}
body {
background: #f0f0f1;
color: #3c434a;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
font-size: 13px;
@ -914,11 +916,6 @@ a#remove-post-thumbnail:hover,
border: none;
}
.application-password-display .success {
color: #007017;
margin-left: 0.5rem;
}
/*------------------------------------------------------------------------------
3.0 - Actions
------------------------------------------------------------------------------*/
@ -1114,6 +1111,11 @@ th.action-links {
align-items: center;
}
.wp-filter .search-form.search-plugins {
/* This element is a flex item: the inherited float won't have any effect. */
margin-top: 0;
}
.wp-filter .search-form.search-plugins select,
.wp-filter .search-form.search-plugins .wp-filter-search,
.no-js .wp-filter .search-form.search-plugins .button {
@ -1178,17 +1180,6 @@ th.action-links {
overflow: hidden;
}
.wp-filter .favorites-form .favorites-username {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 0.5rem;
}
.wp-filter .favorites-form .favorites-username input {
margin: 0;
}
.show-filters .filter-drawer,
.show-favorites-form .favorites-form {
display: block;
@ -1297,13 +1288,11 @@ th.action-links {
}
.filtered-by .tags {
display: flex;
align-items: flex-start;
flex-wrap: wrap;
gap: 8px;
display: inline;
}
.filtered-by .tag {
margin: 0 5px;
padding: 4px 8px;
border: 1px solid #dcdcde;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
@ -1318,10 +1307,7 @@ th.action-links {
}
.filters-applied .filtered-by {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 10px;
display: block;
}
.filters-applied .filter-drawer {
@ -1346,12 +1332,6 @@ th.action-links {
float: none;
}
@media only screen and (max-width: 1138px) {
.wp-filter .search-form {
margin: 11px 0;
}
}
@media only screen and (max-width: 1120px) {
.filter-drawer {
border-bottom: 1px solid #f0f0f1;
@ -2051,7 +2031,7 @@ p.auto-update-status {
------------------------------------------------------------------------------*/
html.wp-toolbar {
padding-top: var(--wp-admin--admin-bar--height);
padding-top: 32px;
box-sizing: border-box;
-ms-overflow-style: scrollbar; /* See ticket #48545 */
}
@ -2430,59 +2410,8 @@ h1.nav-tab-wrapper, /* Back-compat for pre-4.4 */
/* Back-compat for nav-menus screen */
.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;
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 {
@ -3572,9 +3501,9 @@ img {
/* @todo: can we use a common class for these? */
.nav-menus-php .item-edit:before,
.wp-customizer .control-section .accordion-section-title:after,
.wp-customizer .accordion-section-title:after,
.widget-top .widget-action .toggle-indicator:before {
.widget-top .widget-action .toggle-indicator:before,
.control-section .accordion-section-title:after,
.accordion-section-title:after {
content: "\f140";
font: normal 20px/1 dashicons;
speak: never;
@ -3592,7 +3521,8 @@ img {
.handlediv,
.postbox .handlediv.button-link,
.item-edit,
.toggle-indicator {
.toggle-indicator,
.accordion-section-title:after {
color: #787c82;
}
@ -3608,7 +3538,8 @@ img {
.postbox .handlediv.button-link:focus,
.item-edit:hover,
.item-edit:focus,
.sidebar-name:hover .toggle-indicator {
.sidebar-name:hover .toggle-indicator,
.accordion-section-title:hover:after {
color: #1d2327;
/* Only visible in Windows High Contrast mode */
outline: 2px solid transparent;
@ -3620,6 +3551,14 @@ img {
outline: 2px solid transparent;
}
.control-section .accordion-section-title:after,
.accordion-section-title:after {
float: right;
right: 20px;
top: -2px;
}
.control-section.open .accordion-section-title:after,
#customize-info.open .accordion-section-title:after,
.nav-menus-php .menu-item-edit-active .item-edit:before,
.widget.open .widget-top .widget-action .toggle-indicator:before,
@ -3664,6 +3603,7 @@ img {
.accordion-section-title {
margin: 0;
padding: 12px 15px 15px;
position: relative;
border-left: 1px solid #dcdcde;
border-right: 1px solid #dcdcde;
@ -3900,7 +3840,7 @@ img {
@media screen and (max-width: 782px) {
html.wp-toolbar {
padding-top: var(--wp-admin--admin-bar--height);
padding-top: 46px;
}
.screen-reader-shortcut:focus {
@ -4008,10 +3948,6 @@ img {
padding: 12px;
}
.nav-menus-php .metabox-holder h3 {
padding: 0;
}
.postbox .handlediv {
margin-top: 3px;
}

File diff suppressed because one or more lines are too long

View File

@ -32,7 +32,7 @@ body {
max-width: 366px;
min-height: 64px;
width: auto;
padding: 25px;
padding: 25px 109px 25px 25px;
position: relative;
background: #fff;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
@ -42,10 +42,6 @@ body {
top: calc( 50% - 100px );
}
#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .customize-changeset-locked-message.has-avatar {
padding-right: 109px;
}
#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .currently-editing {
margin-top: 0;
}
@ -398,7 +394,6 @@ body.trashing #publish-settings {
margin-bottom: 0;
}
#customize-control-site_icon .customize-control-description,
#customize-control-changeset_scheduled_date .customize-control-description {
font-style: normal;
}
@ -432,7 +427,6 @@ body.trashing #publish-settings {
border-left: none;
border-bottom: none;
cursor: default;
padding: 10px 14px 11px 10px;
}
#customize-controls .customize-info.open .accordion-section-title:after,
@ -448,9 +442,6 @@ body.trashing #publish-settings {
#customize-controls .customize-info .preview-notice {
font-size: 13px;
line-height: 1.9;
margin: 0;
font-weight: 400;
color: #50575e;
}
#customize-controls .customize-pane-child .customize-section-title h3,
@ -558,24 +549,6 @@ body.trashing #publish-settings {
.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) {
#customize-theme-controls .accordion-section-title,
#customize-outer-theme-controls .accordion-section-title {
@ -593,7 +566,6 @@ body.trashing #publish-settings {
#customize-outer-theme-controls .accordion-section-title:after {
content: "\f341";
color: #a7aaad;
pointer-events: none;
}
#customize-theme-controls .accordion-section-content,
@ -603,9 +575,9 @@ body.trashing #publish-settings {
}
#customize-controls .control-section:hover > .accordion-section-title,
#customize-controls .control-section .accordion-section-title button:hover,
#customize-controls .control-section .accordion-section-title:hover,
#customize-controls .control-section.open .accordion-section-title,
#customize-controls .control-section .accordion-section-title button:focus {
#customize-controls .control-section .accordion-section-title:focus {
color: #2271b1;
background: #f6f7f7;
border-right-color: #2271b1;
@ -1095,6 +1067,10 @@ p.customize-section-description {
line-height: 0;
}
/* Remove descender space. */
.customize-control-site_icon .favicon-preview .browser-preview {
vertical-align: top;
}
.customize-control .thumbnail-image img {
cursor: pointer;
@ -1732,7 +1708,7 @@ p.customize-section-description {
border-right: none;
border-left: none;
margin: 0 0 15px;
padding: 12px 15px 15px 100px; /* Space for the button */
padding-left: 100px; /* Space for the button */
}
#customize-theme-controls .control-section-themes .customize-themes-panel .accordion-section-title:first-child:hover, /* Not a focusable element. */
@ -2645,19 +2621,6 @@ body.adding-widget .add-new-widget:before,
#available-widgets .customize-section-title,
#available-menu-items .customize-section-title {
border: 0;
clip-path: inset(50%);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
word-wrap: normal !important;
}
#available-widgets .customize-section-title button,
#available-menu-items .customize-section-title button {
display: none;
}
@ -2994,19 +2957,8 @@ body.adding-widget .add-new-widget:before,
#available-widgets .customize-section-title,
#available-menu-items .customize-section-title {
border: 0;
clip-path: none;
height: inherit;
margin: 0;
overflow: hidden;
padding: 0;
width: auto;
position: static;
}
#available-widgets .customize-section-title button,
#available-menu-items .customize-section-title button {
display: block;
margin: 0;
}
#available-widgets .customize-section-back,

File diff suppressed because one or more lines are too long

View File

@ -31,7 +31,7 @@ body {
max-width: 366px;
min-height: 64px;
width: auto;
padding: 25px;
padding: 25px 25px 25px 109px;
position: relative;
background: #fff;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
@ -41,10 +41,6 @@ body {
top: calc( 50% - 100px );
}
#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .customize-changeset-locked-message.has-avatar {
padding-left: 109px;
}
#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .currently-editing {
margin-top: 0;
}
@ -397,7 +393,6 @@ body.trashing #publish-settings {
margin-bottom: 0;
}
#customize-control-site_icon .customize-control-description,
#customize-control-changeset_scheduled_date .customize-control-description {
font-style: normal;
}
@ -431,7 +426,6 @@ body.trashing #publish-settings {
border-right: none;
border-bottom: none;
cursor: default;
padding: 10px 10px 11px 14px;
}
#customize-controls .customize-info.open .accordion-section-title:after,
@ -447,9 +441,6 @@ body.trashing #publish-settings {
#customize-controls .customize-info .preview-notice {
font-size: 13px;
line-height: 1.9;
margin: 0;
font-weight: 400;
color: #50575e;
}
#customize-controls .customize-pane-child .customize-section-title h3,
@ -557,24 +548,6 @@ body.trashing #publish-settings {
.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) {
#customize-theme-controls .accordion-section-title,
#customize-outer-theme-controls .accordion-section-title {
@ -592,7 +565,6 @@ body.trashing #publish-settings {
#customize-outer-theme-controls .accordion-section-title:after {
content: "\f345";
color: #a7aaad;
pointer-events: none;
}
#customize-theme-controls .accordion-section-content,
@ -602,9 +574,9 @@ body.trashing #publish-settings {
}
#customize-controls .control-section:hover > .accordion-section-title,
#customize-controls .control-section .accordion-section-title button:hover,
#customize-controls .control-section .accordion-section-title:hover,
#customize-controls .control-section.open .accordion-section-title,
#customize-controls .control-section .accordion-section-title button:focus {
#customize-controls .control-section .accordion-section-title:focus {
color: #2271b1;
background: #f6f7f7;
border-left-color: #2271b1;
@ -1094,6 +1066,10 @@ p.customize-section-description {
line-height: 0;
}
/* Remove descender space. */
.customize-control-site_icon .favicon-preview .browser-preview {
vertical-align: top;
}
.customize-control .thumbnail-image img {
cursor: pointer;
@ -1731,7 +1707,7 @@ p.customize-section-description {
border-left: none;
border-right: none;
margin: 0 0 15px;
padding: 12px 100px 15px 15px; /* Space for the button */
padding-right: 100px; /* Space for the button */
}
#customize-theme-controls .control-section-themes .customize-themes-panel .accordion-section-title:first-child:hover, /* Not a focusable element. */
@ -2644,19 +2620,6 @@ body.adding-widget .add-new-widget:before,
#available-widgets .customize-section-title,
#available-menu-items .customize-section-title {
border: 0;
clip-path: inset(50%);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
word-wrap: normal !important;
}
#available-widgets .customize-section-title button,
#available-menu-items .customize-section-title button {
display: none;
}
@ -2993,19 +2956,8 @@ body.adding-widget .add-new-widget:before,
#available-widgets .customize-section-title,
#available-menu-items .customize-section-title {
border: 0;
clip-path: none;
height: inherit;
margin: 0;
overflow: hidden;
padding: 0;
width: auto;
position: static;
}
#available-widgets .customize-section-title button,
#available-menu-items .customize-section-title button {
display: block;
margin: 0;
}
#available-widgets .customize-section-back,

File diff suppressed because one or more lines are too long

View File

@ -543,9 +543,8 @@
background: transparent;
}
#available-menu-items .accordion-section-title button .toggle-indicator {
display: flex;
align-items: center;
#available-menu-items .accordion-section-title button {
display: block;
width: 28px;
height: 35px;
position: absolute;

File diff suppressed because one or more lines are too long

View File

@ -542,9 +542,8 @@
background: transparent;
}
#available-menu-items .accordion-section-title button .toggle-indicator {
display: flex;
align-items: center;
#available-menu-items .accordion-section-title button {
display: block;
width: 28px;
height: 35px;
position: absolute;

File diff suppressed because one or more lines are too long

View File

@ -713,11 +713,6 @@ body #dashboard-widgets .postbox form .submit {
font-weight: 400;
}
#network_dashboard_right_now p input {
margin: 2px 1px;
vertical-align: middle;
}
/* Dashboard right now - Colors */
#dashboard_right_now .sub {

File diff suppressed because one or more lines are too long

View File

@ -712,11 +712,6 @@ body #dashboard-widgets .postbox form .submit {
font-weight: 400;
}
#network_dashboard_right_now p input {
margin: 2px 1px;
vertical-align: middle;
}
/* Dashboard right now - Colors */
#dashboard_right_now .sub {

File diff suppressed because one or more lines are too long

View File

@ -76,14 +76,6 @@
pointer-events: none;
}
#titlewrap .skiplink:focus {
clip: inherit;
clip-path: inherit;
left: 4px;
top: 4px;
width: auto;
}
input#link_description,
input#link_url {
width: 100%;
@ -309,6 +301,7 @@ ul.wp-tab-bar li {
#postimagediv .inside img {
max-width: 100%;
height: auto;
width: auto;
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-position: 100% 0, 10px 10px;
@ -1046,14 +1039,6 @@ form#tags-filter {
white-space: normal;
line-height: 1.8;
}
#edit-slug-box {
padding: 0;
}
#titlewrap .skiplink:focus {
top: 5px;
}
}
@media only screen and (max-width: 1004px) {
@ -1313,7 +1298,7 @@ div.tabs-panel-active:focus {
/* Only visible in Windows High Contrast mode */
outline: 2px solid transparent;
}
.options-discussion-php .indent-children ul,
#front-page-warning,
#front-static-pages ul,
ul.export-filters,

File diff suppressed because one or more lines are too long

View File

@ -75,14 +75,6 @@
pointer-events: none;
}
#titlewrap .skiplink:focus {
clip: inherit;
clip-path: inherit;
right: 4px;
top: 4px;
width: auto;
}
input#link_description,
input#link_url {
width: 100%;
@ -308,6 +300,7 @@ ul.wp-tab-bar li {
#postimagediv .inside img {
max-width: 100%;
height: auto;
width: auto;
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-position: 0 0, 10px 10px;
@ -1045,14 +1038,6 @@ form#tags-filter {
white-space: normal;
line-height: 1.8;
}
#edit-slug-box {
padding: 0;
}
#titlewrap .skiplink:focus {
top: 5px;
}
}
@media only screen and (max-width: 1004px) {
@ -1312,7 +1297,7 @@ div.tabs-panel-active:focus {
/* Only visible in Windows High Contrast mode */
outline: 2px solid transparent;
}
.options-discussion-php .indent-children ul,
#front-page-warning,
#front-static-pages ul,
ul.export-filters,

File diff suppressed because one or more lines are too long

View File

@ -804,8 +804,6 @@ ul#add-to-blog-users {
padding: 9px 0;
line-height: 1.6;
max-width: 270px;
border-radius: 4px;
background: #f0f0f1;
}
.button-add-site-icon:focus,
@ -813,6 +811,18 @@ ul#add-to-blog-users {
background: #fff;
}
.site-icon-section .favicon-preview {
float: right;
}
.site-icon-section .app-icon-preview {
float: right;
margin: 0 20px;
}
.site-icon-section .site-icon-preview img {
max-width: 100%;
}
.button-add-site-icon:focus {
background-color: #fff;
border-color: #3582c4;
@ -860,7 +870,7 @@ ul#add-to-blog-users {
padding: 20px 0 20px 10px;
width: 200px;
line-height: 1.3;
font-weight: 400;
font-weight: 600;
}
.form-table th.th-full, /* Not used by core. Back-compat for pre-4.8 */
@ -1003,7 +1013,6 @@ table.form-table td .updated p {
}
.application-password-display input.code {
margin-bottom: 6px;
width: 19em;
}

File diff suppressed because one or more lines are too long

View File

@ -803,8 +803,6 @@ ul#add-to-blog-users {
padding: 9px 0;
line-height: 1.6;
max-width: 270px;
border-radius: 4px;
background: #f0f0f1;
}
.button-add-site-icon:focus,
@ -812,6 +810,18 @@ ul#add-to-blog-users {
background: #fff;
}
.site-icon-section .favicon-preview {
float: left;
}
.site-icon-section .app-icon-preview {
float: left;
margin: 0 20px;
}
.site-icon-section .site-icon-preview img {
max-width: 100%;
}
.button-add-site-icon:focus {
background-color: #fff;
border-color: #3582c4;
@ -859,7 +869,7 @@ ul#add-to-blog-users {
padding: 20px 10px 20px 0;
width: 200px;
line-height: 1.3;
font-weight: 400;
font-weight: 600;
}
.form-table th.th-full, /* Not used by core. Back-compat for pre-4.8 */
@ -1002,7 +1012,6 @@ table.form-table td .updated p {
}
.application-password-display input.code {
margin-bottom: 6px;
width: 19em;
}

File diff suppressed because one or more lines are too long

View File

@ -350,6 +350,7 @@ body.language-chooser {
.screen-reader-input,
.screen-reader-text {
border: 0;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
margin: -1px;

File diff suppressed because one or more lines are too long

View File

@ -349,6 +349,7 @@ body.language-chooser {
.screen-reader-input,
.screen-reader-text {
border: 0;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
margin: -1px;

File diff suppressed because one or more lines are too long

View File

@ -320,6 +320,7 @@ table.fixed {
.fixed .column-role,
.fixed .column-posts {
-webkit-hyphens: auto;
hyphens: auto;
}
@ -1131,7 +1132,7 @@ tr.inline-edit-row td {
width: 75%;
}
.inline-edit-row select[name="post_parent"],
.inline-edit-row #post_parent,
.inline-edit-row select[name="page_template"] {
max-width: 80%;
}

File diff suppressed because one or more lines are too long

View File

@ -319,6 +319,7 @@ table.fixed {
.fixed .column-role,
.fixed .column-posts {
-webkit-hyphens: auto;
hyphens: auto;
}
@ -1130,7 +1131,7 @@ tr.inline-edit-row td {
width: 75%;
}
.inline-edit-row select[name="post_parent"],
.inline-edit-row #post_parent,
.inline-edit-row select[name="page_template"] {
max-width: 80%;
}

File diff suppressed because one or more lines are too long

View File

@ -140,7 +140,8 @@ p {
}
.login form {
margin: 24px 0;
margin-top: 20px;
margin-right: 0;
padding: 26px 24px;
font-weight: 400;
overflow: hidden;
@ -224,7 +225,7 @@ p {
margin: 1.1em 0;
}
.login .admin-email__heading {
.login h1.admin-email__heading {
border-bottom: 1px #f0f0f1 solid;
color: #50575e;
font-weight: normal;
@ -284,7 +285,7 @@ p {
font-size: 20px;
font-weight: 400;
line-height: 1.3;
margin: 0 auto 24px;
margin: 0 auto 25px;
padding: 0;
text-decoration: none;
width: 84px;
@ -407,6 +408,7 @@ body.interim-login {
.screen-reader-text,
.screen-reader-text span {
border: 0;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
margin: -1px;

File diff suppressed because one or more lines are too long

View File

@ -139,7 +139,8 @@ p {
}
.login form {
margin: 24px 0;
margin-top: 20px;
margin-left: 0;
padding: 26px 24px;
font-weight: 400;
overflow: hidden;
@ -223,7 +224,7 @@ p {
margin: 1.1em 0;
}
.login .admin-email__heading {
.login h1.admin-email__heading {
border-bottom: 1px #f0f0f1 solid;
color: #50575e;
font-weight: normal;
@ -283,7 +284,7 @@ p {
font-size: 20px;
font-weight: 400;
line-height: 1.3;
margin: 0 auto 24px;
margin: 0 auto 25px;
padding: 0;
text-decoration: none;
width: 84px;
@ -406,6 +407,7 @@ body.interim-login {
.screen-reader-text,
.screen-reader-text span {
border: 0;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
margin: -1px;

File diff suppressed because one or more lines are too long

View File

@ -175,7 +175,7 @@
.media-item .pinkynail {
float: right;
margin: 14px;
margin: 0 0 0 10px;
max-height: 70px;
max-width: 70px;
}

File diff suppressed because one or more lines are too long

View File

@ -174,7 +174,7 @@
.media-item .pinkynail {
float: left;
margin: 14px;
margin: 0 10px 0 0;
max-height: 70px;
max-width: 70px;
}

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