@wordpress/commands
Version:
Handles the commands menu.
247 lines (241 loc) • 5.58 kB
CSS
/**
* Converts a hex value into the rgb equivalent.
*
* @param {string} hex - the hexadecimal value to convert
* @return {string} comma separated rgb values
*/
/**
* Colors
*/
/**
* Breakpoints & Media Queries
*/
/**
* SCSS Variables.
*
* Please use variables from this sheet to ensure consistency across the UI.
* Don't add to this sheet unless you're pretty sure the value will be reused in many places.
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
*/
/**
* Converts a hex value into the rgb equivalent.
*
* @param {string} hex - the hexadecimal value to convert
* @return {string} comma separated rgb values
*/
/**
* Colors
*/
/**
* Fonts & basic variables.
*/
/**
* Typography
*/
/**
* Grid System.
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
*/
/**
* Radius scale.
*/
/**
* Elevation scale.
*/
/**
* Dimensions.
*/
/**
* Mobile specific styles
*/
/**
* Editor styles.
*/
/**
* Block & Editor UI.
*/
/**
* Block paddings.
*/
/**
* React Native specific.
* These variables do not appear to be used anywhere else.
*/
/**
* Converts a hex value into the rgb equivalent.
*
* @param {string} hex - the hexadecimal value to convert
* @return {string} comma separated rgb values
*/
/**
* Long content fade mixin
*
* Creates a fading overlay to signify that the content is longer
* than the space allows.
*/
/**
* Typography
*/
/**
* Breakpoint mixins
*/
/**
* Focus styles.
*/
/**
* Applies editor left position to the selector passed as argument
*/
/**
* Styles that are reused verbatim in a few places
*/
/**
* Allows users to opt-out of animations via OS-level preferences.
*/
/**
* Reset default styles for JavaScript UI based pages.
* This is a WP-admin agnostic reset
*/
/**
* Reset the WP Admin page styles for Gutenberg-like pages.
*/
:root {
--wp-admin-theme-color: #007cba;
--wp-admin-theme-color--rgb: 0, 124, 186;
--wp-admin-theme-color-darker-10: #006ba1;
--wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
--wp-admin-theme-color-darker-20: #005a87;
--wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
--wp-admin-border-width-focus: 2px;
--wp-block-synced-color: #7a00df;
--wp-block-synced-color--rgb: 122, 0, 223;
--wp-bound-block-color: var(--wp-block-synced-color);
}
@media (min-resolution: 192dpi) {
:root {
--wp-admin-border-width-focus: 1.5px;
}
}
.commands-command-menu {
border-radius: 4px;
width: calc(100% - 32px);
margin: auto;
max-width: 400px;
position: relative;
top: calc(5% + 60px);
}
@media (min-width: 600px) {
.commands-command-menu {
top: calc(10% + 60px);
}
}
.commands-command-menu .components-modal__content {
margin: 0;
padding: 0;
}
.commands-command-menu__overlay {
display: block;
align-items: start;
}
.commands-command-menu__header {
display: flex;
align-items: center;
padding: 0 16px;
}
.commands-command-menu__header .components-button {
height: 56px;
width: 56px;
border: 1px solid #949494;
border-left: 0;
justify-content: center;
border-radius: 0 2px 2px 0;
}
.commands-command-menu__header .components-button + [cmdk-input] {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.commands-command-menu__container {
will-change: transform;
}
.commands-command-menu__container [cmdk-input] {
border: none;
width: 100%;
padding: 16px 4px;
outline: none;
color: #1e1e1e;
margin: 0;
font-size: 15px;
line-height: 28px;
border-radius: 0;
}
.commands-command-menu__container [cmdk-input]::placeholder {
color: #757575;
}
.commands-command-menu__container [cmdk-input]:focus {
box-shadow: none;
outline: none;
}
.commands-command-menu__container [cmdk-item] {
border-radius: 2px;
cursor: pointer;
display: flex;
align-items: center;
color: #1e1e1e;
font-size: 13px;
}
.commands-command-menu__container [cmdk-item][aria-selected=true], .commands-command-menu__container [cmdk-item]:active {
background: var(--wp-admin-theme-color);
color: #fff;
}
.commands-command-menu__container [cmdk-item][aria-selected=true] svg, .commands-command-menu__container [cmdk-item]:active svg {
fill: #fff;
}
.commands-command-menu__container [cmdk-item][aria-disabled=true] {
color: #949494;
cursor: not-allowed;
}
.commands-command-menu__container [cmdk-item] svg {
fill: #1e1e1e;
}
.commands-command-menu__container [cmdk-item] > div {
min-height: 40px;
padding: 4px;
padding-right: 40px;
}
.commands-command-menu__container [cmdk-item] > .has-icon {
padding-right: 8px;
}
.commands-command-menu__container [cmdk-root] > [cmdk-list] {
max-height: 368px;
overflow: auto;
}
.commands-command-menu__container [cmdk-root] > [cmdk-list] [cmdk-list-sizer] > [cmdk-group]:last-child [cmdk-group-items]:not(:empty) {
padding-bottom: 8px;
}
.commands-command-menu__container [cmdk-root] > [cmdk-list] [cmdk-list-sizer] > [cmdk-group] > [cmdk-group-items]:not(:empty) {
padding: 0 8px;
}
.commands-command-menu__container [cmdk-empty] {
display: flex;
align-items: center;
justify-content: center;
white-space: pre-wrap;
color: #1e1e1e;
padding: 8px 0 32px;
}
.commands-command-menu__container [cmdk-loading] {
padding: 16px;
}
.commands-command-menu__container [cmdk-list-sizer] {
position: relative;
}
.commands-command-menu__item span {
display: inline-block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.commands-command-menu__item mark {
color: inherit;
background: unset;
font-weight: 600;
}