kollapsminoriteten/wp-includes/css/dist/block-directory/style-rtl.css

249 lines
5.0 KiB
CSS
Raw Normal View History

2020-05-06 17:23:38 +02:00
/**
* Colors
*/
/**
* Breakpoints & Media Queries
*/
2021-04-27 08:32:47 +02:00
/**
* 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.
*/
2020-05-06 17:23:38 +02:00
/**
* Colors
*/
2020-09-15 14:29:22 +02:00
/**
* Fonts & basic variables.
2020-05-06 17:23:38 +02:00
*/
/**
* Grid System.
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
*/
2020-09-15 14:29:22 +02:00
/**
* Dimensions.
*/
/**
* Shadows.
*/
/**
* Editor widths.
*/
/**
2021-04-27 08:32:47 +02:00
* Block & Editor UI.
2020-09-15 14:29:22 +02:00
*/
/**
2021-04-27 08:32:47 +02:00
* Block paddings.
2020-09-15 14:29:22 +02:00
*/
2020-12-10 14:06:04 +01:00
/**
2021-04-27 08:32:47 +02:00
* React Native specific.
* These variables do not appear to be used anywhere else.
2020-12-10 14:06:04 +01:00
*/
2020-05-06 17:23:38 +02:00
/**
* Breakpoint mixins
*/
/**
* Long content fade mixin
*
* Creates a fading overlay to signify that the content is longer
* than the space allows.
*/
/**
2020-09-15 14:29:22 +02:00
* Focus styles.
2020-05-06 17:23:38 +02:00
*/
/**
* 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.
*/
2020-09-15 14:29:22 +02:00
:root {
--wp-admin-theme-color: #007cba;
--wp-admin-theme-color-darker-10: #006ba1;
2021-04-27 08:32:47 +02:00
--wp-admin-theme-color-darker-20: #005a87;
--wp-admin-border-width-focus: 2px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
:root {
--wp-admin-border-width-focus: 1.5px;
}
}
2020-09-15 14:29:22 +02:00
2021-07-23 11:58:50 +02:00
.block-directory-block-ratings > span {
2021-04-27 08:32:47 +02:00
display: flex;
}
.block-directory-block-ratings svg {
2021-07-23 11:58:50 +02:00
fill: #1e1e1e;
margin-right: -4px;
}
.block-directory-block-ratings .block-directory-block-ratings__star-empty {
fill: #ccc;
2021-04-27 08:32:47 +02:00
}
2020-09-15 14:29:22 +02:00
.block-directory-compact-list {
margin: 0;
2021-04-27 08:32:47 +02:00
list-style: none;
}
2020-09-15 14:29:22 +02:00
.block-directory-compact-list__item {
display: flex;
flex-direction: row;
align-items: center;
2021-04-27 08:32:47 +02:00
margin-bottom: 16px;
}
.block-directory-compact-list__item:last-child {
margin-bottom: 0;
}
2020-09-15 14:29:22 +02:00
.block-directory-compact-list__item-details {
2021-04-27 08:32:47 +02:00
margin-right: 8px;
}
2020-09-15 14:29:22 +02:00
.block-directory-compact-list__item-title {
2021-04-27 08:32:47 +02:00
font-weight: 500;
}
2020-09-15 14:29:22 +02:00
.block-directory-compact-list__item-author {
2020-12-10 14:06:04 +01:00
color: #757575;
2021-04-27 08:32:47 +02:00
font-size: 11px;
}
2020-09-15 14:29:22 +02:00
.block-directory-downloadable-block-icon {
2021-07-23 11:58:50 +02:00
min-width: 54px;
width: 54px;
height: 54px;
vertical-align: middle;
border: 1px solid #ddd;
2021-04-27 08:32:47 +02:00
}
2020-05-06 17:23:38 +02:00
.block-directory-downloadable-block-list-item {
2021-07-23 11:58:50 +02:00
padding: 12px;
2020-05-06 17:23:38 +02:00
width: 100%;
2021-07-23 11:58:50 +02:00
height: auto;
2020-05-06 17:23:38 +02:00
text-align: right;
2021-07-23 11:58:50 +02:00
display: grid;
grid-template-columns: auto 1fr;
2021-04-27 08:32:47 +02:00
}
2021-07-23 11:58:50 +02:00
.block-directory-downloadable-block-list-item:hover {
box-shadow: 0 0 0 2px var(--wp-admin-theme-color);
2021-04-27 08:32:47 +02:00
}
2021-07-23 11:58:50 +02:00
.block-directory-downloadable-block-list-item.is-busy {
background: transparent;
2021-04-27 08:32:47 +02:00
}
2021-07-23 11:58:50 +02:00
.block-directory-downloadable-block-list-item.is-busy .block-directory-downloadable-block-list-item__author {
border: 0;
clip: rect(1px, 1px, 1px, 1px);
-webkit-clip-path: inset(50%);
clip-path: inset(50%);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
word-wrap: normal !important;
2021-04-27 08:32:47 +02:00
}
2021-07-23 11:58:50 +02:00
.block-directory-downloadable-block-list-item:disabled, .block-directory-downloadable-block-list-item[aria-disabled] {
opacity: 1;
2021-04-27 08:32:47 +02:00
}
2020-05-06 17:23:38 +02:00
2021-07-23 11:58:50 +02:00
.block-directory-downloadable-block-list-item__icon {
position: relative;
margin-left: 16px;
align-self: flex-start;
}
.block-directory-downloadable-block-list-item__icon .block-directory-downloadable-block-list-item__spinner {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: rgba(255, 255, 255, 0.75);
2020-05-06 17:23:38 +02:00
display: flex;
2021-07-23 11:58:50 +02:00
align-items: center;
justify-content: center;
2021-04-27 08:32:47 +02:00
}
2020-05-06 17:23:38 +02:00
2021-07-23 11:58:50 +02:00
.block-directory-block-ratings {
display: block;
margin-top: 4px;
2021-04-27 08:32:47 +02:00
}
2020-05-06 17:23:38 +02:00
2021-07-23 11:58:50 +02:00
.block-directory-downloadable-block-list-item__details {
color: #1e1e1e;
2021-04-27 08:32:47 +02:00
}
2020-05-06 17:23:38 +02:00
2021-07-23 11:58:50 +02:00
.block-directory-downloadable-block-list-item__title {
display: block;
font-weight: 600;
2021-04-27 08:32:47 +02:00
}
2020-05-06 17:23:38 +02:00
2021-07-23 11:58:50 +02:00
.block-directory-downloadable-block-list-item__author {
display: block;
margin-top: 4px;
font-weight: normal;
}
.block-directory-downloadable-block-list-item__desc {
display: block;
margin-top: 8px;
2021-04-27 08:32:47 +02:00
}
2020-05-06 17:23:38 +02:00
2020-09-15 14:29:22 +02:00
.block-directory-downloadable-block-notice {
2021-07-23 11:58:50 +02:00
margin: 8px 0 0;
color: #cc1818;
2021-04-27 08:32:47 +02:00
}
2020-09-15 14:29:22 +02:00
.block-directory-downloadable-block-notice__content {
padding-left: 12px;
2021-04-27 08:32:47 +02:00
margin-bottom: 8px;
}
2020-09-15 14:29:22 +02:00
2021-07-23 11:58:50 +02:00
.block-directory-downloadable-blocks-panel {
2020-09-15 14:29:22 +02:00
padding: 16px;
2021-04-27 08:32:47 +02:00
}
2021-07-23 11:58:50 +02:00
.block-directory-downloadable-blocks-panel.has-blocks-loading {
2020-05-06 17:23:38 +02:00
font-style: normal;
padding: 0;
2020-09-15 14:29:22 +02:00
margin: 112px 0;
2020-05-06 17:23:38 +02:00
text-align: center;
2021-04-27 08:32:47 +02:00
color: #757575;
}
2021-07-23 11:58:50 +02:00
.block-directory-downloadable-blocks-panel.has-blocks-loading .components-spinner {
2021-04-27 08:32:47 +02:00
float: inherit;
}
2020-05-06 17:23:38 +02:00
2021-07-23 11:58:50 +02:00
.block-directory-downloadable-blocks-panel__no-local {
margin: 48px 0;
padding: 0 64px;
color: #757575;
text-align: center;
}
.block-directory-downloadable-blocks-panel__title {
margin: 0 0 4px;
font-size: 14px;
}
.block-directory-downloadable-blocks-panel__description {
margin-top: 0;
}
.block-directory-downloadable-blocks-panel button {
margin-top: 4px;
}
2020-09-15 14:29:22 +02:00
.installed-blocks-pre-publish-panel__copy {
2021-04-27 08:32:47 +02:00
margin-top: 0;
}