initial commit
This commit is contained in:
1121
CTF/Smol/wordpress.old/wp-includes/css/admin-bar-rtl.css
Normal file
1121
CTF/Smol/wordpress.old/wp-includes/css/admin-bar-rtl.css
Normal file
File diff suppressed because it is too large
Load Diff
2
CTF/Smol/wordpress.old/wp-includes/css/admin-bar-rtl.min.css
vendored
Normal file
2
CTF/Smol/wordpress.old/wp-includes/css/admin-bar-rtl.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1120
CTF/Smol/wordpress.old/wp-includes/css/admin-bar.css
Normal file
1120
CTF/Smol/wordpress.old/wp-includes/css/admin-bar.css
Normal file
File diff suppressed because it is too large
Load Diff
2
CTF/Smol/wordpress.old/wp-includes/css/admin-bar.min.css
vendored
Normal file
2
CTF/Smol/wordpress.old/wp-includes/css/admin-bar.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
402
CTF/Smol/wordpress.old/wp-includes/css/buttons-rtl.css
Normal file
402
CTF/Smol/wordpress.old/wp-includes/css/buttons-rtl.css
Normal file
@@ -0,0 +1,402 @@
|
||||
/*! This file is auto-generated */
|
||||
/* ----------------------------------------------------------------------------
|
||||
|
||||
NOTE: If you edit this file, you should make sure that the CSS rules for
|
||||
buttons in the following files are updated.
|
||||
|
||||
* jquery-ui-dialog.css
|
||||
* editor.css
|
||||
|
||||
WordPress-style Buttons
|
||||
=======================
|
||||
Create a button by adding the `.button` class to an element. For backward
|
||||
compatibility, we support several other classes (such as `.button-secondary`),
|
||||
but these will *not* work with the stackable classes described below.
|
||||
|
||||
Button Styles
|
||||
-------------
|
||||
To display a primary button style, add the `.button-primary` class to a button.
|
||||
|
||||
Button Sizes
|
||||
------------
|
||||
Adjust a button's size by adding the `.button-large` or `.button-small` class.
|
||||
|
||||
Button States
|
||||
-------------
|
||||
Lock the state of a button by adding the name of the pseudoclass as
|
||||
an actual class (e.g. `.hover` for `:hover`).
|
||||
|
||||
|
||||
TABLE OF CONTENTS:
|
||||
------------------
|
||||
1.0 - Button Layouts
|
||||
2.0 - Default Button Style
|
||||
3.0 - Primary Button Style
|
||||
4.0 - Button Groups
|
||||
5.0 - Responsive Button Styles
|
||||
|
||||
---------------------------------------------------------------------------- */
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
1.0 - Button Layouts
|
||||
---------------------------------------------------------------------------- */
|
||||
|
||||
.wp-core-ui .button,
|
||||
.wp-core-ui .button-primary,
|
||||
.wp-core-ui .button-secondary {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
font-size: 13px;
|
||||
line-height: 2.15384615; /* 28px */
|
||||
min-height: 30px;
|
||||
margin: 0;
|
||||
padding: 0 10px;
|
||||
cursor: pointer;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
-webkit-appearance: none;
|
||||
border-radius: 3px;
|
||||
white-space: nowrap;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
/* Remove the dotted border on :focus and the extra padding in Firefox */
|
||||
.wp-core-ui button::-moz-focus-inner,
|
||||
.wp-core-ui input[type="reset"]::-moz-focus-inner,
|
||||
.wp-core-ui input[type="button"]::-moz-focus-inner,
|
||||
.wp-core-ui input[type="submit"]::-moz-focus-inner {
|
||||
border-width: 0;
|
||||
border-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.button-large,
|
||||
.wp-core-ui .button-group.button-large .button {
|
||||
min-height: 32px;
|
||||
line-height: 2.30769231; /* 30px */
|
||||
padding: 0 12px;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.button-small,
|
||||
.wp-core-ui .button-group.button-small .button {
|
||||
min-height: 26px;
|
||||
line-height: 2.18181818; /* 24px */
|
||||
padding: 0 8px;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.button-hero,
|
||||
.wp-core-ui .button-group.button-hero .button {
|
||||
font-size: 14px;
|
||||
min-height: 46px;
|
||||
line-height: 3.14285714;
|
||||
padding: 0 36px;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Style Reset buttons as simple text links */
|
||||
|
||||
.wp-core-ui input[type="reset"],
|
||||
.wp-core-ui input[type="reset"]:hover,
|
||||
.wp-core-ui input[type="reset"]:active,
|
||||
.wp-core-ui input[type="reset"]:focus {
|
||||
background: none;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
padding: 0 2px 1px;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
2.0 - Default Button Style
|
||||
---------------------------------------------------------------------------- */
|
||||
|
||||
.wp-core-ui .button,
|
||||
.wp-core-ui .button-secondary {
|
||||
color: #2271b1;
|
||||
border-color: #2271b1;
|
||||
background: #f6f7f7;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.wp-core-ui p .button {
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.hover,
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button-secondary:hover{
|
||||
background: #f0f0f1;
|
||||
border-color: #0a4b78;
|
||||
color: #0a4b78;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
background: #f6f7f7;
|
||||
border-color: #3582c4;
|
||||
color: #0a4b78;
|
||||
box-shadow: 0 0 0 1px #3582c4;
|
||||
/* Only visible in Windows High Contrast mode */
|
||||
outline: 2px solid transparent;
|
||||
/* Reset inherited offset from Gutenberg */
|
||||
outline-offset: 0;
|
||||
}
|
||||
|
||||
/* :active state */
|
||||
.wp-core-ui .button:active,
|
||||
.wp-core-ui .button-secondary:active {
|
||||
background: #f6f7f7;
|
||||
border-color: #8c8f94;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
/* pressed state e.g. a selected setting */
|
||||
.wp-core-ui .button.active,
|
||||
.wp-core-ui .button.active:hover {
|
||||
background-color: #dcdcde;
|
||||
color: #135e96;
|
||||
border-color: #0a4b78;
|
||||
box-shadow: inset 0 2px 5px -3px #0a4b78;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.active:focus {
|
||||
border-color: #3582c4;
|
||||
box-shadow:
|
||||
inset 0 2px 5px -3px #0a4b78,
|
||||
0 0 0 1px #3582c4;
|
||||
}
|
||||
|
||||
.wp-core-ui .button[disabled],
|
||||
.wp-core-ui .button:disabled,
|
||||
.wp-core-ui .button.disabled,
|
||||
.wp-core-ui .button-secondary[disabled],
|
||||
.wp-core-ui .button-secondary:disabled,
|
||||
.wp-core-ui .button-secondary.disabled,
|
||||
.wp-core-ui .button-disabled {
|
||||
color: #a7aaad !important;
|
||||
border-color: #dcdcde !important;
|
||||
background: #f6f7f7 !important;
|
||||
box-shadow: none !important;
|
||||
cursor: default;
|
||||
transform: none !important;
|
||||
}
|
||||
|
||||
/* Buttons that look like links, for a cross of good semantics with the visual */
|
||||
.wp-core-ui .button-link {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-shadow: none;
|
||||
border: 0;
|
||||
border-radius: 0;
|
||||
background: none;
|
||||
cursor: pointer;
|
||||
text-align: right;
|
||||
/* Mimics the default link style in common.css */
|
||||
color: #2271b1;
|
||||
text-decoration: underline;
|
||||
transition-property: border, background, color;
|
||||
transition-duration: .05s;
|
||||
transition-timing-function: ease-in-out;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-link:hover,
|
||||
.wp-core-ui .button-link:active {
|
||||
color: #135e96;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-link:focus {
|
||||
color: #043959;
|
||||
box-shadow:
|
||||
0 0 0 1px #4f94d4,
|
||||
0 0 2px 1px rgba(79, 148, 212, 0.8);
|
||||
/* Only visible in Windows High Contrast mode */
|
||||
outline: 1px solid transparent;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-link-delete {
|
||||
color: #d63638;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-link-delete:hover,
|
||||
.wp-core-ui .button-link-delete:focus {
|
||||
color: #d63638;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-link-delete:disabled {
|
||||
/* overrides the default buttons disabled background */
|
||||
background: transparent !important;
|
||||
}
|
||||
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
3.0 - Primary Button Style
|
||||
---------------------------------------------------------------------------- */
|
||||
|
||||
.wp-core-ui .button-primary {
|
||||
background: #2271b1;
|
||||
border-color: #2271b1;
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-primary.hover,
|
||||
.wp-core-ui .button-primary:hover,
|
||||
.wp-core-ui .button-primary.focus,
|
||||
.wp-core-ui .button-primary:focus {
|
||||
background: #135e96;
|
||||
border-color: #135e96;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-primary.focus,
|
||||
.wp-core-ui .button-primary:focus {
|
||||
box-shadow:
|
||||
0 0 0 1px #fff,
|
||||
0 0 0 3px #2271b1;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-primary.active,
|
||||
.wp-core-ui .button-primary.active:hover,
|
||||
.wp-core-ui .button-primary.active:focus,
|
||||
.wp-core-ui .button-primary:active {
|
||||
background: #135e96;
|
||||
border-color: #135e96;
|
||||
box-shadow: none;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-primary[disabled],
|
||||
.wp-core-ui .button-primary:disabled,
|
||||
.wp-core-ui .button-primary-disabled,
|
||||
.wp-core-ui .button-primary.disabled {
|
||||
color: #a7aaad !important;
|
||||
background: #f6f7f7 !important;
|
||||
border-color: #dcdcde !important;
|
||||
box-shadow: none !important;
|
||||
text-shadow: none !important;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
4.0 - Button Groups
|
||||
---------------------------------------------------------------------------- */
|
||||
|
||||
.wp-core-ui .button-group {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
white-space: nowrap;
|
||||
font-size: 0;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button {
|
||||
display: inline-block;
|
||||
border-radius: 0;
|
||||
margin-left: -1px;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button:first-child {
|
||||
border-radius: 0 3px 3px 0;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button:last-child {
|
||||
border-radius: 3px 0 0 3px;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button-primary + .button {
|
||||
border-right: 0;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button:focus {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
/* pressed state e.g. a selected setting */
|
||||
.wp-core-ui .button-group > .button.active {
|
||||
background-color: #dcdcde;
|
||||
color: #135e96;
|
||||
border-color: #0a4b78;
|
||||
box-shadow: inset 0 2px 5px -3px #0a4b78;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button.active:focus {
|
||||
border-color: #3582c4;
|
||||
box-shadow:
|
||||
inset 0 2px 5px -3px #0a4b78,
|
||||
0 0 0 1px #3582c4;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
5.0 - Responsive Button Styles
|
||||
---------------------------------------------------------------------------- */
|
||||
|
||||
@media screen and (max-width: 782px) {
|
||||
|
||||
.wp-core-ui .button,
|
||||
.wp-core-ui .button.button-large,
|
||||
.wp-core-ui .button.button-small,
|
||||
input#publish,
|
||||
input#save-post,
|
||||
a.preview {
|
||||
padding: 0 14px;
|
||||
line-height: 2.71428571; /* 38px */
|
||||
font-size: 14px;
|
||||
vertical-align: middle;
|
||||
min-height: 40px;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
/* Copy attachment URL button in the legacy edit media page. */
|
||||
.wp-core-ui .copy-to-clipboard-container .copy-attachment-url {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#media-upload.wp-core-ui .button {
|
||||
padding: 0 10px 1px;
|
||||
min-height: 24px;
|
||||
line-height: 22px;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.media-frame.mode-grid .bulk-select .button {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
/* Publish Metabox Options */
|
||||
.wp-core-ui .save-post-status.button {
|
||||
position: relative;
|
||||
margin: 0 10px 0 14px; /* 14px right margin to match all other buttons */
|
||||
}
|
||||
|
||||
/* Reset responsive styles in Press This, Customizer */
|
||||
|
||||
.wp-core-ui.wp-customizer .button {
|
||||
font-size: 13px;
|
||||
line-height: 2.15384615; /* 28px */
|
||||
min-height: 30px;
|
||||
margin: 0;
|
||||
vertical-align: inherit;
|
||||
}
|
||||
|
||||
.media-modal-content .media-toolbar-primary .media-button {
|
||||
margin-top: 10px;
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
/* Reset responsive styles on Log in button on iframed login form */
|
||||
|
||||
.interim-login .button.button-large {
|
||||
min-height: 30px;
|
||||
line-height: 2;
|
||||
padding: 0 12px 2px;
|
||||
}
|
||||
|
||||
}
|
||||
2
CTF/Smol/wordpress.old/wp-includes/css/buttons-rtl.min.css
vendored
Normal file
2
CTF/Smol/wordpress.old/wp-includes/css/buttons-rtl.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
401
CTF/Smol/wordpress.old/wp-includes/css/buttons.css
Normal file
401
CTF/Smol/wordpress.old/wp-includes/css/buttons.css
Normal file
@@ -0,0 +1,401 @@
|
||||
/* ----------------------------------------------------------------------------
|
||||
|
||||
NOTE: If you edit this file, you should make sure that the CSS rules for
|
||||
buttons in the following files are updated.
|
||||
|
||||
* jquery-ui-dialog.css
|
||||
* editor.css
|
||||
|
||||
WordPress-style Buttons
|
||||
=======================
|
||||
Create a button by adding the `.button` class to an element. For backward
|
||||
compatibility, we support several other classes (such as `.button-secondary`),
|
||||
but these will *not* work with the stackable classes described below.
|
||||
|
||||
Button Styles
|
||||
-------------
|
||||
To display a primary button style, add the `.button-primary` class to a button.
|
||||
|
||||
Button Sizes
|
||||
------------
|
||||
Adjust a button's size by adding the `.button-large` or `.button-small` class.
|
||||
|
||||
Button States
|
||||
-------------
|
||||
Lock the state of a button by adding the name of the pseudoclass as
|
||||
an actual class (e.g. `.hover` for `:hover`).
|
||||
|
||||
|
||||
TABLE OF CONTENTS:
|
||||
------------------
|
||||
1.0 - Button Layouts
|
||||
2.0 - Default Button Style
|
||||
3.0 - Primary Button Style
|
||||
4.0 - Button Groups
|
||||
5.0 - Responsive Button Styles
|
||||
|
||||
---------------------------------------------------------------------------- */
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
1.0 - Button Layouts
|
||||
---------------------------------------------------------------------------- */
|
||||
|
||||
.wp-core-ui .button,
|
||||
.wp-core-ui .button-primary,
|
||||
.wp-core-ui .button-secondary {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
font-size: 13px;
|
||||
line-height: 2.15384615; /* 28px */
|
||||
min-height: 30px;
|
||||
margin: 0;
|
||||
padding: 0 10px;
|
||||
cursor: pointer;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
-webkit-appearance: none;
|
||||
border-radius: 3px;
|
||||
white-space: nowrap;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
/* Remove the dotted border on :focus and the extra padding in Firefox */
|
||||
.wp-core-ui button::-moz-focus-inner,
|
||||
.wp-core-ui input[type="reset"]::-moz-focus-inner,
|
||||
.wp-core-ui input[type="button"]::-moz-focus-inner,
|
||||
.wp-core-ui input[type="submit"]::-moz-focus-inner {
|
||||
border-width: 0;
|
||||
border-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.button-large,
|
||||
.wp-core-ui .button-group.button-large .button {
|
||||
min-height: 32px;
|
||||
line-height: 2.30769231; /* 30px */
|
||||
padding: 0 12px;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.button-small,
|
||||
.wp-core-ui .button-group.button-small .button {
|
||||
min-height: 26px;
|
||||
line-height: 2.18181818; /* 24px */
|
||||
padding: 0 8px;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.button-hero,
|
||||
.wp-core-ui .button-group.button-hero .button {
|
||||
font-size: 14px;
|
||||
min-height: 46px;
|
||||
line-height: 3.14285714;
|
||||
padding: 0 36px;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Style Reset buttons as simple text links */
|
||||
|
||||
.wp-core-ui input[type="reset"],
|
||||
.wp-core-ui input[type="reset"]:hover,
|
||||
.wp-core-ui input[type="reset"]:active,
|
||||
.wp-core-ui input[type="reset"]:focus {
|
||||
background: none;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
padding: 0 2px 1px;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
2.0 - Default Button Style
|
||||
---------------------------------------------------------------------------- */
|
||||
|
||||
.wp-core-ui .button,
|
||||
.wp-core-ui .button-secondary {
|
||||
color: #2271b1;
|
||||
border-color: #2271b1;
|
||||
background: #f6f7f7;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.wp-core-ui p .button {
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.hover,
|
||||
.wp-core-ui .button:hover,
|
||||
.wp-core-ui .button-secondary:hover{
|
||||
background: #f0f0f1;
|
||||
border-color: #0a4b78;
|
||||
color: #0a4b78;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
background: #f6f7f7;
|
||||
border-color: #3582c4;
|
||||
color: #0a4b78;
|
||||
box-shadow: 0 0 0 1px #3582c4;
|
||||
/* Only visible in Windows High Contrast mode */
|
||||
outline: 2px solid transparent;
|
||||
/* Reset inherited offset from Gutenberg */
|
||||
outline-offset: 0;
|
||||
}
|
||||
|
||||
/* :active state */
|
||||
.wp-core-ui .button:active,
|
||||
.wp-core-ui .button-secondary:active {
|
||||
background: #f6f7f7;
|
||||
border-color: #8c8f94;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
/* pressed state e.g. a selected setting */
|
||||
.wp-core-ui .button.active,
|
||||
.wp-core-ui .button.active:hover {
|
||||
background-color: #dcdcde;
|
||||
color: #135e96;
|
||||
border-color: #0a4b78;
|
||||
box-shadow: inset 0 2px 5px -3px #0a4b78;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.active:focus {
|
||||
border-color: #3582c4;
|
||||
box-shadow:
|
||||
inset 0 2px 5px -3px #0a4b78,
|
||||
0 0 0 1px #3582c4;
|
||||
}
|
||||
|
||||
.wp-core-ui .button[disabled],
|
||||
.wp-core-ui .button:disabled,
|
||||
.wp-core-ui .button.disabled,
|
||||
.wp-core-ui .button-secondary[disabled],
|
||||
.wp-core-ui .button-secondary:disabled,
|
||||
.wp-core-ui .button-secondary.disabled,
|
||||
.wp-core-ui .button-disabled {
|
||||
color: #a7aaad !important;
|
||||
border-color: #dcdcde !important;
|
||||
background: #f6f7f7 !important;
|
||||
box-shadow: none !important;
|
||||
cursor: default;
|
||||
transform: none !important;
|
||||
}
|
||||
|
||||
/* Buttons that look like links, for a cross of good semantics with the visual */
|
||||
.wp-core-ui .button-link {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-shadow: none;
|
||||
border: 0;
|
||||
border-radius: 0;
|
||||
background: none;
|
||||
cursor: pointer;
|
||||
text-align: left;
|
||||
/* Mimics the default link style in common.css */
|
||||
color: #2271b1;
|
||||
text-decoration: underline;
|
||||
transition-property: border, background, color;
|
||||
transition-duration: .05s;
|
||||
transition-timing-function: ease-in-out;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-link:hover,
|
||||
.wp-core-ui .button-link:active {
|
||||
color: #135e96;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-link:focus {
|
||||
color: #043959;
|
||||
box-shadow:
|
||||
0 0 0 1px #4f94d4,
|
||||
0 0 2px 1px rgba(79, 148, 212, 0.8);
|
||||
/* Only visible in Windows High Contrast mode */
|
||||
outline: 1px solid transparent;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-link-delete {
|
||||
color: #d63638;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-link-delete:hover,
|
||||
.wp-core-ui .button-link-delete:focus {
|
||||
color: #d63638;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-link-delete:disabled {
|
||||
/* overrides the default buttons disabled background */
|
||||
background: transparent !important;
|
||||
}
|
||||
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
3.0 - Primary Button Style
|
||||
---------------------------------------------------------------------------- */
|
||||
|
||||
.wp-core-ui .button-primary {
|
||||
background: #2271b1;
|
||||
border-color: #2271b1;
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-primary.hover,
|
||||
.wp-core-ui .button-primary:hover,
|
||||
.wp-core-ui .button-primary.focus,
|
||||
.wp-core-ui .button-primary:focus {
|
||||
background: #135e96;
|
||||
border-color: #135e96;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-primary.focus,
|
||||
.wp-core-ui .button-primary:focus {
|
||||
box-shadow:
|
||||
0 0 0 1px #fff,
|
||||
0 0 0 3px #2271b1;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-primary.active,
|
||||
.wp-core-ui .button-primary.active:hover,
|
||||
.wp-core-ui .button-primary.active:focus,
|
||||
.wp-core-ui .button-primary:active {
|
||||
background: #135e96;
|
||||
border-color: #135e96;
|
||||
box-shadow: none;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-primary[disabled],
|
||||
.wp-core-ui .button-primary:disabled,
|
||||
.wp-core-ui .button-primary-disabled,
|
||||
.wp-core-ui .button-primary.disabled {
|
||||
color: #a7aaad !important;
|
||||
background: #f6f7f7 !important;
|
||||
border-color: #dcdcde !important;
|
||||
box-shadow: none !important;
|
||||
text-shadow: none !important;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
4.0 - Button Groups
|
||||
---------------------------------------------------------------------------- */
|
||||
|
||||
.wp-core-ui .button-group {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
white-space: nowrap;
|
||||
font-size: 0;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button {
|
||||
display: inline-block;
|
||||
border-radius: 0;
|
||||
margin-right: -1px;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button:first-child {
|
||||
border-radius: 3px 0 0 3px;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button:last-child {
|
||||
border-radius: 0 3px 3px 0;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button-primary + .button {
|
||||
border-left: 0;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button:focus {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
/* pressed state e.g. a selected setting */
|
||||
.wp-core-ui .button-group > .button.active {
|
||||
background-color: #dcdcde;
|
||||
color: #135e96;
|
||||
border-color: #0a4b78;
|
||||
box-shadow: inset 0 2px 5px -3px #0a4b78;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button.active:focus {
|
||||
border-color: #3582c4;
|
||||
box-shadow:
|
||||
inset 0 2px 5px -3px #0a4b78,
|
||||
0 0 0 1px #3582c4;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
5.0 - Responsive Button Styles
|
||||
---------------------------------------------------------------------------- */
|
||||
|
||||
@media screen and (max-width: 782px) {
|
||||
|
||||
.wp-core-ui .button,
|
||||
.wp-core-ui .button.button-large,
|
||||
.wp-core-ui .button.button-small,
|
||||
input#publish,
|
||||
input#save-post,
|
||||
a.preview {
|
||||
padding: 0 14px;
|
||||
line-height: 2.71428571; /* 38px */
|
||||
font-size: 14px;
|
||||
vertical-align: middle;
|
||||
min-height: 40px;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
/* Copy attachment URL button in the legacy edit media page. */
|
||||
.wp-core-ui .copy-to-clipboard-container .copy-attachment-url {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#media-upload.wp-core-ui .button {
|
||||
padding: 0 10px 1px;
|
||||
min-height: 24px;
|
||||
line-height: 22px;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.media-frame.mode-grid .bulk-select .button {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
/* Publish Metabox Options */
|
||||
.wp-core-ui .save-post-status.button {
|
||||
position: relative;
|
||||
margin: 0 14px 0 10px; /* 14px right margin to match all other buttons */
|
||||
}
|
||||
|
||||
/* Reset responsive styles in Press This, Customizer */
|
||||
|
||||
.wp-core-ui.wp-customizer .button {
|
||||
font-size: 13px;
|
||||
line-height: 2.15384615; /* 28px */
|
||||
min-height: 30px;
|
||||
margin: 0;
|
||||
vertical-align: inherit;
|
||||
}
|
||||
|
||||
.media-modal-content .media-toolbar-primary .media-button {
|
||||
margin-top: 10px;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
/* Reset responsive styles on Log in button on iframed login form */
|
||||
|
||||
.interim-login .button.button-large {
|
||||
min-height: 30px;
|
||||
line-height: 2;
|
||||
padding: 0 12px 2px;
|
||||
}
|
||||
|
||||
}
|
||||
2
CTF/Smol/wordpress.old/wp-includes/css/buttons.min.css
vendored
Normal file
2
CTF/Smol/wordpress.old/wp-includes/css/buttons.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
24
CTF/Smol/wordpress.old/wp-includes/css/classic-themes.css
Normal file
24
CTF/Smol/wordpress.old/wp-includes/css/classic-themes.css
Normal file
@@ -0,0 +1,24 @@
|
||||
/**
|
||||
* These rules are needed for backwards compatibility.
|
||||
* They should match the button element rules in the base theme.json file.
|
||||
*/
|
||||
.wp-block-button__link {
|
||||
color: #ffffff;
|
||||
background-color: #32373c;
|
||||
border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */
|
||||
|
||||
/* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */
|
||||
box-shadow: none;
|
||||
text-decoration: none;
|
||||
|
||||
/* The extra 2px are added to size solids the same as the outline versions.*/
|
||||
padding: calc(0.667em + 2px) calc(1.333em + 2px);
|
||||
|
||||
font-size: 1.125em;
|
||||
}
|
||||
|
||||
.wp-block-file__button {
|
||||
background: #32373c;
|
||||
color: #ffffff;
|
||||
text-decoration: none;
|
||||
}
|
||||
2
CTF/Smol/wordpress.old/wp-includes/css/classic-themes.min.css
vendored
Normal file
2
CTF/Smol/wordpress.old/wp-includes/css/classic-themes.min.css
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
/*! This file is auto-generated */
|
||||
.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
|
||||
167
CTF/Smol/wordpress.old/wp-includes/css/customize-preview-rtl.css
Normal file
167
CTF/Smol/wordpress.old/wp-includes/css/customize-preview-rtl.css
Normal file
@@ -0,0 +1,167 @@
|
||||
/*! This file is auto-generated */
|
||||
.customize-partial-refreshing {
|
||||
opacity: 0.25;
|
||||
transition: opacity 0.25s;
|
||||
cursor: progress;
|
||||
}
|
||||
|
||||
/* Override highlight when refreshing */
|
||||
.customize-partial-refreshing.widget-customizer-highlighted-widget {
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
/* Make shortcut buttons essentially invisible */
|
||||
.widget .customize-partial-edit-shortcut,
|
||||
.customize-partial-edit-shortcut {
|
||||
position: absolute;
|
||||
float: right;
|
||||
width: 1px; /* required to have a size to be focusable in Safari */
|
||||
height: 1px;
|
||||
padding: 0;
|
||||
margin: -1px -1px 0 0;
|
||||
border: 0;
|
||||
background: transparent;
|
||||
color: transparent;
|
||||
box-shadow: none;
|
||||
outline: none;
|
||||
z-index: 5;
|
||||
}
|
||||
|
||||
/**
|
||||
* Styles for the actual shortcut
|
||||
*
|
||||
* Note that some properties are overly verbose to prevent theme interference.
|
||||
*/
|
||||
.widget .customize-partial-edit-shortcut button,
|
||||
.customize-partial-edit-shortcut button {
|
||||
position: absolute;
|
||||
right: -30px;
|
||||
top: 2px;
|
||||
color: #fff;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
min-width: 30px;
|
||||
min-height: 30px;
|
||||
line-height: 1 !important;
|
||||
font-size: 18px;
|
||||
z-index: 5;
|
||||
background: #3582c4 !important;
|
||||
border-radius: 50%;
|
||||
border: 2px solid #fff;
|
||||
box-shadow: 0 2px 1px rgba(60, 67, 74, 0.15);
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
box-sizing: border-box;
|
||||
padding: 3px;
|
||||
animation-fill-mode: both;
|
||||
animation-duration: .4s;
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
text-shadow:
|
||||
0 -1px 1px #135e96,
|
||||
-1px 0 1px #135e96,
|
||||
0 1px 1px #135e96,
|
||||
1px 0 1px #135e96;
|
||||
}
|
||||
.wp-custom-header .customize-partial-edit-shortcut button {
|
||||
right: 2px
|
||||
}
|
||||
|
||||
.customize-partial-edit-shortcut button svg {
|
||||
fill: #fff;
|
||||
min-width: 20px;
|
||||
min-height: 20px;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.customize-partial-edit-shortcut button:hover {
|
||||
background: #4f94d4 !important; /* matches primary buttons */
|
||||
}
|
||||
|
||||
.customize-partial-edit-shortcut button:focus {
|
||||
box-shadow: 0 0 0 2px #4f94d4;
|
||||
}
|
||||
|
||||
body.customize-partial-edit-shortcuts-shown .customize-partial-edit-shortcut button {
|
||||
animation-name: customize-partial-edit-shortcut-bounce-appear;
|
||||
pointer-events: auto;
|
||||
}
|
||||
body.customize-partial-edit-shortcuts-hidden .customize-partial-edit-shortcut button {
|
||||
animation-name: customize-partial-edit-shortcut-bounce-disappear;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.page-sidebar-collapsed .customize-partial-edit-shortcut button,
|
||||
.customize-partial-edit-shortcut-hidden .customize-partial-edit-shortcut button {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
@keyframes customize-partial-edit-shortcut-bounce-appear {
|
||||
from, 20%, 40%, 60%, 80%, to {
|
||||
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
||||
}
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: scale3d(.3, .3, .3);
|
||||
}
|
||||
20% {
|
||||
transform: scale3d(1.1, 1.1, 1.1);
|
||||
}
|
||||
40% {
|
||||
transform: scale3d(.9, .9, .9);
|
||||
}
|
||||
60% {
|
||||
opacity: 1;
|
||||
transform: scale3d(1.03, 1.03, 1.03);
|
||||
}
|
||||
80% {
|
||||
transform: scale3d(.97, .97, .97);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: scale3d(1, 1, 1);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes customize-partial-edit-shortcut-bounce-disappear {
|
||||
from, 20%, 40%, 60%, 80%, to {
|
||||
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
||||
}
|
||||
0% {
|
||||
opacity: 1;
|
||||
transform: scale3d(1, 1, 1);
|
||||
}
|
||||
20% {
|
||||
transform: scale3d(.97, .97, .97);
|
||||
}
|
||||
40% {
|
||||
opacity: 1;
|
||||
transform: scale3d(1.03, 1.03, 1.03);
|
||||
}
|
||||
60% {
|
||||
transform: scale3d(.9, .9, .9);
|
||||
}
|
||||
80% {
|
||||
transform: scale3d(1.1, 1.1, 1.1);
|
||||
}
|
||||
to {
|
||||
opacity: 0;
|
||||
transform: scale3d(.3, .3, .3);
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 800px) {
|
||||
.widget .customize-partial-edit-shortcut button,
|
||||
.customize-partial-edit-shortcut button {
|
||||
right: -32px;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 320px) {
|
||||
.widget .customize-partial-edit-shortcut button,
|
||||
.customize-partial-edit-shortcut button {
|
||||
right: -30px;
|
||||
}
|
||||
}
|
||||
2
CTF/Smol/wordpress.old/wp-includes/css/customize-preview-rtl.min.css
vendored
Normal file
2
CTF/Smol/wordpress.old/wp-includes/css/customize-preview-rtl.min.css
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
/*! This file is auto-generated */
|
||||
.customize-partial-refreshing{opacity:.25;transition:opacity .25s;cursor:progress}.customize-partial-refreshing.widget-customizer-highlighted-widget{box-shadow:none}.customize-partial-edit-shortcut,.widget .customize-partial-edit-shortcut{position:absolute;float:right;width:1px;height:1px;padding:0;margin:-1px -1px 0 0;border:0;background:0 0;color:transparent;box-shadow:none;outline:0;z-index:5}.customize-partial-edit-shortcut button,.widget .customize-partial-edit-shortcut button{position:absolute;right:-30px;top:2px;color:#fff;width:30px;height:30px;min-width:30px;min-height:30px;line-height:1!important;font-size:18px;z-index:5;background:#3582c4!important;border-radius:50%;border:2px solid #fff;box-shadow:0 2px 1px rgba(60,67,74,.15);text-align:center;cursor:pointer;box-sizing:border-box;padding:3px;animation-fill-mode:both;animation-duration:.4s;opacity:0;pointer-events:none;text-shadow:0 -1px 1px #135e96,-1px 0 1px #135e96,0 1px 1px #135e96,1px 0 1px #135e96}.wp-custom-header .customize-partial-edit-shortcut button{right:2px}.customize-partial-edit-shortcut button svg{fill:#fff;min-width:20px;min-height:20px;width:20px;height:20px;margin:auto}.customize-partial-edit-shortcut button:hover{background:#4f94d4!important}.customize-partial-edit-shortcut button:focus{box-shadow:0 0 0 2px #4f94d4}body.customize-partial-edit-shortcuts-shown .customize-partial-edit-shortcut button{animation-name:customize-partial-edit-shortcut-bounce-appear;pointer-events:auto}body.customize-partial-edit-shortcuts-hidden .customize-partial-edit-shortcut button{animation-name:customize-partial-edit-shortcut-bounce-disappear;pointer-events:none}.customize-partial-edit-shortcut-hidden .customize-partial-edit-shortcut button,.page-sidebar-collapsed .customize-partial-edit-shortcut button{visibility:hidden}@keyframes customize-partial-edit-shortcut-bounce-appear{20%,40%,60%,80%,from,to{animation-timing-function:cubic-bezier(0.215,0.610,0.355,1.000)}0%{opacity:0;transform:scale3d(.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(.97,.97,.97)}to{opacity:1;transform:scale3d(1,1,1)}}@keyframes customize-partial-edit-shortcut-bounce-disappear{20%,40%,60%,80%,from,to{animation-timing-function:cubic-bezier(0.215,0.610,0.355,1.000)}0%{opacity:1;transform:scale3d(1,1,1)}20%{transform:scale3d(.97,.97,.97)}40%{opacity:1;transform:scale3d(1.03,1.03,1.03)}60%{transform:scale3d(.9,.9,.9)}80%{transform:scale3d(1.1,1.1,1.1)}to{opacity:0;transform:scale3d(.3,.3,.3)}}@media screen and (max-width:800px){.customize-partial-edit-shortcut button,.widget .customize-partial-edit-shortcut button{right:-32px}}@media screen and (max-width:320px){.customize-partial-edit-shortcut button,.widget .customize-partial-edit-shortcut button{right:-30px}}
|
||||
166
CTF/Smol/wordpress.old/wp-includes/css/customize-preview.css
Normal file
166
CTF/Smol/wordpress.old/wp-includes/css/customize-preview.css
Normal file
@@ -0,0 +1,166 @@
|
||||
.customize-partial-refreshing {
|
||||
opacity: 0.25;
|
||||
transition: opacity 0.25s;
|
||||
cursor: progress;
|
||||
}
|
||||
|
||||
/* Override highlight when refreshing */
|
||||
.customize-partial-refreshing.widget-customizer-highlighted-widget {
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
/* Make shortcut buttons essentially invisible */
|
||||
.widget .customize-partial-edit-shortcut,
|
||||
.customize-partial-edit-shortcut {
|
||||
position: absolute;
|
||||
float: left;
|
||||
width: 1px; /* required to have a size to be focusable in Safari */
|
||||
height: 1px;
|
||||
padding: 0;
|
||||
margin: -1px 0 0 -1px;
|
||||
border: 0;
|
||||
background: transparent;
|
||||
color: transparent;
|
||||
box-shadow: none;
|
||||
outline: none;
|
||||
z-index: 5;
|
||||
}
|
||||
|
||||
/**
|
||||
* Styles for the actual shortcut
|
||||
*
|
||||
* Note that some properties are overly verbose to prevent theme interference.
|
||||
*/
|
||||
.widget .customize-partial-edit-shortcut button,
|
||||
.customize-partial-edit-shortcut button {
|
||||
position: absolute;
|
||||
left: -30px;
|
||||
top: 2px;
|
||||
color: #fff;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
min-width: 30px;
|
||||
min-height: 30px;
|
||||
line-height: 1 !important;
|
||||
font-size: 18px;
|
||||
z-index: 5;
|
||||
background: #3582c4 !important;
|
||||
border-radius: 50%;
|
||||
border: 2px solid #fff;
|
||||
box-shadow: 0 2px 1px rgba(60, 67, 74, 0.15);
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
box-sizing: border-box;
|
||||
padding: 3px;
|
||||
animation-fill-mode: both;
|
||||
animation-duration: .4s;
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
text-shadow:
|
||||
0 -1px 1px #135e96,
|
||||
1px 0 1px #135e96,
|
||||
0 1px 1px #135e96,
|
||||
-1px 0 1px #135e96;
|
||||
}
|
||||
.wp-custom-header .customize-partial-edit-shortcut button {
|
||||
left: 2px
|
||||
}
|
||||
|
||||
.customize-partial-edit-shortcut button svg {
|
||||
fill: #fff;
|
||||
min-width: 20px;
|
||||
min-height: 20px;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.customize-partial-edit-shortcut button:hover {
|
||||
background: #4f94d4 !important; /* matches primary buttons */
|
||||
}
|
||||
|
||||
.customize-partial-edit-shortcut button:focus {
|
||||
box-shadow: 0 0 0 2px #4f94d4;
|
||||
}
|
||||
|
||||
body.customize-partial-edit-shortcuts-shown .customize-partial-edit-shortcut button {
|
||||
animation-name: customize-partial-edit-shortcut-bounce-appear;
|
||||
pointer-events: auto;
|
||||
}
|
||||
body.customize-partial-edit-shortcuts-hidden .customize-partial-edit-shortcut button {
|
||||
animation-name: customize-partial-edit-shortcut-bounce-disappear;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.page-sidebar-collapsed .customize-partial-edit-shortcut button,
|
||||
.customize-partial-edit-shortcut-hidden .customize-partial-edit-shortcut button {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
@keyframes customize-partial-edit-shortcut-bounce-appear {
|
||||
from, 20%, 40%, 60%, 80%, to {
|
||||
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
||||
}
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: scale3d(.3, .3, .3);
|
||||
}
|
||||
20% {
|
||||
transform: scale3d(1.1, 1.1, 1.1);
|
||||
}
|
||||
40% {
|
||||
transform: scale3d(.9, .9, .9);
|
||||
}
|
||||
60% {
|
||||
opacity: 1;
|
||||
transform: scale3d(1.03, 1.03, 1.03);
|
||||
}
|
||||
80% {
|
||||
transform: scale3d(.97, .97, .97);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: scale3d(1, 1, 1);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes customize-partial-edit-shortcut-bounce-disappear {
|
||||
from, 20%, 40%, 60%, 80%, to {
|
||||
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
||||
}
|
||||
0% {
|
||||
opacity: 1;
|
||||
transform: scale3d(1, 1, 1);
|
||||
}
|
||||
20% {
|
||||
transform: scale3d(.97, .97, .97);
|
||||
}
|
||||
40% {
|
||||
opacity: 1;
|
||||
transform: scale3d(1.03, 1.03, 1.03);
|
||||
}
|
||||
60% {
|
||||
transform: scale3d(.9, .9, .9);
|
||||
}
|
||||
80% {
|
||||
transform: scale3d(1.1, 1.1, 1.1);
|
||||
}
|
||||
to {
|
||||
opacity: 0;
|
||||
transform: scale3d(.3, .3, .3);
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 800px) {
|
||||
.widget .customize-partial-edit-shortcut button,
|
||||
.customize-partial-edit-shortcut button {
|
||||
left: -32px;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 320px) {
|
||||
.widget .customize-partial-edit-shortcut button,
|
||||
.customize-partial-edit-shortcut button {
|
||||
left: -30px;
|
||||
}
|
||||
}
|
||||
2
CTF/Smol/wordpress.old/wp-includes/css/customize-preview.min.css
vendored
Normal file
2
CTF/Smol/wordpress.old/wp-includes/css/customize-preview.min.css
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
/*! This file is auto-generated */
|
||||
.customize-partial-refreshing{opacity:.25;transition:opacity .25s;cursor:progress}.customize-partial-refreshing.widget-customizer-highlighted-widget{box-shadow:none}.customize-partial-edit-shortcut,.widget .customize-partial-edit-shortcut{position:absolute;float:left;width:1px;height:1px;padding:0;margin:-1px 0 0 -1px;border:0;background:0 0;color:transparent;box-shadow:none;outline:0;z-index:5}.customize-partial-edit-shortcut button,.widget .customize-partial-edit-shortcut button{position:absolute;left:-30px;top:2px;color:#fff;width:30px;height:30px;min-width:30px;min-height:30px;line-height:1!important;font-size:18px;z-index:5;background:#3582c4!important;border-radius:50%;border:2px solid #fff;box-shadow:0 2px 1px rgba(60,67,74,.15);text-align:center;cursor:pointer;box-sizing:border-box;padding:3px;animation-fill-mode:both;animation-duration:.4s;opacity:0;pointer-events:none;text-shadow:0 -1px 1px #135e96,1px 0 1px #135e96,0 1px 1px #135e96,-1px 0 1px #135e96}.wp-custom-header .customize-partial-edit-shortcut button{left:2px}.customize-partial-edit-shortcut button svg{fill:#fff;min-width:20px;min-height:20px;width:20px;height:20px;margin:auto}.customize-partial-edit-shortcut button:hover{background:#4f94d4!important}.customize-partial-edit-shortcut button:focus{box-shadow:0 0 0 2px #4f94d4}body.customize-partial-edit-shortcuts-shown .customize-partial-edit-shortcut button{animation-name:customize-partial-edit-shortcut-bounce-appear;pointer-events:auto}body.customize-partial-edit-shortcuts-hidden .customize-partial-edit-shortcut button{animation-name:customize-partial-edit-shortcut-bounce-disappear;pointer-events:none}.customize-partial-edit-shortcut-hidden .customize-partial-edit-shortcut button,.page-sidebar-collapsed .customize-partial-edit-shortcut button{visibility:hidden}@keyframes customize-partial-edit-shortcut-bounce-appear{20%,40%,60%,80%,from,to{animation-timing-function:cubic-bezier(0.215,0.610,0.355,1.000)}0%{opacity:0;transform:scale3d(.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(.97,.97,.97)}to{opacity:1;transform:scale3d(1,1,1)}}@keyframes customize-partial-edit-shortcut-bounce-disappear{20%,40%,60%,80%,from,to{animation-timing-function:cubic-bezier(0.215,0.610,0.355,1.000)}0%{opacity:1;transform:scale3d(1,1,1)}20%{transform:scale3d(.97,.97,.97)}40%{opacity:1;transform:scale3d(1.03,1.03,1.03)}60%{transform:scale3d(.9,.9,.9)}80%{transform:scale3d(1.1,1.1,1.1)}to{opacity:0;transform:scale3d(.3,.3,.3)}}@media screen and (max-width:800px){.customize-partial-edit-shortcut button,.widget .customize-partial-edit-shortcut button{left:-32px}}@media screen and (max-width:320px){.customize-partial-edit-shortcut button,.widget .customize-partial-edit-shortcut button{left:-30px}}
|
||||
1440
CTF/Smol/wordpress.old/wp-includes/css/dashicons.css
Normal file
1440
CTF/Smol/wordpress.old/wp-includes/css/dashicons.css
Normal file
File diff suppressed because one or more lines are too long
2
CTF/Smol/wordpress.old/wp-includes/css/dashicons.min.css
vendored
Normal file
2
CTF/Smol/wordpress.old/wp-includes/css/dashicons.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
185
CTF/Smol/wordpress.old/wp-includes/css/dist/block-directory/style-rtl.css
vendored
Normal file
185
CTF/Smol/wordpress.old/wp-includes/css/dist/block-directory/style-rtl.css
vendored
Normal file
@@ -0,0 +1,185 @@
|
||||
: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;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
:root{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
|
||||
.block-directory-block-ratings>span{
|
||||
display:flex;
|
||||
}
|
||||
.block-directory-block-ratings svg{
|
||||
fill:#1e1e1e;
|
||||
margin-right:-4px;
|
||||
}
|
||||
.block-directory-block-ratings .block-directory-block-ratings__star-empty{
|
||||
fill:#ccc;
|
||||
}
|
||||
|
||||
.block-directory-compact-list{
|
||||
list-style:none;
|
||||
margin:0;
|
||||
}
|
||||
|
||||
.block-directory-compact-list__item{
|
||||
align-items:center;
|
||||
display:flex;
|
||||
flex-direction:row;
|
||||
margin-bottom:16px;
|
||||
}
|
||||
.block-directory-compact-list__item:last-child{
|
||||
margin-bottom:0;
|
||||
}
|
||||
|
||||
.block-directory-compact-list__item-details{
|
||||
margin-right:8px;
|
||||
}
|
||||
|
||||
.block-directory-compact-list__item-title{
|
||||
font-weight:500;
|
||||
}
|
||||
|
||||
.block-directory-compact-list__item-author{
|
||||
color:#757575;
|
||||
font-size:11px;
|
||||
}
|
||||
|
||||
.block-directory-downloadable-block-icon{
|
||||
border:1px solid #ddd;
|
||||
height:54px;
|
||||
min-width:54px;
|
||||
vertical-align:middle;
|
||||
width:54px;
|
||||
}
|
||||
|
||||
.block-directory-downloadable-block-list-item{
|
||||
display:grid;
|
||||
grid-template-columns:auto 1fr;
|
||||
height:auto;
|
||||
padding:12px;
|
||||
text-align:right;
|
||||
width:100%;
|
||||
}
|
||||
.block-directory-downloadable-block-list-item:hover{
|
||||
box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
|
||||
outline:2px solid transparent;
|
||||
}
|
||||
.block-directory-downloadable-block-list-item.is-busy{
|
||||
background:transparent;
|
||||
}
|
||||
.block-directory-downloadable-block-list-item.is-busy .block-directory-downloadable-block-list-item__author{
|
||||
clip:rect(1px, 1px, 1px, 1px);
|
||||
word-wrap:normal !important;
|
||||
border:0;
|
||||
-webkit-clip-path:inset(50%);
|
||||
clip-path:inset(50%);
|
||||
height:1px;
|
||||
margin:-1px;
|
||||
overflow:hidden;
|
||||
padding:0;
|
||||
position:absolute;
|
||||
width:1px;
|
||||
}
|
||||
.block-directory-downloadable-block-list-item:disabled,.block-directory-downloadable-block-list-item[aria-disabled]{
|
||||
opacity:1;
|
||||
}
|
||||
|
||||
.block-directory-downloadable-block-list-item__icon{
|
||||
align-self:flex-start;
|
||||
margin-left:16px;
|
||||
position:relative;
|
||||
}
|
||||
.block-directory-downloadable-block-list-item__icon .block-directory-downloadable-block-list-item__spinner{
|
||||
align-items:center;
|
||||
background:hsla(0,0%,100%,.75);
|
||||
bottom:0;
|
||||
display:flex;
|
||||
justify-content:center;
|
||||
left:0;
|
||||
position:absolute;
|
||||
right:0;
|
||||
top:0;
|
||||
}
|
||||
|
||||
.block-directory-block-ratings{
|
||||
display:block;
|
||||
margin-top:4px;
|
||||
}
|
||||
|
||||
.block-directory-downloadable-block-list-item__details{
|
||||
color:#1e1e1e;
|
||||
}
|
||||
|
||||
.block-directory-downloadable-block-list-item__title{
|
||||
display:block;
|
||||
font-weight:600;
|
||||
}
|
||||
|
||||
.block-directory-downloadable-block-list-item__author{
|
||||
display:block;
|
||||
font-weight:400;
|
||||
margin-top:4px;
|
||||
}
|
||||
|
||||
.block-directory-downloadable-block-list-item__desc{
|
||||
display:block;
|
||||
margin-top:8px;
|
||||
}
|
||||
|
||||
.block-directory-downloadable-block-notice{
|
||||
color:#cc1818;
|
||||
margin:8px 0 0;
|
||||
}
|
||||
|
||||
.block-directory-downloadable-block-notice__content{
|
||||
margin-bottom:8px;
|
||||
padding-left:12px;
|
||||
}
|
||||
|
||||
.block-directory-downloadable-blocks-panel{
|
||||
padding:16px;
|
||||
}
|
||||
.block-directory-downloadable-blocks-panel.has-blocks-loading{
|
||||
color:#757575;
|
||||
font-style:normal;
|
||||
margin:112px 0;
|
||||
padding:0;
|
||||
text-align:center;
|
||||
}
|
||||
.block-directory-downloadable-blocks-panel.has-blocks-loading .components-spinner{
|
||||
float:inherit;
|
||||
}
|
||||
|
||||
.block-directory-downloadable-blocks-panel__no-local{
|
||||
color:#757575;
|
||||
margin:48px 0;
|
||||
padding:0 64px;
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
.block-directory-downloadable-blocks-panel__title{
|
||||
font-size:14px;
|
||||
margin:0 0 4px;
|
||||
}
|
||||
|
||||
.block-directory-downloadable-blocks-panel__description{
|
||||
margin-top:0;
|
||||
}
|
||||
|
||||
.block-directory-downloadable-blocks-panel button{
|
||||
margin-top:4px;
|
||||
}
|
||||
|
||||
.installed-blocks-pre-publish-panel__copy{
|
||||
margin-top:0;
|
||||
}
|
||||
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-directory/style-rtl.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-directory/style-rtl.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
: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}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.block-directory-block-ratings>span{display:flex}.block-directory-block-ratings svg{fill:#1e1e1e;margin-right:-4px}.block-directory-block-ratings .block-directory-block-ratings__star-empty{fill:#ccc}.block-directory-compact-list{list-style:none;margin:0}.block-directory-compact-list__item{align-items:center;display:flex;flex-direction:row;margin-bottom:16px}.block-directory-compact-list__item:last-child{margin-bottom:0}.block-directory-compact-list__item-details{margin-right:8px}.block-directory-compact-list__item-title{font-weight:500}.block-directory-compact-list__item-author{color:#757575;font-size:11px}.block-directory-downloadable-block-icon{border:1px solid #ddd;height:54px;min-width:54px;vertical-align:middle;width:54px}.block-directory-downloadable-block-list-item{display:grid;grid-template-columns:auto 1fr;height:auto;padding:12px;text-align:right;width:100%}.block-directory-downloadable-block-list-item:hover{box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:2px solid transparent}.block-directory-downloadable-block-list-item.is-busy{background:transparent}.block-directory-downloadable-block-list-item.is-busy .block-directory-downloadable-block-list-item__author{clip:rect(1px,1px,1px,1px);word-wrap:normal!important;border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.block-directory-downloadable-block-list-item:disabled,.block-directory-downloadable-block-list-item[aria-disabled]{opacity:1}.block-directory-downloadable-block-list-item__icon{align-self:flex-start;margin-left:16px;position:relative}.block-directory-downloadable-block-list-item__icon .block-directory-downloadable-block-list-item__spinner{align-items:center;background:hsla(0,0%,100%,.75);bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0}.block-directory-block-ratings{display:block;margin-top:4px}.block-directory-downloadable-block-list-item__details{color:#1e1e1e}.block-directory-downloadable-block-list-item__title{display:block;font-weight:600}.block-directory-downloadable-block-list-item__author{display:block;font-weight:400;margin-top:4px}.block-directory-downloadable-block-list-item__desc{display:block;margin-top:8px}.block-directory-downloadable-block-notice{color:#cc1818;margin:8px 0 0}.block-directory-downloadable-block-notice__content{margin-bottom:8px;padding-left:12px}.block-directory-downloadable-blocks-panel{padding:16px}.block-directory-downloadable-blocks-panel.has-blocks-loading{color:#757575;font-style:normal;margin:112px 0;padding:0;text-align:center}.block-directory-downloadable-blocks-panel.has-blocks-loading .components-spinner{float:inherit}.block-directory-downloadable-blocks-panel__no-local{color:#757575;margin:48px 0;padding:0 64px;text-align:center}.block-directory-downloadable-blocks-panel__title{font-size:14px;margin:0 0 4px}.block-directory-downloadable-blocks-panel__description{margin-top:0}.block-directory-downloadable-blocks-panel button{margin-top:4px}.installed-blocks-pre-publish-panel__copy{margin-top:0}
|
||||
185
CTF/Smol/wordpress.old/wp-includes/css/dist/block-directory/style.css
vendored
Normal file
185
CTF/Smol/wordpress.old/wp-includes/css/dist/block-directory/style.css
vendored
Normal file
@@ -0,0 +1,185 @@
|
||||
: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;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
:root{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
|
||||
.block-directory-block-ratings>span{
|
||||
display:flex;
|
||||
}
|
||||
.block-directory-block-ratings svg{
|
||||
fill:#1e1e1e;
|
||||
margin-left:-4px;
|
||||
}
|
||||
.block-directory-block-ratings .block-directory-block-ratings__star-empty{
|
||||
fill:#ccc;
|
||||
}
|
||||
|
||||
.block-directory-compact-list{
|
||||
list-style:none;
|
||||
margin:0;
|
||||
}
|
||||
|
||||
.block-directory-compact-list__item{
|
||||
align-items:center;
|
||||
display:flex;
|
||||
flex-direction:row;
|
||||
margin-bottom:16px;
|
||||
}
|
||||
.block-directory-compact-list__item:last-child{
|
||||
margin-bottom:0;
|
||||
}
|
||||
|
||||
.block-directory-compact-list__item-details{
|
||||
margin-left:8px;
|
||||
}
|
||||
|
||||
.block-directory-compact-list__item-title{
|
||||
font-weight:500;
|
||||
}
|
||||
|
||||
.block-directory-compact-list__item-author{
|
||||
color:#757575;
|
||||
font-size:11px;
|
||||
}
|
||||
|
||||
.block-directory-downloadable-block-icon{
|
||||
border:1px solid #ddd;
|
||||
height:54px;
|
||||
min-width:54px;
|
||||
vertical-align:middle;
|
||||
width:54px;
|
||||
}
|
||||
|
||||
.block-directory-downloadable-block-list-item{
|
||||
display:grid;
|
||||
grid-template-columns:auto 1fr;
|
||||
height:auto;
|
||||
padding:12px;
|
||||
text-align:left;
|
||||
width:100%;
|
||||
}
|
||||
.block-directory-downloadable-block-list-item:hover{
|
||||
box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
|
||||
outline:2px solid transparent;
|
||||
}
|
||||
.block-directory-downloadable-block-list-item.is-busy{
|
||||
background:transparent;
|
||||
}
|
||||
.block-directory-downloadable-block-list-item.is-busy .block-directory-downloadable-block-list-item__author{
|
||||
clip:rect(1px, 1px, 1px, 1px);
|
||||
word-wrap:normal !important;
|
||||
border:0;
|
||||
-webkit-clip-path:inset(50%);
|
||||
clip-path:inset(50%);
|
||||
height:1px;
|
||||
margin:-1px;
|
||||
overflow:hidden;
|
||||
padding:0;
|
||||
position:absolute;
|
||||
width:1px;
|
||||
}
|
||||
.block-directory-downloadable-block-list-item:disabled,.block-directory-downloadable-block-list-item[aria-disabled]{
|
||||
opacity:1;
|
||||
}
|
||||
|
||||
.block-directory-downloadable-block-list-item__icon{
|
||||
align-self:flex-start;
|
||||
margin-right:16px;
|
||||
position:relative;
|
||||
}
|
||||
.block-directory-downloadable-block-list-item__icon .block-directory-downloadable-block-list-item__spinner{
|
||||
align-items:center;
|
||||
background:hsla(0,0%,100%,.75);
|
||||
bottom:0;
|
||||
display:flex;
|
||||
justify-content:center;
|
||||
left:0;
|
||||
position:absolute;
|
||||
right:0;
|
||||
top:0;
|
||||
}
|
||||
|
||||
.block-directory-block-ratings{
|
||||
display:block;
|
||||
margin-top:4px;
|
||||
}
|
||||
|
||||
.block-directory-downloadable-block-list-item__details{
|
||||
color:#1e1e1e;
|
||||
}
|
||||
|
||||
.block-directory-downloadable-block-list-item__title{
|
||||
display:block;
|
||||
font-weight:600;
|
||||
}
|
||||
|
||||
.block-directory-downloadable-block-list-item__author{
|
||||
display:block;
|
||||
font-weight:400;
|
||||
margin-top:4px;
|
||||
}
|
||||
|
||||
.block-directory-downloadable-block-list-item__desc{
|
||||
display:block;
|
||||
margin-top:8px;
|
||||
}
|
||||
|
||||
.block-directory-downloadable-block-notice{
|
||||
color:#cc1818;
|
||||
margin:8px 0 0;
|
||||
}
|
||||
|
||||
.block-directory-downloadable-block-notice__content{
|
||||
margin-bottom:8px;
|
||||
padding-right:12px;
|
||||
}
|
||||
|
||||
.block-directory-downloadable-blocks-panel{
|
||||
padding:16px;
|
||||
}
|
||||
.block-directory-downloadable-blocks-panel.has-blocks-loading{
|
||||
color:#757575;
|
||||
font-style:normal;
|
||||
margin:112px 0;
|
||||
padding:0;
|
||||
text-align:center;
|
||||
}
|
||||
.block-directory-downloadable-blocks-panel.has-blocks-loading .components-spinner{
|
||||
float:inherit;
|
||||
}
|
||||
|
||||
.block-directory-downloadable-blocks-panel__no-local{
|
||||
color:#757575;
|
||||
margin:48px 0;
|
||||
padding:0 64px;
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
.block-directory-downloadable-blocks-panel__title{
|
||||
font-size:14px;
|
||||
margin:0 0 4px;
|
||||
}
|
||||
|
||||
.block-directory-downloadable-blocks-panel__description{
|
||||
margin-top:0;
|
||||
}
|
||||
|
||||
.block-directory-downloadable-blocks-panel button{
|
||||
margin-top:4px;
|
||||
}
|
||||
|
||||
.installed-blocks-pre-publish-panel__copy{
|
||||
margin-top:0;
|
||||
}
|
||||
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-directory/style.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-directory/style.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
: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}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.block-directory-block-ratings>span{display:flex}.block-directory-block-ratings svg{fill:#1e1e1e;margin-left:-4px}.block-directory-block-ratings .block-directory-block-ratings__star-empty{fill:#ccc}.block-directory-compact-list{list-style:none;margin:0}.block-directory-compact-list__item{align-items:center;display:flex;flex-direction:row;margin-bottom:16px}.block-directory-compact-list__item:last-child{margin-bottom:0}.block-directory-compact-list__item-details{margin-left:8px}.block-directory-compact-list__item-title{font-weight:500}.block-directory-compact-list__item-author{color:#757575;font-size:11px}.block-directory-downloadable-block-icon{border:1px solid #ddd;height:54px;min-width:54px;vertical-align:middle;width:54px}.block-directory-downloadable-block-list-item{display:grid;grid-template-columns:auto 1fr;height:auto;padding:12px;text-align:left;width:100%}.block-directory-downloadable-block-list-item:hover{box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:2px solid transparent}.block-directory-downloadable-block-list-item.is-busy{background:transparent}.block-directory-downloadable-block-list-item.is-busy .block-directory-downloadable-block-list-item__author{clip:rect(1px,1px,1px,1px);word-wrap:normal!important;border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.block-directory-downloadable-block-list-item:disabled,.block-directory-downloadable-block-list-item[aria-disabled]{opacity:1}.block-directory-downloadable-block-list-item__icon{align-self:flex-start;margin-right:16px;position:relative}.block-directory-downloadable-block-list-item__icon .block-directory-downloadable-block-list-item__spinner{align-items:center;background:hsla(0,0%,100%,.75);bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0}.block-directory-block-ratings{display:block;margin-top:4px}.block-directory-downloadable-block-list-item__details{color:#1e1e1e}.block-directory-downloadable-block-list-item__title{display:block;font-weight:600}.block-directory-downloadable-block-list-item__author{display:block;font-weight:400;margin-top:4px}.block-directory-downloadable-block-list-item__desc{display:block;margin-top:8px}.block-directory-downloadable-block-notice{color:#cc1818;margin:8px 0 0}.block-directory-downloadable-block-notice__content{margin-bottom:8px;padding-right:12px}.block-directory-downloadable-blocks-panel{padding:16px}.block-directory-downloadable-blocks-panel.has-blocks-loading{color:#757575;font-style:normal;margin:112px 0;padding:0;text-align:center}.block-directory-downloadable-blocks-panel.has-blocks-loading .components-spinner{float:inherit}.block-directory-downloadable-blocks-panel__no-local{color:#757575;margin:48px 0;padding:0 64px;text-align:center}.block-directory-downloadable-blocks-panel__title{font-size:14px;margin:0 0 4px}.block-directory-downloadable-blocks-panel__description{margin-top:0}.block-directory-downloadable-blocks-panel button{margin-top:4px}.installed-blocks-pre-publish-panel__copy{margin-top:0}
|
||||
921
CTF/Smol/wordpress.old/wp-includes/css/dist/block-editor/content-rtl.css
vendored
Normal file
921
CTF/Smol/wordpress.old/wp-includes/css/dist/block-editor/content-rtl.css
vendored
Normal file
@@ -0,0 +1,921 @@
|
||||
: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;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
:root{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
|
||||
.block-editor-block-icon{
|
||||
align-items:center;
|
||||
display:flex;
|
||||
height:24px;
|
||||
justify-content:center;
|
||||
width:24px;
|
||||
}
|
||||
.block-editor-block-icon.has-colors svg{
|
||||
fill:currentColor;
|
||||
}
|
||||
@media (forced-colors:active){
|
||||
.block-editor-block-icon.has-colors svg{
|
||||
fill:CanvasText;
|
||||
}
|
||||
}
|
||||
.block-editor-block-icon svg{
|
||||
max-height:24px;
|
||||
max-width:24px;
|
||||
min-height:20px;
|
||||
min-width:20px;
|
||||
}
|
||||
|
||||
.block-editor-block-styles .block-editor-block-list__block{
|
||||
margin:0;
|
||||
}
|
||||
@keyframes selection-overlay__fade-in-animation{
|
||||
0%{
|
||||
opacity:0;
|
||||
}
|
||||
to{
|
||||
opacity:.4;
|
||||
}
|
||||
}
|
||||
.block-editor-block-list__layout{
|
||||
position:relative;
|
||||
}
|
||||
.block-editor-block-list__layout::selection{
|
||||
background:transparent;
|
||||
}
|
||||
.has-multi-selection .block-editor-block-list__layout::selection{
|
||||
background:transparent;
|
||||
}
|
||||
.block-editor-block-list__layout:where(.block-editor-block-list__block.is-multi-selected:not(.is-partially-selected)){
|
||||
border-radius:2px;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected:not(.is-partially-selected) ::selection,.block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected:not(.is-partially-selected)::selection{
|
||||
background:transparent;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected:not(.is-partially-selected):after{
|
||||
animation:selection-overlay__fade-in-animation .1s ease-out;
|
||||
animation-fill-mode:forwards;
|
||||
background:var(--wp-admin-theme-color);
|
||||
border-radius:2px;
|
||||
bottom:0;
|
||||
content:"";
|
||||
left:0;
|
||||
opacity:.4;
|
||||
outline:2px solid transparent;
|
||||
pointer-events:none;
|
||||
position:absolute;
|
||||
right:0;
|
||||
top:0;
|
||||
z-index:1;
|
||||
}
|
||||
@media (prefers-reduced-motion:reduce){
|
||||
.block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected:not(.is-partially-selected):after{
|
||||
animation-delay:0s;
|
||||
animation-duration:1ms;
|
||||
}
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected:not(.is-partially-selected).is-highlighted:after{
|
||||
box-shadow:none;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block.is-highlighted,.block-editor-block-list__layout .block-editor-block-list__block.is-highlighted~.is-multi-selected,.block-editor-block-list__layout .block-editor-block-list__block:not([contenteditable]):focus,.block-editor-block-list__layout .is-block-moving-mode.block-editor-block-list__block.has-child-selected,.block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-selected{
|
||||
outline:none;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block.is-highlighted:after,.block-editor-block-list__layout .block-editor-block-list__block.is-highlighted~.is-multi-selected:after,.block-editor-block-list__layout .block-editor-block-list__block:not([contenteditable]):focus:after,.block-editor-block-list__layout .is-block-moving-mode.block-editor-block-list__block.has-child-selected:after,.block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-selected:after{
|
||||
border-radius:1px;
|
||||
bottom:1px;
|
||||
box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
|
||||
content:"";
|
||||
left:1px;
|
||||
outline:2px solid transparent;
|
||||
pointer-events:none;
|
||||
position:absolute;
|
||||
right:1px;
|
||||
top:1px;
|
||||
z-index:1;
|
||||
}
|
||||
.is-dark-theme .block-editor-block-list__layout .block-editor-block-list__block.is-highlighted:after,.is-dark-theme .block-editor-block-list__layout .block-editor-block-list__block.is-highlighted~.is-multi-selected:after,.is-dark-theme .block-editor-block-list__layout .block-editor-block-list__block:not([contenteditable]):focus:after,.is-dark-theme .block-editor-block-list__layout .is-block-moving-mode.block-editor-block-list__block.has-child-selected:after,.is-dark-theme .block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-selected:after{
|
||||
box-shadow:0 0 0 var(--wp-admin-border-width-focus) #fff;
|
||||
}
|
||||
.block-editor-block-list__layout .is-block-moving-mode.block-editor-block-list__block.is-selected{
|
||||
box-shadow:none;
|
||||
outline:none;
|
||||
}
|
||||
.block-editor-block-list__layout .is-block-moving-mode.block-editor-block-list__block.is-selected:after{
|
||||
border-radius:2px;
|
||||
border-top:4px solid #ccc;
|
||||
content:"";
|
||||
left:0;
|
||||
pointer-events:none;
|
||||
position:absolute;
|
||||
right:0;
|
||||
top:-14px;
|
||||
transition:border-color .1s linear,border-style .1s linear,box-shadow .1s linear;
|
||||
z-index:0;
|
||||
}
|
||||
.block-editor-block-list__layout .is-block-moving-mode.can-insert-moving-block.block-editor-block-list__block.is-selected:after{
|
||||
border-color:var(--wp-admin-theme-color);
|
||||
}
|
||||
.has-multi-selection .block-editor-block-list__layout{
|
||||
-webkit-user-select:none;
|
||||
user-select:none;
|
||||
}
|
||||
.block-editor-block-list__layout [class^=components-]{
|
||||
-webkit-user-select:text;
|
||||
user-select:text;
|
||||
}
|
||||
|
||||
.is-block-moving-mode.block-editor-block-list__block-selection-button{
|
||||
font-size:1px;
|
||||
height:1px;
|
||||
opacity:0;
|
||||
padding:0;
|
||||
}
|
||||
|
||||
.block-editor-block-list__layout .block-editor-block-list__block{
|
||||
overflow-wrap:break-word;
|
||||
pointer-events:auto;
|
||||
position:relative;
|
||||
-webkit-user-select:text;
|
||||
user-select:text;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block.is-editing-disabled{
|
||||
pointer-events:none;
|
||||
-webkit-user-select:none;
|
||||
user-select:none;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block .reusable-block-edit-panel *{
|
||||
z-index:1;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block .components-placeholder .components-with-notices-ui{
|
||||
margin:-10px 0 12px;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block .components-with-notices-ui{
|
||||
margin:0 0 12px;
|
||||
width:100%;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block .components-with-notices-ui .components-notice{
|
||||
margin-left:0;
|
||||
margin-right:0;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block .components-with-notices-ui .components-notice .components-notice__content{
|
||||
font-size:13px;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block.has-warning{
|
||||
min-height:48px;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block.has-warning>*{
|
||||
pointer-events:none;
|
||||
-webkit-user-select:none;
|
||||
user-select:none;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block.has-warning .block-editor-warning{
|
||||
pointer-events:all;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block.has-warning:after{
|
||||
background-color:hsla(0,0%,100%,.4);
|
||||
border-radius:2px;
|
||||
bottom:0;
|
||||
content:"";
|
||||
left:0;
|
||||
position:absolute;
|
||||
right:0;
|
||||
top:0;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block.has-warning.is-multi-selected:after{
|
||||
background-color:transparent;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block.is-reusable>.block-editor-inner-blocks>.block-editor-block-list__layout.has-overlay:after{
|
||||
display:none;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block.is-reusable>.block-editor-inner-blocks>.block-editor-block-list__layout.has-overlay .block-editor-block-list__layout.has-overlay:after{
|
||||
display:block;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block.is-reusable.has-child-selected:after{
|
||||
box-shadow:0 0 0 1px var(--wp-admin-theme-color);
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block[data-clear=true]{
|
||||
float:none;
|
||||
}
|
||||
|
||||
.is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-hovered{
|
||||
cursor:default;
|
||||
}
|
||||
.is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-hovered:after{
|
||||
border-radius:1px;
|
||||
bottom:1px;
|
||||
box-shadow:0 0 0 1px var(--wp-admin-theme-color);
|
||||
content:"";
|
||||
left:1px;
|
||||
pointer-events:none;
|
||||
position:absolute;
|
||||
right:1px;
|
||||
top:1px;
|
||||
}
|
||||
.is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-selected{
|
||||
cursor:default;
|
||||
}
|
||||
.is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-selected.rich-text{
|
||||
cursor:unset;
|
||||
}
|
||||
.is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-selected:after{
|
||||
border-radius:2px;
|
||||
bottom:1px;
|
||||
box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
|
||||
content:"";
|
||||
left:1px;
|
||||
pointer-events:none;
|
||||
position:absolute;
|
||||
right:1px;
|
||||
top:1px;
|
||||
}
|
||||
|
||||
.is-focus-mode .block-editor-block-list__block:not(.has-child-selected){
|
||||
opacity:.2;
|
||||
transition:opacity .1s linear;
|
||||
}
|
||||
@media (prefers-reduced-motion:reduce){
|
||||
.is-focus-mode .block-editor-block-list__block:not(.has-child-selected){
|
||||
transition-delay:0s;
|
||||
transition-duration:0s;
|
||||
}
|
||||
}
|
||||
|
||||
.is-focus-mode .block-editor-block-list__block.is-content-locked-temporarily-editing-as-blocks.has-child-selected,.is-focus-mode .block-editor-block-list__block.is-content-locked-temporarily-editing-as-blocks.has-child-selected .block-editor-block-list__block,.is-focus-mode .block-editor-block-list__block.is-content-locked.has-child-selected,.is-focus-mode .block-editor-block-list__block.is-content-locked.has-child-selected .block-editor-block-list__block,.is-focus-mode .block-editor-block-list__block:not(.has-child-selected) .block-editor-block-list__block,.is-focus-mode .block-editor-block-list__block:not(.has-child-selected).is-multi-selected,.is-focus-mode .block-editor-block-list__block:not(.has-child-selected).is-selected{
|
||||
opacity:1;
|
||||
}
|
||||
|
||||
.wp-block.alignleft,.wp-block.alignright,.wp-block[data-align=left]>*,.wp-block[data-align=right]>*{
|
||||
z-index:21;
|
||||
}
|
||||
|
||||
.wp-site-blocks>[data-align=left]{
|
||||
float:right;
|
||||
margin-left:2em;
|
||||
}
|
||||
|
||||
.wp-site-blocks>[data-align=right]{
|
||||
float:left;
|
||||
margin-right:2em;
|
||||
}
|
||||
|
||||
.wp-site-blocks>[data-align=center]{
|
||||
justify-content:center;
|
||||
margin-left:auto;
|
||||
margin-right:auto;
|
||||
}
|
||||
.block-editor-block-list .block-editor-inserter{
|
||||
cursor:move;
|
||||
cursor:grab;
|
||||
margin:8px;
|
||||
}
|
||||
|
||||
@keyframes block-editor-inserter__toggle__fade-in-animation{
|
||||
0%{
|
||||
opacity:0;
|
||||
}
|
||||
to{
|
||||
opacity:1;
|
||||
}
|
||||
}
|
||||
.wp-block .block-list-appender .block-editor-inserter__toggle{
|
||||
animation:block-editor-inserter__toggle__fade-in-animation .1s ease;
|
||||
animation-fill-mode:forwards;
|
||||
}
|
||||
@media (prefers-reduced-motion:reduce){
|
||||
.wp-block .block-list-appender .block-editor-inserter__toggle{
|
||||
animation-delay:0s;
|
||||
animation-duration:1ms;
|
||||
}
|
||||
}
|
||||
|
||||
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected) .block-editor-default-block-appender{
|
||||
display:none;
|
||||
}
|
||||
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected) .block-editor-default-block-appender .block-editor-inserter__toggle{
|
||||
opacity:0;
|
||||
transform:scale(0);
|
||||
}
|
||||
|
||||
.block-editor-block-list__block .block-editor-block-list__block-html-textarea{
|
||||
border:none;
|
||||
border-radius:2px;
|
||||
box-shadow:inset 0 0 0 1px #1e1e1e;
|
||||
display:block;
|
||||
font-family:Menlo,Consolas,monaco,monospace;
|
||||
font-size:15px;
|
||||
line-height:1.5;
|
||||
margin:0;
|
||||
outline:none;
|
||||
overflow:hidden;
|
||||
padding:12px;
|
||||
resize:none;
|
||||
transition:padding .2s linear;
|
||||
width:100%;
|
||||
}
|
||||
@media (prefers-reduced-motion:reduce){
|
||||
.block-editor-block-list__block .block-editor-block-list__block-html-textarea{
|
||||
transition-delay:0s;
|
||||
transition-duration:0s;
|
||||
}
|
||||
}
|
||||
.block-editor-block-list__block .block-editor-block-list__block-html-textarea:focus{
|
||||
box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
|
||||
}
|
||||
.block-editor-block-list__block .block-editor-warning{
|
||||
position:relative;
|
||||
z-index:5;
|
||||
}
|
||||
.block-editor-block-list__block .block-editor-warning.block-editor-block-list__block-crash-warning{
|
||||
margin-bottom:auto;
|
||||
}
|
||||
|
||||
.block-editor-iframe__body{
|
||||
background-color:#fff;
|
||||
transform-origin:top center;
|
||||
transition:all .3s;
|
||||
}
|
||||
|
||||
.is-vertical .block-list-appender{
|
||||
margin-left:auto;
|
||||
margin-right:12px;
|
||||
margin-top:12px;
|
||||
width:24px;
|
||||
}
|
||||
|
||||
.block-list-appender>.block-editor-inserter{
|
||||
display:block;
|
||||
}
|
||||
|
||||
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.block-editor-block-list__layout) .block-editor-block-list__layout>.block-list-appender .block-list-appender__toggle{
|
||||
opacity:0;
|
||||
transform:scale(0);
|
||||
}
|
||||
|
||||
.block-editor-block-list__block.has-block-overlay{
|
||||
cursor:default;
|
||||
}
|
||||
.block-editor-block-list__block.has-block-overlay:before{
|
||||
background:transparent;
|
||||
border:none;
|
||||
border-radius:2px;
|
||||
content:"";
|
||||
height:100%;
|
||||
position:absolute;
|
||||
right:0;
|
||||
top:0;
|
||||
width:100%;
|
||||
z-index:10;
|
||||
}
|
||||
.block-editor-block-list__block.has-block-overlay:not(.is-multi-selected):after{
|
||||
content:none !important;
|
||||
}
|
||||
.block-editor-block-list__block.has-block-overlay:hover:not(.is-dragging-blocks):not(.is-multi-selected):before{
|
||||
background:rgba(var(--wp-admin-theme-color--rgb), .04);
|
||||
box-shadow:0 0 0 1px var(--wp-admin-theme-color) inset;
|
||||
}
|
||||
.block-editor-block-list__block.has-block-overlay.is-reusable:hover:not(.is-dragging-blocks):not(.is-multi-selected):before,.block-editor-block-list__block.has-block-overlay.wp-block-template-part:hover:not(.is-dragging-blocks):not(.is-multi-selected):before{
|
||||
background:rgba(var(--wp-block-synced-color--rgb), .04);
|
||||
box-shadow:0 0 0 1px var(--wp-block-synced-color) inset;
|
||||
}
|
||||
.block-editor-block-list__block.has-block-overlay.is-selected:not(.is-dragging-blocks):before{
|
||||
box-shadow:0 0 0 1px var(--wp-admin-theme-color) inset;
|
||||
}
|
||||
.block-editor-block-list__block.has-block-overlay .block-editor-block-list__block{
|
||||
pointer-events:none;
|
||||
}
|
||||
.block-editor-iframe__body.is-zoomed-out .block-editor-block-list__block.has-block-overlay:before{
|
||||
right:calc(50% - 50vw);
|
||||
width:100vw;
|
||||
}
|
||||
|
||||
.block-editor-block-list__layout .is-dragging{
|
||||
background-color:currentColor !important;
|
||||
border-radius:2px !important;
|
||||
opacity:.05 !important;
|
||||
pointer-events:none !important;
|
||||
}
|
||||
.block-editor-block-list__layout .is-dragging::selection{
|
||||
background:transparent !important;
|
||||
}
|
||||
.block-editor-block-list__layout .is-dragging:after{
|
||||
content:none !important;
|
||||
}
|
||||
|
||||
.block-editor-block-preview__content-iframe .block-list-appender{
|
||||
display:none;
|
||||
}
|
||||
|
||||
.block-editor-block-preview__live-content *{
|
||||
pointer-events:none;
|
||||
}
|
||||
.block-editor-block-preview__live-content .block-list-appender{
|
||||
display:none;
|
||||
}
|
||||
.block-editor-block-preview__live-content .components-button:disabled{
|
||||
opacity:1;
|
||||
}
|
||||
.block-editor-block-preview__live-content .block-editor-block-list__block[data-empty=true],.block-editor-block-preview__live-content .components-placeholder{
|
||||
display:none;
|
||||
}
|
||||
|
||||
.block-editor-block-variation-picker .components-placeholder__instructions{
|
||||
margin-bottom:0;
|
||||
}
|
||||
.block-editor-block-variation-picker .components-placeholder__fieldset{
|
||||
flex-direction:column;
|
||||
}
|
||||
.block-editor-block-variation-picker.has-many-variations .components-placeholder__fieldset{
|
||||
max-width:90%;
|
||||
}
|
||||
|
||||
.block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations{
|
||||
display:flex;
|
||||
flex-direction:row;
|
||||
flex-wrap:wrap;
|
||||
justify-content:flex-start;
|
||||
list-style:none;
|
||||
margin:16px 0;
|
||||
padding:0;
|
||||
width:100%;
|
||||
}
|
||||
.block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations>li{
|
||||
flex-shrink:1;
|
||||
list-style:none;
|
||||
margin:8px 0 0 20px;
|
||||
text-align:center;
|
||||
width:75px;
|
||||
}
|
||||
.block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations>li button{
|
||||
display:inline-flex;
|
||||
margin-left:0;
|
||||
}
|
||||
.block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations .block-editor-block-variation-picker__variation{
|
||||
padding:8px;
|
||||
}
|
||||
.block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations .block-editor-block-variation-picker__variation-label{
|
||||
display:block;
|
||||
font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;
|
||||
font-size:12px;
|
||||
line-height:1.4;
|
||||
}
|
||||
|
||||
.block-editor-block-variation-picker__variation{
|
||||
width:100%;
|
||||
}
|
||||
.block-editor-block-variation-picker__variation.components-button.has-icon{
|
||||
justify-content:center;
|
||||
width:auto;
|
||||
}
|
||||
.block-editor-block-variation-picker__variation.components-button.has-icon.is-secondary{
|
||||
background-color:#fff;
|
||||
}
|
||||
.block-editor-block-variation-picker__variation.components-button{
|
||||
height:auto;
|
||||
padding:0;
|
||||
}
|
||||
.block-editor-block-variation-picker__variation:before{
|
||||
content:"";
|
||||
padding-bottom:100%;
|
||||
}
|
||||
.block-editor-block-variation-picker__variation:first-child{
|
||||
margin-right:0;
|
||||
}
|
||||
.block-editor-block-variation-picker__variation:last-child{
|
||||
margin-left:0;
|
||||
}
|
||||
|
||||
.block-editor-button-block-appender{
|
||||
align-items:center;
|
||||
box-shadow:inset 0 0 0 1px #1e1e1e;
|
||||
color:#1e1e1e;
|
||||
display:flex;
|
||||
flex-direction:column;
|
||||
height:auto;
|
||||
justify-content:center;
|
||||
width:100%;
|
||||
}
|
||||
.block-editor-button-block-appender.components-button.components-button{
|
||||
padding:12px;
|
||||
}
|
||||
.is-dark-theme .block-editor-button-block-appender{
|
||||
box-shadow:inset 0 0 0 1px hsla(0,0%,100%,.65);
|
||||
color:hsla(0,0%,100%,.65);
|
||||
}
|
||||
.block-editor-button-block-appender:hover{
|
||||
box-shadow:inset 0 0 0 1px var(--wp-admin-theme-color);
|
||||
color:var(--wp-admin-theme-color);
|
||||
}
|
||||
.block-editor-button-block-appender:focus{
|
||||
box-shadow:inset 0 0 0 2px var(--wp-admin-theme-color);
|
||||
}
|
||||
.block-editor-button-block-appender:active{
|
||||
color:#000;
|
||||
}
|
||||
|
||||
.is-layout-constrained.block-editor-block-list__block:not(.is-selected)>.block-list-appender:only-child,.is-layout-constrained.block-editor-block-list__block:not(.is-selected)>.wp-block-group__inner-container>.block-list-appender:only-child,.is-layout-flow.block-editor-block-list__block:not(.is-selected)>.block-list-appender:only-child,.is-layout-flow.block-editor-block-list__block:not(.is-selected)>.wp-block-group__inner-container>.block-list-appender:only-child{
|
||||
pointer-events:none;
|
||||
}
|
||||
.is-layout-constrained.block-editor-block-list__block:not(.is-selected)>.block-list-appender:only-child:after,.is-layout-constrained.block-editor-block-list__block:not(.is-selected)>.wp-block-group__inner-container>.block-list-appender:only-child:after,.is-layout-flow.block-editor-block-list__block:not(.is-selected)>.block-list-appender:only-child:after,.is-layout-flow.block-editor-block-list__block:not(.is-selected)>.wp-block-group__inner-container>.block-list-appender:only-child:after{
|
||||
border:1px dashed;
|
||||
border-radius:2px;
|
||||
bottom:0;
|
||||
content:"";
|
||||
left:0;
|
||||
pointer-events:none;
|
||||
position:absolute;
|
||||
right:0;
|
||||
top:0;
|
||||
}
|
||||
.is-layout-constrained.block-editor-block-list__block:not(.is-selected)>.block-list-appender:only-child:after:before,.is-layout-constrained.block-editor-block-list__block:not(.is-selected)>.wp-block-group__inner-container>.block-list-appender:only-child:after:before,.is-layout-flow.block-editor-block-list__block:not(.is-selected)>.block-list-appender:only-child:after:before,.is-layout-flow.block-editor-block-list__block:not(.is-selected)>.wp-block-group__inner-container>.block-list-appender:only-child:after:before{
|
||||
background:currentColor;
|
||||
bottom:0;
|
||||
content:"";
|
||||
left:0;
|
||||
opacity:.1;
|
||||
pointer-events:none;
|
||||
position:absolute;
|
||||
right:0;
|
||||
top:0;
|
||||
}
|
||||
.is-layout-constrained.block-editor-block-list__block:not(.is-selected)>.block-list-appender:only-child .block-editor-inserter,.is-layout-constrained.block-editor-block-list__block:not(.is-selected)>.wp-block-group__inner-container>.block-list-appender:only-child .block-editor-inserter,.is-layout-flow.block-editor-block-list__block:not(.is-selected)>.block-list-appender:only-child .block-editor-inserter,.is-layout-flow.block-editor-block-list__block:not(.is-selected)>.wp-block-group__inner-container>.block-list-appender:only-child .block-editor-inserter{
|
||||
visibility:hidden;
|
||||
}
|
||||
.is-layout-constrained.block-editor-block-list__block:not(.is-selected)>.block-list-appender:only-child.is-drag-over:after,.is-layout-constrained.block-editor-block-list__block:not(.is-selected)>.wp-block-group__inner-container>.block-list-appender:only-child.is-drag-over:after,.is-layout-flow.block-editor-block-list__block:not(.is-selected)>.block-list-appender:only-child.is-drag-over:after,.is-layout-flow.block-editor-block-list__block:not(.is-selected)>.wp-block-group__inner-container>.block-list-appender:only-child.is-drag-over:after{
|
||||
border:none;
|
||||
}
|
||||
.is-layout-constrained.block-editor-block-list__block:not(.is-selected)>.block-list-appender:only-child.is-drag-over .block-editor-inserter,.is-layout-constrained.block-editor-block-list__block:not(.is-selected)>.wp-block-group__inner-container>.block-list-appender:only-child.is-drag-over .block-editor-inserter,.is-layout-flow.block-editor-block-list__block:not(.is-selected)>.block-list-appender:only-child.is-drag-over .block-editor-inserter,.is-layout-flow.block-editor-block-list__block:not(.is-selected)>.wp-block-group__inner-container>.block-list-appender:only-child.is-drag-over .block-editor-inserter{
|
||||
visibility:visible;
|
||||
}
|
||||
.block-list-appender:only-child.is-drag-over .block-editor-button-block-appender{
|
||||
background-color:var(--wp-admin-theme-color);
|
||||
box-shadow:inset 0 0 0 1px hsla(0,0%,100%,.65);
|
||||
color:hsla(0,0%,100%,.65);
|
||||
transition:background-color .2s ease-in-out;
|
||||
}
|
||||
@media (prefers-reduced-motion:reduce){
|
||||
.block-list-appender:only-child.is-drag-over .block-editor-button-block-appender{
|
||||
transition:none;
|
||||
}
|
||||
}
|
||||
.block-editor-default-block-appender{
|
||||
clear:both;
|
||||
margin-left:auto;
|
||||
margin-right:auto;
|
||||
position:relative;
|
||||
}
|
||||
.block-editor-default-block-appender[data-root-client-id=""] .block-editor-default-block-appender__content:hover{
|
||||
outline:1px solid transparent;
|
||||
}
|
||||
.block-editor-default-block-appender .block-editor-default-block-appender__content{
|
||||
opacity:.62;
|
||||
}
|
||||
:where(body .is-layout-constrained) .block-editor-default-block-appender>:first-child:first-child{
|
||||
margin-block-start:0;
|
||||
}
|
||||
.block-editor-default-block-appender .components-drop-zone__content-icon{
|
||||
display:none;
|
||||
}
|
||||
.block-editor-default-block-appender .block-editor-inserter__toggle.components-button.has-icon{
|
||||
background:#1e1e1e;
|
||||
border-radius:2px;
|
||||
color:#fff;
|
||||
height:24px;
|
||||
min-width:24px;
|
||||
padding:0;
|
||||
}
|
||||
.block-editor-default-block-appender .block-editor-inserter__toggle.components-button.has-icon:hover{
|
||||
background:var(--wp-admin-theme-color);
|
||||
color:#fff;
|
||||
}
|
||||
|
||||
.block-editor-block-list__empty-block-inserter.block-editor-block-list__empty-block-inserter,.block-editor-default-block-appender .block-editor-inserter{
|
||||
left:0;
|
||||
line-height:0;
|
||||
position:absolute;
|
||||
top:0;
|
||||
}
|
||||
.block-editor-block-list__empty-block-inserter.block-editor-block-list__empty-block-inserter:disabled,.block-editor-default-block-appender .block-editor-inserter:disabled{
|
||||
display:none;
|
||||
}
|
||||
.block-editor-block-list__block .block-list-appender{
|
||||
bottom:0;
|
||||
left:0;
|
||||
list-style:none;
|
||||
padding:0;
|
||||
position:absolute;
|
||||
z-index:2;
|
||||
}
|
||||
.block-editor-block-list__block .block-list-appender.block-list-appender{
|
||||
line-height:0;
|
||||
margin:0;
|
||||
}
|
||||
.block-editor-block-list__block .block-list-appender .block-editor-default-block-appender{
|
||||
height:24px;
|
||||
}
|
||||
.block-editor-block-list__block .block-list-appender .block-editor-inserter__toggle.components-button.has-icon,.block-editor-block-list__block .block-list-appender .block-list-appender__toggle{
|
||||
background:#1e1e1e;
|
||||
box-shadow:none;
|
||||
color:#fff;
|
||||
display:none;
|
||||
flex-direction:row;
|
||||
height:24px;
|
||||
min-width:24px;
|
||||
padding:0 !important;
|
||||
width:24px;
|
||||
}
|
||||
.block-editor-block-list__block .block-list-appender .block-editor-inserter__toggle.components-button.has-icon:hover,.block-editor-block-list__block .block-list-appender .block-list-appender__toggle:hover{
|
||||
background:var(--wp-admin-theme-color);
|
||||
color:#fff;
|
||||
}
|
||||
.block-editor-block-list__block .block-list-appender .block-editor-default-block-appender__content{
|
||||
display:none;
|
||||
}
|
||||
.block-editor-block-list__block .block-list-appender:only-child{
|
||||
align-self:center;
|
||||
left:auto;
|
||||
line-height:inherit;
|
||||
list-style:none;
|
||||
position:relative;
|
||||
}
|
||||
.block-editor-block-list__block .block-list-appender:only-child .block-editor-default-block-appender__content{
|
||||
display:block;
|
||||
}
|
||||
|
||||
.block-editor-block-list__block.is-selected .block-editor-block-list__layout>.block-list-appender .block-editor-inserter__toggle.components-button.has-icon,.block-editor-block-list__block.is-selected .block-editor-block-list__layout>.block-list-appender .block-list-appender__toggle,.block-editor-block-list__block.is-selected>.block-list-appender .block-editor-inserter__toggle.components-button.has-icon,.block-editor-block-list__block.is-selected>.block-list-appender .block-list-appender__toggle{
|
||||
display:flex;
|
||||
}
|
||||
|
||||
.block-editor-default-block-appender__content{
|
||||
cursor:text;
|
||||
}
|
||||
|
||||
.block-editor-block-list__layout.has-overlay:after{
|
||||
bottom:0;
|
||||
content:"";
|
||||
left:0;
|
||||
position:absolute;
|
||||
right:0;
|
||||
top:0;
|
||||
z-index:60;
|
||||
}
|
||||
|
||||
.block-editor-media-placeholder__url-input-container .block-editor-media-placeholder__button{
|
||||
margin-bottom:0;
|
||||
}
|
||||
|
||||
.block-editor-media-placeholder__url-input-form{
|
||||
display:flex;
|
||||
}
|
||||
.block-editor-media-placeholder__url-input-form input[type=url].block-editor-media-placeholder__url-input-field{
|
||||
border:none;
|
||||
border-radius:0;
|
||||
flex-grow:1;
|
||||
margin:2px;
|
||||
min-width:200px;
|
||||
width:100%;
|
||||
}
|
||||
@media (min-width:600px){
|
||||
.block-editor-media-placeholder__url-input-form input[type=url].block-editor-media-placeholder__url-input-field{
|
||||
width:300px;
|
||||
}
|
||||
}
|
||||
|
||||
.block-editor-media-placeholder__url-input-submit-button{
|
||||
flex-shrink:1;
|
||||
}
|
||||
|
||||
.block-editor-media-placeholder__button{
|
||||
margin-bottom:.5rem;
|
||||
}
|
||||
|
||||
.block-editor-media-placeholder__cancel-button.is-link{
|
||||
display:block;
|
||||
margin:1em;
|
||||
}
|
||||
|
||||
.block-editor-media-placeholder.is-appender{
|
||||
min-height:0;
|
||||
}
|
||||
.block-editor-media-placeholder.is-appender:hover{
|
||||
box-shadow:0 0 0 1px var(--wp-admin-theme-color);
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
.block-editor-plain-text{
|
||||
border:none;
|
||||
box-shadow:none;
|
||||
color:inherit;
|
||||
font-family:inherit;
|
||||
font-size:inherit;
|
||||
line-height:inherit;
|
||||
margin:0;
|
||||
padding:0;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
.rich-text [data-rich-text-placeholder]{
|
||||
pointer-events:none;
|
||||
}
|
||||
.rich-text [data-rich-text-placeholder]:after{
|
||||
content:attr(data-rich-text-placeholder);
|
||||
opacity:.62;
|
||||
}
|
||||
.rich-text:focus{
|
||||
outline:none;
|
||||
}
|
||||
.rich-text:focus [data-rich-text-format-boundary]{
|
||||
border-radius:2px;
|
||||
}
|
||||
|
||||
.block-editor-rich-text__editable>p:first-child{
|
||||
margin-top:0;
|
||||
}
|
||||
|
||||
figcaption.block-editor-rich-text__editable [data-rich-text-placeholder]:before{
|
||||
opacity:.8;
|
||||
}
|
||||
|
||||
[data-rich-text-script]{
|
||||
display:inline;
|
||||
}
|
||||
[data-rich-text-script]:before{
|
||||
background:#ff0;
|
||||
content:"</>";
|
||||
}
|
||||
|
||||
.block-editor-warning{
|
||||
align-items:center;
|
||||
background-color:#fff;
|
||||
border:1px solid #1e1e1e;
|
||||
border-radius:2px;
|
||||
display:flex;
|
||||
flex-wrap:wrap;
|
||||
padding:1em;
|
||||
}
|
||||
.block-editor-warning,.block-editor-warning .block-editor-warning__message{
|
||||
font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;
|
||||
}
|
||||
.block-editor-warning .block-editor-warning__message{
|
||||
color:#1e1e1e;
|
||||
font-size:13px;
|
||||
line-height:1.4;
|
||||
margin:0;
|
||||
}
|
||||
.block-editor-warning p.block-editor-warning__message.block-editor-warning__message{
|
||||
min-height:auto;
|
||||
}
|
||||
.block-editor-warning .block-editor-warning__contents{
|
||||
align-items:baseline;
|
||||
display:flex;
|
||||
flex-direction:row;
|
||||
flex-wrap:wrap;
|
||||
justify-content:space-between;
|
||||
width:100%;
|
||||
}
|
||||
.block-editor-warning .block-editor-warning__actions{
|
||||
align-items:center;
|
||||
display:flex;
|
||||
margin-top:1em;
|
||||
}
|
||||
.block-editor-warning .block-editor-warning__action{
|
||||
margin:0 0 0 8px;
|
||||
}
|
||||
|
||||
.block-editor-warning__secondary{
|
||||
margin:auto 8px auto 0;
|
||||
}
|
||||
|
||||
.components-popover.block-editor-warning__dropdown{
|
||||
z-index:99998;
|
||||
}
|
||||
|
||||
body.admin-color-light{
|
||||
--wp-admin-theme-color:#0085ba;
|
||||
--wp-admin-theme-color--rgb:0, 133, 186;
|
||||
--wp-admin-theme-color-darker-10:#0073a1;
|
||||
--wp-admin-theme-color-darker-10--rgb:0, 115, 161;
|
||||
--wp-admin-theme-color-darker-20:#006187;
|
||||
--wp-admin-theme-color-darker-20--rgb:0, 97, 135;
|
||||
--wp-admin-border-width-focus:2px;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
body.admin-color-light{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
|
||||
body.admin-color-modern{
|
||||
--wp-admin-theme-color:#3858e9;
|
||||
--wp-admin-theme-color--rgb:56, 88, 233;
|
||||
--wp-admin-theme-color-darker-10:#2145e6;
|
||||
--wp-admin-theme-color-darker-10--rgb:33, 69, 230;
|
||||
--wp-admin-theme-color-darker-20:#183ad6;
|
||||
--wp-admin-theme-color-darker-20--rgb:24, 58, 214;
|
||||
--wp-admin-border-width-focus:2px;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
body.admin-color-modern{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
|
||||
body.admin-color-blue{
|
||||
--wp-admin-theme-color:#096484;
|
||||
--wp-admin-theme-color--rgb:9, 100, 132;
|
||||
--wp-admin-theme-color-darker-10:#07526c;
|
||||
--wp-admin-theme-color-darker-10--rgb:7, 82, 108;
|
||||
--wp-admin-theme-color-darker-20:#064054;
|
||||
--wp-admin-theme-color-darker-20--rgb:6, 64, 84;
|
||||
--wp-admin-border-width-focus:2px;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
body.admin-color-blue{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
|
||||
body.admin-color-coffee{
|
||||
--wp-admin-theme-color:#46403c;
|
||||
--wp-admin-theme-color--rgb:70, 64, 60;
|
||||
--wp-admin-theme-color-darker-10:#383330;
|
||||
--wp-admin-theme-color-darker-10--rgb:56, 51, 48;
|
||||
--wp-admin-theme-color-darker-20:#2b2724;
|
||||
--wp-admin-theme-color-darker-20--rgb:43, 39, 36;
|
||||
--wp-admin-border-width-focus:2px;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
body.admin-color-coffee{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
|
||||
body.admin-color-ectoplasm{
|
||||
--wp-admin-theme-color:#523f6d;
|
||||
--wp-admin-theme-color--rgb:82, 63, 109;
|
||||
--wp-admin-theme-color-darker-10:#46365d;
|
||||
--wp-admin-theme-color-darker-10--rgb:70, 54, 93;
|
||||
--wp-admin-theme-color-darker-20:#3a2c4d;
|
||||
--wp-admin-theme-color-darker-20--rgb:58, 44, 77;
|
||||
--wp-admin-border-width-focus:2px;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
body.admin-color-ectoplasm{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
|
||||
body.admin-color-midnight{
|
||||
--wp-admin-theme-color:#e14d43;
|
||||
--wp-admin-theme-color--rgb:225, 77, 67;
|
||||
--wp-admin-theme-color-darker-10:#dd382d;
|
||||
--wp-admin-theme-color-darker-10--rgb:221, 56, 45;
|
||||
--wp-admin-theme-color-darker-20:#d02c21;
|
||||
--wp-admin-theme-color-darker-20--rgb:208, 44, 33;
|
||||
--wp-admin-border-width-focus:2px;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
body.admin-color-midnight{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
|
||||
body.admin-color-ocean{
|
||||
--wp-admin-theme-color:#627c83;
|
||||
--wp-admin-theme-color--rgb:98, 124, 131;
|
||||
--wp-admin-theme-color-darker-10:#576e74;
|
||||
--wp-admin-theme-color-darker-10--rgb:87, 110, 116;
|
||||
--wp-admin-theme-color-darker-20:#4c6066;
|
||||
--wp-admin-theme-color-darker-20--rgb:76, 96, 102;
|
||||
--wp-admin-border-width-focus:2px;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
body.admin-color-ocean{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
|
||||
body.admin-color-sunrise{
|
||||
--wp-admin-theme-color:#dd823b;
|
||||
--wp-admin-theme-color--rgb:221, 130, 59;
|
||||
--wp-admin-theme-color-darker-10:#d97426;
|
||||
--wp-admin-theme-color-darker-10--rgb:217, 116, 38;
|
||||
--wp-admin-theme-color-darker-20:#c36922;
|
||||
--wp-admin-theme-color-darker-20--rgb:195, 105, 34;
|
||||
--wp-admin-border-width-focus:2px;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
body.admin-color-sunrise{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-editor/content-rtl.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-editor/content-rtl.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
921
CTF/Smol/wordpress.old/wp-includes/css/dist/block-editor/content.css
vendored
Normal file
921
CTF/Smol/wordpress.old/wp-includes/css/dist/block-editor/content.css
vendored
Normal file
@@ -0,0 +1,921 @@
|
||||
: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;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
:root{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
|
||||
.block-editor-block-icon{
|
||||
align-items:center;
|
||||
display:flex;
|
||||
height:24px;
|
||||
justify-content:center;
|
||||
width:24px;
|
||||
}
|
||||
.block-editor-block-icon.has-colors svg{
|
||||
fill:currentColor;
|
||||
}
|
||||
@media (forced-colors:active){
|
||||
.block-editor-block-icon.has-colors svg{
|
||||
fill:CanvasText;
|
||||
}
|
||||
}
|
||||
.block-editor-block-icon svg{
|
||||
max-height:24px;
|
||||
max-width:24px;
|
||||
min-height:20px;
|
||||
min-width:20px;
|
||||
}
|
||||
|
||||
.block-editor-block-styles .block-editor-block-list__block{
|
||||
margin:0;
|
||||
}
|
||||
@keyframes selection-overlay__fade-in-animation{
|
||||
0%{
|
||||
opacity:0;
|
||||
}
|
||||
to{
|
||||
opacity:.4;
|
||||
}
|
||||
}
|
||||
.block-editor-block-list__layout{
|
||||
position:relative;
|
||||
}
|
||||
.block-editor-block-list__layout::selection{
|
||||
background:transparent;
|
||||
}
|
||||
.has-multi-selection .block-editor-block-list__layout::selection{
|
||||
background:transparent;
|
||||
}
|
||||
.block-editor-block-list__layout:where(.block-editor-block-list__block.is-multi-selected:not(.is-partially-selected)){
|
||||
border-radius:2px;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected:not(.is-partially-selected) ::selection,.block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected:not(.is-partially-selected)::selection{
|
||||
background:transparent;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected:not(.is-partially-selected):after{
|
||||
animation:selection-overlay__fade-in-animation .1s ease-out;
|
||||
animation-fill-mode:forwards;
|
||||
background:var(--wp-admin-theme-color);
|
||||
border-radius:2px;
|
||||
bottom:0;
|
||||
content:"";
|
||||
left:0;
|
||||
opacity:.4;
|
||||
outline:2px solid transparent;
|
||||
pointer-events:none;
|
||||
position:absolute;
|
||||
right:0;
|
||||
top:0;
|
||||
z-index:1;
|
||||
}
|
||||
@media (prefers-reduced-motion:reduce){
|
||||
.block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected:not(.is-partially-selected):after{
|
||||
animation-delay:0s;
|
||||
animation-duration:1ms;
|
||||
}
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected:not(.is-partially-selected).is-highlighted:after{
|
||||
box-shadow:none;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block.is-highlighted,.block-editor-block-list__layout .block-editor-block-list__block.is-highlighted~.is-multi-selected,.block-editor-block-list__layout .block-editor-block-list__block:not([contenteditable]):focus,.block-editor-block-list__layout .is-block-moving-mode.block-editor-block-list__block.has-child-selected,.block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-selected{
|
||||
outline:none;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block.is-highlighted:after,.block-editor-block-list__layout .block-editor-block-list__block.is-highlighted~.is-multi-selected:after,.block-editor-block-list__layout .block-editor-block-list__block:not([contenteditable]):focus:after,.block-editor-block-list__layout .is-block-moving-mode.block-editor-block-list__block.has-child-selected:after,.block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-selected:after{
|
||||
border-radius:1px;
|
||||
bottom:1px;
|
||||
box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
|
||||
content:"";
|
||||
left:1px;
|
||||
outline:2px solid transparent;
|
||||
pointer-events:none;
|
||||
position:absolute;
|
||||
right:1px;
|
||||
top:1px;
|
||||
z-index:1;
|
||||
}
|
||||
.is-dark-theme .block-editor-block-list__layout .block-editor-block-list__block.is-highlighted:after,.is-dark-theme .block-editor-block-list__layout .block-editor-block-list__block.is-highlighted~.is-multi-selected:after,.is-dark-theme .block-editor-block-list__layout .block-editor-block-list__block:not([contenteditable]):focus:after,.is-dark-theme .block-editor-block-list__layout .is-block-moving-mode.block-editor-block-list__block.has-child-selected:after,.is-dark-theme .block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-selected:after{
|
||||
box-shadow:0 0 0 var(--wp-admin-border-width-focus) #fff;
|
||||
}
|
||||
.block-editor-block-list__layout .is-block-moving-mode.block-editor-block-list__block.is-selected{
|
||||
box-shadow:none;
|
||||
outline:none;
|
||||
}
|
||||
.block-editor-block-list__layout .is-block-moving-mode.block-editor-block-list__block.is-selected:after{
|
||||
border-radius:2px;
|
||||
border-top:4px solid #ccc;
|
||||
content:"";
|
||||
left:0;
|
||||
pointer-events:none;
|
||||
position:absolute;
|
||||
right:0;
|
||||
top:-14px;
|
||||
transition:border-color .1s linear,border-style .1s linear,box-shadow .1s linear;
|
||||
z-index:0;
|
||||
}
|
||||
.block-editor-block-list__layout .is-block-moving-mode.can-insert-moving-block.block-editor-block-list__block.is-selected:after{
|
||||
border-color:var(--wp-admin-theme-color);
|
||||
}
|
||||
.has-multi-selection .block-editor-block-list__layout{
|
||||
-webkit-user-select:none;
|
||||
user-select:none;
|
||||
}
|
||||
.block-editor-block-list__layout [class^=components-]{
|
||||
-webkit-user-select:text;
|
||||
user-select:text;
|
||||
}
|
||||
|
||||
.is-block-moving-mode.block-editor-block-list__block-selection-button{
|
||||
font-size:1px;
|
||||
height:1px;
|
||||
opacity:0;
|
||||
padding:0;
|
||||
}
|
||||
|
||||
.block-editor-block-list__layout .block-editor-block-list__block{
|
||||
overflow-wrap:break-word;
|
||||
pointer-events:auto;
|
||||
position:relative;
|
||||
-webkit-user-select:text;
|
||||
user-select:text;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block.is-editing-disabled{
|
||||
pointer-events:none;
|
||||
-webkit-user-select:none;
|
||||
user-select:none;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block .reusable-block-edit-panel *{
|
||||
z-index:1;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block .components-placeholder .components-with-notices-ui{
|
||||
margin:-10px 0 12px;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block .components-with-notices-ui{
|
||||
margin:0 0 12px;
|
||||
width:100%;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block .components-with-notices-ui .components-notice{
|
||||
margin-left:0;
|
||||
margin-right:0;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block .components-with-notices-ui .components-notice .components-notice__content{
|
||||
font-size:13px;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block.has-warning{
|
||||
min-height:48px;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block.has-warning>*{
|
||||
pointer-events:none;
|
||||
-webkit-user-select:none;
|
||||
user-select:none;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block.has-warning .block-editor-warning{
|
||||
pointer-events:all;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block.has-warning:after{
|
||||
background-color:hsla(0,0%,100%,.4);
|
||||
border-radius:2px;
|
||||
bottom:0;
|
||||
content:"";
|
||||
left:0;
|
||||
position:absolute;
|
||||
right:0;
|
||||
top:0;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block.has-warning.is-multi-selected:after{
|
||||
background-color:transparent;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block.is-reusable>.block-editor-inner-blocks>.block-editor-block-list__layout.has-overlay:after{
|
||||
display:none;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block.is-reusable>.block-editor-inner-blocks>.block-editor-block-list__layout.has-overlay .block-editor-block-list__layout.has-overlay:after{
|
||||
display:block;
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block.is-reusable.has-child-selected:after{
|
||||
box-shadow:0 0 0 1px var(--wp-admin-theme-color);
|
||||
}
|
||||
.block-editor-block-list__layout .block-editor-block-list__block[data-clear=true]{
|
||||
float:none;
|
||||
}
|
||||
|
||||
.is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-hovered{
|
||||
cursor:default;
|
||||
}
|
||||
.is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-hovered:after{
|
||||
border-radius:1px;
|
||||
bottom:1px;
|
||||
box-shadow:0 0 0 1px var(--wp-admin-theme-color);
|
||||
content:"";
|
||||
left:1px;
|
||||
pointer-events:none;
|
||||
position:absolute;
|
||||
right:1px;
|
||||
top:1px;
|
||||
}
|
||||
.is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-selected{
|
||||
cursor:default;
|
||||
}
|
||||
.is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-selected.rich-text{
|
||||
cursor:unset;
|
||||
}
|
||||
.is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-selected:after{
|
||||
border-radius:2px;
|
||||
bottom:1px;
|
||||
box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
|
||||
content:"";
|
||||
left:1px;
|
||||
pointer-events:none;
|
||||
position:absolute;
|
||||
right:1px;
|
||||
top:1px;
|
||||
}
|
||||
|
||||
.is-focus-mode .block-editor-block-list__block:not(.has-child-selected){
|
||||
opacity:.2;
|
||||
transition:opacity .1s linear;
|
||||
}
|
||||
@media (prefers-reduced-motion:reduce){
|
||||
.is-focus-mode .block-editor-block-list__block:not(.has-child-selected){
|
||||
transition-delay:0s;
|
||||
transition-duration:0s;
|
||||
}
|
||||
}
|
||||
|
||||
.is-focus-mode .block-editor-block-list__block.is-content-locked-temporarily-editing-as-blocks.has-child-selected,.is-focus-mode .block-editor-block-list__block.is-content-locked-temporarily-editing-as-blocks.has-child-selected .block-editor-block-list__block,.is-focus-mode .block-editor-block-list__block.is-content-locked.has-child-selected,.is-focus-mode .block-editor-block-list__block.is-content-locked.has-child-selected .block-editor-block-list__block,.is-focus-mode .block-editor-block-list__block:not(.has-child-selected) .block-editor-block-list__block,.is-focus-mode .block-editor-block-list__block:not(.has-child-selected).is-multi-selected,.is-focus-mode .block-editor-block-list__block:not(.has-child-selected).is-selected{
|
||||
opacity:1;
|
||||
}
|
||||
|
||||
.wp-block.alignleft,.wp-block.alignright,.wp-block[data-align=left]>*,.wp-block[data-align=right]>*{
|
||||
z-index:21;
|
||||
}
|
||||
|
||||
.wp-site-blocks>[data-align=left]{
|
||||
float:left;
|
||||
margin-right:2em;
|
||||
}
|
||||
|
||||
.wp-site-blocks>[data-align=right]{
|
||||
float:right;
|
||||
margin-left:2em;
|
||||
}
|
||||
|
||||
.wp-site-blocks>[data-align=center]{
|
||||
justify-content:center;
|
||||
margin-left:auto;
|
||||
margin-right:auto;
|
||||
}
|
||||
.block-editor-block-list .block-editor-inserter{
|
||||
cursor:move;
|
||||
cursor:grab;
|
||||
margin:8px;
|
||||
}
|
||||
|
||||
@keyframes block-editor-inserter__toggle__fade-in-animation{
|
||||
0%{
|
||||
opacity:0;
|
||||
}
|
||||
to{
|
||||
opacity:1;
|
||||
}
|
||||
}
|
||||
.wp-block .block-list-appender .block-editor-inserter__toggle{
|
||||
animation:block-editor-inserter__toggle__fade-in-animation .1s ease;
|
||||
animation-fill-mode:forwards;
|
||||
}
|
||||
@media (prefers-reduced-motion:reduce){
|
||||
.wp-block .block-list-appender .block-editor-inserter__toggle{
|
||||
animation-delay:0s;
|
||||
animation-duration:1ms;
|
||||
}
|
||||
}
|
||||
|
||||
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected) .block-editor-default-block-appender{
|
||||
display:none;
|
||||
}
|
||||
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected) .block-editor-default-block-appender .block-editor-inserter__toggle{
|
||||
opacity:0;
|
||||
transform:scale(0);
|
||||
}
|
||||
|
||||
.block-editor-block-list__block .block-editor-block-list__block-html-textarea{
|
||||
border:none;
|
||||
border-radius:2px;
|
||||
box-shadow:inset 0 0 0 1px #1e1e1e;
|
||||
display:block;
|
||||
font-family:Menlo,Consolas,monaco,monospace;
|
||||
font-size:15px;
|
||||
line-height:1.5;
|
||||
margin:0;
|
||||
outline:none;
|
||||
overflow:hidden;
|
||||
padding:12px;
|
||||
resize:none;
|
||||
transition:padding .2s linear;
|
||||
width:100%;
|
||||
}
|
||||
@media (prefers-reduced-motion:reduce){
|
||||
.block-editor-block-list__block .block-editor-block-list__block-html-textarea{
|
||||
transition-delay:0s;
|
||||
transition-duration:0s;
|
||||
}
|
||||
}
|
||||
.block-editor-block-list__block .block-editor-block-list__block-html-textarea:focus{
|
||||
box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
|
||||
}
|
||||
.block-editor-block-list__block .block-editor-warning{
|
||||
position:relative;
|
||||
z-index:5;
|
||||
}
|
||||
.block-editor-block-list__block .block-editor-warning.block-editor-block-list__block-crash-warning{
|
||||
margin-bottom:auto;
|
||||
}
|
||||
|
||||
.block-editor-iframe__body{
|
||||
background-color:#fff;
|
||||
transform-origin:top center;
|
||||
transition:all .3s;
|
||||
}
|
||||
|
||||
.is-vertical .block-list-appender{
|
||||
margin-left:12px;
|
||||
margin-right:auto;
|
||||
margin-top:12px;
|
||||
width:24px;
|
||||
}
|
||||
|
||||
.block-list-appender>.block-editor-inserter{
|
||||
display:block;
|
||||
}
|
||||
|
||||
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.block-editor-block-list__layout) .block-editor-block-list__layout>.block-list-appender .block-list-appender__toggle{
|
||||
opacity:0;
|
||||
transform:scale(0);
|
||||
}
|
||||
|
||||
.block-editor-block-list__block.has-block-overlay{
|
||||
cursor:default;
|
||||
}
|
||||
.block-editor-block-list__block.has-block-overlay:before{
|
||||
background:transparent;
|
||||
border:none;
|
||||
border-radius:2px;
|
||||
content:"";
|
||||
height:100%;
|
||||
left:0;
|
||||
position:absolute;
|
||||
top:0;
|
||||
width:100%;
|
||||
z-index:10;
|
||||
}
|
||||
.block-editor-block-list__block.has-block-overlay:not(.is-multi-selected):after{
|
||||
content:none !important;
|
||||
}
|
||||
.block-editor-block-list__block.has-block-overlay:hover:not(.is-dragging-blocks):not(.is-multi-selected):before{
|
||||
background:rgba(var(--wp-admin-theme-color--rgb), .04);
|
||||
box-shadow:0 0 0 1px var(--wp-admin-theme-color) inset;
|
||||
}
|
||||
.block-editor-block-list__block.has-block-overlay.is-reusable:hover:not(.is-dragging-blocks):not(.is-multi-selected):before,.block-editor-block-list__block.has-block-overlay.wp-block-template-part:hover:not(.is-dragging-blocks):not(.is-multi-selected):before{
|
||||
background:rgba(var(--wp-block-synced-color--rgb), .04);
|
||||
box-shadow:0 0 0 1px var(--wp-block-synced-color) inset;
|
||||
}
|
||||
.block-editor-block-list__block.has-block-overlay.is-selected:not(.is-dragging-blocks):before{
|
||||
box-shadow:0 0 0 1px var(--wp-admin-theme-color) inset;
|
||||
}
|
||||
.block-editor-block-list__block.has-block-overlay .block-editor-block-list__block{
|
||||
pointer-events:none;
|
||||
}
|
||||
.block-editor-iframe__body.is-zoomed-out .block-editor-block-list__block.has-block-overlay:before{
|
||||
left:calc(50% - 50vw);
|
||||
width:100vw;
|
||||
}
|
||||
|
||||
.block-editor-block-list__layout .is-dragging{
|
||||
background-color:currentColor !important;
|
||||
border-radius:2px !important;
|
||||
opacity:.05 !important;
|
||||
pointer-events:none !important;
|
||||
}
|
||||
.block-editor-block-list__layout .is-dragging::selection{
|
||||
background:transparent !important;
|
||||
}
|
||||
.block-editor-block-list__layout .is-dragging:after{
|
||||
content:none !important;
|
||||
}
|
||||
|
||||
.block-editor-block-preview__content-iframe .block-list-appender{
|
||||
display:none;
|
||||
}
|
||||
|
||||
.block-editor-block-preview__live-content *{
|
||||
pointer-events:none;
|
||||
}
|
||||
.block-editor-block-preview__live-content .block-list-appender{
|
||||
display:none;
|
||||
}
|
||||
.block-editor-block-preview__live-content .components-button:disabled{
|
||||
opacity:1;
|
||||
}
|
||||
.block-editor-block-preview__live-content .block-editor-block-list__block[data-empty=true],.block-editor-block-preview__live-content .components-placeholder{
|
||||
display:none;
|
||||
}
|
||||
|
||||
.block-editor-block-variation-picker .components-placeholder__instructions{
|
||||
margin-bottom:0;
|
||||
}
|
||||
.block-editor-block-variation-picker .components-placeholder__fieldset{
|
||||
flex-direction:column;
|
||||
}
|
||||
.block-editor-block-variation-picker.has-many-variations .components-placeholder__fieldset{
|
||||
max-width:90%;
|
||||
}
|
||||
|
||||
.block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations{
|
||||
display:flex;
|
||||
flex-direction:row;
|
||||
flex-wrap:wrap;
|
||||
justify-content:flex-start;
|
||||
list-style:none;
|
||||
margin:16px 0;
|
||||
padding:0;
|
||||
width:100%;
|
||||
}
|
||||
.block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations>li{
|
||||
flex-shrink:1;
|
||||
list-style:none;
|
||||
margin:8px 20px 0 0;
|
||||
text-align:center;
|
||||
width:75px;
|
||||
}
|
||||
.block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations>li button{
|
||||
display:inline-flex;
|
||||
margin-right:0;
|
||||
}
|
||||
.block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations .block-editor-block-variation-picker__variation{
|
||||
padding:8px;
|
||||
}
|
||||
.block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations .block-editor-block-variation-picker__variation-label{
|
||||
display:block;
|
||||
font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;
|
||||
font-size:12px;
|
||||
line-height:1.4;
|
||||
}
|
||||
|
||||
.block-editor-block-variation-picker__variation{
|
||||
width:100%;
|
||||
}
|
||||
.block-editor-block-variation-picker__variation.components-button.has-icon{
|
||||
justify-content:center;
|
||||
width:auto;
|
||||
}
|
||||
.block-editor-block-variation-picker__variation.components-button.has-icon.is-secondary{
|
||||
background-color:#fff;
|
||||
}
|
||||
.block-editor-block-variation-picker__variation.components-button{
|
||||
height:auto;
|
||||
padding:0;
|
||||
}
|
||||
.block-editor-block-variation-picker__variation:before{
|
||||
content:"";
|
||||
padding-bottom:100%;
|
||||
}
|
||||
.block-editor-block-variation-picker__variation:first-child{
|
||||
margin-left:0;
|
||||
}
|
||||
.block-editor-block-variation-picker__variation:last-child{
|
||||
margin-right:0;
|
||||
}
|
||||
|
||||
.block-editor-button-block-appender{
|
||||
align-items:center;
|
||||
box-shadow:inset 0 0 0 1px #1e1e1e;
|
||||
color:#1e1e1e;
|
||||
display:flex;
|
||||
flex-direction:column;
|
||||
height:auto;
|
||||
justify-content:center;
|
||||
width:100%;
|
||||
}
|
||||
.block-editor-button-block-appender.components-button.components-button{
|
||||
padding:12px;
|
||||
}
|
||||
.is-dark-theme .block-editor-button-block-appender{
|
||||
box-shadow:inset 0 0 0 1px hsla(0,0%,100%,.65);
|
||||
color:hsla(0,0%,100%,.65);
|
||||
}
|
||||
.block-editor-button-block-appender:hover{
|
||||
box-shadow:inset 0 0 0 1px var(--wp-admin-theme-color);
|
||||
color:var(--wp-admin-theme-color);
|
||||
}
|
||||
.block-editor-button-block-appender:focus{
|
||||
box-shadow:inset 0 0 0 2px var(--wp-admin-theme-color);
|
||||
}
|
||||
.block-editor-button-block-appender:active{
|
||||
color:#000;
|
||||
}
|
||||
|
||||
.is-layout-constrained.block-editor-block-list__block:not(.is-selected)>.block-list-appender:only-child,.is-layout-constrained.block-editor-block-list__block:not(.is-selected)>.wp-block-group__inner-container>.block-list-appender:only-child,.is-layout-flow.block-editor-block-list__block:not(.is-selected)>.block-list-appender:only-child,.is-layout-flow.block-editor-block-list__block:not(.is-selected)>.wp-block-group__inner-container>.block-list-appender:only-child{
|
||||
pointer-events:none;
|
||||
}
|
||||
.is-layout-constrained.block-editor-block-list__block:not(.is-selected)>.block-list-appender:only-child:after,.is-layout-constrained.block-editor-block-list__block:not(.is-selected)>.wp-block-group__inner-container>.block-list-appender:only-child:after,.is-layout-flow.block-editor-block-list__block:not(.is-selected)>.block-list-appender:only-child:after,.is-layout-flow.block-editor-block-list__block:not(.is-selected)>.wp-block-group__inner-container>.block-list-appender:only-child:after{
|
||||
border:1px dashed;
|
||||
border-radius:2px;
|
||||
bottom:0;
|
||||
content:"";
|
||||
left:0;
|
||||
pointer-events:none;
|
||||
position:absolute;
|
||||
right:0;
|
||||
top:0;
|
||||
}
|
||||
.is-layout-constrained.block-editor-block-list__block:not(.is-selected)>.block-list-appender:only-child:after:before,.is-layout-constrained.block-editor-block-list__block:not(.is-selected)>.wp-block-group__inner-container>.block-list-appender:only-child:after:before,.is-layout-flow.block-editor-block-list__block:not(.is-selected)>.block-list-appender:only-child:after:before,.is-layout-flow.block-editor-block-list__block:not(.is-selected)>.wp-block-group__inner-container>.block-list-appender:only-child:after:before{
|
||||
background:currentColor;
|
||||
bottom:0;
|
||||
content:"";
|
||||
left:0;
|
||||
opacity:.1;
|
||||
pointer-events:none;
|
||||
position:absolute;
|
||||
right:0;
|
||||
top:0;
|
||||
}
|
||||
.is-layout-constrained.block-editor-block-list__block:not(.is-selected)>.block-list-appender:only-child .block-editor-inserter,.is-layout-constrained.block-editor-block-list__block:not(.is-selected)>.wp-block-group__inner-container>.block-list-appender:only-child .block-editor-inserter,.is-layout-flow.block-editor-block-list__block:not(.is-selected)>.block-list-appender:only-child .block-editor-inserter,.is-layout-flow.block-editor-block-list__block:not(.is-selected)>.wp-block-group__inner-container>.block-list-appender:only-child .block-editor-inserter{
|
||||
visibility:hidden;
|
||||
}
|
||||
.is-layout-constrained.block-editor-block-list__block:not(.is-selected)>.block-list-appender:only-child.is-drag-over:after,.is-layout-constrained.block-editor-block-list__block:not(.is-selected)>.wp-block-group__inner-container>.block-list-appender:only-child.is-drag-over:after,.is-layout-flow.block-editor-block-list__block:not(.is-selected)>.block-list-appender:only-child.is-drag-over:after,.is-layout-flow.block-editor-block-list__block:not(.is-selected)>.wp-block-group__inner-container>.block-list-appender:only-child.is-drag-over:after{
|
||||
border:none;
|
||||
}
|
||||
.is-layout-constrained.block-editor-block-list__block:not(.is-selected)>.block-list-appender:only-child.is-drag-over .block-editor-inserter,.is-layout-constrained.block-editor-block-list__block:not(.is-selected)>.wp-block-group__inner-container>.block-list-appender:only-child.is-drag-over .block-editor-inserter,.is-layout-flow.block-editor-block-list__block:not(.is-selected)>.block-list-appender:only-child.is-drag-over .block-editor-inserter,.is-layout-flow.block-editor-block-list__block:not(.is-selected)>.wp-block-group__inner-container>.block-list-appender:only-child.is-drag-over .block-editor-inserter{
|
||||
visibility:visible;
|
||||
}
|
||||
.block-list-appender:only-child.is-drag-over .block-editor-button-block-appender{
|
||||
background-color:var(--wp-admin-theme-color);
|
||||
box-shadow:inset 0 0 0 1px hsla(0,0%,100%,.65);
|
||||
color:hsla(0,0%,100%,.65);
|
||||
transition:background-color .2s ease-in-out;
|
||||
}
|
||||
@media (prefers-reduced-motion:reduce){
|
||||
.block-list-appender:only-child.is-drag-over .block-editor-button-block-appender{
|
||||
transition:none;
|
||||
}
|
||||
}
|
||||
.block-editor-default-block-appender{
|
||||
clear:both;
|
||||
margin-left:auto;
|
||||
margin-right:auto;
|
||||
position:relative;
|
||||
}
|
||||
.block-editor-default-block-appender[data-root-client-id=""] .block-editor-default-block-appender__content:hover{
|
||||
outline:1px solid transparent;
|
||||
}
|
||||
.block-editor-default-block-appender .block-editor-default-block-appender__content{
|
||||
opacity:.62;
|
||||
}
|
||||
:where(body .is-layout-constrained) .block-editor-default-block-appender>:first-child:first-child{
|
||||
margin-block-start:0;
|
||||
}
|
||||
.block-editor-default-block-appender .components-drop-zone__content-icon{
|
||||
display:none;
|
||||
}
|
||||
.block-editor-default-block-appender .block-editor-inserter__toggle.components-button.has-icon{
|
||||
background:#1e1e1e;
|
||||
border-radius:2px;
|
||||
color:#fff;
|
||||
height:24px;
|
||||
min-width:24px;
|
||||
padding:0;
|
||||
}
|
||||
.block-editor-default-block-appender .block-editor-inserter__toggle.components-button.has-icon:hover{
|
||||
background:var(--wp-admin-theme-color);
|
||||
color:#fff;
|
||||
}
|
||||
|
||||
.block-editor-block-list__empty-block-inserter.block-editor-block-list__empty-block-inserter,.block-editor-default-block-appender .block-editor-inserter{
|
||||
line-height:0;
|
||||
position:absolute;
|
||||
right:0;
|
||||
top:0;
|
||||
}
|
||||
.block-editor-block-list__empty-block-inserter.block-editor-block-list__empty-block-inserter:disabled,.block-editor-default-block-appender .block-editor-inserter:disabled{
|
||||
display:none;
|
||||
}
|
||||
.block-editor-block-list__block .block-list-appender{
|
||||
bottom:0;
|
||||
list-style:none;
|
||||
padding:0;
|
||||
position:absolute;
|
||||
right:0;
|
||||
z-index:2;
|
||||
}
|
||||
.block-editor-block-list__block .block-list-appender.block-list-appender{
|
||||
line-height:0;
|
||||
margin:0;
|
||||
}
|
||||
.block-editor-block-list__block .block-list-appender .block-editor-default-block-appender{
|
||||
height:24px;
|
||||
}
|
||||
.block-editor-block-list__block .block-list-appender .block-editor-inserter__toggle.components-button.has-icon,.block-editor-block-list__block .block-list-appender .block-list-appender__toggle{
|
||||
background:#1e1e1e;
|
||||
box-shadow:none;
|
||||
color:#fff;
|
||||
display:none;
|
||||
flex-direction:row;
|
||||
height:24px;
|
||||
min-width:24px;
|
||||
padding:0 !important;
|
||||
width:24px;
|
||||
}
|
||||
.block-editor-block-list__block .block-list-appender .block-editor-inserter__toggle.components-button.has-icon:hover,.block-editor-block-list__block .block-list-appender .block-list-appender__toggle:hover{
|
||||
background:var(--wp-admin-theme-color);
|
||||
color:#fff;
|
||||
}
|
||||
.block-editor-block-list__block .block-list-appender .block-editor-default-block-appender__content{
|
||||
display:none;
|
||||
}
|
||||
.block-editor-block-list__block .block-list-appender:only-child{
|
||||
align-self:center;
|
||||
line-height:inherit;
|
||||
list-style:none;
|
||||
position:relative;
|
||||
right:auto;
|
||||
}
|
||||
.block-editor-block-list__block .block-list-appender:only-child .block-editor-default-block-appender__content{
|
||||
display:block;
|
||||
}
|
||||
|
||||
.block-editor-block-list__block.is-selected .block-editor-block-list__layout>.block-list-appender .block-editor-inserter__toggle.components-button.has-icon,.block-editor-block-list__block.is-selected .block-editor-block-list__layout>.block-list-appender .block-list-appender__toggle,.block-editor-block-list__block.is-selected>.block-list-appender .block-editor-inserter__toggle.components-button.has-icon,.block-editor-block-list__block.is-selected>.block-list-appender .block-list-appender__toggle{
|
||||
display:flex;
|
||||
}
|
||||
|
||||
.block-editor-default-block-appender__content{
|
||||
cursor:text;
|
||||
}
|
||||
|
||||
.block-editor-block-list__layout.has-overlay:after{
|
||||
bottom:0;
|
||||
content:"";
|
||||
left:0;
|
||||
position:absolute;
|
||||
right:0;
|
||||
top:0;
|
||||
z-index:60;
|
||||
}
|
||||
|
||||
.block-editor-media-placeholder__url-input-container .block-editor-media-placeholder__button{
|
||||
margin-bottom:0;
|
||||
}
|
||||
|
||||
.block-editor-media-placeholder__url-input-form{
|
||||
display:flex;
|
||||
}
|
||||
.block-editor-media-placeholder__url-input-form input[type=url].block-editor-media-placeholder__url-input-field{
|
||||
border:none;
|
||||
border-radius:0;
|
||||
flex-grow:1;
|
||||
margin:2px;
|
||||
min-width:200px;
|
||||
width:100%;
|
||||
}
|
||||
@media (min-width:600px){
|
||||
.block-editor-media-placeholder__url-input-form input[type=url].block-editor-media-placeholder__url-input-field{
|
||||
width:300px;
|
||||
}
|
||||
}
|
||||
|
||||
.block-editor-media-placeholder__url-input-submit-button{
|
||||
flex-shrink:1;
|
||||
}
|
||||
|
||||
.block-editor-media-placeholder__button{
|
||||
margin-bottom:.5rem;
|
||||
}
|
||||
|
||||
.block-editor-media-placeholder__cancel-button.is-link{
|
||||
display:block;
|
||||
margin:1em;
|
||||
}
|
||||
|
||||
.block-editor-media-placeholder.is-appender{
|
||||
min-height:0;
|
||||
}
|
||||
.block-editor-media-placeholder.is-appender:hover{
|
||||
box-shadow:0 0 0 1px var(--wp-admin-theme-color);
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
.block-editor-plain-text{
|
||||
border:none;
|
||||
box-shadow:none;
|
||||
color:inherit;
|
||||
font-family:inherit;
|
||||
font-size:inherit;
|
||||
line-height:inherit;
|
||||
margin:0;
|
||||
padding:0;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
.rich-text [data-rich-text-placeholder]{
|
||||
pointer-events:none;
|
||||
}
|
||||
.rich-text [data-rich-text-placeholder]:after{
|
||||
content:attr(data-rich-text-placeholder);
|
||||
opacity:.62;
|
||||
}
|
||||
.rich-text:focus{
|
||||
outline:none;
|
||||
}
|
||||
.rich-text:focus [data-rich-text-format-boundary]{
|
||||
border-radius:2px;
|
||||
}
|
||||
|
||||
.block-editor-rich-text__editable>p:first-child{
|
||||
margin-top:0;
|
||||
}
|
||||
|
||||
figcaption.block-editor-rich-text__editable [data-rich-text-placeholder]:before{
|
||||
opacity:.8;
|
||||
}
|
||||
|
||||
[data-rich-text-script]{
|
||||
display:inline;
|
||||
}
|
||||
[data-rich-text-script]:before{
|
||||
background:#ff0;
|
||||
content:"</>";
|
||||
}
|
||||
|
||||
.block-editor-warning{
|
||||
align-items:center;
|
||||
background-color:#fff;
|
||||
border:1px solid #1e1e1e;
|
||||
border-radius:2px;
|
||||
display:flex;
|
||||
flex-wrap:wrap;
|
||||
padding:1em;
|
||||
}
|
||||
.block-editor-warning,.block-editor-warning .block-editor-warning__message{
|
||||
font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;
|
||||
}
|
||||
.block-editor-warning .block-editor-warning__message{
|
||||
color:#1e1e1e;
|
||||
font-size:13px;
|
||||
line-height:1.4;
|
||||
margin:0;
|
||||
}
|
||||
.block-editor-warning p.block-editor-warning__message.block-editor-warning__message{
|
||||
min-height:auto;
|
||||
}
|
||||
.block-editor-warning .block-editor-warning__contents{
|
||||
align-items:baseline;
|
||||
display:flex;
|
||||
flex-direction:row;
|
||||
flex-wrap:wrap;
|
||||
justify-content:space-between;
|
||||
width:100%;
|
||||
}
|
||||
.block-editor-warning .block-editor-warning__actions{
|
||||
align-items:center;
|
||||
display:flex;
|
||||
margin-top:1em;
|
||||
}
|
||||
.block-editor-warning .block-editor-warning__action{
|
||||
margin:0 8px 0 0;
|
||||
}
|
||||
|
||||
.block-editor-warning__secondary{
|
||||
margin:auto 0 auto 8px;
|
||||
}
|
||||
|
||||
.components-popover.block-editor-warning__dropdown{
|
||||
z-index:99998;
|
||||
}
|
||||
|
||||
body.admin-color-light{
|
||||
--wp-admin-theme-color:#0085ba;
|
||||
--wp-admin-theme-color--rgb:0, 133, 186;
|
||||
--wp-admin-theme-color-darker-10:#0073a1;
|
||||
--wp-admin-theme-color-darker-10--rgb:0, 115, 161;
|
||||
--wp-admin-theme-color-darker-20:#006187;
|
||||
--wp-admin-theme-color-darker-20--rgb:0, 97, 135;
|
||||
--wp-admin-border-width-focus:2px;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
body.admin-color-light{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
|
||||
body.admin-color-modern{
|
||||
--wp-admin-theme-color:#3858e9;
|
||||
--wp-admin-theme-color--rgb:56, 88, 233;
|
||||
--wp-admin-theme-color-darker-10:#2145e6;
|
||||
--wp-admin-theme-color-darker-10--rgb:33, 69, 230;
|
||||
--wp-admin-theme-color-darker-20:#183ad6;
|
||||
--wp-admin-theme-color-darker-20--rgb:24, 58, 214;
|
||||
--wp-admin-border-width-focus:2px;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
body.admin-color-modern{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
|
||||
body.admin-color-blue{
|
||||
--wp-admin-theme-color:#096484;
|
||||
--wp-admin-theme-color--rgb:9, 100, 132;
|
||||
--wp-admin-theme-color-darker-10:#07526c;
|
||||
--wp-admin-theme-color-darker-10--rgb:7, 82, 108;
|
||||
--wp-admin-theme-color-darker-20:#064054;
|
||||
--wp-admin-theme-color-darker-20--rgb:6, 64, 84;
|
||||
--wp-admin-border-width-focus:2px;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
body.admin-color-blue{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
|
||||
body.admin-color-coffee{
|
||||
--wp-admin-theme-color:#46403c;
|
||||
--wp-admin-theme-color--rgb:70, 64, 60;
|
||||
--wp-admin-theme-color-darker-10:#383330;
|
||||
--wp-admin-theme-color-darker-10--rgb:56, 51, 48;
|
||||
--wp-admin-theme-color-darker-20:#2b2724;
|
||||
--wp-admin-theme-color-darker-20--rgb:43, 39, 36;
|
||||
--wp-admin-border-width-focus:2px;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
body.admin-color-coffee{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
|
||||
body.admin-color-ectoplasm{
|
||||
--wp-admin-theme-color:#523f6d;
|
||||
--wp-admin-theme-color--rgb:82, 63, 109;
|
||||
--wp-admin-theme-color-darker-10:#46365d;
|
||||
--wp-admin-theme-color-darker-10--rgb:70, 54, 93;
|
||||
--wp-admin-theme-color-darker-20:#3a2c4d;
|
||||
--wp-admin-theme-color-darker-20--rgb:58, 44, 77;
|
||||
--wp-admin-border-width-focus:2px;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
body.admin-color-ectoplasm{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
|
||||
body.admin-color-midnight{
|
||||
--wp-admin-theme-color:#e14d43;
|
||||
--wp-admin-theme-color--rgb:225, 77, 67;
|
||||
--wp-admin-theme-color-darker-10:#dd382d;
|
||||
--wp-admin-theme-color-darker-10--rgb:221, 56, 45;
|
||||
--wp-admin-theme-color-darker-20:#d02c21;
|
||||
--wp-admin-theme-color-darker-20--rgb:208, 44, 33;
|
||||
--wp-admin-border-width-focus:2px;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
body.admin-color-midnight{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
|
||||
body.admin-color-ocean{
|
||||
--wp-admin-theme-color:#627c83;
|
||||
--wp-admin-theme-color--rgb:98, 124, 131;
|
||||
--wp-admin-theme-color-darker-10:#576e74;
|
||||
--wp-admin-theme-color-darker-10--rgb:87, 110, 116;
|
||||
--wp-admin-theme-color-darker-20:#4c6066;
|
||||
--wp-admin-theme-color-darker-20--rgb:76, 96, 102;
|
||||
--wp-admin-border-width-focus:2px;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
body.admin-color-ocean{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
|
||||
body.admin-color-sunrise{
|
||||
--wp-admin-theme-color:#dd823b;
|
||||
--wp-admin-theme-color--rgb:221, 130, 59;
|
||||
--wp-admin-theme-color-darker-10:#d97426;
|
||||
--wp-admin-theme-color-darker-10--rgb:217, 116, 38;
|
||||
--wp-admin-theme-color-darker-20:#c36922;
|
||||
--wp-admin-theme-color-darker-20--rgb:195, 105, 34;
|
||||
--wp-admin-border-width-focus:2px;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
body.admin-color-sunrise{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-editor/content.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-editor/content.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
33
CTF/Smol/wordpress.old/wp-includes/css/dist/block-editor/default-editor-styles-rtl.css
vendored
Normal file
33
CTF/Smol/wordpress.old/wp-includes/css/dist/block-editor/default-editor-styles-rtl.css
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
: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;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
:root{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
body{
|
||||
--wp--style--block-gap:2em;
|
||||
font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;
|
||||
font-size:18px;
|
||||
line-height:1.5;
|
||||
}
|
||||
|
||||
p{
|
||||
line-height:1.8;
|
||||
}
|
||||
|
||||
.editor-post-title__block{
|
||||
font-size:2.5em;
|
||||
font-weight:800;
|
||||
margin-bottom:1em;
|
||||
margin-top:2em;
|
||||
}
|
||||
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-editor/default-editor-styles-rtl.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-editor/default-editor-styles-rtl.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
: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}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}body{--wp--style--block-gap:2em;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:18px;line-height:1.5}p{line-height:1.8}.editor-post-title__block{font-size:2.5em;font-weight:800;margin-bottom:1em;margin-top:2em}
|
||||
33
CTF/Smol/wordpress.old/wp-includes/css/dist/block-editor/default-editor-styles.css
vendored
Normal file
33
CTF/Smol/wordpress.old/wp-includes/css/dist/block-editor/default-editor-styles.css
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
: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;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
:root{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
body{
|
||||
--wp--style--block-gap:2em;
|
||||
font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;
|
||||
font-size:18px;
|
||||
line-height:1.5;
|
||||
}
|
||||
|
||||
p{
|
||||
line-height:1.8;
|
||||
}
|
||||
|
||||
.editor-post-title__block{
|
||||
font-size:2.5em;
|
||||
font-weight:800;
|
||||
margin-bottom:1em;
|
||||
margin-top:2em;
|
||||
}
|
||||
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-editor/default-editor-styles.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-editor/default-editor-styles.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
: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}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}body{--wp--style--block-gap:2em;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:18px;line-height:1.5}p{line-height:1.8}.editor-post-title__block{font-size:2.5em;font-weight:800;margin-bottom:1em;margin-top:2em}
|
||||
4035
CTF/Smol/wordpress.old/wp-includes/css/dist/block-editor/style-rtl.css
vendored
Normal file
4035
CTF/Smol/wordpress.old/wp-includes/css/dist/block-editor/style-rtl.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-editor/style-rtl.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-editor/style-rtl.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
4035
CTF/Smol/wordpress.old/wp-includes/css/dist/block-editor/style.css
vendored
Normal file
4035
CTF/Smol/wordpress.old/wp-includes/css/dist/block-editor/style.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-editor/style.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-editor/style.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
14
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/classic-rtl.css
vendored
Normal file
14
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/classic-rtl.css
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
.wp-block-button__link{
|
||||
background-color:#32373c;
|
||||
border-radius:9999px;
|
||||
box-shadow:none;
|
||||
color:#fff;
|
||||
font-size:1.125em;
|
||||
padding:calc(.667em + 2px) calc(1.333em + 2px);
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
.wp-block-file__button{
|
||||
background:#32373c;
|
||||
color:#fff;
|
||||
}
|
||||
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/classic-rtl.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/classic-rtl.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.wp-block-button__link{background-color:#32373c;border-radius:9999px;box-shadow:none;color:#fff;font-size:1.125em;padding:calc(.667em + 2px) calc(1.333em + 2px);text-decoration:none}.wp-block-file__button{background:#32373c;color:#fff}
|
||||
14
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/classic.css
vendored
Normal file
14
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/classic.css
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
.wp-block-button__link{
|
||||
background-color:#32373c;
|
||||
border-radius:9999px;
|
||||
box-shadow:none;
|
||||
color:#fff;
|
||||
font-size:1.125em;
|
||||
padding:calc(.667em + 2px) calc(1.333em + 2px);
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
.wp-block-file__button{
|
||||
background:#32373c;
|
||||
color:#fff;
|
||||
}
|
||||
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/classic.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/classic.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.wp-block-button__link{background-color:#32373c;border-radius:9999px;box-shadow:none;color:#fff;font-size:1.125em;padding:calc(.667em + 2px) calc(1.333em + 2px);text-decoration:none}.wp-block-file__button{background:#32373c;color:#fff}
|
||||
197
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/common-rtl.css
vendored
Normal file
197
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/common-rtl.css
vendored
Normal file
@@ -0,0 +1,197 @@
|
||||
: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;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
:root{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
.wp-element-button{
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
:root{
|
||||
--wp--preset--font-size--normal:16px;
|
||||
--wp--preset--font-size--huge:42px;
|
||||
}
|
||||
:root .has-very-light-gray-background-color{
|
||||
background-color:#eee;
|
||||
}
|
||||
:root .has-very-dark-gray-background-color{
|
||||
background-color:#313131;
|
||||
}
|
||||
:root .has-very-light-gray-color{
|
||||
color:#eee;
|
||||
}
|
||||
:root .has-very-dark-gray-color{
|
||||
color:#313131;
|
||||
}
|
||||
:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{
|
||||
background:linear-gradient(-135deg, #00d084, #0693e3);
|
||||
}
|
||||
:root .has-purple-crush-gradient-background{
|
||||
background:linear-gradient(-135deg, #34e2e4, #4721fb 50%, #ab1dfe);
|
||||
}
|
||||
:root .has-hazy-dawn-gradient-background{
|
||||
background:linear-gradient(-135deg, #faaca8, #dad0ec);
|
||||
}
|
||||
:root .has-subdued-olive-gradient-background{
|
||||
background:linear-gradient(-135deg, #fafae1, #67a671);
|
||||
}
|
||||
:root .has-atomic-cream-gradient-background{
|
||||
background:linear-gradient(-135deg, #fdd79a, #004a59);
|
||||
}
|
||||
:root .has-nightshade-gradient-background{
|
||||
background:linear-gradient(-135deg, #330968, #31cdcf);
|
||||
}
|
||||
:root .has-midnight-gradient-background{
|
||||
background:linear-gradient(-135deg, #020381, #2874fc);
|
||||
}
|
||||
|
||||
.has-regular-font-size{
|
||||
font-size:1em;
|
||||
}
|
||||
|
||||
.has-larger-font-size{
|
||||
font-size:2.625em;
|
||||
}
|
||||
|
||||
.has-normal-font-size{
|
||||
font-size:var(--wp--preset--font-size--normal);
|
||||
}
|
||||
|
||||
.has-huge-font-size{
|
||||
font-size:var(--wp--preset--font-size--huge);
|
||||
}
|
||||
|
||||
.has-text-align-center{
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
.has-text-align-left{
|
||||
text-align:left;
|
||||
}
|
||||
|
||||
.has-text-align-right{
|
||||
text-align:right;
|
||||
}
|
||||
|
||||
#end-resizable-editor-section{
|
||||
display:none;
|
||||
}
|
||||
|
||||
.aligncenter{
|
||||
clear:both;
|
||||
}
|
||||
|
||||
.items-justified-left{
|
||||
justify-content:flex-start;
|
||||
}
|
||||
|
||||
.items-justified-center{
|
||||
justify-content:center;
|
||||
}
|
||||
|
||||
.items-justified-right{
|
||||
justify-content:flex-end;
|
||||
}
|
||||
|
||||
.items-justified-space-between{
|
||||
justify-content:space-between;
|
||||
}
|
||||
|
||||
.screen-reader-text{
|
||||
clip:rect(1px, 1px, 1px, 1px);
|
||||
word-wrap:normal !important;
|
||||
border:0;
|
||||
-webkit-clip-path:inset(50%);
|
||||
clip-path:inset(50%);
|
||||
height:1px;
|
||||
margin:-1px;
|
||||
overflow:hidden;
|
||||
padding:0;
|
||||
position:absolute;
|
||||
width:1px;
|
||||
}
|
||||
|
||||
.screen-reader-text:focus{
|
||||
clip:auto !important;
|
||||
background-color:#ddd;
|
||||
-webkit-clip-path:none;
|
||||
clip-path:none;
|
||||
color:#444;
|
||||
display:block;
|
||||
font-size:1em;
|
||||
height:auto;
|
||||
line-height:normal;
|
||||
padding:15px 23px 14px;
|
||||
right:5px;
|
||||
text-decoration:none;
|
||||
top:5px;
|
||||
width:auto;
|
||||
z-index:100000;
|
||||
}
|
||||
html :where(.has-border-color){
|
||||
border-style:solid;
|
||||
}
|
||||
|
||||
html :where([style*=border-top-color]){
|
||||
border-top-style:solid;
|
||||
}
|
||||
|
||||
html :where([style*=border-right-color]){
|
||||
border-left-style:solid;
|
||||
}
|
||||
|
||||
html :where([style*=border-bottom-color]){
|
||||
border-bottom-style:solid;
|
||||
}
|
||||
|
||||
html :where([style*=border-left-color]){
|
||||
border-right-style:solid;
|
||||
}
|
||||
|
||||
html :where([style*=border-width]){
|
||||
border-style:solid;
|
||||
}
|
||||
|
||||
html :where([style*=border-top-width]){
|
||||
border-top-style:solid;
|
||||
}
|
||||
|
||||
html :where([style*=border-right-width]){
|
||||
border-left-style:solid;
|
||||
}
|
||||
|
||||
html :where([style*=border-bottom-width]){
|
||||
border-bottom-style:solid;
|
||||
}
|
||||
|
||||
html :where([style*=border-left-width]){
|
||||
border-right-style:solid;
|
||||
}
|
||||
html :where(img[class*=wp-image-]){
|
||||
height:auto;
|
||||
max-width:100%;
|
||||
}
|
||||
:where(figure){
|
||||
margin:0 0 1em;
|
||||
}
|
||||
|
||||
html :where(.is-position-sticky){
|
||||
--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height, 0px);
|
||||
}
|
||||
|
||||
@media screen and (max-width:600px){
|
||||
html :where(.is-position-sticky){
|
||||
--wp-admin--admin-bar--position-offset:0px;
|
||||
}
|
||||
}
|
||||
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/common-rtl.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/common-rtl.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
: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}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(-135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(-135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(-135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(-135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(-135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(-135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(-135deg,#020381,#2874fc)}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{clip:rect(1px,1px,1px,1px);word-wrap:normal!important;border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{clip:auto!important;background-color:#ddd;-webkit-clip-path:none;clip-path:none;color:#444;display:block;font-size:1em;height:auto;line-height:normal;padding:15px 23px 14px;right:5px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-left-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-right-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-left-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-right-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
|
||||
197
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/common.css
vendored
Normal file
197
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/common.css
vendored
Normal file
@@ -0,0 +1,197 @@
|
||||
: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;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
:root{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
.wp-element-button{
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
:root{
|
||||
--wp--preset--font-size--normal:16px;
|
||||
--wp--preset--font-size--huge:42px;
|
||||
}
|
||||
:root .has-very-light-gray-background-color{
|
||||
background-color:#eee;
|
||||
}
|
||||
:root .has-very-dark-gray-background-color{
|
||||
background-color:#313131;
|
||||
}
|
||||
:root .has-very-light-gray-color{
|
||||
color:#eee;
|
||||
}
|
||||
:root .has-very-dark-gray-color{
|
||||
color:#313131;
|
||||
}
|
||||
:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{
|
||||
background:linear-gradient(135deg, #00d084, #0693e3);
|
||||
}
|
||||
:root .has-purple-crush-gradient-background{
|
||||
background:linear-gradient(135deg, #34e2e4, #4721fb 50%, #ab1dfe);
|
||||
}
|
||||
:root .has-hazy-dawn-gradient-background{
|
||||
background:linear-gradient(135deg, #faaca8, #dad0ec);
|
||||
}
|
||||
:root .has-subdued-olive-gradient-background{
|
||||
background:linear-gradient(135deg, #fafae1, #67a671);
|
||||
}
|
||||
:root .has-atomic-cream-gradient-background{
|
||||
background:linear-gradient(135deg, #fdd79a, #004a59);
|
||||
}
|
||||
:root .has-nightshade-gradient-background{
|
||||
background:linear-gradient(135deg, #330968, #31cdcf);
|
||||
}
|
||||
:root .has-midnight-gradient-background{
|
||||
background:linear-gradient(135deg, #020381, #2874fc);
|
||||
}
|
||||
|
||||
.has-regular-font-size{
|
||||
font-size:1em;
|
||||
}
|
||||
|
||||
.has-larger-font-size{
|
||||
font-size:2.625em;
|
||||
}
|
||||
|
||||
.has-normal-font-size{
|
||||
font-size:var(--wp--preset--font-size--normal);
|
||||
}
|
||||
|
||||
.has-huge-font-size{
|
||||
font-size:var(--wp--preset--font-size--huge);
|
||||
}
|
||||
|
||||
.has-text-align-center{
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
.has-text-align-left{
|
||||
text-align:left;
|
||||
}
|
||||
|
||||
.has-text-align-right{
|
||||
text-align:right;
|
||||
}
|
||||
|
||||
#end-resizable-editor-section{
|
||||
display:none;
|
||||
}
|
||||
|
||||
.aligncenter{
|
||||
clear:both;
|
||||
}
|
||||
|
||||
.items-justified-left{
|
||||
justify-content:flex-start;
|
||||
}
|
||||
|
||||
.items-justified-center{
|
||||
justify-content:center;
|
||||
}
|
||||
|
||||
.items-justified-right{
|
||||
justify-content:flex-end;
|
||||
}
|
||||
|
||||
.items-justified-space-between{
|
||||
justify-content:space-between;
|
||||
}
|
||||
|
||||
.screen-reader-text{
|
||||
clip:rect(1px, 1px, 1px, 1px);
|
||||
word-wrap:normal !important;
|
||||
border:0;
|
||||
-webkit-clip-path:inset(50%);
|
||||
clip-path:inset(50%);
|
||||
height:1px;
|
||||
margin:-1px;
|
||||
overflow:hidden;
|
||||
padding:0;
|
||||
position:absolute;
|
||||
width:1px;
|
||||
}
|
||||
|
||||
.screen-reader-text:focus{
|
||||
clip:auto !important;
|
||||
background-color:#ddd;
|
||||
-webkit-clip-path:none;
|
||||
clip-path:none;
|
||||
color:#444;
|
||||
display:block;
|
||||
font-size:1em;
|
||||
height:auto;
|
||||
left:5px;
|
||||
line-height:normal;
|
||||
padding:15px 23px 14px;
|
||||
text-decoration:none;
|
||||
top:5px;
|
||||
width:auto;
|
||||
z-index:100000;
|
||||
}
|
||||
html :where(.has-border-color){
|
||||
border-style:solid;
|
||||
}
|
||||
|
||||
html :where([style*=border-top-color]){
|
||||
border-top-style:solid;
|
||||
}
|
||||
|
||||
html :where([style*=border-right-color]){
|
||||
border-right-style:solid;
|
||||
}
|
||||
|
||||
html :where([style*=border-bottom-color]){
|
||||
border-bottom-style:solid;
|
||||
}
|
||||
|
||||
html :where([style*=border-left-color]){
|
||||
border-left-style:solid;
|
||||
}
|
||||
|
||||
html :where([style*=border-width]){
|
||||
border-style:solid;
|
||||
}
|
||||
|
||||
html :where([style*=border-top-width]){
|
||||
border-top-style:solid;
|
||||
}
|
||||
|
||||
html :where([style*=border-right-width]){
|
||||
border-right-style:solid;
|
||||
}
|
||||
|
||||
html :where([style*=border-bottom-width]){
|
||||
border-bottom-style:solid;
|
||||
}
|
||||
|
||||
html :where([style*=border-left-width]){
|
||||
border-left-style:solid;
|
||||
}
|
||||
html :where(img[class*=wp-image-]){
|
||||
height:auto;
|
||||
max-width:100%;
|
||||
}
|
||||
:where(figure){
|
||||
margin:0 0 1em;
|
||||
}
|
||||
|
||||
html :where(.is-position-sticky){
|
||||
--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height, 0px);
|
||||
}
|
||||
|
||||
@media screen and (max-width:600px){
|
||||
html :where(.is-position-sticky){
|
||||
--wp-admin--admin-bar--position-offset:0px;
|
||||
}
|
||||
}
|
||||
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/common.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/common.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
: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}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{clip:rect(1px,1px,1px,1px);word-wrap:normal!important;border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{clip:auto!important;background-color:#ddd;-webkit-clip-path:none;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
|
||||
6
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/editor-elements-rtl.css
vendored
Normal file
6
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/editor-elements-rtl.css
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
.wp-element-button{
|
||||
cursor:revert;
|
||||
}
|
||||
.wp-element-button[role=textbox]{
|
||||
cursor:text;
|
||||
}
|
||||
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/editor-elements-rtl.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/editor-elements-rtl.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.wp-element-button{cursor:revert}.wp-element-button[role=textbox]{cursor:text}
|
||||
6
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/editor-elements.css
vendored
Normal file
6
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/editor-elements.css
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
.wp-element-button{
|
||||
cursor:revert;
|
||||
}
|
||||
.wp-element-button[role=textbox]{
|
||||
cursor:text;
|
||||
}
|
||||
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/editor-elements.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/editor-elements.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.wp-element-button{cursor:revert}.wp-element-button[role=textbox]{cursor:text}
|
||||
2771
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/editor-rtl.css
vendored
Normal file
2771
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/editor-rtl.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/editor-rtl.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/editor-rtl.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
2767
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/editor.css
vendored
Normal file
2767
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/editor.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
2
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/editor.min.css
vendored
Normal file
2
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/editor.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
3
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/elements-rtl.css
vendored
Normal file
3
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/elements-rtl.css
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
.wp-element-button{
|
||||
cursor:pointer;
|
||||
}
|
||||
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/elements-rtl.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/elements-rtl.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.wp-element-button{cursor:pointer}
|
||||
3
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/elements.css
vendored
Normal file
3
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/elements.css
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
.wp-element-button{
|
||||
cursor:pointer;
|
||||
}
|
||||
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/elements.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/elements.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.wp-element-button{cursor:pointer}
|
||||
84
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/reset-rtl.css
vendored
Normal file
84
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/reset-rtl.css
vendored
Normal file
@@ -0,0 +1,84 @@
|
||||
html :where(.editor-styles-wrapper){
|
||||
background:#fff;
|
||||
color:initial;
|
||||
font-family:serif;
|
||||
font-size:medium;
|
||||
line-height:normal;
|
||||
}
|
||||
html :where(.editor-styles-wrapper) .wp-align-wrapper{
|
||||
max-width:840px;
|
||||
}
|
||||
html :where(.editor-styles-wrapper) .wp-align-wrapper.wp-align-full,html :where(.editor-styles-wrapper) .wp-align-wrapper>.wp-block{
|
||||
max-width:none;
|
||||
}
|
||||
html :where(.editor-styles-wrapper) .wp-align-wrapper.wp-align-wide{
|
||||
max-width:840px;
|
||||
}
|
||||
html :where(.editor-styles-wrapper) a{
|
||||
transition:none;
|
||||
}
|
||||
html :where(.editor-styles-wrapper) code,html :where(.editor-styles-wrapper) kbd{
|
||||
background:inherit;
|
||||
font-family:monospace;
|
||||
font-size:inherit;
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
html :where(.editor-styles-wrapper) p{
|
||||
font-size:revert;
|
||||
line-height:revert;
|
||||
margin:revert;
|
||||
}
|
||||
html :where(.editor-styles-wrapper) ol,html :where(.editor-styles-wrapper) ul{
|
||||
box-sizing:border-box;
|
||||
list-style-type:revert;
|
||||
margin:revert;
|
||||
padding:revert;
|
||||
}
|
||||
html :where(.editor-styles-wrapper) ol ol,html :where(.editor-styles-wrapper) ol ul,html :where(.editor-styles-wrapper) ul ol,html :where(.editor-styles-wrapper) ul ul{
|
||||
margin:revert;
|
||||
}
|
||||
html :where(.editor-styles-wrapper) ol li,html :where(.editor-styles-wrapper) ul li{
|
||||
margin:revert;
|
||||
}
|
||||
html :where(.editor-styles-wrapper) ol ul,html :where(.editor-styles-wrapper) ul ul{
|
||||
list-style-type:revert;
|
||||
}
|
||||
html :where(.editor-styles-wrapper) h1,html :where(.editor-styles-wrapper) h2,html :where(.editor-styles-wrapper) h3,html :where(.editor-styles-wrapper) h4,html :where(.editor-styles-wrapper) h5,html :where(.editor-styles-wrapper) h6{
|
||||
color:revert;
|
||||
font-size:revert;
|
||||
font-weight:revert;
|
||||
line-height:revert;
|
||||
margin:revert;
|
||||
}
|
||||
html :where(.editor-styles-wrapper) select{
|
||||
-webkit-appearance:revert;
|
||||
background:revert;
|
||||
border:revert;
|
||||
border-radius:revert;
|
||||
box-shadow:revert;
|
||||
color:revert;
|
||||
cursor:revert;
|
||||
font-family:system-ui;
|
||||
font-size:revert;
|
||||
font-weight:revert;
|
||||
line-height:revert;
|
||||
margin:revert;
|
||||
max-width:revert;
|
||||
min-height:revert;
|
||||
outline:revert;
|
||||
padding:revert;
|
||||
text-shadow:revert;
|
||||
transform:revert;
|
||||
vertical-align:revert;
|
||||
}
|
||||
html :where(.editor-styles-wrapper) select:disabled,html :where(.editor-styles-wrapper) select:focus{
|
||||
background-color:revert;
|
||||
background-image:revert;
|
||||
border-color:revert;
|
||||
box-shadow:revert;
|
||||
color:revert;
|
||||
cursor:revert;
|
||||
text-shadow:revert;
|
||||
transform:revert;
|
||||
}
|
||||
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/reset-rtl.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/reset-rtl.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
html :where(.editor-styles-wrapper){background:#fff;color:initial;font-family:serif;font-size:medium;line-height:normal}html :where(.editor-styles-wrapper) .wp-align-wrapper{max-width:840px}html :where(.editor-styles-wrapper) .wp-align-wrapper.wp-align-full,html :where(.editor-styles-wrapper) .wp-align-wrapper>.wp-block{max-width:none}html :where(.editor-styles-wrapper) .wp-align-wrapper.wp-align-wide{max-width:840px}html :where(.editor-styles-wrapper) a{transition:none}html :where(.editor-styles-wrapper) code,html :where(.editor-styles-wrapper) kbd{background:inherit;font-family:monospace;font-size:inherit;margin:0;padding:0}html :where(.editor-styles-wrapper) p{font-size:revert;line-height:revert;margin:revert}html :where(.editor-styles-wrapper) ol,html :where(.editor-styles-wrapper) ul{box-sizing:border-box;list-style-type:revert;margin:revert;padding:revert}html :where(.editor-styles-wrapper) ol ol,html :where(.editor-styles-wrapper) ol ul,html :where(.editor-styles-wrapper) ul ol,html :where(.editor-styles-wrapper) ul ul{margin:revert}html :where(.editor-styles-wrapper) ol li,html :where(.editor-styles-wrapper) ul li{margin:revert}html :where(.editor-styles-wrapper) ol ul,html :where(.editor-styles-wrapper) ul ul{list-style-type:revert}html :where(.editor-styles-wrapper) h1,html :where(.editor-styles-wrapper) h2,html :where(.editor-styles-wrapper) h3,html :where(.editor-styles-wrapper) h4,html :where(.editor-styles-wrapper) h5,html :where(.editor-styles-wrapper) h6{color:revert;font-size:revert;font-weight:revert;line-height:revert;margin:revert}html :where(.editor-styles-wrapper) select{-webkit-appearance:revert;background:revert;border:revert;border-radius:revert;box-shadow:revert;color:revert;cursor:revert;font-family:system-ui;font-size:revert;font-weight:revert;line-height:revert;margin:revert;max-width:revert;min-height:revert;outline:revert;padding:revert;text-shadow:revert;transform:revert;vertical-align:revert}html :where(.editor-styles-wrapper) select:disabled,html :where(.editor-styles-wrapper) select:focus{background-color:revert;background-image:revert;border-color:revert;box-shadow:revert;color:revert;cursor:revert;text-shadow:revert;transform:revert}
|
||||
84
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/reset.css
vendored
Normal file
84
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/reset.css
vendored
Normal file
@@ -0,0 +1,84 @@
|
||||
html :where(.editor-styles-wrapper){
|
||||
background:#fff;
|
||||
color:initial;
|
||||
font-family:serif;
|
||||
font-size:medium;
|
||||
line-height:normal;
|
||||
}
|
||||
html :where(.editor-styles-wrapper) .wp-align-wrapper{
|
||||
max-width:840px;
|
||||
}
|
||||
html :where(.editor-styles-wrapper) .wp-align-wrapper.wp-align-full,html :where(.editor-styles-wrapper) .wp-align-wrapper>.wp-block{
|
||||
max-width:none;
|
||||
}
|
||||
html :where(.editor-styles-wrapper) .wp-align-wrapper.wp-align-wide{
|
||||
max-width:840px;
|
||||
}
|
||||
html :where(.editor-styles-wrapper) a{
|
||||
transition:none;
|
||||
}
|
||||
html :where(.editor-styles-wrapper) code,html :where(.editor-styles-wrapper) kbd{
|
||||
background:inherit;
|
||||
font-family:monospace;
|
||||
font-size:inherit;
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
html :where(.editor-styles-wrapper) p{
|
||||
font-size:revert;
|
||||
line-height:revert;
|
||||
margin:revert;
|
||||
}
|
||||
html :where(.editor-styles-wrapper) ol,html :where(.editor-styles-wrapper) ul{
|
||||
box-sizing:border-box;
|
||||
list-style-type:revert;
|
||||
margin:revert;
|
||||
padding:revert;
|
||||
}
|
||||
html :where(.editor-styles-wrapper) ol ol,html :where(.editor-styles-wrapper) ol ul,html :where(.editor-styles-wrapper) ul ol,html :where(.editor-styles-wrapper) ul ul{
|
||||
margin:revert;
|
||||
}
|
||||
html :where(.editor-styles-wrapper) ol li,html :where(.editor-styles-wrapper) ul li{
|
||||
margin:revert;
|
||||
}
|
||||
html :where(.editor-styles-wrapper) ol ul,html :where(.editor-styles-wrapper) ul ul{
|
||||
list-style-type:revert;
|
||||
}
|
||||
html :where(.editor-styles-wrapper) h1,html :where(.editor-styles-wrapper) h2,html :where(.editor-styles-wrapper) h3,html :where(.editor-styles-wrapper) h4,html :where(.editor-styles-wrapper) h5,html :where(.editor-styles-wrapper) h6{
|
||||
color:revert;
|
||||
font-size:revert;
|
||||
font-weight:revert;
|
||||
line-height:revert;
|
||||
margin:revert;
|
||||
}
|
||||
html :where(.editor-styles-wrapper) select{
|
||||
-webkit-appearance:revert;
|
||||
background:revert;
|
||||
border:revert;
|
||||
border-radius:revert;
|
||||
box-shadow:revert;
|
||||
color:revert;
|
||||
cursor:revert;
|
||||
font-family:system-ui;
|
||||
font-size:revert;
|
||||
font-weight:revert;
|
||||
line-height:revert;
|
||||
margin:revert;
|
||||
max-width:revert;
|
||||
min-height:revert;
|
||||
outline:revert;
|
||||
padding:revert;
|
||||
text-shadow:revert;
|
||||
transform:revert;
|
||||
vertical-align:revert;
|
||||
}
|
||||
html :where(.editor-styles-wrapper) select:disabled,html :where(.editor-styles-wrapper) select:focus{
|
||||
background-color:revert;
|
||||
background-image:revert;
|
||||
border-color:revert;
|
||||
box-shadow:revert;
|
||||
color:revert;
|
||||
cursor:revert;
|
||||
text-shadow:revert;
|
||||
transform:revert;
|
||||
}
|
||||
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/reset.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/reset.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
html :where(.editor-styles-wrapper){background:#fff;color:initial;font-family:serif;font-size:medium;line-height:normal}html :where(.editor-styles-wrapper) .wp-align-wrapper{max-width:840px}html :where(.editor-styles-wrapper) .wp-align-wrapper.wp-align-full,html :where(.editor-styles-wrapper) .wp-align-wrapper>.wp-block{max-width:none}html :where(.editor-styles-wrapper) .wp-align-wrapper.wp-align-wide{max-width:840px}html :where(.editor-styles-wrapper) a{transition:none}html :where(.editor-styles-wrapper) code,html :where(.editor-styles-wrapper) kbd{background:inherit;font-family:monospace;font-size:inherit;margin:0;padding:0}html :where(.editor-styles-wrapper) p{font-size:revert;line-height:revert;margin:revert}html :where(.editor-styles-wrapper) ol,html :where(.editor-styles-wrapper) ul{box-sizing:border-box;list-style-type:revert;margin:revert;padding:revert}html :where(.editor-styles-wrapper) ol ol,html :where(.editor-styles-wrapper) ol ul,html :where(.editor-styles-wrapper) ul ol,html :where(.editor-styles-wrapper) ul ul{margin:revert}html :where(.editor-styles-wrapper) ol li,html :where(.editor-styles-wrapper) ul li{margin:revert}html :where(.editor-styles-wrapper) ol ul,html :where(.editor-styles-wrapper) ul ul{list-style-type:revert}html :where(.editor-styles-wrapper) h1,html :where(.editor-styles-wrapper) h2,html :where(.editor-styles-wrapper) h3,html :where(.editor-styles-wrapper) h4,html :where(.editor-styles-wrapper) h5,html :where(.editor-styles-wrapper) h6{color:revert;font-size:revert;font-weight:revert;line-height:revert;margin:revert}html :where(.editor-styles-wrapper) select{-webkit-appearance:revert;background:revert;border:revert;border-radius:revert;box-shadow:revert;color:revert;cursor:revert;font-family:system-ui;font-size:revert;font-weight:revert;line-height:revert;margin:revert;max-width:revert;min-height:revert;outline:revert;padding:revert;text-shadow:revert;transform:revert;vertical-align:revert}html :where(.editor-styles-wrapper) select:disabled,html :where(.editor-styles-wrapper) select:focus{background-color:revert;background-image:revert;border-color:revert;box-shadow:revert;color:revert;cursor:revert;text-shadow:revert;transform:revert}
|
||||
3424
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/style-rtl.css
vendored
Normal file
3424
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/style-rtl.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/style-rtl.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/style-rtl.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
3424
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/style.css
vendored
Normal file
3424
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/style.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
11
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/style.min.css
vendored
Normal file
11
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/style.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
163
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/theme-rtl.css
vendored
Normal file
163
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/theme-rtl.css
vendored
Normal file
@@ -0,0 +1,163 @@
|
||||
.wp-block-audio figcaption{
|
||||
color:#555;
|
||||
font-size:13px;
|
||||
text-align:center;
|
||||
}
|
||||
.is-dark-theme .wp-block-audio figcaption{
|
||||
color:hsla(0,0%,100%,.65);
|
||||
}
|
||||
|
||||
.wp-block-audio{
|
||||
margin:0 0 1em;
|
||||
}
|
||||
|
||||
.wp-block-code{
|
||||
border:1px solid #ccc;
|
||||
border-radius:4px;
|
||||
font-family:Menlo,Consolas,monaco,monospace;
|
||||
padding:.8em 1em;
|
||||
}
|
||||
|
||||
.wp-block-embed figcaption{
|
||||
color:#555;
|
||||
font-size:13px;
|
||||
text-align:center;
|
||||
}
|
||||
.is-dark-theme .wp-block-embed figcaption{
|
||||
color:hsla(0,0%,100%,.65);
|
||||
}
|
||||
|
||||
.wp-block-embed{
|
||||
margin:0 0 1em;
|
||||
}
|
||||
|
||||
.blocks-gallery-caption{
|
||||
color:#555;
|
||||
font-size:13px;
|
||||
text-align:center;
|
||||
}
|
||||
.is-dark-theme .blocks-gallery-caption{
|
||||
color:hsla(0,0%,100%,.65);
|
||||
}
|
||||
|
||||
.wp-block-image figcaption{
|
||||
color:#555;
|
||||
font-size:13px;
|
||||
text-align:center;
|
||||
}
|
||||
.is-dark-theme .wp-block-image figcaption{
|
||||
color:hsla(0,0%,100%,.65);
|
||||
}
|
||||
|
||||
.wp-block-image{
|
||||
margin:0 0 1em;
|
||||
}
|
||||
|
||||
.wp-block-pullquote{
|
||||
border-bottom:4px solid;
|
||||
border-top:4px solid;
|
||||
color:currentColor;
|
||||
margin-bottom:1.75em;
|
||||
}
|
||||
.wp-block-pullquote cite,.wp-block-pullquote footer,.wp-block-pullquote__citation{
|
||||
color:currentColor;
|
||||
font-size:.8125em;
|
||||
font-style:normal;
|
||||
text-transform:uppercase;
|
||||
}
|
||||
|
||||
.wp-block-quote{
|
||||
border-right:.25em solid;
|
||||
margin:0 0 1.75em;
|
||||
padding-right:1em;
|
||||
}
|
||||
.wp-block-quote cite,.wp-block-quote footer{
|
||||
color:currentColor;
|
||||
font-size:.8125em;
|
||||
font-style:normal;
|
||||
position:relative;
|
||||
}
|
||||
.wp-block-quote.has-text-align-right{
|
||||
border-left:.25em solid;
|
||||
border-right:none;
|
||||
padding-left:1em;
|
||||
padding-right:0;
|
||||
}
|
||||
.wp-block-quote.has-text-align-center{
|
||||
border:none;
|
||||
padding-right:0;
|
||||
}
|
||||
.wp-block-quote.is-large,.wp-block-quote.is-style-large,.wp-block-quote.is-style-plain{
|
||||
border:none;
|
||||
}
|
||||
|
||||
.wp-block-search .wp-block-search__label{
|
||||
font-weight:700;
|
||||
}
|
||||
|
||||
.wp-block-search__button{
|
||||
border:1px solid #ccc;
|
||||
padding:.375em .625em;
|
||||
}
|
||||
|
||||
:where(.wp-block-group.has-background){
|
||||
padding:1.25em 2.375em;
|
||||
}
|
||||
|
||||
.wp-block-separator.has-css-opacity{
|
||||
opacity:.4;
|
||||
}
|
||||
|
||||
.wp-block-separator{
|
||||
border:none;
|
||||
border-bottom:2px solid;
|
||||
margin-left:auto;
|
||||
margin-right:auto;
|
||||
}
|
||||
.wp-block-separator.has-alpha-channel-opacity{
|
||||
opacity:1;
|
||||
}
|
||||
.wp-block-separator:not(.is-style-wide):not(.is-style-dots){
|
||||
width:100px;
|
||||
}
|
||||
.wp-block-separator.has-background:not(.is-style-dots){
|
||||
border-bottom:none;
|
||||
height:1px;
|
||||
}
|
||||
.wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots){
|
||||
height:2px;
|
||||
}
|
||||
|
||||
.wp-block-table{
|
||||
margin:0 0 1em;
|
||||
}
|
||||
.wp-block-table td,.wp-block-table th{
|
||||
word-break:normal;
|
||||
}
|
||||
.wp-block-table figcaption{
|
||||
color:#555;
|
||||
font-size:13px;
|
||||
text-align:center;
|
||||
}
|
||||
.is-dark-theme .wp-block-table figcaption{
|
||||
color:hsla(0,0%,100%,.65);
|
||||
}
|
||||
|
||||
.wp-block-video figcaption{
|
||||
color:#555;
|
||||
font-size:13px;
|
||||
text-align:center;
|
||||
}
|
||||
.is-dark-theme .wp-block-video figcaption{
|
||||
color:hsla(0,0%,100%,.65);
|
||||
}
|
||||
|
||||
.wp-block-video{
|
||||
margin:0 0 1em;
|
||||
}
|
||||
|
||||
.wp-block-template-part.has-background{
|
||||
margin-bottom:0;
|
||||
margin-top:0;
|
||||
padding:1.25em 2.375em;
|
||||
}
|
||||
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/theme-rtl.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/theme-rtl.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.wp-block-audio figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-audio figcaption{color:hsla(0,0%,100%,.65)}.wp-block-audio{margin:0 0 1em}.wp-block-code{border:1px solid #ccc;border-radius:4px;font-family:Menlo,Consolas,monaco,monospace;padding:.8em 1em}.wp-block-embed figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-embed figcaption{color:hsla(0,0%,100%,.65)}.wp-block-embed{margin:0 0 1em}.blocks-gallery-caption{color:#555;font-size:13px;text-align:center}.is-dark-theme .blocks-gallery-caption{color:hsla(0,0%,100%,.65)}.wp-block-image figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-image figcaption{color:hsla(0,0%,100%,.65)}.wp-block-image{margin:0 0 1em}.wp-block-pullquote{border-bottom:4px solid;border-top:4px solid;color:currentColor;margin-bottom:1.75em}.wp-block-pullquote cite,.wp-block-pullquote footer,.wp-block-pullquote__citation{color:currentColor;font-size:.8125em;font-style:normal;text-transform:uppercase}.wp-block-quote{border-right:.25em solid;margin:0 0 1.75em;padding-right:1em}.wp-block-quote cite,.wp-block-quote footer{color:currentColor;font-size:.8125em;font-style:normal;position:relative}.wp-block-quote.has-text-align-right{border-left:.25em solid;border-right:none;padding-left:1em;padding-right:0}.wp-block-quote.has-text-align-center{border:none;padding-right:0}.wp-block-quote.is-large,.wp-block-quote.is-style-large,.wp-block-quote.is-style-plain{border:none}.wp-block-search .wp-block-search__label{font-weight:700}.wp-block-search__button{border:1px solid #ccc;padding:.375em .625em}:where(.wp-block-group.has-background){padding:1.25em 2.375em}.wp-block-separator.has-css-opacity{opacity:.4}.wp-block-separator{border:none;border-bottom:2px solid;margin-left:auto;margin-right:auto}.wp-block-separator.has-alpha-channel-opacity{opacity:1}.wp-block-separator:not(.is-style-wide):not(.is-style-dots){width:100px}.wp-block-separator.has-background:not(.is-style-dots){border-bottom:none;height:1px}.wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots){height:2px}.wp-block-table{margin:0 0 1em}.wp-block-table td,.wp-block-table th{word-break:normal}.wp-block-table figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-table figcaption{color:hsla(0,0%,100%,.65)}.wp-block-video figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-video figcaption{color:hsla(0,0%,100%,.65)}.wp-block-video{margin:0 0 1em}.wp-block-template-part.has-background{margin-bottom:0;margin-top:0;padding:1.25em 2.375em}
|
||||
163
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/theme.css
vendored
Normal file
163
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/theme.css
vendored
Normal file
@@ -0,0 +1,163 @@
|
||||
.wp-block-audio figcaption{
|
||||
color:#555;
|
||||
font-size:13px;
|
||||
text-align:center;
|
||||
}
|
||||
.is-dark-theme .wp-block-audio figcaption{
|
||||
color:hsla(0,0%,100%,.65);
|
||||
}
|
||||
|
||||
.wp-block-audio{
|
||||
margin:0 0 1em;
|
||||
}
|
||||
|
||||
.wp-block-code{
|
||||
border:1px solid #ccc;
|
||||
border-radius:4px;
|
||||
font-family:Menlo,Consolas,monaco,monospace;
|
||||
padding:.8em 1em;
|
||||
}
|
||||
|
||||
.wp-block-embed figcaption{
|
||||
color:#555;
|
||||
font-size:13px;
|
||||
text-align:center;
|
||||
}
|
||||
.is-dark-theme .wp-block-embed figcaption{
|
||||
color:hsla(0,0%,100%,.65);
|
||||
}
|
||||
|
||||
.wp-block-embed{
|
||||
margin:0 0 1em;
|
||||
}
|
||||
|
||||
.blocks-gallery-caption{
|
||||
color:#555;
|
||||
font-size:13px;
|
||||
text-align:center;
|
||||
}
|
||||
.is-dark-theme .blocks-gallery-caption{
|
||||
color:hsla(0,0%,100%,.65);
|
||||
}
|
||||
|
||||
.wp-block-image figcaption{
|
||||
color:#555;
|
||||
font-size:13px;
|
||||
text-align:center;
|
||||
}
|
||||
.is-dark-theme .wp-block-image figcaption{
|
||||
color:hsla(0,0%,100%,.65);
|
||||
}
|
||||
|
||||
.wp-block-image{
|
||||
margin:0 0 1em;
|
||||
}
|
||||
|
||||
.wp-block-pullquote{
|
||||
border-bottom:4px solid;
|
||||
border-top:4px solid;
|
||||
color:currentColor;
|
||||
margin-bottom:1.75em;
|
||||
}
|
||||
.wp-block-pullquote cite,.wp-block-pullquote footer,.wp-block-pullquote__citation{
|
||||
color:currentColor;
|
||||
font-size:.8125em;
|
||||
font-style:normal;
|
||||
text-transform:uppercase;
|
||||
}
|
||||
|
||||
.wp-block-quote{
|
||||
border-left:.25em solid;
|
||||
margin:0 0 1.75em;
|
||||
padding-left:1em;
|
||||
}
|
||||
.wp-block-quote cite,.wp-block-quote footer{
|
||||
color:currentColor;
|
||||
font-size:.8125em;
|
||||
font-style:normal;
|
||||
position:relative;
|
||||
}
|
||||
.wp-block-quote.has-text-align-right{
|
||||
border-left:none;
|
||||
border-right:.25em solid;
|
||||
padding-left:0;
|
||||
padding-right:1em;
|
||||
}
|
||||
.wp-block-quote.has-text-align-center{
|
||||
border:none;
|
||||
padding-left:0;
|
||||
}
|
||||
.wp-block-quote.is-large,.wp-block-quote.is-style-large,.wp-block-quote.is-style-plain{
|
||||
border:none;
|
||||
}
|
||||
|
||||
.wp-block-search .wp-block-search__label{
|
||||
font-weight:700;
|
||||
}
|
||||
|
||||
.wp-block-search__button{
|
||||
border:1px solid #ccc;
|
||||
padding:.375em .625em;
|
||||
}
|
||||
|
||||
:where(.wp-block-group.has-background){
|
||||
padding:1.25em 2.375em;
|
||||
}
|
||||
|
||||
.wp-block-separator.has-css-opacity{
|
||||
opacity:.4;
|
||||
}
|
||||
|
||||
.wp-block-separator{
|
||||
border:none;
|
||||
border-bottom:2px solid;
|
||||
margin-left:auto;
|
||||
margin-right:auto;
|
||||
}
|
||||
.wp-block-separator.has-alpha-channel-opacity{
|
||||
opacity:1;
|
||||
}
|
||||
.wp-block-separator:not(.is-style-wide):not(.is-style-dots){
|
||||
width:100px;
|
||||
}
|
||||
.wp-block-separator.has-background:not(.is-style-dots){
|
||||
border-bottom:none;
|
||||
height:1px;
|
||||
}
|
||||
.wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots){
|
||||
height:2px;
|
||||
}
|
||||
|
||||
.wp-block-table{
|
||||
margin:0 0 1em;
|
||||
}
|
||||
.wp-block-table td,.wp-block-table th{
|
||||
word-break:normal;
|
||||
}
|
||||
.wp-block-table figcaption{
|
||||
color:#555;
|
||||
font-size:13px;
|
||||
text-align:center;
|
||||
}
|
||||
.is-dark-theme .wp-block-table figcaption{
|
||||
color:hsla(0,0%,100%,.65);
|
||||
}
|
||||
|
||||
.wp-block-video figcaption{
|
||||
color:#555;
|
||||
font-size:13px;
|
||||
text-align:center;
|
||||
}
|
||||
.is-dark-theme .wp-block-video figcaption{
|
||||
color:hsla(0,0%,100%,.65);
|
||||
}
|
||||
|
||||
.wp-block-video{
|
||||
margin:0 0 1em;
|
||||
}
|
||||
|
||||
.wp-block-template-part.has-background{
|
||||
margin-bottom:0;
|
||||
margin-top:0;
|
||||
padding:1.25em 2.375em;
|
||||
}
|
||||
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/theme.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/block-library/theme.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.wp-block-audio figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-audio figcaption{color:hsla(0,0%,100%,.65)}.wp-block-audio{margin:0 0 1em}.wp-block-code{border:1px solid #ccc;border-radius:4px;font-family:Menlo,Consolas,monaco,monospace;padding:.8em 1em}.wp-block-embed figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-embed figcaption{color:hsla(0,0%,100%,.65)}.wp-block-embed{margin:0 0 1em}.blocks-gallery-caption{color:#555;font-size:13px;text-align:center}.is-dark-theme .blocks-gallery-caption{color:hsla(0,0%,100%,.65)}.wp-block-image figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-image figcaption{color:hsla(0,0%,100%,.65)}.wp-block-image{margin:0 0 1em}.wp-block-pullquote{border-bottom:4px solid;border-top:4px solid;color:currentColor;margin-bottom:1.75em}.wp-block-pullquote cite,.wp-block-pullquote footer,.wp-block-pullquote__citation{color:currentColor;font-size:.8125em;font-style:normal;text-transform:uppercase}.wp-block-quote{border-left:.25em solid;margin:0 0 1.75em;padding-left:1em}.wp-block-quote cite,.wp-block-quote footer{color:currentColor;font-size:.8125em;font-style:normal;position:relative}.wp-block-quote.has-text-align-right{border-left:none;border-right:.25em solid;padding-left:0;padding-right:1em}.wp-block-quote.has-text-align-center{border:none;padding-left:0}.wp-block-quote.is-large,.wp-block-quote.is-style-large,.wp-block-quote.is-style-plain{border:none}.wp-block-search .wp-block-search__label{font-weight:700}.wp-block-search__button{border:1px solid #ccc;padding:.375em .625em}:where(.wp-block-group.has-background){padding:1.25em 2.375em}.wp-block-separator.has-css-opacity{opacity:.4}.wp-block-separator{border:none;border-bottom:2px solid;margin-left:auto;margin-right:auto}.wp-block-separator.has-alpha-channel-opacity{opacity:1}.wp-block-separator:not(.is-style-wide):not(.is-style-dots){width:100px}.wp-block-separator.has-background:not(.is-style-dots){border-bottom:none;height:1px}.wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots){height:2px}.wp-block-table{margin:0 0 1em}.wp-block-table td,.wp-block-table th{word-break:normal}.wp-block-table figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-table figcaption{color:hsla(0,0%,100%,.65)}.wp-block-video figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-video figcaption{color:hsla(0,0%,100%,.65)}.wp-block-video{margin:0 0 1em}.wp-block-template-part.has-background{margin-bottom:0;margin-top:0;padding:1.25em 2.375em}
|
||||
125
CTF/Smol/wordpress.old/wp-includes/css/dist/commands/style-rtl.css
vendored
Normal file
125
CTF/Smol/wordpress.old/wp-includes/css/dist/commands/style-rtl.css
vendored
Normal file
@@ -0,0 +1,125 @@
|
||||
: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;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
:root{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
|
||||
.commands-command-menu{
|
||||
max-width:480px;
|
||||
position:relative;
|
||||
top:15%;
|
||||
width:100%;
|
||||
}
|
||||
.commands-command-menu .components-modal__content{
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
|
||||
.commands-command-menu__overlay{
|
||||
align-items:start;
|
||||
display:block;
|
||||
}
|
||||
|
||||
.commands-command-menu__header{
|
||||
align-items:center;
|
||||
display:flex;
|
||||
}
|
||||
.commands-command-menu__header .components-button{
|
||||
border:1px solid #949494;
|
||||
border-left:0;
|
||||
border-radius:0 2px 2px 0;
|
||||
height:56px;
|
||||
justify-content:center;
|
||||
width:56px;
|
||||
}
|
||||
.commands-command-menu__header .components-button+[cmdk-input]{
|
||||
border-bottom-right-radius:0;
|
||||
border-top-right-radius:0;
|
||||
}
|
||||
|
||||
.commands-command-menu__container{
|
||||
will-change:transform;
|
||||
}
|
||||
.commands-command-menu__container [cmdk-input]{
|
||||
border:none;
|
||||
border-bottom:1px solid #e0e0e0;
|
||||
border-radius:0;
|
||||
color:#1e1e1e;
|
||||
font-size:20px;
|
||||
line-height:28px;
|
||||
margin:0;
|
||||
outline:none;
|
||||
padding:16px;
|
||||
width:100%;
|
||||
}
|
||||
.commands-command-menu__container [cmdk-input]::placeholder{
|
||||
color:#949494;
|
||||
}
|
||||
.commands-command-menu__container [cmdk-input]:focus{
|
||||
border-bottom:1px solid #e0e0e0;
|
||||
box-shadow:none;
|
||||
outline:none;
|
||||
}
|
||||
.commands-command-menu__container [cmdk-item]{
|
||||
align-items:center;
|
||||
border-radius:4px;
|
||||
color:#1e1e1e;
|
||||
cursor:pointer;
|
||||
display:flex;
|
||||
padding:8px;
|
||||
}
|
||||
.commands-command-menu__container [cmdk-item]:active,.commands-command-menu__container [cmdk-item][aria-selected=true]{
|
||||
background:rgba(var(--wp-admin-theme-color--rgb), .04);
|
||||
color:var(--wp-admin-theme-color);
|
||||
}
|
||||
.commands-command-menu__container [cmdk-item]:active svg,.commands-command-menu__container [cmdk-item][aria-selected=true] svg{
|
||||
fill:var(--wp-admin-theme-color);
|
||||
}
|
||||
.commands-command-menu__container [cmdk-item][aria-disabled=true]{
|
||||
color:#949494;
|
||||
cursor:not-allowed;
|
||||
}
|
||||
.commands-command-menu__container [cmdk-item] svg{
|
||||
fill:#949494;
|
||||
}
|
||||
.commands-command-menu__container [cmdk-root]>[cmdk-list]{
|
||||
max-height:400px;
|
||||
overflow:auto;
|
||||
}
|
||||
.commands-command-menu__container [cmdk-root]>[cmdk-list]>[cmdk-list-sizer] :has([cmdk-group-items]:not(:empty)){
|
||||
padding:8px;
|
||||
}
|
||||
.commands-command-menu__container [cmdk-empty]{
|
||||
align-items:center;
|
||||
color:#2f2f2f;
|
||||
display:flex;
|
||||
height:64px;
|
||||
justify-content:center;
|
||||
white-space:pre-wrap;
|
||||
}
|
||||
.commands-command-menu__container [cmdk-loading]{
|
||||
padding:16px;
|
||||
}
|
||||
.commands-command-menu__container [cmdk-list-sizer]{
|
||||
position:relative;
|
||||
}
|
||||
.commands-command-menu__container [cmdk-group]:has([cmdk-group-items]:not(:empty))+[cmdk-group]:has([cmdk-group-items]:not(:empty)){
|
||||
border-top:1px solid #e0e0e0;
|
||||
}
|
||||
|
||||
.commands-command-menu__item mark{
|
||||
background:unset;
|
||||
color:inherit;
|
||||
font-weight:600;
|
||||
}
|
||||
1
CTF/Smol/wordpress.old/wp-includes/css/dist/commands/style-rtl.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/commands/style-rtl.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
: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}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.commands-command-menu{max-width:480px;position:relative;top:15%;width:100%}.commands-command-menu .components-modal__content{margin:0;padding:0}.commands-command-menu__overlay{align-items:start;display:block}.commands-command-menu__header{align-items:center;display:flex}.commands-command-menu__header .components-button{border:1px solid #949494;border-left:0;border-radius:0 2px 2px 0;height:56px;justify-content:center;width:56px}.commands-command-menu__header .components-button+[cmdk-input]{border-bottom-right-radius:0;border-top-right-radius:0}.commands-command-menu__container{will-change:transform}.commands-command-menu__container [cmdk-input]{border:none;border-bottom:1px solid #e0e0e0;border-radius:0;color:#1e1e1e;font-size:20px;line-height:28px;margin:0;outline:none;padding:16px;width:100%}.commands-command-menu__container [cmdk-input]::placeholder{color:#949494}.commands-command-menu__container [cmdk-input]:focus{border-bottom:1px solid #e0e0e0;box-shadow:none;outline:none}.commands-command-menu__container [cmdk-item]{align-items:center;border-radius:4px;color:#1e1e1e;cursor:pointer;display:flex;padding:8px}.commands-command-menu__container [cmdk-item]:active,.commands-command-menu__container [cmdk-item][aria-selected=true]{background:rgba(var(--wp-admin-theme-color--rgb),.04);color:var(--wp-admin-theme-color)}.commands-command-menu__container [cmdk-item]:active svg,.commands-command-menu__container [cmdk-item][aria-selected=true] svg{fill:var(--wp-admin-theme-color)}.commands-command-menu__container [cmdk-item][aria-disabled=true]{color:#949494;cursor:not-allowed}.commands-command-menu__container [cmdk-item] svg{fill:#949494}.commands-command-menu__container [cmdk-root]>[cmdk-list]{max-height:400px;overflow:auto}.commands-command-menu__container [cmdk-root]>[cmdk-list]>[cmdk-list-sizer] :has([cmdk-group-items]:not(:empty)){padding:8px}.commands-command-menu__container [cmdk-empty]{align-items:center;color:#2f2f2f;display:flex;height:64px;justify-content:center;white-space:pre-wrap}.commands-command-menu__container [cmdk-loading]{padding:16px}.commands-command-menu__container [cmdk-list-sizer]{position:relative}.commands-command-menu__container [cmdk-group]:has([cmdk-group-items]:not(:empty))+[cmdk-group]:has([cmdk-group-items]:not(:empty)){border-top:1px solid #e0e0e0}.commands-command-menu__item mark{background:unset;color:inherit;font-weight:600}
|
||||
125
CTF/Smol/wordpress.old/wp-includes/css/dist/commands/style.css
vendored
Normal file
125
CTF/Smol/wordpress.old/wp-includes/css/dist/commands/style.css
vendored
Normal file
@@ -0,0 +1,125 @@
|
||||
: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;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
:root{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
|
||||
.commands-command-menu{
|
||||
max-width:480px;
|
||||
position:relative;
|
||||
top:15%;
|
||||
width:100%;
|
||||
}
|
||||
.commands-command-menu .components-modal__content{
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
|
||||
.commands-command-menu__overlay{
|
||||
align-items:start;
|
||||
display:block;
|
||||
}
|
||||
|
||||
.commands-command-menu__header{
|
||||
align-items:center;
|
||||
display:flex;
|
||||
}
|
||||
.commands-command-menu__header .components-button{
|
||||
border:1px solid #949494;
|
||||
border-radius:2px 0 0 2px;
|
||||
border-right:0;
|
||||
height:56px;
|
||||
justify-content:center;
|
||||
width:56px;
|
||||
}
|
||||
.commands-command-menu__header .components-button+[cmdk-input]{
|
||||
border-bottom-left-radius:0;
|
||||
border-top-left-radius:0;
|
||||
}
|
||||
|
||||
.commands-command-menu__container{
|
||||
will-change:transform;
|
||||
}
|
||||
.commands-command-menu__container [cmdk-input]{
|
||||
border:none;
|
||||
border-bottom:1px solid #e0e0e0;
|
||||
border-radius:0;
|
||||
color:#1e1e1e;
|
||||
font-size:20px;
|
||||
line-height:28px;
|
||||
margin:0;
|
||||
outline:none;
|
||||
padding:16px;
|
||||
width:100%;
|
||||
}
|
||||
.commands-command-menu__container [cmdk-input]::placeholder{
|
||||
color:#949494;
|
||||
}
|
||||
.commands-command-menu__container [cmdk-input]:focus{
|
||||
border-bottom:1px solid #e0e0e0;
|
||||
box-shadow:none;
|
||||
outline:none;
|
||||
}
|
||||
.commands-command-menu__container [cmdk-item]{
|
||||
align-items:center;
|
||||
border-radius:4px;
|
||||
color:#1e1e1e;
|
||||
cursor:pointer;
|
||||
display:flex;
|
||||
padding:8px;
|
||||
}
|
||||
.commands-command-menu__container [cmdk-item]:active,.commands-command-menu__container [cmdk-item][aria-selected=true]{
|
||||
background:rgba(var(--wp-admin-theme-color--rgb), .04);
|
||||
color:var(--wp-admin-theme-color);
|
||||
}
|
||||
.commands-command-menu__container [cmdk-item]:active svg,.commands-command-menu__container [cmdk-item][aria-selected=true] svg{
|
||||
fill:var(--wp-admin-theme-color);
|
||||
}
|
||||
.commands-command-menu__container [cmdk-item][aria-disabled=true]{
|
||||
color:#949494;
|
||||
cursor:not-allowed;
|
||||
}
|
||||
.commands-command-menu__container [cmdk-item] svg{
|
||||
fill:#949494;
|
||||
}
|
||||
.commands-command-menu__container [cmdk-root]>[cmdk-list]{
|
||||
max-height:400px;
|
||||
overflow:auto;
|
||||
}
|
||||
.commands-command-menu__container [cmdk-root]>[cmdk-list]>[cmdk-list-sizer] :has([cmdk-group-items]:not(:empty)){
|
||||
padding:8px;
|
||||
}
|
||||
.commands-command-menu__container [cmdk-empty]{
|
||||
align-items:center;
|
||||
color:#2f2f2f;
|
||||
display:flex;
|
||||
height:64px;
|
||||
justify-content:center;
|
||||
white-space:pre-wrap;
|
||||
}
|
||||
.commands-command-menu__container [cmdk-loading]{
|
||||
padding:16px;
|
||||
}
|
||||
.commands-command-menu__container [cmdk-list-sizer]{
|
||||
position:relative;
|
||||
}
|
||||
.commands-command-menu__container [cmdk-group]:has([cmdk-group-items]:not(:empty))+[cmdk-group]:has([cmdk-group-items]:not(:empty)){
|
||||
border-top:1px solid #e0e0e0;
|
||||
}
|
||||
|
||||
.commands-command-menu__item mark{
|
||||
background:unset;
|
||||
color:inherit;
|
||||
font-weight:600;
|
||||
}
|
||||
1
CTF/Smol/wordpress.old/wp-includes/css/dist/commands/style.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/commands/style.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
: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}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.commands-command-menu{max-width:480px;position:relative;top:15%;width:100%}.commands-command-menu .components-modal__content{margin:0;padding:0}.commands-command-menu__overlay{align-items:start;display:block}.commands-command-menu__header{align-items:center;display:flex}.commands-command-menu__header .components-button{border:1px solid #949494;border-radius:2px 0 0 2px;border-right:0;height:56px;justify-content:center;width:56px}.commands-command-menu__header .components-button+[cmdk-input]{border-bottom-left-radius:0;border-top-left-radius:0}.commands-command-menu__container{will-change:transform}.commands-command-menu__container [cmdk-input]{border:none;border-bottom:1px solid #e0e0e0;border-radius:0;color:#1e1e1e;font-size:20px;line-height:28px;margin:0;outline:none;padding:16px;width:100%}.commands-command-menu__container [cmdk-input]::placeholder{color:#949494}.commands-command-menu__container [cmdk-input]:focus{border-bottom:1px solid #e0e0e0;box-shadow:none;outline:none}.commands-command-menu__container [cmdk-item]{align-items:center;border-radius:4px;color:#1e1e1e;cursor:pointer;display:flex;padding:8px}.commands-command-menu__container [cmdk-item]:active,.commands-command-menu__container [cmdk-item][aria-selected=true]{background:rgba(var(--wp-admin-theme-color--rgb),.04);color:var(--wp-admin-theme-color)}.commands-command-menu__container [cmdk-item]:active svg,.commands-command-menu__container [cmdk-item][aria-selected=true] svg{fill:var(--wp-admin-theme-color)}.commands-command-menu__container [cmdk-item][aria-disabled=true]{color:#949494;cursor:not-allowed}.commands-command-menu__container [cmdk-item] svg{fill:#949494}.commands-command-menu__container [cmdk-root]>[cmdk-list]{max-height:400px;overflow:auto}.commands-command-menu__container [cmdk-root]>[cmdk-list]>[cmdk-list-sizer] :has([cmdk-group-items]:not(:empty)){padding:8px}.commands-command-menu__container [cmdk-empty]{align-items:center;color:#2f2f2f;display:flex;height:64px;justify-content:center;white-space:pre-wrap}.commands-command-menu__container [cmdk-loading]{padding:16px}.commands-command-menu__container [cmdk-list-sizer]{position:relative}.commands-command-menu__container [cmdk-group]:has([cmdk-group-items]:not(:empty))+[cmdk-group]:has([cmdk-group-items]:not(:empty)){border-top:1px solid #e0e0e0}.commands-command-menu__item mark{background:unset;color:inherit;font-weight:600}
|
||||
3066
CTF/Smol/wordpress.old/wp-includes/css/dist/components/style-rtl.css
vendored
Normal file
3066
CTF/Smol/wordpress.old/wp-includes/css/dist/components/style-rtl.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
CTF/Smol/wordpress.old/wp-includes/css/dist/components/style-rtl.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/components/style-rtl.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
3066
CTF/Smol/wordpress.old/wp-includes/css/dist/components/style.css
vendored
Normal file
3066
CTF/Smol/wordpress.old/wp-includes/css/dist/components/style.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
4
CTF/Smol/wordpress.old/wp-includes/css/dist/components/style.min.css
vendored
Normal file
4
CTF/Smol/wordpress.old/wp-includes/css/dist/components/style.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
241
CTF/Smol/wordpress.old/wp-includes/css/dist/customize-widgets/style-rtl.css
vendored
Normal file
241
CTF/Smol/wordpress.old/wp-includes/css/dist/customize-widgets/style-rtl.css
vendored
Normal file
@@ -0,0 +1,241 @@
|
||||
: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;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
:root{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
|
||||
#customize-theme-controls .customize-pane-child.accordion-section-content.customize-widgets-layout__inspector{
|
||||
background:#fff;
|
||||
box-sizing:border-box;
|
||||
}
|
||||
#customize-theme-controls .customize-pane-child.accordion-section-content.customize-widgets-layout__inspector *{
|
||||
box-sizing:inherit;
|
||||
}
|
||||
#customize-theme-controls .customize-pane-child.accordion-section-content.customize-widgets-layout__inspector .block-editor-block-inspector{
|
||||
margin:-12px;
|
||||
}
|
||||
#customize-theme-controls .customize-pane-child.accordion-section-content.customize-widgets-layout__inspector .block-editor-block-inspector h3{
|
||||
margin-bottom:0;
|
||||
}
|
||||
|
||||
#customize-theme-controls .customize-pane-child.control-section-sidebar.is-sub-section-open{
|
||||
transform:translateX(100%);
|
||||
}
|
||||
|
||||
.customize-widgets-header{
|
||||
background:#f0f0f1;
|
||||
border-bottom:1px solid #e0e0e0;
|
||||
display:flex;
|
||||
justify-content:flex-end;
|
||||
margin:-15px -12px 0;
|
||||
z-index:8;
|
||||
}
|
||||
@media (min-width:782px){
|
||||
.customize-widgets-header{
|
||||
margin-bottom:44px;
|
||||
}
|
||||
}
|
||||
.customize-widgets-header.is-fixed-toolbar-active{
|
||||
margin-bottom:0;
|
||||
}
|
||||
|
||||
.customize-widgets-header-toolbar{
|
||||
align-items:center;
|
||||
border:none;
|
||||
display:flex;
|
||||
width:100%;
|
||||
}
|
||||
.customize-widgets-header-toolbar .customize-widgets-header-toolbar__inserter-toggle.components-button.has-icon{
|
||||
border-radius:2px;
|
||||
color:#fff;
|
||||
height:24px;
|
||||
margin:12px auto 12px 0;
|
||||
min-width:24px;
|
||||
padding:0;
|
||||
}
|
||||
.customize-widgets-header-toolbar .customize-widgets-header-toolbar__inserter-toggle.components-button.has-icon:before{
|
||||
content:none;
|
||||
}
|
||||
.customize-widgets-header-toolbar .customize-widgets-header-toolbar__inserter-toggle.components-button.has-icon.is-pressed{
|
||||
background:#1e1e1e;
|
||||
}
|
||||
.customize-widgets-header-toolbar .components-button.has-icon.customize-widgets-editor-history-button.redo-button{
|
||||
margin-right:-12px;
|
||||
}
|
||||
|
||||
#customize-sidebar-outer-content{
|
||||
min-width:100%;
|
||||
width:auto;
|
||||
}
|
||||
|
||||
#customize-outer-theme-controls .widgets-inserter{
|
||||
padding:0;
|
||||
}
|
||||
#customize-outer-theme-controls .widgets-inserter .customize-section-description-container{
|
||||
display:none;
|
||||
}
|
||||
|
||||
.customize-widgets-layout__inserter-panel{
|
||||
background:#fff;
|
||||
}
|
||||
|
||||
.customize-widgets-layout__inserter-panel-header{
|
||||
align-items:center;
|
||||
border-bottom:1px solid #ddd;
|
||||
box-sizing:border-box;
|
||||
display:flex;
|
||||
height:46px;
|
||||
justify-content:space-between;
|
||||
padding:16px;
|
||||
}
|
||||
.customize-widgets-layout__inserter-panel-header .customize-widgets-layout__inserter-panel-header-title{
|
||||
margin:0;
|
||||
}
|
||||
|
||||
.block-editor-inserter__quick-inserter .block-editor-inserter__panel-content{
|
||||
background:#fff;
|
||||
}
|
||||
|
||||
.customize-widgets-keyboard-shortcut-help-modal__section{
|
||||
margin:0 0 2rem;
|
||||
}
|
||||
.customize-widgets-keyboard-shortcut-help-modal__section-title{
|
||||
font-size:.9rem;
|
||||
font-weight:600;
|
||||
}
|
||||
.customize-widgets-keyboard-shortcut-help-modal__shortcut{
|
||||
align-items:baseline;
|
||||
border-top:1px solid #ddd;
|
||||
display:flex;
|
||||
margin-bottom:0;
|
||||
padding:.6rem 0;
|
||||
}
|
||||
.customize-widgets-keyboard-shortcut-help-modal__shortcut:last-child{
|
||||
border-bottom:1px solid #ddd;
|
||||
}
|
||||
.customize-widgets-keyboard-shortcut-help-modal__shortcut:empty{
|
||||
display:none;
|
||||
}
|
||||
.customize-widgets-keyboard-shortcut-help-modal__shortcut-term{
|
||||
font-weight:600;
|
||||
margin:0 1rem 0 0;
|
||||
text-align:left;
|
||||
}
|
||||
.customize-widgets-keyboard-shortcut-help-modal__shortcut-description{
|
||||
flex:1;
|
||||
flex-basis:auto;
|
||||
margin:0;
|
||||
}
|
||||
.customize-widgets-keyboard-shortcut-help-modal__shortcut-key-combination{
|
||||
background:none;
|
||||
display:block;
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
.customize-widgets-keyboard-shortcut-help-modal__shortcut-key-combination+.customize-widgets-keyboard-shortcut-help-modal__shortcut-key-combination{
|
||||
margin-top:10px;
|
||||
}
|
||||
.customize-widgets-keyboard-shortcut-help-modal__shortcut-key{
|
||||
border-radius:8%;
|
||||
margin:0 .2rem;
|
||||
padding:.25rem .5rem;
|
||||
}
|
||||
.customize-widgets-keyboard-shortcut-help-modal__shortcut-key:last-child{
|
||||
margin:0 .2rem 0 0;
|
||||
}
|
||||
|
||||
.block-editor-block-contextual-toolbar.is-fixed{
|
||||
margin-left:-12px;
|
||||
margin-right:-12px;
|
||||
overflow-y:auto;
|
||||
z-index:7;
|
||||
}
|
||||
|
||||
.customize-control-sidebar_block_editor .block-editor-block-list__block-popover{
|
||||
position:fixed !important;
|
||||
z-index:7;
|
||||
}
|
||||
|
||||
.customize-control-sidebar_block_editor .components-popover,.customize-widgets-popover .components-popover{
|
||||
position:fixed !important;
|
||||
}
|
||||
|
||||
.customize-widgets-welcome-guide__image__wrapper{
|
||||
background:#00a0d2;
|
||||
margin-bottom:8px;
|
||||
text-align:center;
|
||||
}
|
||||
.customize-widgets-welcome-guide__image{
|
||||
height:auto;
|
||||
}
|
||||
.wrap .customize-widgets-welcome-guide__heading{
|
||||
font-size:18px;
|
||||
font-weight:600;
|
||||
}
|
||||
.customize-widgets-welcome-guide__text{
|
||||
line-height:1.7;
|
||||
}
|
||||
.customize-widgets-welcome-guide__button{
|
||||
justify-content:center;
|
||||
margin:1em 0;
|
||||
width:100%;
|
||||
}
|
||||
.customize-widgets-welcome-guide__separator{
|
||||
margin:1em 0;
|
||||
}
|
||||
.customize-widgets-welcome-guide__more-info{
|
||||
line-height:1.4;
|
||||
}
|
||||
|
||||
#customize-theme-controls .customize-pane-child.customize-widgets__sidebar-section{
|
||||
background-color:#fff;
|
||||
min-height:100%;
|
||||
padding-top:12px !important;
|
||||
}
|
||||
#customize-theme-controls .customize-pane-child.customize-widgets__sidebar-section.open{
|
||||
overflow:unset;
|
||||
}
|
||||
#customize-theme-controls .customize-pane-child.customize-widgets__sidebar-section .customize-section-title{
|
||||
margin-top:-12px !important;
|
||||
position:static !important;
|
||||
width:unset !important;
|
||||
}
|
||||
|
||||
.components-modal__screen-overlay{
|
||||
z-index:999999;
|
||||
}
|
||||
|
||||
.customize-control-sidebar_block_editor,.customize-widgets-layout__inspector,.customize-widgets-popover{
|
||||
box-sizing:border-box;
|
||||
}
|
||||
.customize-control-sidebar_block_editor *,.customize-control-sidebar_block_editor :after,.customize-control-sidebar_block_editor :before,.customize-widgets-layout__inspector *,.customize-widgets-layout__inspector :after,.customize-widgets-layout__inspector :before,.customize-widgets-popover *,.customize-widgets-popover :after,.customize-widgets-popover :before{
|
||||
box-sizing:inherit;
|
||||
}
|
||||
.block-editor-block-contextual-toolbar.is-fixed{
|
||||
border:none;
|
||||
border-bottom:1px solid #e0e0e0;
|
||||
border-radius:0;
|
||||
overflow-y:hidden;
|
||||
position:sticky;
|
||||
right:0;
|
||||
top:0;
|
||||
width:calc(100% + 24px);
|
||||
z-index:6;
|
||||
}
|
||||
.block-editor-block-contextual-toolbar.is-fixed .block-editor-block-toolbar .components-toolbar,.block-editor-block-contextual-toolbar.is-fixed .block-editor-block-toolbar .components-toolbar-group{
|
||||
border-left-color:#e0e0e0;
|
||||
}
|
||||
.block-editor-block-contextual-toolbar.is-fixed.is-collapsed{
|
||||
margin-right:-12px;
|
||||
}
|
||||
1
CTF/Smol/wordpress.old/wp-includes/css/dist/customize-widgets/style-rtl.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/customize-widgets/style-rtl.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
241
CTF/Smol/wordpress.old/wp-includes/css/dist/customize-widgets/style.css
vendored
Normal file
241
CTF/Smol/wordpress.old/wp-includes/css/dist/customize-widgets/style.css
vendored
Normal file
@@ -0,0 +1,241 @@
|
||||
: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;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
:root{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
|
||||
#customize-theme-controls .customize-pane-child.accordion-section-content.customize-widgets-layout__inspector{
|
||||
background:#fff;
|
||||
box-sizing:border-box;
|
||||
}
|
||||
#customize-theme-controls .customize-pane-child.accordion-section-content.customize-widgets-layout__inspector *{
|
||||
box-sizing:inherit;
|
||||
}
|
||||
#customize-theme-controls .customize-pane-child.accordion-section-content.customize-widgets-layout__inspector .block-editor-block-inspector{
|
||||
margin:-12px;
|
||||
}
|
||||
#customize-theme-controls .customize-pane-child.accordion-section-content.customize-widgets-layout__inspector .block-editor-block-inspector h3{
|
||||
margin-bottom:0;
|
||||
}
|
||||
|
||||
#customize-theme-controls .customize-pane-child.control-section-sidebar.is-sub-section-open{
|
||||
transform:translateX(-100%);
|
||||
}
|
||||
|
||||
.customize-widgets-header{
|
||||
background:#f0f0f1;
|
||||
border-bottom:1px solid #e0e0e0;
|
||||
display:flex;
|
||||
justify-content:flex-end;
|
||||
margin:-15px -12px 0;
|
||||
z-index:8;
|
||||
}
|
||||
@media (min-width:782px){
|
||||
.customize-widgets-header{
|
||||
margin-bottom:44px;
|
||||
}
|
||||
}
|
||||
.customize-widgets-header.is-fixed-toolbar-active{
|
||||
margin-bottom:0;
|
||||
}
|
||||
|
||||
.customize-widgets-header-toolbar{
|
||||
align-items:center;
|
||||
border:none;
|
||||
display:flex;
|
||||
width:100%;
|
||||
}
|
||||
.customize-widgets-header-toolbar .customize-widgets-header-toolbar__inserter-toggle.components-button.has-icon{
|
||||
border-radius:2px;
|
||||
color:#fff;
|
||||
height:24px;
|
||||
margin:12px 0 12px auto;
|
||||
min-width:24px;
|
||||
padding:0;
|
||||
}
|
||||
.customize-widgets-header-toolbar .customize-widgets-header-toolbar__inserter-toggle.components-button.has-icon:before{
|
||||
content:none;
|
||||
}
|
||||
.customize-widgets-header-toolbar .customize-widgets-header-toolbar__inserter-toggle.components-button.has-icon.is-pressed{
|
||||
background:#1e1e1e;
|
||||
}
|
||||
.customize-widgets-header-toolbar .components-button.has-icon.customize-widgets-editor-history-button.redo-button{
|
||||
margin-left:-12px;
|
||||
}
|
||||
|
||||
#customize-sidebar-outer-content{
|
||||
min-width:100%;
|
||||
width:auto;
|
||||
}
|
||||
|
||||
#customize-outer-theme-controls .widgets-inserter{
|
||||
padding:0;
|
||||
}
|
||||
#customize-outer-theme-controls .widgets-inserter .customize-section-description-container{
|
||||
display:none;
|
||||
}
|
||||
|
||||
.customize-widgets-layout__inserter-panel{
|
||||
background:#fff;
|
||||
}
|
||||
|
||||
.customize-widgets-layout__inserter-panel-header{
|
||||
align-items:center;
|
||||
border-bottom:1px solid #ddd;
|
||||
box-sizing:border-box;
|
||||
display:flex;
|
||||
height:46px;
|
||||
justify-content:space-between;
|
||||
padding:16px;
|
||||
}
|
||||
.customize-widgets-layout__inserter-panel-header .customize-widgets-layout__inserter-panel-header-title{
|
||||
margin:0;
|
||||
}
|
||||
|
||||
.block-editor-inserter__quick-inserter .block-editor-inserter__panel-content{
|
||||
background:#fff;
|
||||
}
|
||||
|
||||
.customize-widgets-keyboard-shortcut-help-modal__section{
|
||||
margin:0 0 2rem;
|
||||
}
|
||||
.customize-widgets-keyboard-shortcut-help-modal__section-title{
|
||||
font-size:.9rem;
|
||||
font-weight:600;
|
||||
}
|
||||
.customize-widgets-keyboard-shortcut-help-modal__shortcut{
|
||||
align-items:baseline;
|
||||
border-top:1px solid #ddd;
|
||||
display:flex;
|
||||
margin-bottom:0;
|
||||
padding:.6rem 0;
|
||||
}
|
||||
.customize-widgets-keyboard-shortcut-help-modal__shortcut:last-child{
|
||||
border-bottom:1px solid #ddd;
|
||||
}
|
||||
.customize-widgets-keyboard-shortcut-help-modal__shortcut:empty{
|
||||
display:none;
|
||||
}
|
||||
.customize-widgets-keyboard-shortcut-help-modal__shortcut-term{
|
||||
font-weight:600;
|
||||
margin:0 0 0 1rem;
|
||||
text-align:right;
|
||||
}
|
||||
.customize-widgets-keyboard-shortcut-help-modal__shortcut-description{
|
||||
flex:1;
|
||||
flex-basis:auto;
|
||||
margin:0;
|
||||
}
|
||||
.customize-widgets-keyboard-shortcut-help-modal__shortcut-key-combination{
|
||||
background:none;
|
||||
display:block;
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
.customize-widgets-keyboard-shortcut-help-modal__shortcut-key-combination+.customize-widgets-keyboard-shortcut-help-modal__shortcut-key-combination{
|
||||
margin-top:10px;
|
||||
}
|
||||
.customize-widgets-keyboard-shortcut-help-modal__shortcut-key{
|
||||
border-radius:8%;
|
||||
margin:0 .2rem;
|
||||
padding:.25rem .5rem;
|
||||
}
|
||||
.customize-widgets-keyboard-shortcut-help-modal__shortcut-key:last-child{
|
||||
margin:0 0 0 .2rem;
|
||||
}
|
||||
|
||||
.block-editor-block-contextual-toolbar.is-fixed{
|
||||
margin-left:-12px;
|
||||
margin-right:-12px;
|
||||
overflow-y:auto;
|
||||
z-index:7;
|
||||
}
|
||||
|
||||
.customize-control-sidebar_block_editor .block-editor-block-list__block-popover{
|
||||
position:fixed !important;
|
||||
z-index:7;
|
||||
}
|
||||
|
||||
.customize-control-sidebar_block_editor .components-popover,.customize-widgets-popover .components-popover{
|
||||
position:fixed !important;
|
||||
}
|
||||
|
||||
.customize-widgets-welcome-guide__image__wrapper{
|
||||
background:#00a0d2;
|
||||
margin-bottom:8px;
|
||||
text-align:center;
|
||||
}
|
||||
.customize-widgets-welcome-guide__image{
|
||||
height:auto;
|
||||
}
|
||||
.wrap .customize-widgets-welcome-guide__heading{
|
||||
font-size:18px;
|
||||
font-weight:600;
|
||||
}
|
||||
.customize-widgets-welcome-guide__text{
|
||||
line-height:1.7;
|
||||
}
|
||||
.customize-widgets-welcome-guide__button{
|
||||
justify-content:center;
|
||||
margin:1em 0;
|
||||
width:100%;
|
||||
}
|
||||
.customize-widgets-welcome-guide__separator{
|
||||
margin:1em 0;
|
||||
}
|
||||
.customize-widgets-welcome-guide__more-info{
|
||||
line-height:1.4;
|
||||
}
|
||||
|
||||
#customize-theme-controls .customize-pane-child.customize-widgets__sidebar-section{
|
||||
background-color:#fff;
|
||||
min-height:100%;
|
||||
padding-top:12px !important;
|
||||
}
|
||||
#customize-theme-controls .customize-pane-child.customize-widgets__sidebar-section.open{
|
||||
overflow:unset;
|
||||
}
|
||||
#customize-theme-controls .customize-pane-child.customize-widgets__sidebar-section .customize-section-title{
|
||||
margin-top:-12px !important;
|
||||
position:static !important;
|
||||
width:unset !important;
|
||||
}
|
||||
|
||||
.components-modal__screen-overlay{
|
||||
z-index:999999;
|
||||
}
|
||||
|
||||
.customize-control-sidebar_block_editor,.customize-widgets-layout__inspector,.customize-widgets-popover{
|
||||
box-sizing:border-box;
|
||||
}
|
||||
.customize-control-sidebar_block_editor *,.customize-control-sidebar_block_editor :after,.customize-control-sidebar_block_editor :before,.customize-widgets-layout__inspector *,.customize-widgets-layout__inspector :after,.customize-widgets-layout__inspector :before,.customize-widgets-popover *,.customize-widgets-popover :after,.customize-widgets-popover :before{
|
||||
box-sizing:inherit;
|
||||
}
|
||||
.block-editor-block-contextual-toolbar.is-fixed{
|
||||
border:none;
|
||||
border-bottom:1px solid #e0e0e0;
|
||||
border-radius:0;
|
||||
left:0;
|
||||
overflow-y:hidden;
|
||||
position:sticky;
|
||||
top:0;
|
||||
width:calc(100% + 24px);
|
||||
z-index:6;
|
||||
}
|
||||
.block-editor-block-contextual-toolbar.is-fixed .block-editor-block-toolbar .components-toolbar,.block-editor-block-contextual-toolbar.is-fixed .block-editor-block-toolbar .components-toolbar-group{
|
||||
border-right-color:#e0e0e0;
|
||||
}
|
||||
.block-editor-block-contextual-toolbar.is-fixed.is-collapsed{
|
||||
margin-left:-12px;
|
||||
}
|
||||
1
CTF/Smol/wordpress.old/wp-includes/css/dist/customize-widgets/style.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/customize-widgets/style.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
89
CTF/Smol/wordpress.old/wp-includes/css/dist/edit-post/classic-rtl.css
vendored
Normal file
89
CTF/Smol/wordpress.old/wp-includes/css/dist/edit-post/classic-rtl.css
vendored
Normal file
@@ -0,0 +1,89 @@
|
||||
: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;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
:root{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
|
||||
.editor-styles-wrapper .wp-block{
|
||||
margin-left:auto;
|
||||
margin-right:auto;
|
||||
}
|
||||
|
||||
html :where(.editor-styles-wrapper){
|
||||
padding:8px;
|
||||
}
|
||||
html :where(.editor-styles-wrapper) .block-editor-block-list__layout.is-root-container>.wp-block[data-align=full]{
|
||||
margin-left:-8px;
|
||||
margin-right:-8px;
|
||||
}
|
||||
|
||||
html :where(.wp-block){
|
||||
margin-bottom:28px;
|
||||
margin-top:28px;
|
||||
max-width:840px;
|
||||
}
|
||||
html :where(.wp-block)[data-align=wide]{
|
||||
max-width:1100px;
|
||||
}
|
||||
html :where(.wp-block)[data-align=full]{
|
||||
max-width:none;
|
||||
}
|
||||
html :where(.wp-block)[data-align=left],html :where(.wp-block)[data-align=right]{
|
||||
height:0;
|
||||
width:100%;
|
||||
}
|
||||
html :where(.wp-block)[data-align=left]:before,html :where(.wp-block)[data-align=right]:before{
|
||||
content:none;
|
||||
}
|
||||
html :where(.wp-block)[data-align=left]>*{
|
||||
float:left;
|
||||
margin-right:2em;
|
||||
}
|
||||
html :where(.wp-block)[data-align=right]>*{
|
||||
float:right;
|
||||
margin-left:2em;
|
||||
}
|
||||
html :where(.wp-block)[data-align=full],html :where(.wp-block)[data-align=wide]{
|
||||
clear:both;
|
||||
}
|
||||
|
||||
.wp-block-group>[data-align=full]{
|
||||
margin-left:auto;
|
||||
margin-right:auto;
|
||||
}
|
||||
|
||||
.wp-block-group.has-background>[data-align=full]{
|
||||
margin-right:-30px;
|
||||
width:calc(100% + 60px);
|
||||
}
|
||||
[data-align=full] .wp-block-group>.wp-block{
|
||||
padding-left:14px;
|
||||
padding-right:14px;
|
||||
}
|
||||
@media (min-width:600px){
|
||||
[data-align=full] .wp-block-group>.wp-block{
|
||||
padding-left:0;
|
||||
padding-right:0;
|
||||
}
|
||||
}
|
||||
[data-align=full] .wp-block-group>[data-align=full]{
|
||||
max-width:none;
|
||||
padding-left:0;
|
||||
padding-right:0;
|
||||
right:0;
|
||||
width:100%;
|
||||
}
|
||||
[data-align=full] .wp-block-group.has-background>[data-align=full]{
|
||||
width:calc(100% + 60px);
|
||||
}
|
||||
1
CTF/Smol/wordpress.old/wp-includes/css/dist/edit-post/classic-rtl.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/edit-post/classic-rtl.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
: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}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.editor-styles-wrapper .wp-block{margin-left:auto;margin-right:auto}html :where(.editor-styles-wrapper){padding:8px}html :where(.editor-styles-wrapper) .block-editor-block-list__layout.is-root-container>.wp-block[data-align=full]{margin-left:-8px;margin-right:-8px}html :where(.wp-block){margin-bottom:28px;margin-top:28px;max-width:840px}html :where(.wp-block)[data-align=wide]{max-width:1100px}html :where(.wp-block)[data-align=full]{max-width:none}html :where(.wp-block)[data-align=left],html :where(.wp-block)[data-align=right]{height:0;width:100%}html :where(.wp-block)[data-align=left]:before,html :where(.wp-block)[data-align=right]:before{content:none}html :where(.wp-block)[data-align=left]>*{float:left;margin-right:2em}html :where(.wp-block)[data-align=right]>*{float:right;margin-left:2em}html :where(.wp-block)[data-align=full],html :where(.wp-block)[data-align=wide]{clear:both}.wp-block-group>[data-align=full]{margin-left:auto;margin-right:auto}.wp-block-group.has-background>[data-align=full]{margin-right:-30px;width:calc(100% + 60px)}[data-align=full] .wp-block-group>.wp-block{padding-left:14px;padding-right:14px}@media (min-width:600px){[data-align=full] .wp-block-group>.wp-block{padding-left:0;padding-right:0}}[data-align=full] .wp-block-group>[data-align=full]{max-width:none;padding-left:0;padding-right:0;right:0;width:100%}[data-align=full] .wp-block-group.has-background>[data-align=full]{width:calc(100% + 60px)}
|
||||
89
CTF/Smol/wordpress.old/wp-includes/css/dist/edit-post/classic.css
vendored
Normal file
89
CTF/Smol/wordpress.old/wp-includes/css/dist/edit-post/classic.css
vendored
Normal file
@@ -0,0 +1,89 @@
|
||||
: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;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
:root{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
|
||||
.editor-styles-wrapper .wp-block{
|
||||
margin-left:auto;
|
||||
margin-right:auto;
|
||||
}
|
||||
|
||||
html :where(.editor-styles-wrapper){
|
||||
padding:8px;
|
||||
}
|
||||
html :where(.editor-styles-wrapper) .block-editor-block-list__layout.is-root-container>.wp-block[data-align=full]{
|
||||
margin-left:-8px;
|
||||
margin-right:-8px;
|
||||
}
|
||||
|
||||
html :where(.wp-block){
|
||||
margin-bottom:28px;
|
||||
margin-top:28px;
|
||||
max-width:840px;
|
||||
}
|
||||
html :where(.wp-block)[data-align=wide]{
|
||||
max-width:1100px;
|
||||
}
|
||||
html :where(.wp-block)[data-align=full]{
|
||||
max-width:none;
|
||||
}
|
||||
html :where(.wp-block)[data-align=left],html :where(.wp-block)[data-align=right]{
|
||||
height:0;
|
||||
width:100%;
|
||||
}
|
||||
html :where(.wp-block)[data-align=left]:before,html :where(.wp-block)[data-align=right]:before{
|
||||
content:none;
|
||||
}
|
||||
html :where(.wp-block)[data-align=left]>*{
|
||||
float:left;
|
||||
margin-right:2em;
|
||||
}
|
||||
html :where(.wp-block)[data-align=right]>*{
|
||||
float:right;
|
||||
margin-left:2em;
|
||||
}
|
||||
html :where(.wp-block)[data-align=full],html :where(.wp-block)[data-align=wide]{
|
||||
clear:both;
|
||||
}
|
||||
|
||||
.wp-block-group>[data-align=full]{
|
||||
margin-left:auto;
|
||||
margin-right:auto;
|
||||
}
|
||||
|
||||
.wp-block-group.has-background>[data-align=full]{
|
||||
margin-left:-30px;
|
||||
width:calc(100% + 60px);
|
||||
}
|
||||
[data-align=full] .wp-block-group>.wp-block{
|
||||
padding-left:14px;
|
||||
padding-right:14px;
|
||||
}
|
||||
@media (min-width:600px){
|
||||
[data-align=full] .wp-block-group>.wp-block{
|
||||
padding-left:0;
|
||||
padding-right:0;
|
||||
}
|
||||
}
|
||||
[data-align=full] .wp-block-group>[data-align=full]{
|
||||
left:0;
|
||||
max-width:none;
|
||||
padding-left:0;
|
||||
padding-right:0;
|
||||
width:100%;
|
||||
}
|
||||
[data-align=full] .wp-block-group.has-background>[data-align=full]{
|
||||
width:calc(100% + 60px);
|
||||
}
|
||||
5
CTF/Smol/wordpress.old/wp-includes/css/dist/edit-post/classic.min.css
vendored
Normal file
5
CTF/Smol/wordpress.old/wp-includes/css/dist/edit-post/classic.min.css
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
: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}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.editor-styles-wrapper .wp-block{margin-left:auto;margin-right:auto}html :where(.editor-styles-wrapper){padding:8px}html :where(.editor-styles-wrapper) .block-editor-block-list__layout.is-root-container>.wp-block[data-align=full]{margin-left:-8px;margin-right:-8px}html :where(.wp-block){margin-bottom:28px;margin-top:28px;max-width:840px}html :where(.wp-block)[data-align=wide]{max-width:1100px}html :where(.wp-block)[data-align=full]{max-width:none}html :where(.wp-block)[data-align=left],html :where(.wp-block)[data-align=right]{height:0;width:100%}html :where(.wp-block)[data-align=left]:before,html :where(.wp-block)[data-align=right]:before{content:none}html :where(.wp-block)[data-align=left]>*{
|
||||
/*!rtl:begin:ignore*/float:left;margin-right:2em
|
||||
/*!rtl:end:ignore*/}html :where(.wp-block)[data-align=right]>*{
|
||||
/*!rtl:begin:ignore*/float:right;margin-left:2em
|
||||
/*!rtl:end:ignore*/}html :where(.wp-block)[data-align=full],html :where(.wp-block)[data-align=wide]{clear:both}.wp-block-group>[data-align=full]{margin-left:auto;margin-right:auto}.wp-block-group.has-background>[data-align=full]{margin-left:-30px;width:calc(100% + 60px)}[data-align=full] .wp-block-group>.wp-block{padding-left:14px;padding-right:14px}@media (min-width:600px){[data-align=full] .wp-block-group>.wp-block{padding-left:0;padding-right:0}}[data-align=full] .wp-block-group>[data-align=full]{left:0;max-width:none;padding-left:0;padding-right:0;width:100%}[data-align=full] .wp-block-group.has-background>[data-align=full]{width:calc(100% + 60px)}
|
||||
1887
CTF/Smol/wordpress.old/wp-includes/css/dist/edit-post/style-rtl.css
vendored
Normal file
1887
CTF/Smol/wordpress.old/wp-includes/css/dist/edit-post/style-rtl.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
CTF/Smol/wordpress.old/wp-includes/css/dist/edit-post/style-rtl.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/edit-post/style-rtl.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1887
CTF/Smol/wordpress.old/wp-includes/css/dist/edit-post/style.css
vendored
Normal file
1887
CTF/Smol/wordpress.old/wp-includes/css/dist/edit-post/style.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
CTF/Smol/wordpress.old/wp-includes/css/dist/edit-post/style.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/edit-post/style.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
3612
CTF/Smol/wordpress.old/wp-includes/css/dist/edit-site/style-rtl.css
vendored
Normal file
3612
CTF/Smol/wordpress.old/wp-includes/css/dist/edit-site/style-rtl.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
CTF/Smol/wordpress.old/wp-includes/css/dist/edit-site/style-rtl.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/edit-site/style-rtl.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
3612
CTF/Smol/wordpress.old/wp-includes/css/dist/edit-site/style.css
vendored
Normal file
3612
CTF/Smol/wordpress.old/wp-includes/css/dist/edit-site/style.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
CTF/Smol/wordpress.old/wp-includes/css/dist/edit-site/style.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/edit-site/style.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1078
CTF/Smol/wordpress.old/wp-includes/css/dist/edit-widgets/style-rtl.css
vendored
Normal file
1078
CTF/Smol/wordpress.old/wp-includes/css/dist/edit-widgets/style-rtl.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
CTF/Smol/wordpress.old/wp-includes/css/dist/edit-widgets/style-rtl.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/edit-widgets/style-rtl.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1078
CTF/Smol/wordpress.old/wp-includes/css/dist/edit-widgets/style.css
vendored
Normal file
1078
CTF/Smol/wordpress.old/wp-includes/css/dist/edit-widgets/style.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
CTF/Smol/wordpress.old/wp-includes/css/dist/edit-widgets/style.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/edit-widgets/style.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
840
CTF/Smol/wordpress.old/wp-includes/css/dist/editor/style-rtl.css
vendored
Normal file
840
CTF/Smol/wordpress.old/wp-includes/css/dist/editor/style-rtl.css
vendored
Normal file
@@ -0,0 +1,840 @@
|
||||
@charset "UTF-8";
|
||||
: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;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
:root{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
|
||||
.editor-autocompleters__user .editor-autocompleters__no-avatar:before{
|
||||
content:"";
|
||||
font:normal 20px/1 dashicons;
|
||||
margin-left:5px;
|
||||
vertical-align:middle;
|
||||
}
|
||||
.editor-autocompleters__user .editor-autocompleters__user-avatar{
|
||||
flex-grow:0;
|
||||
flex-shrink:0;
|
||||
height:24px;
|
||||
margin-left:8px;
|
||||
max-width:none;
|
||||
width:24px;
|
||||
}
|
||||
.editor-autocompleters__user .editor-autocompleters__user-name{
|
||||
flex-grow:1;
|
||||
flex-shrink:0;
|
||||
max-width:200px;
|
||||
overflow:hidden;
|
||||
text-overflow:ellipsis;
|
||||
white-space:nowrap;
|
||||
}
|
||||
.editor-autocompleters__user .editor-autocompleters__user-slug{
|
||||
color:#757575;
|
||||
flex-grow:0;
|
||||
flex-shrink:0;
|
||||
margin-right:8px;
|
||||
max-width:100px;
|
||||
overflow:none;
|
||||
text-overflow:ellipsis;
|
||||
white-space:nowrap;
|
||||
}
|
||||
.editor-autocompleters__user:hover .editor-autocompleters__user-slug{
|
||||
color:var(--wp-admin-theme-color);
|
||||
}
|
||||
|
||||
.document-outline{
|
||||
margin:20px 0;
|
||||
}
|
||||
.document-outline ul{
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
|
||||
.document-outline__item{
|
||||
display:flex;
|
||||
margin:4px 0;
|
||||
}
|
||||
.document-outline__item a{
|
||||
text-decoration:none;
|
||||
}
|
||||
.document-outline__item .document-outline__emdash:before{
|
||||
color:#ddd;
|
||||
margin-left:4px;
|
||||
}
|
||||
.document-outline__item.is-h2 .document-outline__emdash:before{
|
||||
content:"—";
|
||||
}
|
||||
.document-outline__item.is-h3 .document-outline__emdash:before{
|
||||
content:"——";
|
||||
}
|
||||
.document-outline__item.is-h4 .document-outline__emdash:before{
|
||||
content:"———";
|
||||
}
|
||||
.document-outline__item.is-h5 .document-outline__emdash:before{
|
||||
content:"————";
|
||||
}
|
||||
.document-outline__item.is-h6 .document-outline__emdash:before{
|
||||
content:"—————";
|
||||
}
|
||||
|
||||
.document-outline__button{
|
||||
align-items:flex-start;
|
||||
background:none;
|
||||
border:none;
|
||||
border-radius:2px;
|
||||
color:#1e1e1e;
|
||||
cursor:pointer;
|
||||
display:flex;
|
||||
margin:0 -1px 0 0;
|
||||
padding:2px 1px 2px 5px;
|
||||
text-align:right;
|
||||
}
|
||||
.document-outline__button:disabled{
|
||||
cursor:default;
|
||||
}
|
||||
.document-outline__button:focus{
|
||||
box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
|
||||
outline:2px solid transparent;
|
||||
}
|
||||
|
||||
.document-outline__level{
|
||||
background:#ddd;
|
||||
border-radius:3px;
|
||||
color:#1e1e1e;
|
||||
font-size:13px;
|
||||
margin-left:4px;
|
||||
padding:1px 6px;
|
||||
}
|
||||
.is-invalid .document-outline__level{
|
||||
background:#f0b849;
|
||||
}
|
||||
|
||||
.document-outline__item-content{
|
||||
padding:1px 0;
|
||||
}
|
||||
|
||||
.components-editor-notices__dismissible,.components-editor-notices__pinned{
|
||||
color:#1e1e1e;
|
||||
left:0;
|
||||
position:relative;
|
||||
right:0;
|
||||
top:0;
|
||||
}
|
||||
.components-editor-notices__dismissible .components-notice,.components-editor-notices__pinned .components-notice{
|
||||
border-bottom:1px solid rgba(0,0,0,.2);
|
||||
box-sizing:border-box;
|
||||
margin:0;
|
||||
min-height:60px;
|
||||
padding:0 12px;
|
||||
}
|
||||
.components-editor-notices__dismissible .components-notice .components-notice__dismiss,.components-editor-notices__pinned .components-notice .components-notice__dismiss{
|
||||
margin-top:12px;
|
||||
}
|
||||
|
||||
.entities-saved-states__find-entity{
|
||||
display:none;
|
||||
}
|
||||
@media (min-width:782px){
|
||||
.entities-saved-states__find-entity{
|
||||
display:block;
|
||||
}
|
||||
}
|
||||
|
||||
.entities-saved-states__find-entity-small{
|
||||
display:block;
|
||||
}
|
||||
@media (min-width:782px){
|
||||
.entities-saved-states__find-entity-small{
|
||||
display:none;
|
||||
}
|
||||
}
|
||||
|
||||
.entities-saved-states__panel-header{
|
||||
background:#fff;
|
||||
border-bottom:1px solid #ddd;
|
||||
box-sizing:border-box;
|
||||
height:60px;
|
||||
padding-left:8px;
|
||||
padding-right:8px;
|
||||
}
|
||||
|
||||
.entities-saved-states__text-prompt{
|
||||
padding:16px 16px 4px;
|
||||
}
|
||||
|
||||
.editor-error-boundary{
|
||||
box-shadow:0 .7px 1px rgba(0,0,0,.15),0 2.7px 3.8px -.2px rgba(0,0,0,.15),0 5.5px 7.8px -.3px rgba(0,0,0,.15),-.1px 11.5px 16.4px -.5px rgba(0,0,0,.15);
|
||||
margin:60px auto auto;
|
||||
max-width:780px;
|
||||
padding:20px;
|
||||
}
|
||||
|
||||
.editor-post-excerpt__textarea{
|
||||
margin-bottom:10px;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
.editor-post-featured-image{
|
||||
padding:0;
|
||||
}
|
||||
.editor-post-featured-image .components-spinner{
|
||||
margin-right:-9px;
|
||||
margin-top:-9px;
|
||||
position:absolute;
|
||||
right:50%;
|
||||
top:50%;
|
||||
}
|
||||
.editor-post-featured-image .components-responsive-wrapper__content{
|
||||
max-width:100%;
|
||||
width:auto;
|
||||
}
|
||||
|
||||
.editor-post-featured-image__container{
|
||||
position:relative;
|
||||
}
|
||||
.editor-post-featured-image__container:focus .editor-post-featured-image__actions,.editor-post-featured-image__container:focus-within .editor-post-featured-image__actions,.editor-post-featured-image__container:hover .editor-post-featured-image__actions{
|
||||
opacity:1;
|
||||
}
|
||||
|
||||
.editor-post-featured-image__preview,.editor-post-featured-image__toggle{
|
||||
box-shadow:0 0 0 0 var(--wp-admin-theme-color);
|
||||
display:flex;
|
||||
justify-content:center;
|
||||
max-height:150px;
|
||||
overflow:hidden;
|
||||
padding:0;
|
||||
transition:all .1s ease-out;
|
||||
width:100%;
|
||||
}
|
||||
@media (prefers-reduced-motion:reduce){
|
||||
.editor-post-featured-image__preview,.editor-post-featured-image__toggle{
|
||||
transition-delay:0s;
|
||||
transition-duration:0s;
|
||||
}
|
||||
}
|
||||
|
||||
.editor-post-featured-image__preview{
|
||||
height:auto;
|
||||
}
|
||||
.editor-post-featured-image__preview .components-responsive-wrapper{
|
||||
background:#f0f0f0;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
.editor-post-featured-image__toggle{
|
||||
background-color:#f0f0f0;
|
||||
border-radius:2px;
|
||||
line-height:20px;
|
||||
min-height:90px;
|
||||
padding:8px 0;
|
||||
text-align:center;
|
||||
}
|
||||
.editor-post-featured-image__toggle:hover{
|
||||
background:#ddd;
|
||||
color:#1e1e1e;
|
||||
}
|
||||
|
||||
.editor-post-featured-image__actions{
|
||||
bottom:0;
|
||||
opacity:0;
|
||||
padding:8px;
|
||||
position:absolute;
|
||||
transition:opacity 50ms ease-out;
|
||||
}
|
||||
@media (prefers-reduced-motion:reduce){
|
||||
.editor-post-featured-image__actions{
|
||||
transition-delay:0s;
|
||||
transition-duration:0s;
|
||||
}
|
||||
}
|
||||
|
||||
.editor-post-featured-image__action{
|
||||
-webkit-backdrop-filter:blur(16px) saturate(180%);
|
||||
backdrop-filter:blur(16px) saturate(180%);
|
||||
background:hsla(0,0%,100%,.75);
|
||||
flex-grow:1;
|
||||
justify-content:center;
|
||||
}
|
||||
|
||||
[class].editor-post-format__suggestion{
|
||||
margin:4px 0 0;
|
||||
}
|
||||
|
||||
.editor-post-last-revision__title{
|
||||
font-weight:600;
|
||||
width:100%;
|
||||
}
|
||||
.editor-post-last-revision__title .dashicon{
|
||||
margin-left:5px;
|
||||
}
|
||||
|
||||
.components-button.editor-post-last-revision__title{
|
||||
height:100%;
|
||||
}
|
||||
.components-button.editor-post-last-revision__title:active,.components-button.editor-post-last-revision__title:hover{
|
||||
background:#f0f0f0;
|
||||
}
|
||||
.components-button.editor-post-last-revision__title:focus{
|
||||
border-radius:0;
|
||||
box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
|
||||
}
|
||||
|
||||
@media (min-width:600px){
|
||||
.editor-post-locked-modal{
|
||||
max-width:480px;
|
||||
}
|
||||
}
|
||||
|
||||
.editor-post-locked-modal__buttons{
|
||||
margin-top:24px;
|
||||
}
|
||||
|
||||
.editor-post-locked-modal__avatar{
|
||||
border-radius:2px;
|
||||
margin-top:16px;
|
||||
min-width:auto !important;
|
||||
}
|
||||
|
||||
.editor-post-publish-button__button.has-changes-dot:before{
|
||||
background:currentcolor;
|
||||
border-radius:4px;
|
||||
content:"";
|
||||
height:8px;
|
||||
margin:auto -3px auto 5px;
|
||||
width:8px;
|
||||
}
|
||||
|
||||
.editor-post-publish-panel{
|
||||
background:#fff;
|
||||
}
|
||||
|
||||
.editor-post-publish-panel__content{
|
||||
min-height:calc(100% - 144px);
|
||||
}
|
||||
.editor-post-publish-panel__content>.components-spinner{
|
||||
display:block;
|
||||
margin:100px auto 0;
|
||||
}
|
||||
|
||||
.editor-post-publish-panel__header{
|
||||
align-content:space-between;
|
||||
align-items:center;
|
||||
background:#fff;
|
||||
border-bottom:1px solid #ddd;
|
||||
display:flex;
|
||||
height:61px;
|
||||
padding-left:16px;
|
||||
padding-right:16px;
|
||||
}
|
||||
.editor-post-publish-panel__header .components-button{
|
||||
justify-content:center;
|
||||
width:100%;
|
||||
}
|
||||
.editor-post-publish-panel__header .has-icon{
|
||||
margin-right:auto;
|
||||
width:auto;
|
||||
}
|
||||
|
||||
.components-site-card{
|
||||
align-items:center;
|
||||
display:flex;
|
||||
margin:16px 0;
|
||||
}
|
||||
|
||||
.components-site-icon{
|
||||
border:none;
|
||||
border-radius:2px;
|
||||
height:36px;
|
||||
margin-left:12px;
|
||||
width:36px;
|
||||
}
|
||||
|
||||
.components-site-name{
|
||||
display:block;
|
||||
font-size:14px;
|
||||
}
|
||||
|
||||
.components-site-home{
|
||||
color:#757575;
|
||||
display:block;
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
.editor-post-publish-panel__header-cancel-button,.editor-post-publish-panel__header-publish-button{
|
||||
flex:1;
|
||||
}
|
||||
@media (min-width:480px){
|
||||
.editor-post-publish-panel__header-cancel-button,.editor-post-publish-panel__header-publish-button{
|
||||
max-width:160px;
|
||||
}
|
||||
}
|
||||
|
||||
.editor-post-publish-panel__header-publish-button{
|
||||
padding-left:4px;
|
||||
}
|
||||
|
||||
.editor-post-publish-panel__header-cancel-button{
|
||||
padding-right:4px;
|
||||
}
|
||||
|
||||
.editor-post-publish-panel__header-published{
|
||||
flex-grow:1;
|
||||
}
|
||||
|
||||
.editor-post-publish-panel__footer{
|
||||
padding:16px;
|
||||
}
|
||||
|
||||
.components-button.editor-post-publish-panel__toggle.is-primary{
|
||||
align-items:center;
|
||||
display:inline-flex;
|
||||
}
|
||||
.components-button.editor-post-publish-panel__toggle.is-primary.is-busy .dashicon{
|
||||
display:none;
|
||||
}
|
||||
.components-button.editor-post-publish-panel__toggle.is-primary .dashicon{
|
||||
margin-left:-4px;
|
||||
}
|
||||
|
||||
.editor-post-publish-panel__link{
|
||||
font-weight:400;
|
||||
padding-right:4px;
|
||||
}
|
||||
|
||||
.editor-post-publish-panel__prepublish{
|
||||
padding:16px;
|
||||
}
|
||||
.editor-post-publish-panel__prepublish strong{
|
||||
color:#1e1e1e;
|
||||
}
|
||||
.editor-post-publish-panel__prepublish .components-panel__body{
|
||||
background:#fff;
|
||||
margin-left:-16px;
|
||||
margin-right:-16px;
|
||||
}
|
||||
.editor-post-publish-panel__prepublish .editor-post-visibility__dialog-legend{
|
||||
display:none;
|
||||
}
|
||||
|
||||
.post-publish-panel__postpublish .components-panel__body{
|
||||
border-bottom:1px solid #e0e0e0;
|
||||
border-top:none;
|
||||
}
|
||||
|
||||
.post-publish-panel__postpublish-buttons{
|
||||
align-content:space-between;
|
||||
display:flex;
|
||||
flex-wrap:wrap;
|
||||
margin:-5px;
|
||||
}
|
||||
.post-publish-panel__postpublish-buttons>*{
|
||||
flex-grow:1;
|
||||
margin:5px;
|
||||
}
|
||||
.post-publish-panel__postpublish-buttons .components-button{
|
||||
flex:1;
|
||||
height:auto;
|
||||
justify-content:center;
|
||||
line-height:1.6;
|
||||
padding:3px 10px 4px;
|
||||
text-align:center;
|
||||
white-space:normal;
|
||||
}
|
||||
.post-publish-panel__postpublish-buttons .components-clipboard-button{
|
||||
width:100%;
|
||||
}
|
||||
|
||||
.post-publish-panel__postpublish-post-address-container{
|
||||
align-items:flex-end;
|
||||
display:flex;
|
||||
margin-bottom:16px;
|
||||
}
|
||||
.post-publish-panel__postpublish-post-address-container .post-publish-panel__postpublish-post-address{
|
||||
flex:1;
|
||||
}
|
||||
.post-publish-panel__postpublish-post-address-container input[readonly]{
|
||||
background:#ddd;
|
||||
overflow:hidden;
|
||||
padding:10px;
|
||||
text-overflow:ellipsis;
|
||||
}
|
||||
|
||||
.post-publish-panel__postpublish-post-address__copy-button-wrap{
|
||||
flex-shrink:0;
|
||||
margin-right:8px;
|
||||
}
|
||||
.post-publish-panel__postpublish-post-address__copy-button-wrap .components-button{
|
||||
height:38px;
|
||||
}
|
||||
|
||||
.post-publish-panel__postpublish-header{
|
||||
font-weight:500;
|
||||
}
|
||||
|
||||
.post-publish-panel__postpublish-subheader{
|
||||
margin:0 0 8px;
|
||||
}
|
||||
|
||||
.post-publish-panel__tip{
|
||||
color:#f0b849;
|
||||
}
|
||||
|
||||
@media screen and (max-width:782px){
|
||||
.post-publish-panel__postpublish-post-address__button-wrap .components-button{
|
||||
height:40px;
|
||||
}
|
||||
}
|
||||
.editor-post-saved-state{
|
||||
align-items:center;
|
||||
color:#757575;
|
||||
display:flex;
|
||||
overflow:hidden;
|
||||
padding:12px 4px;
|
||||
white-space:nowrap;
|
||||
width:28px;
|
||||
}
|
||||
.editor-post-saved-state.is-saved[aria-disabled=true],.editor-post-saved-state.is-saved[aria-disabled=true]:hover,.editor-post-saved-state.is-saving[aria-disabled=true],.editor-post-saved-state.is-saving[aria-disabled=true]:hover{
|
||||
background:transparent;
|
||||
color:#757575;
|
||||
}
|
||||
.editor-post-saved-state svg{
|
||||
fill:currentColor;
|
||||
display:inline-block;
|
||||
flex:0 0 auto;
|
||||
margin-left:8px;
|
||||
}
|
||||
@media (min-width:600px){
|
||||
.editor-post-saved-state{
|
||||
padding:8px 12px;
|
||||
text-indent:inherit;
|
||||
width:auto;
|
||||
}
|
||||
.editor-post-saved-state svg{
|
||||
margin-left:0;
|
||||
}
|
||||
}
|
||||
|
||||
.editor-post-save-draft.has-text.has-icon svg{
|
||||
margin-left:0;
|
||||
}
|
||||
|
||||
.edit-post-sync-status{
|
||||
justify-content:flex-start;
|
||||
position:relative;
|
||||
width:100%;
|
||||
}
|
||||
.edit-post-sync-status>span{
|
||||
display:block;
|
||||
flex-shrink:0;
|
||||
width:45%;
|
||||
}
|
||||
.edit-post-sync-status>div{
|
||||
padding-right:12px;
|
||||
}
|
||||
|
||||
.editor-post-taxonomies__hierarchical-terms-list{
|
||||
margin-right:-6px;
|
||||
margin-top:-6px;
|
||||
max-height:14em;
|
||||
overflow:auto;
|
||||
padding-right:6px;
|
||||
padding-top:6px;
|
||||
}
|
||||
|
||||
.editor-post-taxonomies__hierarchical-terms-choice{
|
||||
margin-bottom:8px;
|
||||
}
|
||||
.editor-post-taxonomies__hierarchical-terms-choice:last-child{
|
||||
margin-bottom:4px;
|
||||
}
|
||||
|
||||
.editor-post-taxonomies__hierarchical-terms-subchoices{
|
||||
margin-right:16px;
|
||||
margin-top:8px;
|
||||
}
|
||||
|
||||
.editor-post-taxonomies__flat-term-most-used .editor-post-taxonomies__flat-term-most-used-label{
|
||||
margin-bottom:4px;
|
||||
}
|
||||
|
||||
.editor-post-taxonomies__flat-term-most-used-list{
|
||||
margin:0;
|
||||
}
|
||||
.editor-post-taxonomies__flat-term-most-used-list li{
|
||||
display:inline-block;
|
||||
margin-left:8px;
|
||||
}
|
||||
.editor-post-taxonomies__flat-term-most-used-list .components-button{
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
.edit-post-text-editor__body textarea.editor-post-text-editor{
|
||||
border:1px solid #949494;
|
||||
border-radius:0;
|
||||
box-shadow:none;
|
||||
display:block;
|
||||
font-family:Menlo,Consolas,monaco,monospace;
|
||||
font-size:16px !important;
|
||||
line-height:2.4;
|
||||
margin:0;
|
||||
min-height:200px;
|
||||
overflow:hidden;
|
||||
padding:16px;
|
||||
resize:none;
|
||||
transition:border .1s ease-out,box-shadow .1s linear;
|
||||
width:100%;
|
||||
}
|
||||
@media (prefers-reduced-motion:reduce){
|
||||
.edit-post-text-editor__body textarea.editor-post-text-editor{
|
||||
transition-delay:0s;
|
||||
transition-duration:0s;
|
||||
}
|
||||
}
|
||||
@media (min-width:600px){
|
||||
.edit-post-text-editor__body textarea.editor-post-text-editor{
|
||||
font-size:15px !important;
|
||||
padding:24px;
|
||||
}
|
||||
}
|
||||
.edit-post-text-editor__body textarea.editor-post-text-editor:focus{
|
||||
border-color:var(--wp-admin-theme-color);
|
||||
box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
|
||||
position:relative;
|
||||
}
|
||||
.edit-post-text-editor__body textarea.editor-post-text-editor::-webkit-input-placeholder{
|
||||
color:rgba(30,30,30,.62);
|
||||
}
|
||||
.edit-post-text-editor__body textarea.editor-post-text-editor::-moz-placeholder{
|
||||
color:rgba(30,30,30,.62);
|
||||
opacity:1;
|
||||
}
|
||||
.edit-post-text-editor__body textarea.editor-post-text-editor:-ms-input-placeholder{
|
||||
color:rgba(30,30,30,.62);
|
||||
}
|
||||
|
||||
.editor-post-url__link-label{
|
||||
font-size:13px;
|
||||
font-weight:400;
|
||||
margin:0;
|
||||
}
|
||||
.editor-post-url__link{
|
||||
direction:ltr;
|
||||
word-break:break-word;
|
||||
}
|
||||
.editor-post-url__link-slug{
|
||||
font-weight:600;
|
||||
}
|
||||
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio]{
|
||||
border:1px solid #1e1e1e;
|
||||
border-radius:2px;
|
||||
border-radius:50%;
|
||||
box-shadow:0 0 0 transparent;
|
||||
font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;
|
||||
font-size:16px;
|
||||
height:24px;
|
||||
line-height:normal;
|
||||
margin-left:12px;
|
||||
margin-top:2px;
|
||||
padding:6px 8px;
|
||||
transition:box-shadow .1s linear;
|
||||
transition:none;
|
||||
width:24px;
|
||||
}
|
||||
@media (prefers-reduced-motion:reduce){
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio]{
|
||||
transition-delay:0s;
|
||||
transition-duration:0s;
|
||||
}
|
||||
}
|
||||
@media (min-width:600px){
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio]{
|
||||
font-size:13px;
|
||||
line-height:normal;
|
||||
}
|
||||
}
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio]:focus{
|
||||
border-color:var(--wp-admin-theme-color);
|
||||
box-shadow:0 0 0 1px var(--wp-admin-theme-color);
|
||||
}
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio]::-webkit-input-placeholder{
|
||||
color:rgba(30,30,30,.62);
|
||||
}
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio]::-moz-placeholder{
|
||||
color:rgba(30,30,30,.62);
|
||||
opacity:1;
|
||||
}
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio]:-ms-input-placeholder{
|
||||
color:rgba(30,30,30,.62);
|
||||
}
|
||||
@media (min-width:600px){
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio]{
|
||||
height:20px;
|
||||
width:20px;
|
||||
}
|
||||
}
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio]:checked:before{
|
||||
background-color:#fff;
|
||||
border:4px solid #fff;
|
||||
box-sizing:inherit;
|
||||
height:8px;
|
||||
margin:0;
|
||||
transform:translate(-7px, 7px);
|
||||
width:8px;
|
||||
}
|
||||
@media (min-width:600px){
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio]:checked:before{
|
||||
transform:translate(-5px, 5px);
|
||||
}
|
||||
}
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio]:focus{
|
||||
box-shadow:0 0 0 2px #fff, 0 0 0 4px var(--wp-admin-theme-color);
|
||||
outline:2px solid transparent;
|
||||
}
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio]:checked{
|
||||
background:var(--wp-admin-theme-color);
|
||||
border-color:var(--wp-admin-theme-color);
|
||||
}
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__info{
|
||||
color:#757575;
|
||||
margin-right:36px;
|
||||
margin-top:.5em;
|
||||
}
|
||||
@media (min-width:600px){
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__info{
|
||||
margin-right:32px;
|
||||
}
|
||||
}
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__choice:last-child .editor-post-visibility__info{
|
||||
margin-bottom:0;
|
||||
}
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__password .editor-post-visibility__password-input[type=text]{
|
||||
border:1px solid #949494;
|
||||
border-radius:2px;
|
||||
box-shadow:0 0 0 transparent;
|
||||
font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;
|
||||
font-size:16px;
|
||||
line-height:normal;
|
||||
margin-right:32px;
|
||||
padding:6px 8px;
|
||||
transition:box-shadow .1s linear;
|
||||
width:calc(100% - 32px);
|
||||
}
|
||||
@media (prefers-reduced-motion:reduce){
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__password .editor-post-visibility__password-input[type=text]{
|
||||
transition-delay:0s;
|
||||
transition-duration:0s;
|
||||
}
|
||||
}
|
||||
@media (min-width:600px){
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__password .editor-post-visibility__password-input[type=text]{
|
||||
font-size:13px;
|
||||
line-height:normal;
|
||||
}
|
||||
}
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__password .editor-post-visibility__password-input[type=text]:focus{
|
||||
border-color:var(--wp-admin-theme-color);
|
||||
box-shadow:0 0 0 1px var(--wp-admin-theme-color);
|
||||
outline:2px solid transparent;
|
||||
}
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__password .editor-post-visibility__password-input[type=text]::-webkit-input-placeholder{
|
||||
color:rgba(30,30,30,.62);
|
||||
}
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__password .editor-post-visibility__password-input[type=text]::-moz-placeholder{
|
||||
color:rgba(30,30,30,.62);
|
||||
opacity:1;
|
||||
}
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__password .editor-post-visibility__password-input[type=text]:-ms-input-placeholder{
|
||||
color:rgba(30,30,30,.62);
|
||||
}
|
||||
|
||||
.editor-post-trash.components-button{
|
||||
flex-grow:1;
|
||||
justify-content:center;
|
||||
}
|
||||
|
||||
.table-of-contents__popover.components-popover .components-popover__content{
|
||||
min-width:380px;
|
||||
}
|
||||
|
||||
.components-popover.table-of-contents__popover{
|
||||
z-index:99998;
|
||||
}
|
||||
|
||||
.table-of-contents__popover .components-popover__content{
|
||||
padding:16px;
|
||||
}
|
||||
@media (min-width:600px){
|
||||
.table-of-contents__popover .components-popover__content{
|
||||
max-height:calc(100vh - 120px);
|
||||
overflow-y:auto;
|
||||
}
|
||||
}
|
||||
.table-of-contents__popover hr{
|
||||
margin:10px -16px 0;
|
||||
}
|
||||
|
||||
.table-of-contents__wrapper:focus:before{
|
||||
bottom:0;
|
||||
box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
|
||||
content:"";
|
||||
display:block;
|
||||
left:0;
|
||||
pointer-events:none;
|
||||
position:absolute;
|
||||
right:0;
|
||||
top:0;
|
||||
}
|
||||
|
||||
.table-of-contents__counts{
|
||||
display:flex;
|
||||
flex-wrap:wrap;
|
||||
margin:-8px 0 0;
|
||||
}
|
||||
|
||||
.table-of-contents__count{
|
||||
color:#1e1e1e;
|
||||
display:flex;
|
||||
flex-basis:33%;
|
||||
flex-direction:column;
|
||||
font-size:13px;
|
||||
margin-bottom:0;
|
||||
margin-top:8px;
|
||||
padding-left:8px;
|
||||
}
|
||||
.table-of-contents__count:nth-child(4n){
|
||||
padding-left:0;
|
||||
}
|
||||
|
||||
.table-of-contents__number,.table-of-contents__popover .word-count{
|
||||
color:#1e1e1e;
|
||||
font-size:21px;
|
||||
font-weight:400;
|
||||
line-height:30px;
|
||||
}
|
||||
|
||||
.table-of-contents__title{
|
||||
display:block;
|
||||
font-size:15px;
|
||||
font-weight:600;
|
||||
margin-top:20px;
|
||||
}
|
||||
|
||||
.editor-template-validation-notice{
|
||||
align-items:center;
|
||||
display:flex;
|
||||
justify-content:space-between;
|
||||
}
|
||||
.editor-template-validation-notice .components-button{
|
||||
margin-right:5px;
|
||||
}
|
||||
1
CTF/Smol/wordpress.old/wp-includes/css/dist/editor/style-rtl.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/editor/style-rtl.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
840
CTF/Smol/wordpress.old/wp-includes/css/dist/editor/style.css
vendored
Normal file
840
CTF/Smol/wordpress.old/wp-includes/css/dist/editor/style.css
vendored
Normal file
@@ -0,0 +1,840 @@
|
||||
@charset "UTF-8";
|
||||
: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;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
:root{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
|
||||
.editor-autocompleters__user .editor-autocompleters__no-avatar:before{
|
||||
content:"";
|
||||
font:normal 20px/1 dashicons;
|
||||
margin-right:5px;
|
||||
vertical-align:middle;
|
||||
}
|
||||
.editor-autocompleters__user .editor-autocompleters__user-avatar{
|
||||
flex-grow:0;
|
||||
flex-shrink:0;
|
||||
height:24px;
|
||||
margin-right:8px;
|
||||
max-width:none;
|
||||
width:24px;
|
||||
}
|
||||
.editor-autocompleters__user .editor-autocompleters__user-name{
|
||||
flex-grow:1;
|
||||
flex-shrink:0;
|
||||
max-width:200px;
|
||||
overflow:hidden;
|
||||
text-overflow:ellipsis;
|
||||
white-space:nowrap;
|
||||
}
|
||||
.editor-autocompleters__user .editor-autocompleters__user-slug{
|
||||
color:#757575;
|
||||
flex-grow:0;
|
||||
flex-shrink:0;
|
||||
margin-left:8px;
|
||||
max-width:100px;
|
||||
overflow:none;
|
||||
text-overflow:ellipsis;
|
||||
white-space:nowrap;
|
||||
}
|
||||
.editor-autocompleters__user:hover .editor-autocompleters__user-slug{
|
||||
color:var(--wp-admin-theme-color);
|
||||
}
|
||||
|
||||
.document-outline{
|
||||
margin:20px 0;
|
||||
}
|
||||
.document-outline ul{
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
|
||||
.document-outline__item{
|
||||
display:flex;
|
||||
margin:4px 0;
|
||||
}
|
||||
.document-outline__item a{
|
||||
text-decoration:none;
|
||||
}
|
||||
.document-outline__item .document-outline__emdash:before{
|
||||
color:#ddd;
|
||||
margin-right:4px;
|
||||
}
|
||||
.document-outline__item.is-h2 .document-outline__emdash:before{
|
||||
content:"—";
|
||||
}
|
||||
.document-outline__item.is-h3 .document-outline__emdash:before{
|
||||
content:"——";
|
||||
}
|
||||
.document-outline__item.is-h4 .document-outline__emdash:before{
|
||||
content:"———";
|
||||
}
|
||||
.document-outline__item.is-h5 .document-outline__emdash:before{
|
||||
content:"————";
|
||||
}
|
||||
.document-outline__item.is-h6 .document-outline__emdash:before{
|
||||
content:"—————";
|
||||
}
|
||||
|
||||
.document-outline__button{
|
||||
align-items:flex-start;
|
||||
background:none;
|
||||
border:none;
|
||||
border-radius:2px;
|
||||
color:#1e1e1e;
|
||||
cursor:pointer;
|
||||
display:flex;
|
||||
margin:0 0 0 -1px;
|
||||
padding:2px 5px 2px 1px;
|
||||
text-align:left;
|
||||
}
|
||||
.document-outline__button:disabled{
|
||||
cursor:default;
|
||||
}
|
||||
.document-outline__button:focus{
|
||||
box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
|
||||
outline:2px solid transparent;
|
||||
}
|
||||
|
||||
.document-outline__level{
|
||||
background:#ddd;
|
||||
border-radius:3px;
|
||||
color:#1e1e1e;
|
||||
font-size:13px;
|
||||
margin-right:4px;
|
||||
padding:1px 6px;
|
||||
}
|
||||
.is-invalid .document-outline__level{
|
||||
background:#f0b849;
|
||||
}
|
||||
|
||||
.document-outline__item-content{
|
||||
padding:1px 0;
|
||||
}
|
||||
|
||||
.components-editor-notices__dismissible,.components-editor-notices__pinned{
|
||||
color:#1e1e1e;
|
||||
left:0;
|
||||
position:relative;
|
||||
right:0;
|
||||
top:0;
|
||||
}
|
||||
.components-editor-notices__dismissible .components-notice,.components-editor-notices__pinned .components-notice{
|
||||
border-bottom:1px solid rgba(0,0,0,.2);
|
||||
box-sizing:border-box;
|
||||
margin:0;
|
||||
min-height:60px;
|
||||
padding:0 12px;
|
||||
}
|
||||
.components-editor-notices__dismissible .components-notice .components-notice__dismiss,.components-editor-notices__pinned .components-notice .components-notice__dismiss{
|
||||
margin-top:12px;
|
||||
}
|
||||
|
||||
.entities-saved-states__find-entity{
|
||||
display:none;
|
||||
}
|
||||
@media (min-width:782px){
|
||||
.entities-saved-states__find-entity{
|
||||
display:block;
|
||||
}
|
||||
}
|
||||
|
||||
.entities-saved-states__find-entity-small{
|
||||
display:block;
|
||||
}
|
||||
@media (min-width:782px){
|
||||
.entities-saved-states__find-entity-small{
|
||||
display:none;
|
||||
}
|
||||
}
|
||||
|
||||
.entities-saved-states__panel-header{
|
||||
background:#fff;
|
||||
border-bottom:1px solid #ddd;
|
||||
box-sizing:border-box;
|
||||
height:60px;
|
||||
padding-left:8px;
|
||||
padding-right:8px;
|
||||
}
|
||||
|
||||
.entities-saved-states__text-prompt{
|
||||
padding:16px 16px 4px;
|
||||
}
|
||||
|
||||
.editor-error-boundary{
|
||||
box-shadow:0 .7px 1px rgba(0,0,0,.15),0 2.7px 3.8px -.2px rgba(0,0,0,.15),0 5.5px 7.8px -.3px rgba(0,0,0,.15),.1px 11.5px 16.4px -.5px rgba(0,0,0,.15);
|
||||
margin:60px auto auto;
|
||||
max-width:780px;
|
||||
padding:20px;
|
||||
}
|
||||
|
||||
.editor-post-excerpt__textarea{
|
||||
margin-bottom:10px;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
.editor-post-featured-image{
|
||||
padding:0;
|
||||
}
|
||||
.editor-post-featured-image .components-spinner{
|
||||
left:50%;
|
||||
margin-left:-9px;
|
||||
margin-top:-9px;
|
||||
position:absolute;
|
||||
top:50%;
|
||||
}
|
||||
.editor-post-featured-image .components-responsive-wrapper__content{
|
||||
max-width:100%;
|
||||
width:auto;
|
||||
}
|
||||
|
||||
.editor-post-featured-image__container{
|
||||
position:relative;
|
||||
}
|
||||
.editor-post-featured-image__container:focus .editor-post-featured-image__actions,.editor-post-featured-image__container:focus-within .editor-post-featured-image__actions,.editor-post-featured-image__container:hover .editor-post-featured-image__actions{
|
||||
opacity:1;
|
||||
}
|
||||
|
||||
.editor-post-featured-image__preview,.editor-post-featured-image__toggle{
|
||||
box-shadow:0 0 0 0 var(--wp-admin-theme-color);
|
||||
display:flex;
|
||||
justify-content:center;
|
||||
max-height:150px;
|
||||
overflow:hidden;
|
||||
padding:0;
|
||||
transition:all .1s ease-out;
|
||||
width:100%;
|
||||
}
|
||||
@media (prefers-reduced-motion:reduce){
|
||||
.editor-post-featured-image__preview,.editor-post-featured-image__toggle{
|
||||
transition-delay:0s;
|
||||
transition-duration:0s;
|
||||
}
|
||||
}
|
||||
|
||||
.editor-post-featured-image__preview{
|
||||
height:auto;
|
||||
}
|
||||
.editor-post-featured-image__preview .components-responsive-wrapper{
|
||||
background:#f0f0f0;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
.editor-post-featured-image__toggle{
|
||||
background-color:#f0f0f0;
|
||||
border-radius:2px;
|
||||
line-height:20px;
|
||||
min-height:90px;
|
||||
padding:8px 0;
|
||||
text-align:center;
|
||||
}
|
||||
.editor-post-featured-image__toggle:hover{
|
||||
background:#ddd;
|
||||
color:#1e1e1e;
|
||||
}
|
||||
|
||||
.editor-post-featured-image__actions{
|
||||
bottom:0;
|
||||
opacity:0;
|
||||
padding:8px;
|
||||
position:absolute;
|
||||
transition:opacity 50ms ease-out;
|
||||
}
|
||||
@media (prefers-reduced-motion:reduce){
|
||||
.editor-post-featured-image__actions{
|
||||
transition-delay:0s;
|
||||
transition-duration:0s;
|
||||
}
|
||||
}
|
||||
|
||||
.editor-post-featured-image__action{
|
||||
-webkit-backdrop-filter:blur(16px) saturate(180%);
|
||||
backdrop-filter:blur(16px) saturate(180%);
|
||||
background:hsla(0,0%,100%,.75);
|
||||
flex-grow:1;
|
||||
justify-content:center;
|
||||
}
|
||||
|
||||
[class].editor-post-format__suggestion{
|
||||
margin:4px 0 0;
|
||||
}
|
||||
|
||||
.editor-post-last-revision__title{
|
||||
font-weight:600;
|
||||
width:100%;
|
||||
}
|
||||
.editor-post-last-revision__title .dashicon{
|
||||
margin-right:5px;
|
||||
}
|
||||
|
||||
.components-button.editor-post-last-revision__title{
|
||||
height:100%;
|
||||
}
|
||||
.components-button.editor-post-last-revision__title:active,.components-button.editor-post-last-revision__title:hover{
|
||||
background:#f0f0f0;
|
||||
}
|
||||
.components-button.editor-post-last-revision__title:focus{
|
||||
border-radius:0;
|
||||
box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
|
||||
}
|
||||
|
||||
@media (min-width:600px){
|
||||
.editor-post-locked-modal{
|
||||
max-width:480px;
|
||||
}
|
||||
}
|
||||
|
||||
.editor-post-locked-modal__buttons{
|
||||
margin-top:24px;
|
||||
}
|
||||
|
||||
.editor-post-locked-modal__avatar{
|
||||
border-radius:2px;
|
||||
margin-top:16px;
|
||||
min-width:auto !important;
|
||||
}
|
||||
|
||||
.editor-post-publish-button__button.has-changes-dot:before{
|
||||
background:currentcolor;
|
||||
border-radius:4px;
|
||||
content:"";
|
||||
height:8px;
|
||||
margin:auto 5px auto -3px;
|
||||
width:8px;
|
||||
}
|
||||
|
||||
.editor-post-publish-panel{
|
||||
background:#fff;
|
||||
}
|
||||
|
||||
.editor-post-publish-panel__content{
|
||||
min-height:calc(100% - 144px);
|
||||
}
|
||||
.editor-post-publish-panel__content>.components-spinner{
|
||||
display:block;
|
||||
margin:100px auto 0;
|
||||
}
|
||||
|
||||
.editor-post-publish-panel__header{
|
||||
align-content:space-between;
|
||||
align-items:center;
|
||||
background:#fff;
|
||||
border-bottom:1px solid #ddd;
|
||||
display:flex;
|
||||
height:61px;
|
||||
padding-left:16px;
|
||||
padding-right:16px;
|
||||
}
|
||||
.editor-post-publish-panel__header .components-button{
|
||||
justify-content:center;
|
||||
width:100%;
|
||||
}
|
||||
.editor-post-publish-panel__header .has-icon{
|
||||
margin-left:auto;
|
||||
width:auto;
|
||||
}
|
||||
|
||||
.components-site-card{
|
||||
align-items:center;
|
||||
display:flex;
|
||||
margin:16px 0;
|
||||
}
|
||||
|
||||
.components-site-icon{
|
||||
border:none;
|
||||
border-radius:2px;
|
||||
height:36px;
|
||||
margin-right:12px;
|
||||
width:36px;
|
||||
}
|
||||
|
||||
.components-site-name{
|
||||
display:block;
|
||||
font-size:14px;
|
||||
}
|
||||
|
||||
.components-site-home{
|
||||
color:#757575;
|
||||
display:block;
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
.editor-post-publish-panel__header-cancel-button,.editor-post-publish-panel__header-publish-button{
|
||||
flex:1;
|
||||
}
|
||||
@media (min-width:480px){
|
||||
.editor-post-publish-panel__header-cancel-button,.editor-post-publish-panel__header-publish-button{
|
||||
max-width:160px;
|
||||
}
|
||||
}
|
||||
|
||||
.editor-post-publish-panel__header-publish-button{
|
||||
padding-right:4px;
|
||||
}
|
||||
|
||||
.editor-post-publish-panel__header-cancel-button{
|
||||
padding-left:4px;
|
||||
}
|
||||
|
||||
.editor-post-publish-panel__header-published{
|
||||
flex-grow:1;
|
||||
}
|
||||
|
||||
.editor-post-publish-panel__footer{
|
||||
padding:16px;
|
||||
}
|
||||
|
||||
.components-button.editor-post-publish-panel__toggle.is-primary{
|
||||
align-items:center;
|
||||
display:inline-flex;
|
||||
}
|
||||
.components-button.editor-post-publish-panel__toggle.is-primary.is-busy .dashicon{
|
||||
display:none;
|
||||
}
|
||||
.components-button.editor-post-publish-panel__toggle.is-primary .dashicon{
|
||||
margin-right:-4px;
|
||||
}
|
||||
|
||||
.editor-post-publish-panel__link{
|
||||
font-weight:400;
|
||||
padding-left:4px;
|
||||
}
|
||||
|
||||
.editor-post-publish-panel__prepublish{
|
||||
padding:16px;
|
||||
}
|
||||
.editor-post-publish-panel__prepublish strong{
|
||||
color:#1e1e1e;
|
||||
}
|
||||
.editor-post-publish-panel__prepublish .components-panel__body{
|
||||
background:#fff;
|
||||
margin-left:-16px;
|
||||
margin-right:-16px;
|
||||
}
|
||||
.editor-post-publish-panel__prepublish .editor-post-visibility__dialog-legend{
|
||||
display:none;
|
||||
}
|
||||
|
||||
.post-publish-panel__postpublish .components-panel__body{
|
||||
border-bottom:1px solid #e0e0e0;
|
||||
border-top:none;
|
||||
}
|
||||
|
||||
.post-publish-panel__postpublish-buttons{
|
||||
align-content:space-between;
|
||||
display:flex;
|
||||
flex-wrap:wrap;
|
||||
margin:-5px;
|
||||
}
|
||||
.post-publish-panel__postpublish-buttons>*{
|
||||
flex-grow:1;
|
||||
margin:5px;
|
||||
}
|
||||
.post-publish-panel__postpublish-buttons .components-button{
|
||||
flex:1;
|
||||
height:auto;
|
||||
justify-content:center;
|
||||
line-height:1.6;
|
||||
padding:3px 10px 4px;
|
||||
text-align:center;
|
||||
white-space:normal;
|
||||
}
|
||||
.post-publish-panel__postpublish-buttons .components-clipboard-button{
|
||||
width:100%;
|
||||
}
|
||||
|
||||
.post-publish-panel__postpublish-post-address-container{
|
||||
align-items:flex-end;
|
||||
display:flex;
|
||||
margin-bottom:16px;
|
||||
}
|
||||
.post-publish-panel__postpublish-post-address-container .post-publish-panel__postpublish-post-address{
|
||||
flex:1;
|
||||
}
|
||||
.post-publish-panel__postpublish-post-address-container input[readonly]{
|
||||
background:#ddd;
|
||||
overflow:hidden;
|
||||
padding:10px;
|
||||
text-overflow:ellipsis;
|
||||
}
|
||||
|
||||
.post-publish-panel__postpublish-post-address__copy-button-wrap{
|
||||
flex-shrink:0;
|
||||
margin-left:8px;
|
||||
}
|
||||
.post-publish-panel__postpublish-post-address__copy-button-wrap .components-button{
|
||||
height:38px;
|
||||
}
|
||||
|
||||
.post-publish-panel__postpublish-header{
|
||||
font-weight:500;
|
||||
}
|
||||
|
||||
.post-publish-panel__postpublish-subheader{
|
||||
margin:0 0 8px;
|
||||
}
|
||||
|
||||
.post-publish-panel__tip{
|
||||
color:#f0b849;
|
||||
}
|
||||
|
||||
@media screen and (max-width:782px){
|
||||
.post-publish-panel__postpublish-post-address__button-wrap .components-button{
|
||||
height:40px;
|
||||
}
|
||||
}
|
||||
.editor-post-saved-state{
|
||||
align-items:center;
|
||||
color:#757575;
|
||||
display:flex;
|
||||
overflow:hidden;
|
||||
padding:12px 4px;
|
||||
white-space:nowrap;
|
||||
width:28px;
|
||||
}
|
||||
.editor-post-saved-state.is-saved[aria-disabled=true],.editor-post-saved-state.is-saved[aria-disabled=true]:hover,.editor-post-saved-state.is-saving[aria-disabled=true],.editor-post-saved-state.is-saving[aria-disabled=true]:hover{
|
||||
background:transparent;
|
||||
color:#757575;
|
||||
}
|
||||
.editor-post-saved-state svg{
|
||||
fill:currentColor;
|
||||
display:inline-block;
|
||||
flex:0 0 auto;
|
||||
margin-right:8px;
|
||||
}
|
||||
@media (min-width:600px){
|
||||
.editor-post-saved-state{
|
||||
padding:8px 12px;
|
||||
text-indent:inherit;
|
||||
width:auto;
|
||||
}
|
||||
.editor-post-saved-state svg{
|
||||
margin-right:0;
|
||||
}
|
||||
}
|
||||
|
||||
.editor-post-save-draft.has-text.has-icon svg{
|
||||
margin-right:0;
|
||||
}
|
||||
|
||||
.edit-post-sync-status{
|
||||
justify-content:flex-start;
|
||||
position:relative;
|
||||
width:100%;
|
||||
}
|
||||
.edit-post-sync-status>span{
|
||||
display:block;
|
||||
flex-shrink:0;
|
||||
width:45%;
|
||||
}
|
||||
.edit-post-sync-status>div{
|
||||
padding-left:12px;
|
||||
}
|
||||
|
||||
.editor-post-taxonomies__hierarchical-terms-list{
|
||||
margin-left:-6px;
|
||||
margin-top:-6px;
|
||||
max-height:14em;
|
||||
overflow:auto;
|
||||
padding-left:6px;
|
||||
padding-top:6px;
|
||||
}
|
||||
|
||||
.editor-post-taxonomies__hierarchical-terms-choice{
|
||||
margin-bottom:8px;
|
||||
}
|
||||
.editor-post-taxonomies__hierarchical-terms-choice:last-child{
|
||||
margin-bottom:4px;
|
||||
}
|
||||
|
||||
.editor-post-taxonomies__hierarchical-terms-subchoices{
|
||||
margin-left:16px;
|
||||
margin-top:8px;
|
||||
}
|
||||
|
||||
.editor-post-taxonomies__flat-term-most-used .editor-post-taxonomies__flat-term-most-used-label{
|
||||
margin-bottom:4px;
|
||||
}
|
||||
|
||||
.editor-post-taxonomies__flat-term-most-used-list{
|
||||
margin:0;
|
||||
}
|
||||
.editor-post-taxonomies__flat-term-most-used-list li{
|
||||
display:inline-block;
|
||||
margin-right:8px;
|
||||
}
|
||||
.editor-post-taxonomies__flat-term-most-used-list .components-button{
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
.edit-post-text-editor__body textarea.editor-post-text-editor{
|
||||
border:1px solid #949494;
|
||||
border-radius:0;
|
||||
box-shadow:none;
|
||||
display:block;
|
||||
font-family:Menlo,Consolas,monaco,monospace;
|
||||
font-size:16px !important;
|
||||
line-height:2.4;
|
||||
margin:0;
|
||||
min-height:200px;
|
||||
overflow:hidden;
|
||||
padding:16px;
|
||||
resize:none;
|
||||
transition:border .1s ease-out,box-shadow .1s linear;
|
||||
width:100%;
|
||||
}
|
||||
@media (prefers-reduced-motion:reduce){
|
||||
.edit-post-text-editor__body textarea.editor-post-text-editor{
|
||||
transition-delay:0s;
|
||||
transition-duration:0s;
|
||||
}
|
||||
}
|
||||
@media (min-width:600px){
|
||||
.edit-post-text-editor__body textarea.editor-post-text-editor{
|
||||
font-size:15px !important;
|
||||
padding:24px;
|
||||
}
|
||||
}
|
||||
.edit-post-text-editor__body textarea.editor-post-text-editor:focus{
|
||||
border-color:var(--wp-admin-theme-color);
|
||||
box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
|
||||
position:relative;
|
||||
}
|
||||
.edit-post-text-editor__body textarea.editor-post-text-editor::-webkit-input-placeholder{
|
||||
color:rgba(30,30,30,.62);
|
||||
}
|
||||
.edit-post-text-editor__body textarea.editor-post-text-editor::-moz-placeholder{
|
||||
color:rgba(30,30,30,.62);
|
||||
opacity:1;
|
||||
}
|
||||
.edit-post-text-editor__body textarea.editor-post-text-editor:-ms-input-placeholder{
|
||||
color:rgba(30,30,30,.62);
|
||||
}
|
||||
|
||||
.editor-post-url__link-label{
|
||||
font-size:13px;
|
||||
font-weight:400;
|
||||
margin:0;
|
||||
}
|
||||
.editor-post-url__link{
|
||||
direction:ltr;
|
||||
word-break:break-word;
|
||||
}
|
||||
.editor-post-url__link-slug{
|
||||
font-weight:600;
|
||||
}
|
||||
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio]{
|
||||
border:1px solid #1e1e1e;
|
||||
border-radius:2px;
|
||||
border-radius:50%;
|
||||
box-shadow:0 0 0 transparent;
|
||||
font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;
|
||||
font-size:16px;
|
||||
height:24px;
|
||||
line-height:normal;
|
||||
margin-right:12px;
|
||||
margin-top:2px;
|
||||
padding:6px 8px;
|
||||
transition:box-shadow .1s linear;
|
||||
transition:none;
|
||||
width:24px;
|
||||
}
|
||||
@media (prefers-reduced-motion:reduce){
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio]{
|
||||
transition-delay:0s;
|
||||
transition-duration:0s;
|
||||
}
|
||||
}
|
||||
@media (min-width:600px){
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio]{
|
||||
font-size:13px;
|
||||
line-height:normal;
|
||||
}
|
||||
}
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio]:focus{
|
||||
border-color:var(--wp-admin-theme-color);
|
||||
box-shadow:0 0 0 1px var(--wp-admin-theme-color);
|
||||
}
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio]::-webkit-input-placeholder{
|
||||
color:rgba(30,30,30,.62);
|
||||
}
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio]::-moz-placeholder{
|
||||
color:rgba(30,30,30,.62);
|
||||
opacity:1;
|
||||
}
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio]:-ms-input-placeholder{
|
||||
color:rgba(30,30,30,.62);
|
||||
}
|
||||
@media (min-width:600px){
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio]{
|
||||
height:20px;
|
||||
width:20px;
|
||||
}
|
||||
}
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio]:checked:before{
|
||||
background-color:#fff;
|
||||
border:4px solid #fff;
|
||||
box-sizing:inherit;
|
||||
height:8px;
|
||||
margin:0;
|
||||
transform:translate(7px, 7px);
|
||||
width:8px;
|
||||
}
|
||||
@media (min-width:600px){
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio]:checked:before{
|
||||
transform:translate(5px, 5px);
|
||||
}
|
||||
}
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio]:focus{
|
||||
box-shadow:0 0 0 2px #fff, 0 0 0 4px var(--wp-admin-theme-color);
|
||||
outline:2px solid transparent;
|
||||
}
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio]:checked{
|
||||
background:var(--wp-admin-theme-color);
|
||||
border-color:var(--wp-admin-theme-color);
|
||||
}
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__info{
|
||||
color:#757575;
|
||||
margin-left:36px;
|
||||
margin-top:.5em;
|
||||
}
|
||||
@media (min-width:600px){
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__info{
|
||||
margin-left:32px;
|
||||
}
|
||||
}
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__choice:last-child .editor-post-visibility__info{
|
||||
margin-bottom:0;
|
||||
}
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__password .editor-post-visibility__password-input[type=text]{
|
||||
border:1px solid #949494;
|
||||
border-radius:2px;
|
||||
box-shadow:0 0 0 transparent;
|
||||
font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;
|
||||
font-size:16px;
|
||||
line-height:normal;
|
||||
margin-left:32px;
|
||||
padding:6px 8px;
|
||||
transition:box-shadow .1s linear;
|
||||
width:calc(100% - 32px);
|
||||
}
|
||||
@media (prefers-reduced-motion:reduce){
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__password .editor-post-visibility__password-input[type=text]{
|
||||
transition-delay:0s;
|
||||
transition-duration:0s;
|
||||
}
|
||||
}
|
||||
@media (min-width:600px){
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__password .editor-post-visibility__password-input[type=text]{
|
||||
font-size:13px;
|
||||
line-height:normal;
|
||||
}
|
||||
}
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__password .editor-post-visibility__password-input[type=text]:focus{
|
||||
border-color:var(--wp-admin-theme-color);
|
||||
box-shadow:0 0 0 1px var(--wp-admin-theme-color);
|
||||
outline:2px solid transparent;
|
||||
}
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__password .editor-post-visibility__password-input[type=text]::-webkit-input-placeholder{
|
||||
color:rgba(30,30,30,.62);
|
||||
}
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__password .editor-post-visibility__password-input[type=text]::-moz-placeholder{
|
||||
color:rgba(30,30,30,.62);
|
||||
opacity:1;
|
||||
}
|
||||
.editor-post-visibility__fieldset .editor-post-visibility__password .editor-post-visibility__password-input[type=text]:-ms-input-placeholder{
|
||||
color:rgba(30,30,30,.62);
|
||||
}
|
||||
|
||||
.editor-post-trash.components-button{
|
||||
flex-grow:1;
|
||||
justify-content:center;
|
||||
}
|
||||
|
||||
.table-of-contents__popover.components-popover .components-popover__content{
|
||||
min-width:380px;
|
||||
}
|
||||
|
||||
.components-popover.table-of-contents__popover{
|
||||
z-index:99998;
|
||||
}
|
||||
|
||||
.table-of-contents__popover .components-popover__content{
|
||||
padding:16px;
|
||||
}
|
||||
@media (min-width:600px){
|
||||
.table-of-contents__popover .components-popover__content{
|
||||
max-height:calc(100vh - 120px);
|
||||
overflow-y:auto;
|
||||
}
|
||||
}
|
||||
.table-of-contents__popover hr{
|
||||
margin:10px -16px 0;
|
||||
}
|
||||
|
||||
.table-of-contents__wrapper:focus:before{
|
||||
bottom:0;
|
||||
box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
|
||||
content:"";
|
||||
display:block;
|
||||
left:0;
|
||||
pointer-events:none;
|
||||
position:absolute;
|
||||
right:0;
|
||||
top:0;
|
||||
}
|
||||
|
||||
.table-of-contents__counts{
|
||||
display:flex;
|
||||
flex-wrap:wrap;
|
||||
margin:-8px 0 0;
|
||||
}
|
||||
|
||||
.table-of-contents__count{
|
||||
color:#1e1e1e;
|
||||
display:flex;
|
||||
flex-basis:33%;
|
||||
flex-direction:column;
|
||||
font-size:13px;
|
||||
margin-bottom:0;
|
||||
margin-top:8px;
|
||||
padding-right:8px;
|
||||
}
|
||||
.table-of-contents__count:nth-child(4n){
|
||||
padding-right:0;
|
||||
}
|
||||
|
||||
.table-of-contents__number,.table-of-contents__popover .word-count{
|
||||
color:#1e1e1e;
|
||||
font-size:21px;
|
||||
font-weight:400;
|
||||
line-height:30px;
|
||||
}
|
||||
|
||||
.table-of-contents__title{
|
||||
display:block;
|
||||
font-size:15px;
|
||||
font-weight:600;
|
||||
margin-top:20px;
|
||||
}
|
||||
|
||||
.editor-template-validation-notice{
|
||||
align-items:center;
|
||||
display:flex;
|
||||
justify-content:space-between;
|
||||
}
|
||||
.editor-template-validation-notice .components-button{
|
||||
margin-left:5px;
|
||||
}
|
||||
1
CTF/Smol/wordpress.old/wp-includes/css/dist/editor/style.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/editor/style.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
69
CTF/Smol/wordpress.old/wp-includes/css/dist/format-library/style-rtl.css
vendored
Normal file
69
CTF/Smol/wordpress.old/wp-includes/css/dist/format-library/style-rtl.css
vendored
Normal file
@@ -0,0 +1,69 @@
|
||||
: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;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
:root{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
|
||||
.block-editor-format-toolbar__image-popover{
|
||||
z-index:159990;
|
||||
}
|
||||
.block-editor-format-toolbar__image-popover .block-editor-format-toolbar__image-container-value{
|
||||
margin:7px;
|
||||
max-width:500px;
|
||||
min-width:150px;
|
||||
}
|
||||
.block-editor-format-toolbar__image-popover .block-editor-format-toolbar__image-container-button{
|
||||
height:30px;
|
||||
margin-bottom:8px;
|
||||
margin-left:8px;
|
||||
}
|
||||
|
||||
.block-editor-format-toolbar__link-container-content{
|
||||
display:flex;
|
||||
}
|
||||
|
||||
.block-editor-format-toolbar__link-container-value{
|
||||
flex-grow:1;
|
||||
flex-shrink:1;
|
||||
margin:7px;
|
||||
max-width:500px;
|
||||
min-width:150px;
|
||||
overflow:hidden;
|
||||
text-overflow:ellipsis;
|
||||
white-space:nowrap;
|
||||
}
|
||||
.block-editor-format-toolbar__link-container-value.has-invalid-link{
|
||||
color:#cc1818;
|
||||
}
|
||||
|
||||
.components-inline-color-popover .components-popover__content .components-tab-panel__tab-content{
|
||||
padding:16px;
|
||||
}
|
||||
.components-inline-color-popover .components-popover__content .components-color-palette{
|
||||
margin-top:.6rem;
|
||||
}
|
||||
.components-inline-color-popover .components-popover__content .components-base-control__title{
|
||||
color:#191e23;
|
||||
display:block;
|
||||
font-weight:600;
|
||||
margin-bottom:16px;
|
||||
}
|
||||
.components-inline-color-popover .components-popover__content .component-color-indicator{
|
||||
vertical-align:text-bottom;
|
||||
}
|
||||
|
||||
.block-editor-format-toolbar__language-popover .components-popover__content{
|
||||
padding:1rem;
|
||||
width:auto;
|
||||
}
|
||||
1
CTF/Smol/wordpress.old/wp-includes/css/dist/format-library/style-rtl.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/format-library/style-rtl.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
: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}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.block-editor-format-toolbar__image-popover{z-index:159990}.block-editor-format-toolbar__image-popover .block-editor-format-toolbar__image-container-value{margin:7px;max-width:500px;min-width:150px}.block-editor-format-toolbar__image-popover .block-editor-format-toolbar__image-container-button{height:30px;margin-bottom:8px;margin-left:8px}.block-editor-format-toolbar__link-container-content{display:flex}.block-editor-format-toolbar__link-container-value{flex-grow:1;flex-shrink:1;margin:7px;max-width:500px;min-width:150px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.block-editor-format-toolbar__link-container-value.has-invalid-link{color:#cc1818}.components-inline-color-popover .components-popover__content .components-tab-panel__tab-content{padding:16px}.components-inline-color-popover .components-popover__content .components-color-palette{margin-top:.6rem}.components-inline-color-popover .components-popover__content .components-base-control__title{color:#191e23;display:block;font-weight:600;margin-bottom:16px}.components-inline-color-popover .components-popover__content .component-color-indicator{vertical-align:text-bottom}.block-editor-format-toolbar__language-popover .components-popover__content{padding:1rem;width:auto}
|
||||
69
CTF/Smol/wordpress.old/wp-includes/css/dist/format-library/style.css
vendored
Normal file
69
CTF/Smol/wordpress.old/wp-includes/css/dist/format-library/style.css
vendored
Normal file
@@ -0,0 +1,69 @@
|
||||
: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;
|
||||
}
|
||||
@media (min-resolution:192dpi){
|
||||
:root{
|
||||
--wp-admin-border-width-focus:1.5px;
|
||||
}
|
||||
}
|
||||
|
||||
.block-editor-format-toolbar__image-popover{
|
||||
z-index:159990;
|
||||
}
|
||||
.block-editor-format-toolbar__image-popover .block-editor-format-toolbar__image-container-value{
|
||||
margin:7px;
|
||||
max-width:500px;
|
||||
min-width:150px;
|
||||
}
|
||||
.block-editor-format-toolbar__image-popover .block-editor-format-toolbar__image-container-button{
|
||||
height:30px;
|
||||
margin-bottom:8px;
|
||||
margin-right:8px;
|
||||
}
|
||||
|
||||
.block-editor-format-toolbar__link-container-content{
|
||||
display:flex;
|
||||
}
|
||||
|
||||
.block-editor-format-toolbar__link-container-value{
|
||||
flex-grow:1;
|
||||
flex-shrink:1;
|
||||
margin:7px;
|
||||
max-width:500px;
|
||||
min-width:150px;
|
||||
overflow:hidden;
|
||||
text-overflow:ellipsis;
|
||||
white-space:nowrap;
|
||||
}
|
||||
.block-editor-format-toolbar__link-container-value.has-invalid-link{
|
||||
color:#cc1818;
|
||||
}
|
||||
|
||||
.components-inline-color-popover .components-popover__content .components-tab-panel__tab-content{
|
||||
padding:16px;
|
||||
}
|
||||
.components-inline-color-popover .components-popover__content .components-color-palette{
|
||||
margin-top:.6rem;
|
||||
}
|
||||
.components-inline-color-popover .components-popover__content .components-base-control__title{
|
||||
color:#191e23;
|
||||
display:block;
|
||||
font-weight:600;
|
||||
margin-bottom:16px;
|
||||
}
|
||||
.components-inline-color-popover .components-popover__content .component-color-indicator{
|
||||
vertical-align:text-bottom;
|
||||
}
|
||||
|
||||
.block-editor-format-toolbar__language-popover .components-popover__content{
|
||||
padding:1rem;
|
||||
width:auto;
|
||||
}
|
||||
1
CTF/Smol/wordpress.old/wp-includes/css/dist/format-library/style.min.css
vendored
Normal file
1
CTF/Smol/wordpress.old/wp-includes/css/dist/format-library/style.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
: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}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.block-editor-format-toolbar__image-popover{z-index:159990}.block-editor-format-toolbar__image-popover .block-editor-format-toolbar__image-container-value{margin:7px;max-width:500px;min-width:150px}.block-editor-format-toolbar__image-popover .block-editor-format-toolbar__image-container-button{height:30px;margin-bottom:8px;margin-right:8px}.block-editor-format-toolbar__link-container-content{display:flex}.block-editor-format-toolbar__link-container-value{flex-grow:1;flex-shrink:1;margin:7px;max-width:500px;min-width:150px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.block-editor-format-toolbar__link-container-value.has-invalid-link{color:#cc1818}.components-inline-color-popover .components-popover__content .components-tab-panel__tab-content{padding:16px}.components-inline-color-popover .components-popover__content .components-color-palette{margin-top:.6rem}.components-inline-color-popover .components-popover__content .components-base-control__title{color:#191e23;display:block;font-weight:600;margin-bottom:16px}.components-inline-color-popover .components-popover__content .component-color-indicator{vertical-align:text-bottom}.block-editor-format-toolbar__language-popover .components-popover__content{padding:1rem;width:auto}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user