init
This commit is contained in:
commit
ff6f6c80cd
1709 changed files with 840760 additions and 0 deletions
1141
wp-includes/css/admin-bar-rtl.css
Normal file
1141
wp-includes/css/admin-bar-rtl.css
Normal file
File diff suppressed because it is too large
Load diff
2
wp-includes/css/admin-bar-rtl.min.css
vendored
Normal file
2
wp-includes/css/admin-bar-rtl.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1141
wp-includes/css/admin-bar.css
Normal file
1141
wp-includes/css/admin-bar.css
Normal file
File diff suppressed because it is too large
Load diff
2
wp-includes/css/admin-bar.min.css
vendored
Normal file
2
wp-includes/css/admin-bar.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
394
wp-includes/css/buttons-rtl.css
Normal file
394
wp-includes/css/buttons-rtl.css
Normal file
|
@ -0,0 +1,394 @@
|
|||
/* ----------------------------------------------------------------------------
|
||||
|
||||
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: 26px;
|
||||
height: 28px;
|
||||
margin: 0;
|
||||
padding: 0 10px 1px;
|
||||
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 {
|
||||
height: 30px;
|
||||
line-height: 28px;
|
||||
padding: 0 12px 2px;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.button-small,
|
||||
.wp-core-ui .button-group.button-small .button {
|
||||
height: 24px;
|
||||
line-height: 22px;
|
||||
padding: 0 8px 1px;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.button-hero,
|
||||
.wp-core-ui .button-group.button-hero .button {
|
||||
font-size: 14px;
|
||||
height: 46px;
|
||||
line-height: 44px;
|
||||
padding: 0 36px;
|
||||
}
|
||||
|
||||
.wp-core-ui .button:active,
|
||||
.wp-core-ui .button:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.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: #555;
|
||||
border-color: #cccccc;
|
||||
background: #f7f7f7;
|
||||
box-shadow: 0 1px 0 #cccccc;
|
||||
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,
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
background: #fafafa;
|
||||
border-color: #999;
|
||||
color: #23282d;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
border-color: #5b9dd9;
|
||||
box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
|
||||
}
|
||||
|
||||
.wp-core-ui .button.active,
|
||||
.wp-core-ui .button.active:hover,
|
||||
.wp-core-ui .button:active,
|
||||
.wp-core-ui .button-secondary:active {
|
||||
background: #eee;
|
||||
border-color: #999;
|
||||
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
|
||||
transform: translateY(1px);
|
||||
}
|
||||
|
||||
.wp-core-ui .button.active:focus {
|
||||
border-color: #5b9dd9;
|
||||
box-shadow:
|
||||
inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ),
|
||||
0 0 3px rgba( 0, 115, 170, .8 );
|
||||
}
|
||||
|
||||
.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: #a0a5aa !important;
|
||||
border-color: #ddd !important;
|
||||
background: #f7f7f7 !important;
|
||||
box-shadow: none !important;
|
||||
text-shadow: 0 1px 0 #fff !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;
|
||||
outline: none;
|
||||
cursor: pointer;
|
||||
text-align: right;
|
||||
/* Mimics the default link style in common.css */
|
||||
color: #0073aa;
|
||||
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: #00a0d2;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-link:focus {
|
||||
color: #124964;
|
||||
box-shadow:
|
||||
0 0 0 1px #5b9dd9,
|
||||
0 0 2px 1px rgba(30, 140, 190, .8);
|
||||
}
|
||||
|
||||
.wp-core-ui .button-link-delete {
|
||||
color: #a00;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-link-delete:hover,
|
||||
.wp-core-ui .button-link-delete:focus {
|
||||
color: #dc3232;
|
||||
}
|
||||
|
||||
.ie8 .wp-core-ui .button-link:focus {
|
||||
outline: #5b9dd9 solid 1px;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
3.0 - Primary Button Style
|
||||
---------------------------------------------------------------------------- */
|
||||
|
||||
.wp-core-ui .button-primary {
|
||||
background: #0085ba;
|
||||
border-color: #0073aa #006799 #006799;
|
||||
box-shadow: 0 1px 0 #006799;
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
text-shadow: 0 -1px 1px #006799,
|
||||
-1px 0 1px #006799,
|
||||
0 1px 1px #006799,
|
||||
1px 0 1px #006799;
|
||||
}
|
||||
|
||||
.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: #008ec2;
|
||||
border-color: #006799;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-primary.focus,
|
||||
.wp-core-ui .button-primary:focus {
|
||||
box-shadow: 0 1px 0 #0073aa,
|
||||
0 0 2px 1px #33b3db;
|
||||
}
|
||||
|
||||
.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: #0073aa;
|
||||
border-color: #006799;
|
||||
box-shadow: inset 0 2px 0 #006799;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.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: #66c6e4 !important;
|
||||
background: #008ec2 !important;
|
||||
border-color: #007cb2 !important;
|
||||
box-shadow: none !important;
|
||||
text-shadow: 0 -1px 0 rgba( 0, 0, 0, 0.1 ) !important;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.button-primary.button-hero {
|
||||
box-shadow: 0 2px 0 #006799;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.button-primary.button-hero.active,
|
||||
.wp-core-ui .button.button-primary.button-hero.active:hover,
|
||||
.wp-core-ui .button.button-primary.button-hero.active:focus,
|
||||
.wp-core-ui .button.button-primary.button-hero:active {
|
||||
box-shadow: inset 0 3px 0 #006799;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
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;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button-primary {
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button:hover {
|
||||
z-index: 20;
|
||||
}
|
||||
|
||||
.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:focus {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
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: 6px 14px;
|
||||
line-height: normal;
|
||||
font-size: 14px;
|
||||
vertical-align: middle;
|
||||
height: auto;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
#media-upload.wp-core-ui .button {
|
||||
padding: 0 10px 1px;
|
||||
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 {
|
||||
padding: 0 10px 1px;
|
||||
font-size: 13px;
|
||||
line-height: 26px;
|
||||
height: 28px;
|
||||
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 {
|
||||
height: 30px;
|
||||
line-height: 28px;
|
||||
padding: 0 12px 2px;
|
||||
}
|
||||
|
||||
}
|
2
wp-includes/css/buttons-rtl.min.css
vendored
Normal file
2
wp-includes/css/buttons-rtl.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
394
wp-includes/css/buttons.css
Normal file
394
wp-includes/css/buttons.css
Normal file
|
@ -0,0 +1,394 @@
|
|||
/* ----------------------------------------------------------------------------
|
||||
|
||||
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: 26px;
|
||||
height: 28px;
|
||||
margin: 0;
|
||||
padding: 0 10px 1px;
|
||||
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 {
|
||||
height: 30px;
|
||||
line-height: 28px;
|
||||
padding: 0 12px 2px;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.button-small,
|
||||
.wp-core-ui .button-group.button-small .button {
|
||||
height: 24px;
|
||||
line-height: 22px;
|
||||
padding: 0 8px 1px;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.button-hero,
|
||||
.wp-core-ui .button-group.button-hero .button {
|
||||
font-size: 14px;
|
||||
height: 46px;
|
||||
line-height: 44px;
|
||||
padding: 0 36px;
|
||||
}
|
||||
|
||||
.wp-core-ui .button:active,
|
||||
.wp-core-ui .button:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.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: #555;
|
||||
border-color: #cccccc;
|
||||
background: #f7f7f7;
|
||||
box-shadow: 0 1px 0 #cccccc;
|
||||
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,
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
background: #fafafa;
|
||||
border-color: #999;
|
||||
color: #23282d;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
border-color: #5b9dd9;
|
||||
box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
|
||||
}
|
||||
|
||||
.wp-core-ui .button.active,
|
||||
.wp-core-ui .button.active:hover,
|
||||
.wp-core-ui .button:active,
|
||||
.wp-core-ui .button-secondary:active {
|
||||
background: #eee;
|
||||
border-color: #999;
|
||||
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
|
||||
transform: translateY(1px);
|
||||
}
|
||||
|
||||
.wp-core-ui .button.active:focus {
|
||||
border-color: #5b9dd9;
|
||||
box-shadow:
|
||||
inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ),
|
||||
0 0 3px rgba( 0, 115, 170, .8 );
|
||||
}
|
||||
|
||||
.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: #a0a5aa !important;
|
||||
border-color: #ddd !important;
|
||||
background: #f7f7f7 !important;
|
||||
box-shadow: none !important;
|
||||
text-shadow: 0 1px 0 #fff !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;
|
||||
outline: none;
|
||||
cursor: pointer;
|
||||
text-align: left;
|
||||
/* Mimics the default link style in common.css */
|
||||
color: #0073aa;
|
||||
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: #00a0d2;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-link:focus {
|
||||
color: #124964;
|
||||
box-shadow:
|
||||
0 0 0 1px #5b9dd9,
|
||||
0 0 2px 1px rgba(30, 140, 190, .8);
|
||||
}
|
||||
|
||||
.wp-core-ui .button-link-delete {
|
||||
color: #a00;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-link-delete:hover,
|
||||
.wp-core-ui .button-link-delete:focus {
|
||||
color: #dc3232;
|
||||
}
|
||||
|
||||
.ie8 .wp-core-ui .button-link:focus {
|
||||
outline: #5b9dd9 solid 1px;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
3.0 - Primary Button Style
|
||||
---------------------------------------------------------------------------- */
|
||||
|
||||
.wp-core-ui .button-primary {
|
||||
background: #0085ba;
|
||||
border-color: #0073aa #006799 #006799;
|
||||
box-shadow: 0 1px 0 #006799;
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
text-shadow: 0 -1px 1px #006799,
|
||||
1px 0 1px #006799,
|
||||
0 1px 1px #006799,
|
||||
-1px 0 1px #006799;
|
||||
}
|
||||
|
||||
.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: #008ec2;
|
||||
border-color: #006799;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-primary.focus,
|
||||
.wp-core-ui .button-primary:focus {
|
||||
box-shadow: 0 1px 0 #0073aa,
|
||||
0 0 2px 1px #33b3db;
|
||||
}
|
||||
|
||||
.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: #0073aa;
|
||||
border-color: #006799;
|
||||
box-shadow: inset 0 2px 0 #006799;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.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: #66c6e4 !important;
|
||||
background: #008ec2 !important;
|
||||
border-color: #007cb2 !important;
|
||||
box-shadow: none !important;
|
||||
text-shadow: 0 -1px 0 rgba( 0, 0, 0, 0.1 ) !important;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.button-primary.button-hero {
|
||||
box-shadow: 0 2px 0 #006799;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.button-primary.button-hero.active,
|
||||
.wp-core-ui .button.button-primary.button-hero.active:hover,
|
||||
.wp-core-ui .button.button-primary.button-hero.active:focus,
|
||||
.wp-core-ui .button.button-primary.button-hero:active {
|
||||
box-shadow: inset 0 3px 0 #006799;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
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;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button-primary {
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button:hover {
|
||||
z-index: 20;
|
||||
}
|
||||
|
||||
.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:focus {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
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: 6px 14px;
|
||||
line-height: normal;
|
||||
font-size: 14px;
|
||||
vertical-align: middle;
|
||||
height: auto;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
#media-upload.wp-core-ui .button {
|
||||
padding: 0 10px 1px;
|
||||
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 {
|
||||
padding: 0 10px 1px;
|
||||
font-size: 13px;
|
||||
line-height: 26px;
|
||||
height: 28px;
|
||||
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 {
|
||||
height: 30px;
|
||||
line-height: 28px;
|
||||
padding: 0 12px 2px;
|
||||
}
|
||||
|
||||
}
|
2
wp-includes/css/buttons.min.css
vendored
Normal file
2
wp-includes/css/buttons.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
165
wp-includes/css/customize-preview-rtl.css
Normal file
165
wp-includes/css/customize-preview-rtl.css
Normal file
|
@ -0,0 +1,165 @@
|
|||
.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: 1em !important;
|
||||
font-size: 18px;
|
||||
z-index: 5;
|
||||
background: #0085ba !important;
|
||||
border-radius: 50%;
|
||||
border: 2px solid #fff;
|
||||
box-shadow: 0 2px 1px rgba(46,68,83,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 #006799,
|
||||
-1px 0 1px #006799,
|
||||
0 1px 1px #006799,
|
||||
1px 0 1px #006799;
|
||||
}
|
||||
.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: #008ec2 !important; /* matches primary buttons */
|
||||
}
|
||||
|
||||
.customize-partial-edit-shortcut button:focus {
|
||||
box-shadow: 0 0 0 2px #008ec2;
|
||||
}
|
||||
|
||||
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
wp-includes/css/customize-preview-rtl.min.css
vendored
Normal file
2
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:1em!important;font-size:18px;z-index:5;background:#0085ba!important;border-radius:50%;border:2px solid #fff;box-shadow:0 2px 1px rgba(46,68,83,.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 #006799,-1px 0 1px #006799,0 1px 1px #006799,1px 0 1px #006799}.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:#008ec2!important}.customize-partial-edit-shortcut button:focus{box-shadow:0 0 0 2px #008ec2}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(.215,.61,.355,1)}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(.215,.61,.355,1)}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}}
|
165
wp-includes/css/customize-preview.css
Normal file
165
wp-includes/css/customize-preview.css
Normal file
|
@ -0,0 +1,165 @@
|
|||
.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: 1em !important;
|
||||
font-size: 18px;
|
||||
z-index: 5;
|
||||
background: #0085ba !important;
|
||||
border-radius: 50%;
|
||||
border: 2px solid #fff;
|
||||
box-shadow: 0 2px 1px rgba(46,68,83,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 #006799,
|
||||
1px 0 1px #006799,
|
||||
0 1px 1px #006799,
|
||||
-1px 0 1px #006799;
|
||||
}
|
||||
.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: #008ec2 !important; /* matches primary buttons */
|
||||
}
|
||||
|
||||
.customize-partial-edit-shortcut button:focus {
|
||||
box-shadow: 0 0 0 2px #008ec2;
|
||||
}
|
||||
|
||||
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
wp-includes/css/customize-preview.min.css
vendored
Normal file
2
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:1em!important;font-size:18px;z-index:5;background:#0085ba!important;border-radius:50%;border:2px solid #fff;box-shadow:0 2px 1px rgba(46,68,83,.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 #006799,1px 0 1px #006799,0 1px 1px #006799,-1px 0 1px #006799}.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:#008ec2!important}.customize-partial-edit-shortcut button:focus{box-shadow:0 0 0 2px #008ec2}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(.215,.61,.355,1)}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(.215,.61,.355,1)}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}}
|
1026
wp-includes/css/dashicons.css
Normal file
1026
wp-includes/css/dashicons.css
Normal file
File diff suppressed because one or more lines are too long
2
wp-includes/css/dashicons.min.css
vendored
Normal file
2
wp-includes/css/dashicons.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1023
wp-includes/css/dist/block-library/editor-rtl.css
vendored
Normal file
1023
wp-includes/css/dist/block-library/editor-rtl.css
vendored
Normal file
File diff suppressed because it is too large
Load diff
1
wp-includes/css/dist/block-library/editor-rtl.min.css
vendored
Normal file
1
wp-includes/css/dist/block-library/editor-rtl.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1028
wp-includes/css/dist/block-library/editor.css
vendored
Normal file
1028
wp-includes/css/dist/block-library/editor.css
vendored
Normal file
File diff suppressed because it is too large
Load diff
1
wp-includes/css/dist/block-library/editor.min.css
vendored
Normal file
1
wp-includes/css/dist/block-library/editor.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
938
wp-includes/css/dist/block-library/style-rtl.css
vendored
Normal file
938
wp-includes/css/dist/block-library/style-rtl.css
vendored
Normal file
|
@ -0,0 +1,938 @@
|
|||
/**
|
||||
* Colors
|
||||
*/
|
||||
/**
|
||||
* Breakpoints & Media Queries
|
||||
*/
|
||||
/**
|
||||
* Often re-used variables
|
||||
*/
|
||||
/**
|
||||
* Breakpoint mixins
|
||||
*/
|
||||
/**
|
||||
* Long content fade mixin
|
||||
*
|
||||
* Creates a fading overlay to signify that the content is longer
|
||||
* than the space allows.
|
||||
*/
|
||||
/**
|
||||
* Button states and focus styles
|
||||
*/
|
||||
/**
|
||||
* Applies editor left position to the selector passed as argument
|
||||
*/
|
||||
/**
|
||||
* Applies editor right position to the selector passed as argument
|
||||
*/
|
||||
/**
|
||||
* Styles that are reused verbatim in a few places
|
||||
*/
|
||||
.wp-block-audio figcaption {
|
||||
margin-top: 0.5em;
|
||||
margin-bottom: 1em;
|
||||
color: #555d66;
|
||||
text-align: center;
|
||||
font-size: 13px; }
|
||||
|
||||
.wp-block-audio audio {
|
||||
width: 100%;
|
||||
min-width: 300px; }
|
||||
|
||||
.editor-block-list__layout .reusable-block-edit-panel {
|
||||
align-items: center;
|
||||
background: #f8f9f9;
|
||||
color: #555d66;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
||||
font-size: 13px;
|
||||
position: relative;
|
||||
top: -14px;
|
||||
margin: 0 -14px;
|
||||
padding: 8px 14px;
|
||||
position: relative;
|
||||
z-index: 7; }
|
||||
.editor-block-list__layout .editor-block-list__layout .reusable-block-edit-panel {
|
||||
margin: 0 -14px;
|
||||
padding: 8px 14px; }
|
||||
.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__spinner {
|
||||
margin: 0 5px; }
|
||||
.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__info {
|
||||
margin-left: auto; }
|
||||
.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__label {
|
||||
margin-left: 8px;
|
||||
white-space: nowrap;
|
||||
font-weight: 600; }
|
||||
.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__title {
|
||||
flex: 1 1 100%;
|
||||
font-size: 14px;
|
||||
height: 30px;
|
||||
margin: 4px 0 8px; }
|
||||
.editor-block-list__layout .reusable-block-edit-panel .components-button.reusable-block-edit-panel__button {
|
||||
flex-shrink: 0; }
|
||||
@media (min-width: 960px) {
|
||||
.editor-block-list__layout .reusable-block-edit-panel {
|
||||
flex-wrap: nowrap; }
|
||||
.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__title {
|
||||
margin: 0; }
|
||||
.editor-block-list__layout .reusable-block-edit-panel .components-button.reusable-block-edit-panel__button {
|
||||
margin: 0 5px 0 0; } }
|
||||
|
||||
.editor-block-list__layout .reusable-block-indicator {
|
||||
background: #fff;
|
||||
border-right: 1px dashed #e2e4e7;
|
||||
color: #555d66;
|
||||
border-bottom: 1px dashed #e2e4e7;
|
||||
top: -14px;
|
||||
height: 30px;
|
||||
padding: 4px;
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
width: 30px;
|
||||
left: -14px; }
|
||||
|
||||
.wp-block-button {
|
||||
color: #fff;
|
||||
margin-bottom: 1.5em; }
|
||||
.wp-block-button.aligncenter {
|
||||
text-align: center; }
|
||||
.wp-block-button.alignright {
|
||||
text-align: right; }
|
||||
|
||||
.wp-block-button__link {
|
||||
background-color: #32373c;
|
||||
border: none;
|
||||
border-radius: 28px;
|
||||
box-shadow: none;
|
||||
color: inherit;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
font-size: 18px;
|
||||
margin: 0;
|
||||
padding: 12px 24px;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
white-space: normal;
|
||||
overflow-wrap: break-word; }
|
||||
.wp-block-button__link:hover, .wp-block-button__link:focus, .wp-block-button__link:active {
|
||||
color: inherit; }
|
||||
|
||||
.is-style-squared .wp-block-button__link {
|
||||
border-radius: 0; }
|
||||
|
||||
.is-style-outline {
|
||||
color: #32373c; }
|
||||
.is-style-outline .wp-block-button__link {
|
||||
background: transparent;
|
||||
border: 2px solid currentcolor; }
|
||||
|
||||
.wp-block-categories.alignleft {
|
||||
margin-right: 2em; }
|
||||
|
||||
.wp-block-categories.alignright {
|
||||
margin-left: 2em; }
|
||||
|
||||
.wp-block-columns {
|
||||
display: flex;
|
||||
flex-wrap: wrap; }
|
||||
@media (min-width: 782px) {
|
||||
.wp-block-columns {
|
||||
flex-wrap: nowrap; } }
|
||||
|
||||
.wp-block-column {
|
||||
flex: 1;
|
||||
margin-bottom: 1em;
|
||||
flex-basis: 100%;
|
||||
min-width: 0;
|
||||
word-break: break-word;
|
||||
overflow-wrap: break-word; }
|
||||
@media (min-width: 600px) {
|
||||
.wp-block-column {
|
||||
flex-basis: 50%;
|
||||
flex-grow: 0; } }
|
||||
@media (min-width: 600px) {
|
||||
.wp-block-column:nth-child(odd) {
|
||||
margin-left: 32px; }
|
||||
.wp-block-column:nth-child(even) {
|
||||
margin-right: 32px; }
|
||||
.wp-block-column:not(:first-child) {
|
||||
margin-right: 32px; }
|
||||
.wp-block-column:not(:last-child) {
|
||||
margin-left: 32px; } }
|
||||
|
||||
.wp-block-cover-image,
|
||||
.wp-block-cover {
|
||||
position: relative;
|
||||
background-color: #000;
|
||||
background-size: cover;
|
||||
background-position: center center;
|
||||
min-height: 430px;
|
||||
width: 100%;
|
||||
margin: 0 0 1.5em 0;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
overflow: hidden; }
|
||||
.wp-block-cover-image.has-left-content,
|
||||
.wp-block-cover.has-left-content {
|
||||
justify-content: flex-start; }
|
||||
.wp-block-cover-image.has-left-content h2,
|
||||
.wp-block-cover-image.has-left-content .wp-block-cover-image-text,
|
||||
.wp-block-cover-image.has-left-content .wp-block-cover-text,
|
||||
.wp-block-cover.has-left-content h2,
|
||||
.wp-block-cover.has-left-content .wp-block-cover-image-text,
|
||||
.wp-block-cover.has-left-content .wp-block-cover-text {
|
||||
margin-right: 0;
|
||||
text-align: right; }
|
||||
.wp-block-cover-image.has-right-content,
|
||||
.wp-block-cover.has-right-content {
|
||||
justify-content: flex-end; }
|
||||
.wp-block-cover-image.has-right-content h2,
|
||||
.wp-block-cover-image.has-right-content .wp-block-cover-image-text,
|
||||
.wp-block-cover-image.has-right-content .wp-block-cover-text,
|
||||
.wp-block-cover.has-right-content h2,
|
||||
.wp-block-cover.has-right-content .wp-block-cover-image-text,
|
||||
.wp-block-cover.has-right-content .wp-block-cover-text {
|
||||
margin-left: 0;
|
||||
text-align: left; }
|
||||
.wp-block-cover-image h2,
|
||||
.wp-block-cover-image .wp-block-cover-image-text,
|
||||
.wp-block-cover-image .wp-block-cover-text,
|
||||
.wp-block-cover h2,
|
||||
.wp-block-cover .wp-block-cover-image-text,
|
||||
.wp-block-cover .wp-block-cover-text {
|
||||
color: #fff;
|
||||
font-size: 2em;
|
||||
line-height: 1.25;
|
||||
z-index: 1;
|
||||
margin-bottom: 0;
|
||||
max-width: 610px;
|
||||
padding: 14px;
|
||||
text-align: center; }
|
||||
.wp-block-cover-image h2 a,
|
||||
.wp-block-cover-image h2 a:hover,
|
||||
.wp-block-cover-image h2 a:focus,
|
||||
.wp-block-cover-image h2 a:active,
|
||||
.wp-block-cover-image .wp-block-cover-image-text a,
|
||||
.wp-block-cover-image .wp-block-cover-image-text a:hover,
|
||||
.wp-block-cover-image .wp-block-cover-image-text a:focus,
|
||||
.wp-block-cover-image .wp-block-cover-image-text a:active,
|
||||
.wp-block-cover-image .wp-block-cover-text a,
|
||||
.wp-block-cover-image .wp-block-cover-text a:hover,
|
||||
.wp-block-cover-image .wp-block-cover-text a:focus,
|
||||
.wp-block-cover-image .wp-block-cover-text a:active,
|
||||
.wp-block-cover h2 a,
|
||||
.wp-block-cover h2 a:hover,
|
||||
.wp-block-cover h2 a:focus,
|
||||
.wp-block-cover h2 a:active,
|
||||
.wp-block-cover .wp-block-cover-image-text a,
|
||||
.wp-block-cover .wp-block-cover-image-text a:hover,
|
||||
.wp-block-cover .wp-block-cover-image-text a:focus,
|
||||
.wp-block-cover .wp-block-cover-image-text a:active,
|
||||
.wp-block-cover .wp-block-cover-text a,
|
||||
.wp-block-cover .wp-block-cover-text a:hover,
|
||||
.wp-block-cover .wp-block-cover-text a:focus,
|
||||
.wp-block-cover .wp-block-cover-text a:active {
|
||||
color: #fff; }
|
||||
.wp-block-cover-image.has-parallax,
|
||||
.wp-block-cover.has-parallax {
|
||||
background-attachment: fixed; }
|
||||
@supports (-webkit-overflow-scrolling: touch) {
|
||||
.wp-block-cover-image.has-parallax,
|
||||
.wp-block-cover.has-parallax {
|
||||
background-attachment: scroll; } }
|
||||
.wp-block-cover-image.has-background-dim::before,
|
||||
.wp-block-cover.has-background-dim::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
background-color: inherit;
|
||||
opacity: 0.5;
|
||||
z-index: 1; }
|
||||
.wp-block-cover-image.has-background-dim.has-background-dim-10::before,
|
||||
.wp-block-cover.has-background-dim.has-background-dim-10::before {
|
||||
opacity: 0.1; }
|
||||
.wp-block-cover-image.has-background-dim.has-background-dim-20::before,
|
||||
.wp-block-cover.has-background-dim.has-background-dim-20::before {
|
||||
opacity: 0.2; }
|
||||
.wp-block-cover-image.has-background-dim.has-background-dim-30::before,
|
||||
.wp-block-cover.has-background-dim.has-background-dim-30::before {
|
||||
opacity: 0.3; }
|
||||
.wp-block-cover-image.has-background-dim.has-background-dim-40::before,
|
||||
.wp-block-cover.has-background-dim.has-background-dim-40::before {
|
||||
opacity: 0.4; }
|
||||
.wp-block-cover-image.has-background-dim.has-background-dim-50::before,
|
||||
.wp-block-cover.has-background-dim.has-background-dim-50::before {
|
||||
opacity: 0.5; }
|
||||
.wp-block-cover-image.has-background-dim.has-background-dim-60::before,
|
||||
.wp-block-cover.has-background-dim.has-background-dim-60::before {
|
||||
opacity: 0.6; }
|
||||
.wp-block-cover-image.has-background-dim.has-background-dim-70::before,
|
||||
.wp-block-cover.has-background-dim.has-background-dim-70::before {
|
||||
opacity: 0.7; }
|
||||
.wp-block-cover-image.has-background-dim.has-background-dim-80::before,
|
||||
.wp-block-cover.has-background-dim.has-background-dim-80::before {
|
||||
opacity: 0.8; }
|
||||
.wp-block-cover-image.has-background-dim.has-background-dim-90::before,
|
||||
.wp-block-cover.has-background-dim.has-background-dim-90::before {
|
||||
opacity: 0.9; }
|
||||
.wp-block-cover-image.has-background-dim.has-background-dim-100::before,
|
||||
.wp-block-cover.has-background-dim.has-background-dim-100::before {
|
||||
opacity: 1; }
|
||||
.wp-block-cover-image.alignleft, .wp-block-cover-image.alignright,
|
||||
.wp-block-cover.alignleft,
|
||||
.wp-block-cover.alignright {
|
||||
max-width: 305px;
|
||||
width: 100%; }
|
||||
.wp-block-cover-image::after,
|
||||
.wp-block-cover::after {
|
||||
display: block;
|
||||
content: "";
|
||||
font-size: 0;
|
||||
min-height: inherit; }
|
||||
@supports ((position: -webkit-sticky) or (position: sticky)) {
|
||||
.wp-block-cover-image::after,
|
||||
.wp-block-cover::after {
|
||||
content: none; } }
|
||||
.wp-block-cover-image.aligncenter, .wp-block-cover-image.alignleft, .wp-block-cover-image.alignright,
|
||||
.wp-block-cover.aligncenter,
|
||||
.wp-block-cover.alignleft,
|
||||
.wp-block-cover.alignright {
|
||||
display: flex; }
|
||||
|
||||
.wp-block-cover__video-background {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: 50%;
|
||||
transform: translateX(50%) translateY(-50%);
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 0;
|
||||
-o-object-fit: cover;
|
||||
object-fit: cover; }
|
||||
|
||||
.editor-block-list__block[data-type="core/embed"][data-align="left"] .editor-block-list__block-edit,
|
||||
.editor-block-list__block[data-type="core/embed"][data-align="right"] .editor-block-list__block-edit,
|
||||
.wp-block-embed.alignleft,
|
||||
.wp-block-embed.alignright {
|
||||
max-width: 360px;
|
||||
width: 100%; }
|
||||
|
||||
.wp-block-embed {
|
||||
margin-bottom: 1em; }
|
||||
.wp-block-embed figcaption {
|
||||
margin-top: 0.5em;
|
||||
margin-bottom: 1em;
|
||||
color: #555d66;
|
||||
text-align: center;
|
||||
font-size: 13px; }
|
||||
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper {
|
||||
position: relative; }
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper::before,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper::before,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper::before,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper::before,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper::before,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper::before,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper::before {
|
||||
content: "";
|
||||
display: block;
|
||||
padding-top: 50%; }
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper iframe,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper iframe,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper iframe,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper iframe,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper iframe,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper iframe {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
width: 100%;
|
||||
height: 100%; }
|
||||
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper::before {
|
||||
padding-top: 42.85%; }
|
||||
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper::before {
|
||||
padding-top: 50%; }
|
||||
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper::before {
|
||||
padding-top: 56.25%; }
|
||||
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper::before {
|
||||
padding-top: 75%; }
|
||||
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper::before {
|
||||
padding-top: 100%; }
|
||||
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-6 .wp-block-embed__wrapper::before {
|
||||
padding-top: 66.66%; }
|
||||
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper::before {
|
||||
padding-top: 200%; }
|
||||
|
||||
.wp-block-file {
|
||||
margin-bottom: 1.5em; }
|
||||
.wp-block-file.aligncenter {
|
||||
text-align: center; }
|
||||
.wp-block-file.alignright {
|
||||
text-align: right; }
|
||||
.wp-block-file .wp-block-file__button {
|
||||
background: #32373c;
|
||||
border-radius: 2em;
|
||||
color: #fff;
|
||||
font-size: 13px;
|
||||
padding: 0.5em 1em; }
|
||||
.wp-block-file a.wp-block-file__button {
|
||||
text-decoration: none; }
|
||||
.wp-block-file a.wp-block-file__button:hover, .wp-block-file a.wp-block-file__button:visited, .wp-block-file a.wp-block-file__button:focus, .wp-block-file a.wp-block-file__button:active {
|
||||
box-shadow: none;
|
||||
color: #fff;
|
||||
opacity: 0.85;
|
||||
text-decoration: none; }
|
||||
.wp-block-file * + .wp-block-file__button {
|
||||
margin-right: 0.75em; }
|
||||
|
||||
.wp-block-gallery {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
list-style-type: none;
|
||||
padding: 0; }
|
||||
.wp-block-gallery .blocks-gallery-image,
|
||||
.wp-block-gallery .blocks-gallery-item {
|
||||
margin: 0 0 16px 16px;
|
||||
display: flex;
|
||||
flex-grow: 1;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
position: relative; }
|
||||
.wp-block-gallery .blocks-gallery-image figure,
|
||||
.wp-block-gallery .blocks-gallery-item figure {
|
||||
margin: 0;
|
||||
height: 100%; }
|
||||
@supports ((position: -webkit-sticky) or (position: sticky)) {
|
||||
.wp-block-gallery .blocks-gallery-image figure,
|
||||
.wp-block-gallery .blocks-gallery-item figure {
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
justify-content: flex-start; } }
|
||||
.wp-block-gallery .blocks-gallery-image img,
|
||||
.wp-block-gallery .blocks-gallery-item img {
|
||||
display: block;
|
||||
max-width: 100%;
|
||||
height: auto; }
|
||||
.wp-block-gallery .blocks-gallery-image img,
|
||||
.wp-block-gallery .blocks-gallery-item img {
|
||||
width: 100%; }
|
||||
@supports ((position: -webkit-sticky) or (position: sticky)) {
|
||||
.wp-block-gallery .blocks-gallery-image img,
|
||||
.wp-block-gallery .blocks-gallery-item img {
|
||||
width: auto; } }
|
||||
.wp-block-gallery .blocks-gallery-image figcaption,
|
||||
.wp-block-gallery .blocks-gallery-item figcaption {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
max-height: 100%;
|
||||
overflow: auto;
|
||||
padding: 40px 10px 5px;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
font-size: 13px;
|
||||
background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.3) 60%, transparent); }
|
||||
.wp-block-gallery .blocks-gallery-image figcaption img,
|
||||
.wp-block-gallery .blocks-gallery-item figcaption img {
|
||||
display: inline; }
|
||||
.wp-block-gallery.is-cropped .blocks-gallery-image a,
|
||||
.wp-block-gallery.is-cropped .blocks-gallery-image img,
|
||||
.wp-block-gallery.is-cropped .blocks-gallery-item a,
|
||||
.wp-block-gallery.is-cropped .blocks-gallery-item img {
|
||||
width: 100%; }
|
||||
@supports ((position: -webkit-sticky) or (position: sticky)) {
|
||||
.wp-block-gallery.is-cropped .blocks-gallery-image a,
|
||||
.wp-block-gallery.is-cropped .blocks-gallery-image img,
|
||||
.wp-block-gallery.is-cropped .blocks-gallery-item a,
|
||||
.wp-block-gallery.is-cropped .blocks-gallery-item img {
|
||||
height: 100%;
|
||||
flex: 1;
|
||||
-o-object-fit: cover;
|
||||
object-fit: cover; } }
|
||||
.wp-block-gallery .blocks-gallery-image,
|
||||
.wp-block-gallery .blocks-gallery-item {
|
||||
width: calc((100% - 16px) / 2); }
|
||||
.wp-block-gallery .blocks-gallery-image:nth-of-type(even),
|
||||
.wp-block-gallery .blocks-gallery-item:nth-of-type(even) {
|
||||
margin-left: 0; }
|
||||
.wp-block-gallery.columns-1 .blocks-gallery-image,
|
||||
.wp-block-gallery.columns-1 .blocks-gallery-item {
|
||||
width: 100%;
|
||||
margin-left: 0; }
|
||||
@media (min-width: 600px) {
|
||||
.wp-block-gallery.columns-3 .blocks-gallery-image,
|
||||
.wp-block-gallery.columns-3 .blocks-gallery-item {
|
||||
width: calc((100% - 16px * 2) / 3);
|
||||
margin-left: 16px; }
|
||||
.wp-block-gallery.columns-4 .blocks-gallery-image,
|
||||
.wp-block-gallery.columns-4 .blocks-gallery-item {
|
||||
width: calc((100% - 16px * 3) / 4);
|
||||
margin-left: 16px; }
|
||||
.wp-block-gallery.columns-5 .blocks-gallery-image,
|
||||
.wp-block-gallery.columns-5 .blocks-gallery-item {
|
||||
width: calc((100% - 16px * 4) / 5);
|
||||
margin-left: 16px; }
|
||||
.wp-block-gallery.columns-6 .blocks-gallery-image,
|
||||
.wp-block-gallery.columns-6 .blocks-gallery-item {
|
||||
width: calc((100% - 16px * 5) / 6);
|
||||
margin-left: 16px; }
|
||||
.wp-block-gallery.columns-7 .blocks-gallery-image,
|
||||
.wp-block-gallery.columns-7 .blocks-gallery-item {
|
||||
width: calc((100% - 16px * 6) / 7);
|
||||
margin-left: 16px; }
|
||||
.wp-block-gallery.columns-8 .blocks-gallery-image,
|
||||
.wp-block-gallery.columns-8 .blocks-gallery-item {
|
||||
width: calc((100% - 16px * 7) / 8);
|
||||
margin-left: 16px; }
|
||||
.wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n),
|
||||
.wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n) {
|
||||
margin-left: 0; }
|
||||
.wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n),
|
||||
.wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n) {
|
||||
margin-left: 0; }
|
||||
.wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n),
|
||||
.wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n) {
|
||||
margin-left: 0; }
|
||||
.wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n),
|
||||
.wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n) {
|
||||
margin-left: 0; }
|
||||
.wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n),
|
||||
.wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n) {
|
||||
margin-left: 0; }
|
||||
.wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n),
|
||||
.wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n) {
|
||||
margin-left: 0; }
|
||||
.wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n),
|
||||
.wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n) {
|
||||
margin-left: 0; }
|
||||
.wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n),
|
||||
.wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n) {
|
||||
margin-left: 0; } }
|
||||
.wp-block-gallery .blocks-gallery-image:last-child,
|
||||
.wp-block-gallery .blocks-gallery-item:last-child {
|
||||
margin-left: 0; }
|
||||
.wp-block-gallery .blocks-gallery-item.has-add-item-button {
|
||||
width: 100%; }
|
||||
.wp-block-gallery.alignleft, .wp-block-gallery.alignright {
|
||||
max-width: 305px;
|
||||
width: 100%; }
|
||||
.wp-block-gallery.alignleft, .wp-block-gallery.aligncenter, .wp-block-gallery.alignright {
|
||||
display: flex; }
|
||||
.wp-block-gallery.aligncenter .blocks-gallery-item figure {
|
||||
justify-content: center; }
|
||||
|
||||
.wp-block-image {
|
||||
max-width: 100%;
|
||||
margin-bottom: 1em;
|
||||
margin-right: 0;
|
||||
margin-left: 0; }
|
||||
.wp-block-image img {
|
||||
max-width: 100%; }
|
||||
.wp-block-image.aligncenter {
|
||||
text-align: center; }
|
||||
.wp-block-image.alignfull img,
|
||||
.wp-block-image.alignwide img {
|
||||
width: 100%; }
|
||||
.wp-block-image .alignleft,
|
||||
.wp-block-image .alignright,
|
||||
.wp-block-image .aligncenter, .wp-block-image.is-resized {
|
||||
display: table;
|
||||
margin-right: 0;
|
||||
margin-left: 0; }
|
||||
.wp-block-image .alignleft > figcaption,
|
||||
.wp-block-image .alignright > figcaption,
|
||||
.wp-block-image .aligncenter > figcaption, .wp-block-image.is-resized > figcaption {
|
||||
display: table-caption;
|
||||
caption-side: bottom; }
|
||||
.wp-block-image .alignleft {
|
||||
float: left;
|
||||
margin-right: 1em; }
|
||||
.wp-block-image .alignright {
|
||||
float: right;
|
||||
margin-left: 1em; }
|
||||
.wp-block-image .aligncenter {
|
||||
margin-right: auto;
|
||||
margin-left: auto; }
|
||||
.wp-block-image figcaption {
|
||||
margin-top: 0.5em;
|
||||
margin-bottom: 1em;
|
||||
color: #555d66;
|
||||
text-align: center;
|
||||
font-size: 13px; }
|
||||
|
||||
.wp-block-latest-comments__comment {
|
||||
font-size: 15px;
|
||||
line-height: 1.1;
|
||||
list-style: none;
|
||||
margin-bottom: 1em; }
|
||||
.has-avatars .wp-block-latest-comments__comment {
|
||||
min-height: 36px;
|
||||
list-style: none; }
|
||||
.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta,
|
||||
.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt {
|
||||
margin-right: 52px; }
|
||||
.has-dates .wp-block-latest-comments__comment,
|
||||
.has-excerpts .wp-block-latest-comments__comment {
|
||||
line-height: 1.5; }
|
||||
|
||||
.wp-block-latest-comments__comment-excerpt p {
|
||||
font-size: 14px;
|
||||
line-height: 1.8;
|
||||
margin: 5px 0 20px; }
|
||||
|
||||
.wp-block-latest-comments__comment-date {
|
||||
color: #8f98a1;
|
||||
display: block;
|
||||
font-size: 12px; }
|
||||
|
||||
.wp-block-latest-comments .avatar,
|
||||
.wp-block-latest-comments__comment-avatar {
|
||||
border-radius: 24px;
|
||||
display: block;
|
||||
float: right;
|
||||
height: 40px;
|
||||
margin-left: 12px;
|
||||
width: 40px; }
|
||||
|
||||
.wp-block-latest-posts.alignleft {
|
||||
margin-right: 2em; }
|
||||
|
||||
.wp-block-latest-posts.alignright {
|
||||
margin-left: 2em; }
|
||||
|
||||
.wp-block-latest-posts.is-grid {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
padding: 0;
|
||||
list-style: none; }
|
||||
.wp-block-latest-posts.is-grid li {
|
||||
margin: 0 0 16px 16px;
|
||||
width: 100%; }
|
||||
|
||||
@media (min-width: 600px) {
|
||||
.wp-block-latest-posts.columns-2 li {
|
||||
width: calc((100% / 2) - 16px); }
|
||||
.wp-block-latest-posts.columns-3 li {
|
||||
width: calc((100% / 3) - 16px); }
|
||||
.wp-block-latest-posts.columns-4 li {
|
||||
width: calc((100% / 4) - 16px); }
|
||||
.wp-block-latest-posts.columns-5 li {
|
||||
width: calc((100% / 5) - 16px); }
|
||||
.wp-block-latest-posts.columns-6 li {
|
||||
width: calc((100% / 6) - 16px); } }
|
||||
|
||||
.wp-block-latest-posts__post-date {
|
||||
display: block;
|
||||
color: #6c7781;
|
||||
font-size: 13px; }
|
||||
|
||||
.wp-block-media-text {
|
||||
display: grid; }
|
||||
|
||||
.wp-block-media-text {
|
||||
grid-template-rows: auto;
|
||||
align-items: center;
|
||||
grid-template-areas: "media-text-media media-text-content";
|
||||
grid-template-columns: 50% auto; }
|
||||
.wp-block-media-text.has-media-on-the-right {
|
||||
grid-template-areas: "media-text-content media-text-media";
|
||||
grid-template-columns: auto 50%; }
|
||||
|
||||
.wp-block-media-text .wp-block-media-text__media {
|
||||
grid-area: media-text-media;
|
||||
margin: 0; }
|
||||
|
||||
.wp-block-media-text .wp-block-media-text__content {
|
||||
word-break: break-word;
|
||||
grid-area: media-text-content;
|
||||
padding: 0 8% 0 8%; }
|
||||
|
||||
.wp-block-media-text > figure > img,
|
||||
.wp-block-media-text > figure > video {
|
||||
max-width: unset;
|
||||
width: 100%;
|
||||
vertical-align: middle; }
|
||||
|
||||
/*
|
||||
* Here we here not able to use a mobile first CSS approach.
|
||||
* Custom widths are set using inline styles, and on mobile,
|
||||
* we need 100% width, so we use important to overwrite the inline style.
|
||||
* If the style were set on mobile first, on desktop styles,
|
||||
* we would have no way of setting the style again to the inline style.
|
||||
*/
|
||||
@media (max-width: 600px) {
|
||||
.wp-block-media-text.is-stacked-on-mobile {
|
||||
grid-template-columns: 100% !important;
|
||||
grid-template-areas: "media-text-media" "media-text-content"; }
|
||||
.wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right {
|
||||
grid-template-areas: "media-text-content" "media-text-media"; } }
|
||||
|
||||
p.is-small-text {
|
||||
font-size: 14px; }
|
||||
|
||||
p.is-regular-text {
|
||||
font-size: 16px; }
|
||||
|
||||
p.is-large-text {
|
||||
font-size: 36px; }
|
||||
|
||||
p.is-larger-text {
|
||||
font-size: 48px; }
|
||||
|
||||
p.has-drop-cap:not(:focus)::first-letter {
|
||||
float: right;
|
||||
font-size: 8.4em;
|
||||
line-height: 0.68;
|
||||
font-weight: 100;
|
||||
margin: 0.05em 0 0 0.1em;
|
||||
text-transform: uppercase;
|
||||
font-style: normal; }
|
||||
|
||||
p.has-drop-cap:not(:focus)::after {
|
||||
content: "";
|
||||
display: table;
|
||||
clear: both;
|
||||
padding-top: 14px; }
|
||||
|
||||
p.has-background {
|
||||
padding: 20px 30px; }
|
||||
|
||||
p.has-text-color a {
|
||||
color: inherit; }
|
||||
|
||||
.wp-block-pullquote {
|
||||
padding: 3em 0;
|
||||
margin-right: 0;
|
||||
margin-left: 0;
|
||||
text-align: center; }
|
||||
.wp-block-pullquote.alignleft, .wp-block-pullquote.alignright {
|
||||
max-width: 305px; }
|
||||
.wp-block-pullquote.alignleft p, .wp-block-pullquote.alignright p {
|
||||
font-size: 20px; }
|
||||
.wp-block-pullquote p {
|
||||
font-size: 28px;
|
||||
line-height: 1.6; }
|
||||
.wp-block-pullquote cite,
|
||||
.wp-block-pullquote footer {
|
||||
position: relative; }
|
||||
.wp-block-pullquote .has-text-color a {
|
||||
color: inherit; }
|
||||
|
||||
.wp-block-pullquote:not(.is-style-solid-color) {
|
||||
background: none; }
|
||||
|
||||
.wp-block-pullquote.is-style-solid-color {
|
||||
border: none; }
|
||||
.wp-block-pullquote.is-style-solid-color blockquote {
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
text-align: right;
|
||||
max-width: 60%; }
|
||||
.wp-block-pullquote.is-style-solid-color blockquote p {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
font-size: 32px; }
|
||||
.wp-block-pullquote.is-style-solid-color blockquote cite {
|
||||
text-transform: none;
|
||||
font-style: normal; }
|
||||
|
||||
.wp-block-pullquote cite {
|
||||
color: inherit; }
|
||||
|
||||
.wp-block-quote.is-style-large, .wp-block-quote.is-large {
|
||||
margin: 0 0 16px;
|
||||
padding: 0 1em; }
|
||||
.wp-block-quote.is-style-large p, .wp-block-quote.is-large p {
|
||||
font-size: 24px;
|
||||
font-style: italic;
|
||||
line-height: 1.6; }
|
||||
.wp-block-quote.is-style-large cite,
|
||||
.wp-block-quote.is-style-large footer, .wp-block-quote.is-large cite,
|
||||
.wp-block-quote.is-large footer {
|
||||
font-size: 18px;
|
||||
text-align: left; }
|
||||
|
||||
.wp-block-separator.is-style-wide {
|
||||
border-bottom-width: 1px; }
|
||||
|
||||
.wp-block-separator.is-style-dots {
|
||||
background: none;
|
||||
border: none;
|
||||
text-align: center;
|
||||
max-width: none;
|
||||
line-height: 1;
|
||||
height: auto; }
|
||||
.wp-block-separator.is-style-dots::before {
|
||||
content: "\00b7 \00b7 \00b7";
|
||||
color: #191e23;
|
||||
font-size: 20px;
|
||||
letter-spacing: 2em;
|
||||
padding-right: 2em;
|
||||
font-family: serif; }
|
||||
|
||||
p.wp-block-subhead {
|
||||
font-size: 1.1em;
|
||||
font-style: italic;
|
||||
opacity: 0.75; }
|
||||
|
||||
.wp-block-table.has-fixed-layout {
|
||||
table-layout: fixed;
|
||||
width: 100%; }
|
||||
|
||||
.wp-block-table.alignleft, .wp-block-table.aligncenter, .wp-block-table.alignright {
|
||||
display: table;
|
||||
width: auto; }
|
||||
|
||||
.wp-block-table.is-style-stripes {
|
||||
border-spacing: 0;
|
||||
border-collapse: inherit;
|
||||
border-bottom: 1px solid #f3f4f5; }
|
||||
.wp-block-table.is-style-stripes tr:nth-child(odd) {
|
||||
background-color: #f3f4f5; }
|
||||
.wp-block-table.is-style-stripes td {
|
||||
border-color: transparent; }
|
||||
|
||||
.wp-block-text-columns {
|
||||
display: flex; }
|
||||
.wp-block-text-columns.aligncenter {
|
||||
display: flex; }
|
||||
.wp-block-text-columns .wp-block-column {
|
||||
margin: 0 16px;
|
||||
padding: 0; }
|
||||
.wp-block-text-columns .wp-block-column:first-child {
|
||||
margin-right: 0; }
|
||||
.wp-block-text-columns .wp-block-column:last-child {
|
||||
margin-left: 0; }
|
||||
.wp-block-text-columns.columns-2 .wp-block-column {
|
||||
width: calc(100% / 2); }
|
||||
.wp-block-text-columns.columns-3 .wp-block-column {
|
||||
width: calc(100% / 3); }
|
||||
.wp-block-text-columns.columns-4 .wp-block-column {
|
||||
width: calc(100% / 4); }
|
||||
|
||||
pre.wp-block-verse {
|
||||
white-space: nowrap;
|
||||
overflow: auto; }
|
||||
|
||||
.wp-block-video {
|
||||
margin-right: 0;
|
||||
margin-left: 0; }
|
||||
.wp-block-video video {
|
||||
max-width: 100%; }
|
||||
@supports ((position: -webkit-sticky) or (position: sticky)) {
|
||||
.wp-block-video [poster] {
|
||||
-o-object-fit: cover;
|
||||
object-fit: cover; } }
|
||||
.wp-block-video.aligncenter {
|
||||
text-align: center; }
|
||||
.wp-block-video figcaption {
|
||||
margin-top: 0.5em;
|
||||
margin-bottom: 1em;
|
||||
color: #555d66;
|
||||
text-align: center;
|
||||
font-size: 13px; }
|
||||
|
||||
.has-pale-pink-background-color.has-pale-pink-background-color {
|
||||
background-color: #f78da7; }
|
||||
|
||||
.has-vivid-red-background-color.has-vivid-red-background-color {
|
||||
background-color: #cf2e2e; }
|
||||
|
||||
.has-luminous-vivid-orange-background-color.has-luminous-vivid-orange-background-color {
|
||||
background-color: #ff6900; }
|
||||
|
||||
.has-luminous-vivid-amber-background-color.has-luminous-vivid-amber-background-color {
|
||||
background-color: #fcb900; }
|
||||
|
||||
.has-light-green-cyan-background-color.has-light-green-cyan-background-color {
|
||||
background-color: #7bdcb5; }
|
||||
|
||||
.has-vivid-green-cyan-background-color.has-vivid-green-cyan-background-color {
|
||||
background-color: #00d084; }
|
||||
|
||||
.has-pale-cyan-blue-background-color.has-pale-cyan-blue-background-color {
|
||||
background-color: #8ed1fc; }
|
||||
|
||||
.has-vivid-cyan-blue-background-color.has-vivid-cyan-blue-background-color {
|
||||
background-color: #0693e3; }
|
||||
|
||||
.has-very-light-gray-background-color.has-very-light-gray-background-color {
|
||||
background-color: #eee; }
|
||||
|
||||
.has-cyan-bluish-gray-background-color.has-cyan-bluish-gray-background-color {
|
||||
background-color: #abb8c3; }
|
||||
|
||||
.has-very-dark-gray-background-color.has-very-dark-gray-background-color {
|
||||
background-color: #313131; }
|
||||
|
||||
.has-pale-pink-color.has-pale-pink-color {
|
||||
color: #f78da7; }
|
||||
|
||||
.has-vivid-red-color.has-vivid-red-color {
|
||||
color: #cf2e2e; }
|
||||
|
||||
.has-luminous-vivid-orange-color.has-luminous-vivid-orange-color {
|
||||
color: #ff6900; }
|
||||
|
||||
.has-luminous-vivid-amber-color.has-luminous-vivid-amber-color {
|
||||
color: #fcb900; }
|
||||
|
||||
.has-light-green-cyan-color.has-light-green-cyan-color {
|
||||
color: #7bdcb5; }
|
||||
|
||||
.has-vivid-green-cyan-color.has-vivid-green-cyan-color {
|
||||
color: #00d084; }
|
||||
|
||||
.has-pale-cyan-blue-color.has-pale-cyan-blue-color {
|
||||
color: #8ed1fc; }
|
||||
|
||||
.has-vivid-cyan-blue-color.has-vivid-cyan-blue-color {
|
||||
color: #0693e3; }
|
||||
|
||||
.has-very-light-gray-color.has-very-light-gray-color {
|
||||
color: #eee; }
|
||||
|
||||
.has-cyan-bluish-gray-color.has-cyan-bluish-gray-color {
|
||||
color: #abb8c3; }
|
||||
|
||||
.has-very-dark-gray-color.has-very-dark-gray-color {
|
||||
color: #313131; }
|
||||
|
||||
.has-small-font-size {
|
||||
font-size: 13px; }
|
||||
|
||||
.has-regular-font-size,
|
||||
.has-normal-font-size {
|
||||
font-size: 16px; }
|
||||
|
||||
.has-medium-font-size {
|
||||
font-size: 20px; }
|
||||
|
||||
.has-large-font-size {
|
||||
font-size: 36px; }
|
||||
|
||||
.has-larger-font-size,
|
||||
.has-huge-font-size {
|
||||
font-size: 42px; }
|
1
wp-includes/css/dist/block-library/style-rtl.min.css
vendored
Normal file
1
wp-includes/css/dist/block-library/style-rtl.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
948
wp-includes/css/dist/block-library/style.css
vendored
Normal file
948
wp-includes/css/dist/block-library/style.css
vendored
Normal file
|
@ -0,0 +1,948 @@
|
|||
/**
|
||||
* Colors
|
||||
*/
|
||||
/**
|
||||
* Breakpoints & Media Queries
|
||||
*/
|
||||
/**
|
||||
* Often re-used variables
|
||||
*/
|
||||
/**
|
||||
* Breakpoint mixins
|
||||
*/
|
||||
/**
|
||||
* Long content fade mixin
|
||||
*
|
||||
* Creates a fading overlay to signify that the content is longer
|
||||
* than the space allows.
|
||||
*/
|
||||
/**
|
||||
* Button states and focus styles
|
||||
*/
|
||||
/**
|
||||
* Applies editor left position to the selector passed as argument
|
||||
*/
|
||||
/**
|
||||
* Applies editor right position to the selector passed as argument
|
||||
*/
|
||||
/**
|
||||
* Styles that are reused verbatim in a few places
|
||||
*/
|
||||
.wp-block-audio figcaption {
|
||||
margin-top: 0.5em;
|
||||
margin-bottom: 1em;
|
||||
color: #555d66;
|
||||
text-align: center;
|
||||
font-size: 13px; }
|
||||
|
||||
.wp-block-audio audio {
|
||||
width: 100%;
|
||||
min-width: 300px; }
|
||||
|
||||
.editor-block-list__layout .reusable-block-edit-panel {
|
||||
align-items: center;
|
||||
background: #f8f9f9;
|
||||
color: #555d66;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
||||
font-size: 13px;
|
||||
position: relative;
|
||||
top: -14px;
|
||||
margin: 0 -14px;
|
||||
padding: 8px 14px;
|
||||
position: relative;
|
||||
z-index: 7; }
|
||||
.editor-block-list__layout .editor-block-list__layout .reusable-block-edit-panel {
|
||||
margin: 0 -14px;
|
||||
padding: 8px 14px; }
|
||||
.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__spinner {
|
||||
margin: 0 5px; }
|
||||
.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__info {
|
||||
margin-right: auto; }
|
||||
.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__label {
|
||||
margin-right: 8px;
|
||||
white-space: nowrap;
|
||||
font-weight: 600; }
|
||||
.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__title {
|
||||
flex: 1 1 100%;
|
||||
font-size: 14px;
|
||||
height: 30px;
|
||||
margin: 4px 0 8px; }
|
||||
.editor-block-list__layout .reusable-block-edit-panel .components-button.reusable-block-edit-panel__button {
|
||||
flex-shrink: 0; }
|
||||
@media (min-width: 960px) {
|
||||
.editor-block-list__layout .reusable-block-edit-panel {
|
||||
flex-wrap: nowrap; }
|
||||
.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__title {
|
||||
margin: 0; }
|
||||
.editor-block-list__layout .reusable-block-edit-panel .components-button.reusable-block-edit-panel__button {
|
||||
margin: 0 0 0 5px; } }
|
||||
|
||||
.editor-block-list__layout .reusable-block-indicator {
|
||||
background: #fff;
|
||||
border-left: 1px dashed #e2e4e7;
|
||||
color: #555d66;
|
||||
border-bottom: 1px dashed #e2e4e7;
|
||||
top: -14px;
|
||||
height: 30px;
|
||||
padding: 4px;
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
width: 30px;
|
||||
right: -14px; }
|
||||
|
||||
.wp-block-button {
|
||||
color: #fff;
|
||||
margin-bottom: 1.5em; }
|
||||
.wp-block-button.aligncenter {
|
||||
text-align: center; }
|
||||
.wp-block-button.alignright {
|
||||
/*rtl:ignore*/
|
||||
text-align: right; }
|
||||
|
||||
.wp-block-button__link {
|
||||
background-color: #32373c;
|
||||
border: none;
|
||||
border-radius: 28px;
|
||||
box-shadow: none;
|
||||
color: inherit;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
font-size: 18px;
|
||||
margin: 0;
|
||||
padding: 12px 24px;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
white-space: normal;
|
||||
overflow-wrap: break-word; }
|
||||
.wp-block-button__link:hover, .wp-block-button__link:focus, .wp-block-button__link:active {
|
||||
color: inherit; }
|
||||
|
||||
.is-style-squared .wp-block-button__link {
|
||||
border-radius: 0; }
|
||||
|
||||
.is-style-outline {
|
||||
color: #32373c; }
|
||||
.is-style-outline .wp-block-button__link {
|
||||
background: transparent;
|
||||
border: 2px solid currentcolor; }
|
||||
|
||||
.wp-block-categories.alignleft {
|
||||
/*rtl:ignore*/
|
||||
margin-right: 2em; }
|
||||
|
||||
.wp-block-categories.alignright {
|
||||
/*rtl:ignore*/
|
||||
margin-left: 2em; }
|
||||
|
||||
.wp-block-columns {
|
||||
display: flex;
|
||||
flex-wrap: wrap; }
|
||||
@media (min-width: 782px) {
|
||||
.wp-block-columns {
|
||||
flex-wrap: nowrap; } }
|
||||
|
||||
.wp-block-column {
|
||||
flex: 1;
|
||||
margin-bottom: 1em;
|
||||
flex-basis: 100%;
|
||||
min-width: 0;
|
||||
word-break: break-word;
|
||||
overflow-wrap: break-word; }
|
||||
@media (min-width: 600px) {
|
||||
.wp-block-column {
|
||||
flex-basis: 50%;
|
||||
flex-grow: 0; } }
|
||||
@media (min-width: 600px) {
|
||||
.wp-block-column:nth-child(odd) {
|
||||
margin-right: 32px; }
|
||||
.wp-block-column:nth-child(even) {
|
||||
margin-left: 32px; }
|
||||
.wp-block-column:not(:first-child) {
|
||||
margin-left: 32px; }
|
||||
.wp-block-column:not(:last-child) {
|
||||
margin-right: 32px; } }
|
||||
|
||||
.wp-block-cover-image,
|
||||
.wp-block-cover {
|
||||
position: relative;
|
||||
background-color: #000;
|
||||
background-size: cover;
|
||||
background-position: center center;
|
||||
min-height: 430px;
|
||||
width: 100%;
|
||||
margin: 0 0 1.5em 0;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
overflow: hidden; }
|
||||
.wp-block-cover-image.has-left-content,
|
||||
.wp-block-cover.has-left-content {
|
||||
justify-content: flex-start; }
|
||||
.wp-block-cover-image.has-left-content h2,
|
||||
.wp-block-cover-image.has-left-content .wp-block-cover-image-text,
|
||||
.wp-block-cover-image.has-left-content .wp-block-cover-text,
|
||||
.wp-block-cover.has-left-content h2,
|
||||
.wp-block-cover.has-left-content .wp-block-cover-image-text,
|
||||
.wp-block-cover.has-left-content .wp-block-cover-text {
|
||||
margin-left: 0;
|
||||
text-align: left; }
|
||||
.wp-block-cover-image.has-right-content,
|
||||
.wp-block-cover.has-right-content {
|
||||
justify-content: flex-end; }
|
||||
.wp-block-cover-image.has-right-content h2,
|
||||
.wp-block-cover-image.has-right-content .wp-block-cover-image-text,
|
||||
.wp-block-cover-image.has-right-content .wp-block-cover-text,
|
||||
.wp-block-cover.has-right-content h2,
|
||||
.wp-block-cover.has-right-content .wp-block-cover-image-text,
|
||||
.wp-block-cover.has-right-content .wp-block-cover-text {
|
||||
margin-right: 0;
|
||||
text-align: right; }
|
||||
.wp-block-cover-image h2,
|
||||
.wp-block-cover-image .wp-block-cover-image-text,
|
||||
.wp-block-cover-image .wp-block-cover-text,
|
||||
.wp-block-cover h2,
|
||||
.wp-block-cover .wp-block-cover-image-text,
|
||||
.wp-block-cover .wp-block-cover-text {
|
||||
color: #fff;
|
||||
font-size: 2em;
|
||||
line-height: 1.25;
|
||||
z-index: 1;
|
||||
margin-bottom: 0;
|
||||
max-width: 610px;
|
||||
padding: 14px;
|
||||
text-align: center; }
|
||||
.wp-block-cover-image h2 a,
|
||||
.wp-block-cover-image h2 a:hover,
|
||||
.wp-block-cover-image h2 a:focus,
|
||||
.wp-block-cover-image h2 a:active,
|
||||
.wp-block-cover-image .wp-block-cover-image-text a,
|
||||
.wp-block-cover-image .wp-block-cover-image-text a:hover,
|
||||
.wp-block-cover-image .wp-block-cover-image-text a:focus,
|
||||
.wp-block-cover-image .wp-block-cover-image-text a:active,
|
||||
.wp-block-cover-image .wp-block-cover-text a,
|
||||
.wp-block-cover-image .wp-block-cover-text a:hover,
|
||||
.wp-block-cover-image .wp-block-cover-text a:focus,
|
||||
.wp-block-cover-image .wp-block-cover-text a:active,
|
||||
.wp-block-cover h2 a,
|
||||
.wp-block-cover h2 a:hover,
|
||||
.wp-block-cover h2 a:focus,
|
||||
.wp-block-cover h2 a:active,
|
||||
.wp-block-cover .wp-block-cover-image-text a,
|
||||
.wp-block-cover .wp-block-cover-image-text a:hover,
|
||||
.wp-block-cover .wp-block-cover-image-text a:focus,
|
||||
.wp-block-cover .wp-block-cover-image-text a:active,
|
||||
.wp-block-cover .wp-block-cover-text a,
|
||||
.wp-block-cover .wp-block-cover-text a:hover,
|
||||
.wp-block-cover .wp-block-cover-text a:focus,
|
||||
.wp-block-cover .wp-block-cover-text a:active {
|
||||
color: #fff; }
|
||||
.wp-block-cover-image.has-parallax,
|
||||
.wp-block-cover.has-parallax {
|
||||
background-attachment: fixed; }
|
||||
@supports (-webkit-overflow-scrolling: touch) {
|
||||
.wp-block-cover-image.has-parallax,
|
||||
.wp-block-cover.has-parallax {
|
||||
background-attachment: scroll; } }
|
||||
.wp-block-cover-image.has-background-dim::before,
|
||||
.wp-block-cover.has-background-dim::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
background-color: inherit;
|
||||
opacity: 0.5;
|
||||
z-index: 1; }
|
||||
.wp-block-cover-image.has-background-dim.has-background-dim-10::before,
|
||||
.wp-block-cover.has-background-dim.has-background-dim-10::before {
|
||||
opacity: 0.1; }
|
||||
.wp-block-cover-image.has-background-dim.has-background-dim-20::before,
|
||||
.wp-block-cover.has-background-dim.has-background-dim-20::before {
|
||||
opacity: 0.2; }
|
||||
.wp-block-cover-image.has-background-dim.has-background-dim-30::before,
|
||||
.wp-block-cover.has-background-dim.has-background-dim-30::before {
|
||||
opacity: 0.3; }
|
||||
.wp-block-cover-image.has-background-dim.has-background-dim-40::before,
|
||||
.wp-block-cover.has-background-dim.has-background-dim-40::before {
|
||||
opacity: 0.4; }
|
||||
.wp-block-cover-image.has-background-dim.has-background-dim-50::before,
|
||||
.wp-block-cover.has-background-dim.has-background-dim-50::before {
|
||||
opacity: 0.5; }
|
||||
.wp-block-cover-image.has-background-dim.has-background-dim-60::before,
|
||||
.wp-block-cover.has-background-dim.has-background-dim-60::before {
|
||||
opacity: 0.6; }
|
||||
.wp-block-cover-image.has-background-dim.has-background-dim-70::before,
|
||||
.wp-block-cover.has-background-dim.has-background-dim-70::before {
|
||||
opacity: 0.7; }
|
||||
.wp-block-cover-image.has-background-dim.has-background-dim-80::before,
|
||||
.wp-block-cover.has-background-dim.has-background-dim-80::before {
|
||||
opacity: 0.8; }
|
||||
.wp-block-cover-image.has-background-dim.has-background-dim-90::before,
|
||||
.wp-block-cover.has-background-dim.has-background-dim-90::before {
|
||||
opacity: 0.9; }
|
||||
.wp-block-cover-image.has-background-dim.has-background-dim-100::before,
|
||||
.wp-block-cover.has-background-dim.has-background-dim-100::before {
|
||||
opacity: 1; }
|
||||
.wp-block-cover-image.alignleft, .wp-block-cover-image.alignright,
|
||||
.wp-block-cover.alignleft,
|
||||
.wp-block-cover.alignright {
|
||||
max-width: 305px;
|
||||
width: 100%; }
|
||||
.wp-block-cover-image::after,
|
||||
.wp-block-cover::after {
|
||||
display: block;
|
||||
content: "";
|
||||
font-size: 0;
|
||||
min-height: inherit; }
|
||||
@supports ((position: -webkit-sticky) or (position: sticky)) {
|
||||
.wp-block-cover-image::after,
|
||||
.wp-block-cover::after {
|
||||
content: none; } }
|
||||
.wp-block-cover-image.aligncenter, .wp-block-cover-image.alignleft, .wp-block-cover-image.alignright,
|
||||
.wp-block-cover.aligncenter,
|
||||
.wp-block-cover.alignleft,
|
||||
.wp-block-cover.alignright {
|
||||
display: flex; }
|
||||
|
||||
.wp-block-cover__video-background {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translateX(-50%) translateY(-50%);
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 0;
|
||||
-o-object-fit: cover;
|
||||
object-fit: cover; }
|
||||
|
||||
.editor-block-list__block[data-type="core/embed"][data-align="left"] .editor-block-list__block-edit,
|
||||
.editor-block-list__block[data-type="core/embed"][data-align="right"] .editor-block-list__block-edit,
|
||||
.wp-block-embed.alignleft,
|
||||
.wp-block-embed.alignright {
|
||||
max-width: 360px;
|
||||
width: 100%; }
|
||||
|
||||
.wp-block-embed {
|
||||
margin-bottom: 1em; }
|
||||
.wp-block-embed figcaption {
|
||||
margin-top: 0.5em;
|
||||
margin-bottom: 1em;
|
||||
color: #555d66;
|
||||
text-align: center;
|
||||
font-size: 13px; }
|
||||
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper {
|
||||
position: relative; }
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper::before,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper::before,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper::before,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper::before,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper::before,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper::before,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper::before {
|
||||
content: "";
|
||||
display: block;
|
||||
padding-top: 50%; }
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper iframe,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper iframe,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper iframe,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper iframe,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper iframe,
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper iframe {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%; }
|
||||
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper::before {
|
||||
padding-top: 42.85%; }
|
||||
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper::before {
|
||||
padding-top: 50%; }
|
||||
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper::before {
|
||||
padding-top: 56.25%; }
|
||||
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper::before {
|
||||
padding-top: 75%; }
|
||||
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper::before {
|
||||
padding-top: 100%; }
|
||||
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-6 .wp-block-embed__wrapper::before {
|
||||
padding-top: 66.66%; }
|
||||
|
||||
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper::before {
|
||||
padding-top: 200%; }
|
||||
|
||||
.wp-block-file {
|
||||
margin-bottom: 1.5em; }
|
||||
.wp-block-file.aligncenter {
|
||||
text-align: center; }
|
||||
.wp-block-file.alignright {
|
||||
/*rtl:ignore*/
|
||||
text-align: right; }
|
||||
.wp-block-file .wp-block-file__button {
|
||||
background: #32373c;
|
||||
border-radius: 2em;
|
||||
color: #fff;
|
||||
font-size: 13px;
|
||||
padding: 0.5em 1em; }
|
||||
.wp-block-file a.wp-block-file__button {
|
||||
text-decoration: none; }
|
||||
.wp-block-file a.wp-block-file__button:hover, .wp-block-file a.wp-block-file__button:visited, .wp-block-file a.wp-block-file__button:focus, .wp-block-file a.wp-block-file__button:active {
|
||||
box-shadow: none;
|
||||
color: #fff;
|
||||
opacity: 0.85;
|
||||
text-decoration: none; }
|
||||
.wp-block-file * + .wp-block-file__button {
|
||||
margin-left: 0.75em; }
|
||||
|
||||
.wp-block-gallery {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
list-style-type: none;
|
||||
padding: 0; }
|
||||
.wp-block-gallery .blocks-gallery-image,
|
||||
.wp-block-gallery .blocks-gallery-item {
|
||||
margin: 0 16px 16px 0;
|
||||
display: flex;
|
||||
flex-grow: 1;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
position: relative; }
|
||||
.wp-block-gallery .blocks-gallery-image figure,
|
||||
.wp-block-gallery .blocks-gallery-item figure {
|
||||
margin: 0;
|
||||
height: 100%; }
|
||||
@supports ((position: -webkit-sticky) or (position: sticky)) {
|
||||
.wp-block-gallery .blocks-gallery-image figure,
|
||||
.wp-block-gallery .blocks-gallery-item figure {
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
justify-content: flex-start; } }
|
||||
.wp-block-gallery .blocks-gallery-image img,
|
||||
.wp-block-gallery .blocks-gallery-item img {
|
||||
display: block;
|
||||
max-width: 100%;
|
||||
height: auto; }
|
||||
.wp-block-gallery .blocks-gallery-image img,
|
||||
.wp-block-gallery .blocks-gallery-item img {
|
||||
width: 100%; }
|
||||
@supports ((position: -webkit-sticky) or (position: sticky)) {
|
||||
.wp-block-gallery .blocks-gallery-image img,
|
||||
.wp-block-gallery .blocks-gallery-item img {
|
||||
width: auto; } }
|
||||
.wp-block-gallery .blocks-gallery-image figcaption,
|
||||
.wp-block-gallery .blocks-gallery-item figcaption {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
max-height: 100%;
|
||||
overflow: auto;
|
||||
padding: 40px 10px 5px;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
font-size: 13px;
|
||||
background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.3) 60%, transparent); }
|
||||
.wp-block-gallery .blocks-gallery-image figcaption img,
|
||||
.wp-block-gallery .blocks-gallery-item figcaption img {
|
||||
display: inline; }
|
||||
.wp-block-gallery.is-cropped .blocks-gallery-image a,
|
||||
.wp-block-gallery.is-cropped .blocks-gallery-image img,
|
||||
.wp-block-gallery.is-cropped .blocks-gallery-item a,
|
||||
.wp-block-gallery.is-cropped .blocks-gallery-item img {
|
||||
width: 100%; }
|
||||
@supports ((position: -webkit-sticky) or (position: sticky)) {
|
||||
.wp-block-gallery.is-cropped .blocks-gallery-image a,
|
||||
.wp-block-gallery.is-cropped .blocks-gallery-image img,
|
||||
.wp-block-gallery.is-cropped .blocks-gallery-item a,
|
||||
.wp-block-gallery.is-cropped .blocks-gallery-item img {
|
||||
height: 100%;
|
||||
flex: 1;
|
||||
-o-object-fit: cover;
|
||||
object-fit: cover; } }
|
||||
.wp-block-gallery .blocks-gallery-image,
|
||||
.wp-block-gallery .blocks-gallery-item {
|
||||
width: calc((100% - 16px) / 2); }
|
||||
.wp-block-gallery .blocks-gallery-image:nth-of-type(even),
|
||||
.wp-block-gallery .blocks-gallery-item:nth-of-type(even) {
|
||||
margin-right: 0; }
|
||||
.wp-block-gallery.columns-1 .blocks-gallery-image,
|
||||
.wp-block-gallery.columns-1 .blocks-gallery-item {
|
||||
width: 100%;
|
||||
margin-right: 0; }
|
||||
@media (min-width: 600px) {
|
||||
.wp-block-gallery.columns-3 .blocks-gallery-image,
|
||||
.wp-block-gallery.columns-3 .blocks-gallery-item {
|
||||
width: calc((100% - 16px * 2) / 3);
|
||||
margin-right: 16px; }
|
||||
.wp-block-gallery.columns-4 .blocks-gallery-image,
|
||||
.wp-block-gallery.columns-4 .blocks-gallery-item {
|
||||
width: calc((100% - 16px * 3) / 4);
|
||||
margin-right: 16px; }
|
||||
.wp-block-gallery.columns-5 .blocks-gallery-image,
|
||||
.wp-block-gallery.columns-5 .blocks-gallery-item {
|
||||
width: calc((100% - 16px * 4) / 5);
|
||||
margin-right: 16px; }
|
||||
.wp-block-gallery.columns-6 .blocks-gallery-image,
|
||||
.wp-block-gallery.columns-6 .blocks-gallery-item {
|
||||
width: calc((100% - 16px * 5) / 6);
|
||||
margin-right: 16px; }
|
||||
.wp-block-gallery.columns-7 .blocks-gallery-image,
|
||||
.wp-block-gallery.columns-7 .blocks-gallery-item {
|
||||
width: calc((100% - 16px * 6) / 7);
|
||||
margin-right: 16px; }
|
||||
.wp-block-gallery.columns-8 .blocks-gallery-image,
|
||||
.wp-block-gallery.columns-8 .blocks-gallery-item {
|
||||
width: calc((100% - 16px * 7) / 8);
|
||||
margin-right: 16px; }
|
||||
.wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n),
|
||||
.wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n) {
|
||||
margin-right: 0; }
|
||||
.wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n),
|
||||
.wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n) {
|
||||
margin-right: 0; }
|
||||
.wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n),
|
||||
.wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n) {
|
||||
margin-right: 0; }
|
||||
.wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n),
|
||||
.wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n) {
|
||||
margin-right: 0; }
|
||||
.wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n),
|
||||
.wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n) {
|
||||
margin-right: 0; }
|
||||
.wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n),
|
||||
.wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n) {
|
||||
margin-right: 0; }
|
||||
.wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n),
|
||||
.wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n) {
|
||||
margin-right: 0; }
|
||||
.wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n),
|
||||
.wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n) {
|
||||
margin-right: 0; } }
|
||||
.wp-block-gallery .blocks-gallery-image:last-child,
|
||||
.wp-block-gallery .blocks-gallery-item:last-child {
|
||||
margin-right: 0; }
|
||||
.wp-block-gallery .blocks-gallery-item.has-add-item-button {
|
||||
width: 100%; }
|
||||
.wp-block-gallery.alignleft, .wp-block-gallery.alignright {
|
||||
max-width: 305px;
|
||||
width: 100%; }
|
||||
.wp-block-gallery.alignleft, .wp-block-gallery.aligncenter, .wp-block-gallery.alignright {
|
||||
display: flex; }
|
||||
.wp-block-gallery.aligncenter .blocks-gallery-item figure {
|
||||
justify-content: center; }
|
||||
|
||||
.wp-block-image {
|
||||
max-width: 100%;
|
||||
margin-bottom: 1em;
|
||||
margin-left: 0;
|
||||
margin-right: 0; }
|
||||
.wp-block-image img {
|
||||
max-width: 100%; }
|
||||
.wp-block-image.aligncenter {
|
||||
text-align: center; }
|
||||
.wp-block-image.alignfull img,
|
||||
.wp-block-image.alignwide img {
|
||||
width: 100%; }
|
||||
.wp-block-image .alignleft,
|
||||
.wp-block-image .alignright,
|
||||
.wp-block-image .aligncenter, .wp-block-image.is-resized {
|
||||
display: table;
|
||||
margin-left: 0;
|
||||
margin-right: 0; }
|
||||
.wp-block-image .alignleft > figcaption,
|
||||
.wp-block-image .alignright > figcaption,
|
||||
.wp-block-image .aligncenter > figcaption, .wp-block-image.is-resized > figcaption {
|
||||
display: table-caption;
|
||||
caption-side: bottom; }
|
||||
.wp-block-image .alignleft {
|
||||
/*rtl:ignore*/
|
||||
float: left;
|
||||
/*rtl:ignore*/
|
||||
margin-right: 1em; }
|
||||
.wp-block-image .alignright {
|
||||
/*rtl:ignore*/
|
||||
float: right;
|
||||
/*rtl:ignore*/
|
||||
margin-left: 1em; }
|
||||
.wp-block-image .aligncenter {
|
||||
margin-left: auto;
|
||||
margin-right: auto; }
|
||||
.wp-block-image figcaption {
|
||||
margin-top: 0.5em;
|
||||
margin-bottom: 1em;
|
||||
color: #555d66;
|
||||
text-align: center;
|
||||
font-size: 13px; }
|
||||
|
||||
.wp-block-latest-comments__comment {
|
||||
font-size: 15px;
|
||||
line-height: 1.1;
|
||||
list-style: none;
|
||||
margin-bottom: 1em; }
|
||||
.has-avatars .wp-block-latest-comments__comment {
|
||||
min-height: 36px;
|
||||
list-style: none; }
|
||||
.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta,
|
||||
.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt {
|
||||
margin-left: 52px; }
|
||||
.has-dates .wp-block-latest-comments__comment,
|
||||
.has-excerpts .wp-block-latest-comments__comment {
|
||||
line-height: 1.5; }
|
||||
|
||||
.wp-block-latest-comments__comment-excerpt p {
|
||||
font-size: 14px;
|
||||
line-height: 1.8;
|
||||
margin: 5px 0 20px; }
|
||||
|
||||
.wp-block-latest-comments__comment-date {
|
||||
color: #8f98a1;
|
||||
display: block;
|
||||
font-size: 12px; }
|
||||
|
||||
.wp-block-latest-comments .avatar,
|
||||
.wp-block-latest-comments__comment-avatar {
|
||||
border-radius: 24px;
|
||||
display: block;
|
||||
float: left;
|
||||
height: 40px;
|
||||
margin-right: 12px;
|
||||
width: 40px; }
|
||||
|
||||
.wp-block-latest-posts.alignleft {
|
||||
/*rtl:ignore*/
|
||||
margin-right: 2em; }
|
||||
|
||||
.wp-block-latest-posts.alignright {
|
||||
/*rtl:ignore*/
|
||||
margin-left: 2em; }
|
||||
|
||||
.wp-block-latest-posts.is-grid {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
padding: 0;
|
||||
list-style: none; }
|
||||
.wp-block-latest-posts.is-grid li {
|
||||
margin: 0 16px 16px 0;
|
||||
width: 100%; }
|
||||
|
||||
@media (min-width: 600px) {
|
||||
.wp-block-latest-posts.columns-2 li {
|
||||
width: calc((100% / 2) - 16px); }
|
||||
.wp-block-latest-posts.columns-3 li {
|
||||
width: calc((100% / 3) - 16px); }
|
||||
.wp-block-latest-posts.columns-4 li {
|
||||
width: calc((100% / 4) - 16px); }
|
||||
.wp-block-latest-posts.columns-5 li {
|
||||
width: calc((100% / 5) - 16px); }
|
||||
.wp-block-latest-posts.columns-6 li {
|
||||
width: calc((100% / 6) - 16px); } }
|
||||
|
||||
.wp-block-latest-posts__post-date {
|
||||
display: block;
|
||||
color: #6c7781;
|
||||
font-size: 13px; }
|
||||
|
||||
.wp-block-media-text {
|
||||
display: grid; }
|
||||
|
||||
.wp-block-media-text {
|
||||
grid-template-rows: auto;
|
||||
align-items: center;
|
||||
grid-template-areas: "media-text-media media-text-content";
|
||||
grid-template-columns: 50% auto; }
|
||||
.wp-block-media-text.has-media-on-the-right {
|
||||
grid-template-areas: "media-text-content media-text-media";
|
||||
grid-template-columns: auto 50%; }
|
||||
|
||||
.wp-block-media-text .wp-block-media-text__media {
|
||||
grid-area: media-text-media;
|
||||
margin: 0; }
|
||||
|
||||
.wp-block-media-text .wp-block-media-text__content {
|
||||
word-break: break-word;
|
||||
grid-area: media-text-content;
|
||||
padding: 0 8% 0 8%; }
|
||||
|
||||
.wp-block-media-text > figure > img,
|
||||
.wp-block-media-text > figure > video {
|
||||
max-width: unset;
|
||||
width: 100%;
|
||||
vertical-align: middle; }
|
||||
|
||||
/*
|
||||
* Here we here not able to use a mobile first CSS approach.
|
||||
* Custom widths are set using inline styles, and on mobile,
|
||||
* we need 100% width, so we use important to overwrite the inline style.
|
||||
* If the style were set on mobile first, on desktop styles,
|
||||
* we would have no way of setting the style again to the inline style.
|
||||
*/
|
||||
@media (max-width: 600px) {
|
||||
.wp-block-media-text.is-stacked-on-mobile {
|
||||
grid-template-columns: 100% !important;
|
||||
grid-template-areas: "media-text-media" "media-text-content"; }
|
||||
.wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right {
|
||||
grid-template-areas: "media-text-content" "media-text-media"; } }
|
||||
|
||||
p.is-small-text {
|
||||
font-size: 14px; }
|
||||
|
||||
p.is-regular-text {
|
||||
font-size: 16px; }
|
||||
|
||||
p.is-large-text {
|
||||
font-size: 36px; }
|
||||
|
||||
p.is-larger-text {
|
||||
font-size: 48px; }
|
||||
|
||||
p.has-drop-cap:not(:focus)::first-letter {
|
||||
float: left;
|
||||
font-size: 8.4em;
|
||||
line-height: 0.68;
|
||||
font-weight: 100;
|
||||
margin: 0.05em 0.1em 0 0;
|
||||
text-transform: uppercase;
|
||||
font-style: normal; }
|
||||
|
||||
p.has-drop-cap:not(:focus)::after {
|
||||
content: "";
|
||||
display: table;
|
||||
clear: both;
|
||||
padding-top: 14px; }
|
||||
|
||||
p.has-background {
|
||||
padding: 20px 30px; }
|
||||
|
||||
p.has-text-color a {
|
||||
color: inherit; }
|
||||
|
||||
.wp-block-pullquote {
|
||||
padding: 3em 0;
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
text-align: center; }
|
||||
.wp-block-pullquote.alignleft, .wp-block-pullquote.alignright {
|
||||
max-width: 305px; }
|
||||
.wp-block-pullquote.alignleft p, .wp-block-pullquote.alignright p {
|
||||
font-size: 20px; }
|
||||
.wp-block-pullquote p {
|
||||
font-size: 28px;
|
||||
line-height: 1.6; }
|
||||
.wp-block-pullquote cite,
|
||||
.wp-block-pullquote footer {
|
||||
position: relative; }
|
||||
.wp-block-pullquote .has-text-color a {
|
||||
color: inherit; }
|
||||
|
||||
.wp-block-pullquote:not(.is-style-solid-color) {
|
||||
background: none; }
|
||||
|
||||
.wp-block-pullquote.is-style-solid-color {
|
||||
border: none; }
|
||||
.wp-block-pullquote.is-style-solid-color blockquote {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
text-align: left;
|
||||
max-width: 60%; }
|
||||
.wp-block-pullquote.is-style-solid-color blockquote p {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
font-size: 32px; }
|
||||
.wp-block-pullquote.is-style-solid-color blockquote cite {
|
||||
text-transform: none;
|
||||
font-style: normal; }
|
||||
|
||||
.wp-block-pullquote cite {
|
||||
color: inherit; }
|
||||
|
||||
.wp-block-quote.is-style-large, .wp-block-quote.is-large {
|
||||
margin: 0 0 16px;
|
||||
padding: 0 1em; }
|
||||
.wp-block-quote.is-style-large p, .wp-block-quote.is-large p {
|
||||
font-size: 24px;
|
||||
font-style: italic;
|
||||
line-height: 1.6; }
|
||||
.wp-block-quote.is-style-large cite,
|
||||
.wp-block-quote.is-style-large footer, .wp-block-quote.is-large cite,
|
||||
.wp-block-quote.is-large footer {
|
||||
font-size: 18px;
|
||||
text-align: right; }
|
||||
|
||||
.wp-block-separator.is-style-wide {
|
||||
border-bottom-width: 1px; }
|
||||
|
||||
.wp-block-separator.is-style-dots {
|
||||
background: none;
|
||||
border: none;
|
||||
text-align: center;
|
||||
max-width: none;
|
||||
line-height: 1;
|
||||
height: auto; }
|
||||
.wp-block-separator.is-style-dots::before {
|
||||
content: "\00b7 \00b7 \00b7";
|
||||
color: #191e23;
|
||||
font-size: 20px;
|
||||
letter-spacing: 2em;
|
||||
padding-left: 2em;
|
||||
font-family: serif; }
|
||||
|
||||
p.wp-block-subhead {
|
||||
font-size: 1.1em;
|
||||
font-style: italic;
|
||||
opacity: 0.75; }
|
||||
|
||||
.wp-block-table.has-fixed-layout {
|
||||
table-layout: fixed;
|
||||
width: 100%; }
|
||||
|
||||
.wp-block-table.alignleft, .wp-block-table.aligncenter, .wp-block-table.alignright {
|
||||
display: table;
|
||||
width: auto; }
|
||||
|
||||
.wp-block-table.is-style-stripes {
|
||||
border-spacing: 0;
|
||||
border-collapse: inherit;
|
||||
border-bottom: 1px solid #f3f4f5; }
|
||||
.wp-block-table.is-style-stripes tr:nth-child(odd) {
|
||||
background-color: #f3f4f5; }
|
||||
.wp-block-table.is-style-stripes td {
|
||||
border-color: transparent; }
|
||||
|
||||
.wp-block-text-columns {
|
||||
display: flex; }
|
||||
.wp-block-text-columns.aligncenter {
|
||||
display: flex; }
|
||||
.wp-block-text-columns .wp-block-column {
|
||||
margin: 0 16px;
|
||||
padding: 0; }
|
||||
.wp-block-text-columns .wp-block-column:first-child {
|
||||
margin-left: 0; }
|
||||
.wp-block-text-columns .wp-block-column:last-child {
|
||||
margin-right: 0; }
|
||||
.wp-block-text-columns.columns-2 .wp-block-column {
|
||||
width: calc(100% / 2); }
|
||||
.wp-block-text-columns.columns-3 .wp-block-column {
|
||||
width: calc(100% / 3); }
|
||||
.wp-block-text-columns.columns-4 .wp-block-column {
|
||||
width: calc(100% / 4); }
|
||||
|
||||
pre.wp-block-verse {
|
||||
white-space: nowrap;
|
||||
overflow: auto; }
|
||||
|
||||
.wp-block-video {
|
||||
margin-left: 0;
|
||||
margin-right: 0; }
|
||||
.wp-block-video video {
|
||||
max-width: 100%; }
|
||||
@supports ((position: -webkit-sticky) or (position: sticky)) {
|
||||
.wp-block-video [poster] {
|
||||
-o-object-fit: cover;
|
||||
object-fit: cover; } }
|
||||
.wp-block-video.aligncenter {
|
||||
text-align: center; }
|
||||
.wp-block-video figcaption {
|
||||
margin-top: 0.5em;
|
||||
margin-bottom: 1em;
|
||||
color: #555d66;
|
||||
text-align: center;
|
||||
font-size: 13px; }
|
||||
|
||||
.has-pale-pink-background-color.has-pale-pink-background-color {
|
||||
background-color: #f78da7; }
|
||||
|
||||
.has-vivid-red-background-color.has-vivid-red-background-color {
|
||||
background-color: #cf2e2e; }
|
||||
|
||||
.has-luminous-vivid-orange-background-color.has-luminous-vivid-orange-background-color {
|
||||
background-color: #ff6900; }
|
||||
|
||||
.has-luminous-vivid-amber-background-color.has-luminous-vivid-amber-background-color {
|
||||
background-color: #fcb900; }
|
||||
|
||||
.has-light-green-cyan-background-color.has-light-green-cyan-background-color {
|
||||
background-color: #7bdcb5; }
|
||||
|
||||
.has-vivid-green-cyan-background-color.has-vivid-green-cyan-background-color {
|
||||
background-color: #00d084; }
|
||||
|
||||
.has-pale-cyan-blue-background-color.has-pale-cyan-blue-background-color {
|
||||
background-color: #8ed1fc; }
|
||||
|
||||
.has-vivid-cyan-blue-background-color.has-vivid-cyan-blue-background-color {
|
||||
background-color: #0693e3; }
|
||||
|
||||
.has-very-light-gray-background-color.has-very-light-gray-background-color {
|
||||
background-color: #eee; }
|
||||
|
||||
.has-cyan-bluish-gray-background-color.has-cyan-bluish-gray-background-color {
|
||||
background-color: #abb8c3; }
|
||||
|
||||
.has-very-dark-gray-background-color.has-very-dark-gray-background-color {
|
||||
background-color: #313131; }
|
||||
|
||||
.has-pale-pink-color.has-pale-pink-color {
|
||||
color: #f78da7; }
|
||||
|
||||
.has-vivid-red-color.has-vivid-red-color {
|
||||
color: #cf2e2e; }
|
||||
|
||||
.has-luminous-vivid-orange-color.has-luminous-vivid-orange-color {
|
||||
color: #ff6900; }
|
||||
|
||||
.has-luminous-vivid-amber-color.has-luminous-vivid-amber-color {
|
||||
color: #fcb900; }
|
||||
|
||||
.has-light-green-cyan-color.has-light-green-cyan-color {
|
||||
color: #7bdcb5; }
|
||||
|
||||
.has-vivid-green-cyan-color.has-vivid-green-cyan-color {
|
||||
color: #00d084; }
|
||||
|
||||
.has-pale-cyan-blue-color.has-pale-cyan-blue-color {
|
||||
color: #8ed1fc; }
|
||||
|
||||
.has-vivid-cyan-blue-color.has-vivid-cyan-blue-color {
|
||||
color: #0693e3; }
|
||||
|
||||
.has-very-light-gray-color.has-very-light-gray-color {
|
||||
color: #eee; }
|
||||
|
||||
.has-cyan-bluish-gray-color.has-cyan-bluish-gray-color {
|
||||
color: #abb8c3; }
|
||||
|
||||
.has-very-dark-gray-color.has-very-dark-gray-color {
|
||||
color: #313131; }
|
||||
|
||||
.has-small-font-size {
|
||||
font-size: 13px; }
|
||||
|
||||
.has-regular-font-size,
|
||||
.has-normal-font-size {
|
||||
font-size: 16px; }
|
||||
|
||||
.has-medium-font-size {
|
||||
font-size: 20px; }
|
||||
|
||||
.has-large-font-size {
|
||||
font-size: 36px; }
|
||||
|
||||
.has-larger-font-size,
|
||||
.has-huge-font-size {
|
||||
font-size: 42px; }
|
1
wp-includes/css/dist/block-library/style.min.css
vendored
Normal file
1
wp-includes/css/dist/block-library/style.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
84
wp-includes/css/dist/block-library/theme-rtl.css
vendored
Normal file
84
wp-includes/css/dist/block-library/theme-rtl.css
vendored
Normal file
|
@ -0,0 +1,84 @@
|
|||
/**
|
||||
* Colors
|
||||
*/
|
||||
/**
|
||||
* Breakpoints & Media Queries
|
||||
*/
|
||||
/**
|
||||
* Often re-used variables
|
||||
*/
|
||||
/**
|
||||
* Breakpoint mixins
|
||||
*/
|
||||
/**
|
||||
* Long content fade mixin
|
||||
*
|
||||
* Creates a fading overlay to signify that the content is longer
|
||||
* than the space allows.
|
||||
*/
|
||||
/**
|
||||
* Button states and focus styles
|
||||
*/
|
||||
/**
|
||||
* Applies editor left position to the selector passed as argument
|
||||
*/
|
||||
/**
|
||||
* Applies editor right position to the selector passed as argument
|
||||
*/
|
||||
/**
|
||||
* Styles that are reused verbatim in a few places
|
||||
*/
|
||||
.wp-block-code {
|
||||
font-family: Menlo, Consolas, monaco, monospace;
|
||||
font-size: 14px;
|
||||
color: #23282d;
|
||||
padding: 0.8em 1em;
|
||||
border: 1px solid #e2e4e7;
|
||||
border-radius: 4px; }
|
||||
|
||||
.wp-block-preformatted pre {
|
||||
font-family: Menlo, Consolas, monaco, monospace;
|
||||
font-size: 14px;
|
||||
color: #23282d; }
|
||||
|
||||
.wp-block-pullquote {
|
||||
border-top: 4px solid #555d66;
|
||||
border-bottom: 4px solid #555d66;
|
||||
color: #40464d; }
|
||||
.wp-block-pullquote cite,
|
||||
.wp-block-pullquote footer, .wp-block-pullquote__citation {
|
||||
color: #40464d;
|
||||
text-transform: uppercase;
|
||||
font-size: 13px;
|
||||
font-style: normal; }
|
||||
|
||||
.wp-block-quote {
|
||||
margin: 20px 0; }
|
||||
.wp-block-quote cite,
|
||||
.wp-block-quote footer, .wp-block-quote__citation {
|
||||
color: #6c7781;
|
||||
font-size: 13px;
|
||||
margin-top: 1em;
|
||||
position: relative;
|
||||
font-style: normal; }
|
||||
|
||||
.wp-block-quote:not(.is-large):not(.is-style-large) {
|
||||
border-right: 4px solid #000;
|
||||
padding-right: 1em; }
|
||||
|
||||
.wp-block-separator {
|
||||
border: none;
|
||||
border-bottom: 2px solid #8f98a1;
|
||||
margin: 1.65em auto; }
|
||||
.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
|
||||
max-width: 100px; }
|
||||
|
||||
.wp-block-table {
|
||||
width: 100%;
|
||||
min-width: 240px;
|
||||
border-collapse: collapse; }
|
||||
.wp-block-table td,
|
||||
.wp-block-table th {
|
||||
padding: 0.5em;
|
||||
border: 1px solid currentColor;
|
||||
word-break: break-all; }
|
1
wp-includes/css/dist/block-library/theme-rtl.min.css
vendored
Normal file
1
wp-includes/css/dist/block-library/theme-rtl.min.css
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
.wp-block-code{font-family:Menlo,Consolas,monaco,monospace;font-size:14px;color:#23282d;padding:.8em 1em;border:1px solid #e2e4e7;border-radius:4px}.wp-block-preformatted pre{font-family:Menlo,Consolas,monaco,monospace;font-size:14px;color:#23282d}.wp-block-pullquote{border-top:4px solid #555d66;border-bottom:4px solid #555d66;color:#40464d}.wp-block-pullquote cite,.wp-block-pullquote footer,.wp-block-pullquote__citation{color:#40464d;text-transform:uppercase;font-size:13px;font-style:normal}.wp-block-quote{margin:20px 0}.wp-block-quote cite,.wp-block-quote footer,.wp-block-quote__citation{color:#6c7781;font-size:13px;margin-top:1em;position:relative;font-style:normal}.wp-block-quote:not(.is-large):not(.is-style-large){border-right:4px solid #000;padding-right:1em}.wp-block-separator{border:none;border-bottom:2px solid #8f98a1;margin:1.65em auto}.wp-block-separator:not(.is-style-wide):not(.is-style-dots){max-width:100px}.wp-block-table{width:100%;min-width:240px;border-collapse:collapse}.wp-block-table td,.wp-block-table th{padding:.5em;border:1px solid currentColor;word-break:break-all}
|
84
wp-includes/css/dist/block-library/theme.css
vendored
Normal file
84
wp-includes/css/dist/block-library/theme.css
vendored
Normal file
|
@ -0,0 +1,84 @@
|
|||
/**
|
||||
* Colors
|
||||
*/
|
||||
/**
|
||||
* Breakpoints & Media Queries
|
||||
*/
|
||||
/**
|
||||
* Often re-used variables
|
||||
*/
|
||||
/**
|
||||
* Breakpoint mixins
|
||||
*/
|
||||
/**
|
||||
* Long content fade mixin
|
||||
*
|
||||
* Creates a fading overlay to signify that the content is longer
|
||||
* than the space allows.
|
||||
*/
|
||||
/**
|
||||
* Button states and focus styles
|
||||
*/
|
||||
/**
|
||||
* Applies editor left position to the selector passed as argument
|
||||
*/
|
||||
/**
|
||||
* Applies editor right position to the selector passed as argument
|
||||
*/
|
||||
/**
|
||||
* Styles that are reused verbatim in a few places
|
||||
*/
|
||||
.wp-block-code {
|
||||
font-family: Menlo, Consolas, monaco, monospace;
|
||||
font-size: 14px;
|
||||
color: #23282d;
|
||||
padding: 0.8em 1em;
|
||||
border: 1px solid #e2e4e7;
|
||||
border-radius: 4px; }
|
||||
|
||||
.wp-block-preformatted pre {
|
||||
font-family: Menlo, Consolas, monaco, monospace;
|
||||
font-size: 14px;
|
||||
color: #23282d; }
|
||||
|
||||
.wp-block-pullquote {
|
||||
border-top: 4px solid #555d66;
|
||||
border-bottom: 4px solid #555d66;
|
||||
color: #40464d; }
|
||||
.wp-block-pullquote cite,
|
||||
.wp-block-pullquote footer, .wp-block-pullquote__citation {
|
||||
color: #40464d;
|
||||
text-transform: uppercase;
|
||||
font-size: 13px;
|
||||
font-style: normal; }
|
||||
|
||||
.wp-block-quote {
|
||||
margin: 20px 0; }
|
||||
.wp-block-quote cite,
|
||||
.wp-block-quote footer, .wp-block-quote__citation {
|
||||
color: #6c7781;
|
||||
font-size: 13px;
|
||||
margin-top: 1em;
|
||||
position: relative;
|
||||
font-style: normal; }
|
||||
|
||||
.wp-block-quote:not(.is-large):not(.is-style-large) {
|
||||
border-left: 4px solid #000;
|
||||
padding-left: 1em; }
|
||||
|
||||
.wp-block-separator {
|
||||
border: none;
|
||||
border-bottom: 2px solid #8f98a1;
|
||||
margin: 1.65em auto; }
|
||||
.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
|
||||
max-width: 100px; }
|
||||
|
||||
.wp-block-table {
|
||||
width: 100%;
|
||||
min-width: 240px;
|
||||
border-collapse: collapse; }
|
||||
.wp-block-table td,
|
||||
.wp-block-table th {
|
||||
padding: 0.5em;
|
||||
border: 1px solid currentColor;
|
||||
word-break: break-all; }
|
1
wp-includes/css/dist/block-library/theme.min.css
vendored
Normal file
1
wp-includes/css/dist/block-library/theme.min.css
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
.wp-block-code{font-family:Menlo,Consolas,monaco,monospace;font-size:14px;color:#23282d;padding:.8em 1em;border:1px solid #e2e4e7;border-radius:4px}.wp-block-preformatted pre{font-family:Menlo,Consolas,monaco,monospace;font-size:14px;color:#23282d}.wp-block-pullquote{border-top:4px solid #555d66;border-bottom:4px solid #555d66;color:#40464d}.wp-block-pullquote cite,.wp-block-pullquote footer,.wp-block-pullquote__citation{color:#40464d;text-transform:uppercase;font-size:13px;font-style:normal}.wp-block-quote{margin:20px 0}.wp-block-quote cite,.wp-block-quote footer,.wp-block-quote__citation{color:#6c7781;font-size:13px;margin-top:1em;position:relative;font-style:normal}.wp-block-quote:not(.is-large):not(.is-style-large){border-left:4px solid #000;padding-left:1em}.wp-block-separator{border:none;border-bottom:2px solid #8f98a1;margin:1.65em auto}.wp-block-separator:not(.is-style-wide):not(.is-style-dots){max-width:100px}.wp-block-table{width:100%;min-width:240px;border-collapse:collapse}.wp-block-table td,.wp-block-table th{padding:.5em;border:1px solid currentColor;word-break:break-all}
|
3092
wp-includes/css/dist/components/style-rtl.css
vendored
Normal file
3092
wp-includes/css/dist/components/style-rtl.css
vendored
Normal file
File diff suppressed because it is too large
Load diff
1
wp-includes/css/dist/components/style-rtl.min.css
vendored
Normal file
1
wp-includes/css/dist/components/style-rtl.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
3106
wp-includes/css/dist/components/style.css
vendored
Normal file
3106
wp-includes/css/dist/components/style.css
vendored
Normal file
File diff suppressed because it is too large
Load diff
1
wp-includes/css/dist/components/style.min.css
vendored
Normal file
1
wp-includes/css/dist/components/style.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1517
wp-includes/css/dist/edit-post/style-rtl.css
vendored
Normal file
1517
wp-includes/css/dist/edit-post/style-rtl.css
vendored
Normal file
File diff suppressed because it is too large
Load diff
1
wp-includes/css/dist/edit-post/style-rtl.min.css
vendored
Normal file
1
wp-includes/css/dist/edit-post/style-rtl.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1517
wp-includes/css/dist/edit-post/style.css
vendored
Normal file
1517
wp-includes/css/dist/edit-post/style.css
vendored
Normal file
File diff suppressed because it is too large
Load diff
1
wp-includes/css/dist/edit-post/style.min.css
vendored
Normal file
1
wp-includes/css/dist/edit-post/style.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
57
wp-includes/css/dist/editor/editor-styles-rtl.css
vendored
Normal file
57
wp-includes/css/dist/editor/editor-styles-rtl.css
vendored
Normal file
|
@ -0,0 +1,57 @@
|
|||
/**
|
||||
* Colors
|
||||
*/
|
||||
/**
|
||||
* Breakpoints & Media Queries
|
||||
*/
|
||||
/**
|
||||
* Often re-used variables
|
||||
*/
|
||||
/**
|
||||
* Breakpoint mixins
|
||||
*/
|
||||
/**
|
||||
* Long content fade mixin
|
||||
*
|
||||
* Creates a fading overlay to signify that the content is longer
|
||||
* than the space allows.
|
||||
*/
|
||||
/**
|
||||
* Button states and focus styles
|
||||
*/
|
||||
/**
|
||||
* Applies editor left position to the selector passed as argument
|
||||
*/
|
||||
/**
|
||||
* Applies editor right position to the selector passed as argument
|
||||
*/
|
||||
/**
|
||||
* Styles that are reused verbatim in a few places
|
||||
*/
|
||||
body {
|
||||
font-family: "Noto Serif", serif;
|
||||
font-size: 16px;
|
||||
line-height: 1.8;
|
||||
color: #191e23; }
|
||||
|
||||
p {
|
||||
font-size: 16px;
|
||||
line-height: 1.8; }
|
||||
|
||||
ul,
|
||||
ol {
|
||||
margin: 0;
|
||||
padding: 0; }
|
||||
|
||||
ul {
|
||||
list-style-type: disc; }
|
||||
|
||||
ol {
|
||||
list-style-type: decimal; }
|
||||
|
||||
ul ul,
|
||||
ol ul {
|
||||
list-style-type: circle; }
|
||||
|
||||
.mce-content-body {
|
||||
line-height: 1.8; }
|
1
wp-includes/css/dist/editor/editor-styles-rtl.min.css
vendored
Normal file
1
wp-includes/css/dist/editor/editor-styles-rtl.min.css
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
body{font-family:"Noto Serif",serif;font-size:16px;line-height:1.8;color:#191e23}p{font-size:16px;line-height:1.8}ol,ul{margin:0;padding:0}ul{list-style-type:disc}ol{list-style-type:decimal}ol ul,ul ul{list-style-type:circle}.mce-content-body{line-height:1.8}
|
57
wp-includes/css/dist/editor/editor-styles.css
vendored
Normal file
57
wp-includes/css/dist/editor/editor-styles.css
vendored
Normal file
|
@ -0,0 +1,57 @@
|
|||
/**
|
||||
* Colors
|
||||
*/
|
||||
/**
|
||||
* Breakpoints & Media Queries
|
||||
*/
|
||||
/**
|
||||
* Often re-used variables
|
||||
*/
|
||||
/**
|
||||
* Breakpoint mixins
|
||||
*/
|
||||
/**
|
||||
* Long content fade mixin
|
||||
*
|
||||
* Creates a fading overlay to signify that the content is longer
|
||||
* than the space allows.
|
||||
*/
|
||||
/**
|
||||
* Button states and focus styles
|
||||
*/
|
||||
/**
|
||||
* Applies editor left position to the selector passed as argument
|
||||
*/
|
||||
/**
|
||||
* Applies editor right position to the selector passed as argument
|
||||
*/
|
||||
/**
|
||||
* Styles that are reused verbatim in a few places
|
||||
*/
|
||||
body {
|
||||
font-family: "Noto Serif", serif;
|
||||
font-size: 16px;
|
||||
line-height: 1.8;
|
||||
color: #191e23; }
|
||||
|
||||
p {
|
||||
font-size: 16px;
|
||||
line-height: 1.8; }
|
||||
|
||||
ul,
|
||||
ol {
|
||||
margin: 0;
|
||||
padding: 0; }
|
||||
|
||||
ul {
|
||||
list-style-type: disc; }
|
||||
|
||||
ol {
|
||||
list-style-type: decimal; }
|
||||
|
||||
ul ul,
|
||||
ol ul {
|
||||
list-style-type: circle; }
|
||||
|
||||
.mce-content-body {
|
||||
line-height: 1.8; }
|
1
wp-includes/css/dist/editor/editor-styles.min.css
vendored
Normal file
1
wp-includes/css/dist/editor/editor-styles.min.css
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
body{font-family:"Noto Serif",serif;font-size:16px;line-height:1.8;color:#191e23}p{font-size:16px;line-height:1.8}ol,ul{margin:0;padding:0}ul{list-style-type:disc}ol{list-style-type:decimal}ol ul,ul ul{list-style-type:circle}.mce-content-body{line-height:1.8}
|
2573
wp-includes/css/dist/editor/style-rtl.css
vendored
Normal file
2573
wp-includes/css/dist/editor/style-rtl.css
vendored
Normal file
File diff suppressed because it is too large
Load diff
1
wp-includes/css/dist/editor/style-rtl.min.css
vendored
Normal file
1
wp-includes/css/dist/editor/style-rtl.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
2585
wp-includes/css/dist/editor/style.css
vendored
Normal file
2585
wp-includes/css/dist/editor/style.css
vendored
Normal file
File diff suppressed because it is too large
Load diff
1
wp-includes/css/dist/editor/style.min.css
vendored
Normal file
1
wp-includes/css/dist/editor/style.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
44
wp-includes/css/dist/format-library/style-rtl.css
vendored
Normal file
44
wp-includes/css/dist/format-library/style-rtl.css
vendored
Normal file
|
@ -0,0 +1,44 @@
|
|||
/**
|
||||
* Colors
|
||||
*/
|
||||
/**
|
||||
* Breakpoints & Media Queries
|
||||
*/
|
||||
/**
|
||||
* Often re-used variables
|
||||
*/
|
||||
/**
|
||||
* Breakpoint mixins
|
||||
*/
|
||||
/**
|
||||
* Long content fade mixin
|
||||
*
|
||||
* Creates a fading overlay to signify that the content is longer
|
||||
* than the space allows.
|
||||
*/
|
||||
/**
|
||||
* Button states and focus styles
|
||||
*/
|
||||
/**
|
||||
* Applies editor left position to the selector passed as argument
|
||||
*/
|
||||
/**
|
||||
* Applies editor right position to the selector passed as argument
|
||||
*/
|
||||
/**
|
||||
* Styles that are reused verbatim in a few places
|
||||
*/
|
||||
.editor-format-toolbar__link-container-content {
|
||||
display: flex; }
|
||||
|
||||
.editor-format-toolbar__link-container-value {
|
||||
margin: 7px;
|
||||
flex-grow: 1;
|
||||
flex-shrink: 1;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
min-width: 150px;
|
||||
max-width: 500px; }
|
||||
.editor-format-toolbar__link-container-value.has-invalid-link {
|
||||
color: #d94f4f; }
|
1
wp-includes/css/dist/format-library/style-rtl.min.css
vendored
Normal file
1
wp-includes/css/dist/format-library/style-rtl.min.css
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
.editor-format-toolbar__link-container-content{display:flex}.editor-format-toolbar__link-container-value{margin:7px;flex-grow:1;flex-shrink:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;min-width:150px;max-width:500px}.editor-format-toolbar__link-container-value.has-invalid-link{color:#d94f4f}
|
44
wp-includes/css/dist/format-library/style.css
vendored
Normal file
44
wp-includes/css/dist/format-library/style.css
vendored
Normal file
|
@ -0,0 +1,44 @@
|
|||
/**
|
||||
* Colors
|
||||
*/
|
||||
/**
|
||||
* Breakpoints & Media Queries
|
||||
*/
|
||||
/**
|
||||
* Often re-used variables
|
||||
*/
|
||||
/**
|
||||
* Breakpoint mixins
|
||||
*/
|
||||
/**
|
||||
* Long content fade mixin
|
||||
*
|
||||
* Creates a fading overlay to signify that the content is longer
|
||||
* than the space allows.
|
||||
*/
|
||||
/**
|
||||
* Button states and focus styles
|
||||
*/
|
||||
/**
|
||||
* Applies editor left position to the selector passed as argument
|
||||
*/
|
||||
/**
|
||||
* Applies editor right position to the selector passed as argument
|
||||
*/
|
||||
/**
|
||||
* Styles that are reused verbatim in a few places
|
||||
*/
|
||||
.editor-format-toolbar__link-container-content {
|
||||
display: flex; }
|
||||
|
||||
.editor-format-toolbar__link-container-value {
|
||||
margin: 7px;
|
||||
flex-grow: 1;
|
||||
flex-shrink: 1;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
min-width: 150px;
|
||||
max-width: 500px; }
|
||||
.editor-format-toolbar__link-container-value.has-invalid-link {
|
||||
color: #d94f4f; }
|
1
wp-includes/css/dist/format-library/style.min.css
vendored
Normal file
1
wp-includes/css/dist/format-library/style.min.css
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
.editor-format-toolbar__link-container-content{display:flex}.editor-format-toolbar__link-container-value{margin:7px;flex-grow:1;flex-shrink:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;min-width:150px;max-width:500px}.editor-format-toolbar__link-container-value.has-invalid-link{color:#d94f4f}
|
49
wp-includes/css/dist/list-reusable-blocks/style-rtl.css
vendored
Normal file
49
wp-includes/css/dist/list-reusable-blocks/style-rtl.css
vendored
Normal file
|
@ -0,0 +1,49 @@
|
|||
/**
|
||||
* Colors
|
||||
*/
|
||||
/**
|
||||
* Breakpoints & Media Queries
|
||||
*/
|
||||
/**
|
||||
* Often re-used variables
|
||||
*/
|
||||
/**
|
||||
* Breakpoint mixins
|
||||
*/
|
||||
/**
|
||||
* Long content fade mixin
|
||||
*
|
||||
* Creates a fading overlay to signify that the content is longer
|
||||
* than the space allows.
|
||||
*/
|
||||
/**
|
||||
* Button states and focus styles
|
||||
*/
|
||||
/**
|
||||
* Applies editor left position to the selector passed as argument
|
||||
*/
|
||||
/**
|
||||
* Applies editor right position to the selector passed as argument
|
||||
*/
|
||||
/**
|
||||
* Styles that are reused verbatim in a few places
|
||||
*/
|
||||
.list-reusable-blocks-import-dropdown__content .components-popover__content {
|
||||
padding: 10px; }
|
||||
|
||||
.list-reusable-blocks-import-form__label {
|
||||
display: block;
|
||||
margin-bottom: 10px; }
|
||||
|
||||
.list-reusable-blocks-import-form__button {
|
||||
margin-top: 20px;
|
||||
float: left; }
|
||||
|
||||
.list-reusable-blocks-import-form .components-notice__content {
|
||||
margin: 0; }
|
||||
|
||||
.list-reusable-blocks__container {
|
||||
display: inline-flex;
|
||||
padding: 9px 0 4px;
|
||||
align-items: center;
|
||||
vertical-align: top; }
|
1
wp-includes/css/dist/list-reusable-blocks/style-rtl.min.css
vendored
Normal file
1
wp-includes/css/dist/list-reusable-blocks/style-rtl.min.css
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
.list-reusable-blocks-import-dropdown__content .components-popover__content{padding:10px}.list-reusable-blocks-import-form__label{display:block;margin-bottom:10px}.list-reusable-blocks-import-form__button{margin-top:20px;float:left}.list-reusable-blocks-import-form .components-notice__content{margin:0}.list-reusable-blocks__container{display:inline-flex;padding:9px 0 4px;align-items:center;vertical-align:top}
|
49
wp-includes/css/dist/list-reusable-blocks/style.css
vendored
Normal file
49
wp-includes/css/dist/list-reusable-blocks/style.css
vendored
Normal file
|
@ -0,0 +1,49 @@
|
|||
/**
|
||||
* Colors
|
||||
*/
|
||||
/**
|
||||
* Breakpoints & Media Queries
|
||||
*/
|
||||
/**
|
||||
* Often re-used variables
|
||||
*/
|
||||
/**
|
||||
* Breakpoint mixins
|
||||
*/
|
||||
/**
|
||||
* Long content fade mixin
|
||||
*
|
||||
* Creates a fading overlay to signify that the content is longer
|
||||
* than the space allows.
|
||||
*/
|
||||
/**
|
||||
* Button states and focus styles
|
||||
*/
|
||||
/**
|
||||
* Applies editor left position to the selector passed as argument
|
||||
*/
|
||||
/**
|
||||
* Applies editor right position to the selector passed as argument
|
||||
*/
|
||||
/**
|
||||
* Styles that are reused verbatim in a few places
|
||||
*/
|
||||
.list-reusable-blocks-import-dropdown__content .components-popover__content {
|
||||
padding: 10px; }
|
||||
|
||||
.list-reusable-blocks-import-form__label {
|
||||
display: block;
|
||||
margin-bottom: 10px; }
|
||||
|
||||
.list-reusable-blocks-import-form__button {
|
||||
margin-top: 20px;
|
||||
float: right; }
|
||||
|
||||
.list-reusable-blocks-import-form .components-notice__content {
|
||||
margin: 0; }
|
||||
|
||||
.list-reusable-blocks__container {
|
||||
display: inline-flex;
|
||||
padding: 9px 0 4px;
|
||||
align-items: center;
|
||||
vertical-align: top; }
|
1
wp-includes/css/dist/list-reusable-blocks/style.min.css
vendored
Normal file
1
wp-includes/css/dist/list-reusable-blocks/style.min.css
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
.list-reusable-blocks-import-dropdown__content .components-popover__content{padding:10px}.list-reusable-blocks-import-form__label{display:block;margin-bottom:10px}.list-reusable-blocks-import-form__button{margin-top:20px;float:right}.list-reusable-blocks-import-form .components-notice__content{margin:0}.list-reusable-blocks__container{display:inline-flex;padding:9px 0 4px;align-items:center;vertical-align:top}
|
115
wp-includes/css/dist/nux/style-rtl.css
vendored
Normal file
115
wp-includes/css/dist/nux/style-rtl.css
vendored
Normal file
|
@ -0,0 +1,115 @@
|
|||
/**
|
||||
* Colors
|
||||
*/
|
||||
/**
|
||||
* Breakpoints & Media Queries
|
||||
*/
|
||||
/**
|
||||
* Often re-used variables
|
||||
*/
|
||||
/**
|
||||
* Breakpoint mixins
|
||||
*/
|
||||
/**
|
||||
* Long content fade mixin
|
||||
*
|
||||
* Creates a fading overlay to signify that the content is longer
|
||||
* than the space allows.
|
||||
*/
|
||||
/**
|
||||
* Button states and focus styles
|
||||
*/
|
||||
/**
|
||||
* Applies editor left position to the selector passed as argument
|
||||
*/
|
||||
/**
|
||||
* Applies editor right position to the selector passed as argument
|
||||
*/
|
||||
/**
|
||||
* Styles that are reused verbatim in a few places
|
||||
*/
|
||||
.nux-dot-tip::before, .nux-dot-tip::after {
|
||||
border-radius: 100%;
|
||||
content: " ";
|
||||
pointer-events: none;
|
||||
position: absolute; }
|
||||
|
||||
.nux-dot-tip::before {
|
||||
animation: nux-pulse 1.6s infinite cubic-bezier(0.17, 0.67, 0.92, 0.62);
|
||||
background: rgba(0, 115, 156, 0.9);
|
||||
height: 24px;
|
||||
right: -12px;
|
||||
top: -12px;
|
||||
transform: scale(0.33333);
|
||||
width: 24px; }
|
||||
|
||||
.nux-dot-tip::after {
|
||||
background: #00739c;
|
||||
height: 8px;
|
||||
right: -4px;
|
||||
top: -4px;
|
||||
width: 8px; }
|
||||
|
||||
@keyframes nux-pulse {
|
||||
100% {
|
||||
background: rgba(0, 115, 156, 0);
|
||||
transform: scale(1); } }
|
||||
|
||||
.nux-dot-tip .components-popover__content {
|
||||
padding: 5px 20px 5px 41px;
|
||||
width: 350px; }
|
||||
@media (min-width: 600px) {
|
||||
.nux-dot-tip .components-popover__content {
|
||||
width: 450px; } }
|
||||
.nux-dot-tip .components-popover__content .nux-dot-tip__disable {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0; }
|
||||
|
||||
.nux-dot-tip.is-top {
|
||||
margin-top: -4px; }
|
||||
|
||||
.nux-dot-tip.is-bottom {
|
||||
margin-top: 4px; }
|
||||
|
||||
.nux-dot-tip.is-middle.is-left {
|
||||
margin-right: -4px; }
|
||||
|
||||
.nux-dot-tip.is-middle.is-right {
|
||||
margin-right: 4px; }
|
||||
|
||||
.nux-dot-tip.is-top .components-popover__content {
|
||||
margin-bottom: 20px; }
|
||||
|
||||
.nux-dot-tip.is-bottom .components-popover__content {
|
||||
margin-top: 20px; }
|
||||
|
||||
.nux-dot-tip.is-middle.is-left .components-popover__content {
|
||||
margin-left: 20px; }
|
||||
|
||||
.nux-dot-tip.is-middle.is-right .components-popover__content {
|
||||
margin-right: 20px; }
|
||||
|
||||
.nux-dot-tip:not(.is-mobile).is-left, .nux-dot-tip:not(.is-mobile).is-center, .nux-dot-tip:not(.is-mobile).is-right {
|
||||
z-index: 1000001; }
|
||||
@media (max-width: 600px) {
|
||||
.nux-dot-tip:not(.is-mobile).is-left .components-popover__content, .nux-dot-tip:not(.is-mobile).is-center .components-popover__content, .nux-dot-tip:not(.is-mobile).is-right .components-popover__content {
|
||||
align-self: end;
|
||||
right: 5px;
|
||||
margin: 20px 0 0 0;
|
||||
max-width: none !important;
|
||||
position: fixed;
|
||||
left: 5px;
|
||||
width: auto; } }
|
||||
|
||||
.nux-dot-tip.components-popover:not(.is-mobile):not(.is-middle).is-right .components-popover__content {
|
||||
margin-left: 0; }
|
||||
|
||||
.nux-dot-tip.components-popover:not(.is-mobile):not(.is-middle).is-left .components-popover__content {
|
||||
margin-right: 0; }
|
||||
|
||||
.nux-dot-tip.components-popover.edit-post-more-menu__content:not(.is-mobile):not(.is-middle).is-right .components-popover__content {
|
||||
margin-left: -12px; }
|
||||
|
||||
.nux-dot-tip.components-popover.edit-post-more-menu__content:not(.is-mobile):not(.is-middle).is-left .components-popover__content {
|
||||
margin-right: -12px; }
|
1
wp-includes/css/dist/nux/style-rtl.min.css
vendored
Normal file
1
wp-includes/css/dist/nux/style-rtl.min.css
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
.nux-dot-tip::after,.nux-dot-tip::before{border-radius:100%;content:" ";pointer-events:none;position:absolute}.nux-dot-tip::before{animation:nux-pulse 1.6s infinite cubic-bezier(.17,.67,.92,.62);background:rgba(0,115,156,.9);height:24px;right:-12px;top:-12px;transform:scale(.33333);width:24px}.nux-dot-tip::after{background:#00739c;height:8px;right:-4px;top:-4px;width:8px}@keyframes nux-pulse{100%{background:rgba(0,115,156,0);transform:scale(1)}}.nux-dot-tip .components-popover__content{padding:5px 20px 5px 41px;width:350px}@media (min-width:600px){.nux-dot-tip .components-popover__content{width:450px}}.nux-dot-tip .components-popover__content .nux-dot-tip__disable{position:absolute;left:0;top:0}.nux-dot-tip.is-top{margin-top:-4px}.nux-dot-tip.is-bottom{margin-top:4px}.nux-dot-tip.is-middle.is-left{margin-right:-4px}.nux-dot-tip.is-middle.is-right{margin-right:4px}.nux-dot-tip.is-top .components-popover__content{margin-bottom:20px}.nux-dot-tip.is-bottom .components-popover__content{margin-top:20px}.nux-dot-tip.is-middle.is-left .components-popover__content{margin-left:20px}.nux-dot-tip.is-middle.is-right .components-popover__content{margin-right:20px}.nux-dot-tip:not(.is-mobile).is-center,.nux-dot-tip:not(.is-mobile).is-left,.nux-dot-tip:not(.is-mobile).is-right{z-index:1000001}@media (max-width:600px){.nux-dot-tip:not(.is-mobile).is-center .components-popover__content,.nux-dot-tip:not(.is-mobile).is-left .components-popover__content,.nux-dot-tip:not(.is-mobile).is-right .components-popover__content{align-self:end;right:5px;margin:20px 0 0 0;max-width:none!important;position:fixed;left:5px;width:auto}}.nux-dot-tip.components-popover:not(.is-mobile):not(.is-middle).is-right .components-popover__content{margin-left:0}.nux-dot-tip.components-popover:not(.is-mobile):not(.is-middle).is-left .components-popover__content{margin-right:0}.nux-dot-tip.components-popover.edit-post-more-menu__content:not(.is-mobile):not(.is-middle).is-right .components-popover__content{margin-left:-12px}.nux-dot-tip.components-popover.edit-post-more-menu__content:not(.is-mobile):not(.is-middle).is-left .components-popover__content{margin-right:-12px}
|
119
wp-includes/css/dist/nux/style.css
vendored
Normal file
119
wp-includes/css/dist/nux/style.css
vendored
Normal file
|
@ -0,0 +1,119 @@
|
|||
/**
|
||||
* Colors
|
||||
*/
|
||||
/**
|
||||
* Breakpoints & Media Queries
|
||||
*/
|
||||
/**
|
||||
* Often re-used variables
|
||||
*/
|
||||
/**
|
||||
* Breakpoint mixins
|
||||
*/
|
||||
/**
|
||||
* Long content fade mixin
|
||||
*
|
||||
* Creates a fading overlay to signify that the content is longer
|
||||
* than the space allows.
|
||||
*/
|
||||
/**
|
||||
* Button states and focus styles
|
||||
*/
|
||||
/**
|
||||
* Applies editor left position to the selector passed as argument
|
||||
*/
|
||||
/**
|
||||
* Applies editor right position to the selector passed as argument
|
||||
*/
|
||||
/**
|
||||
* Styles that are reused verbatim in a few places
|
||||
*/
|
||||
.nux-dot-tip::before, .nux-dot-tip::after {
|
||||
border-radius: 100%;
|
||||
content: " ";
|
||||
pointer-events: none;
|
||||
position: absolute; }
|
||||
|
||||
.nux-dot-tip::before {
|
||||
animation: nux-pulse 1.6s infinite cubic-bezier(0.17, 0.67, 0.92, 0.62);
|
||||
background: rgba(0, 115, 156, 0.9);
|
||||
height: 24px;
|
||||
left: -12px;
|
||||
top: -12px;
|
||||
transform: scale(0.33333);
|
||||
width: 24px; }
|
||||
|
||||
.nux-dot-tip::after {
|
||||
background: #00739c;
|
||||
height: 8px;
|
||||
left: -4px;
|
||||
top: -4px;
|
||||
width: 8px; }
|
||||
|
||||
@keyframes nux-pulse {
|
||||
100% {
|
||||
background: rgba(0, 115, 156, 0);
|
||||
transform: scale(1); } }
|
||||
|
||||
.nux-dot-tip .components-popover__content {
|
||||
padding: 5px 41px 5px 20px;
|
||||
width: 350px; }
|
||||
@media (min-width: 600px) {
|
||||
.nux-dot-tip .components-popover__content {
|
||||
width: 450px; } }
|
||||
.nux-dot-tip .components-popover__content .nux-dot-tip__disable {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0; }
|
||||
|
||||
.nux-dot-tip.is-top {
|
||||
margin-top: -4px; }
|
||||
|
||||
.nux-dot-tip.is-bottom {
|
||||
margin-top: 4px; }
|
||||
|
||||
.nux-dot-tip.is-middle.is-left {
|
||||
margin-left: -4px; }
|
||||
|
||||
.nux-dot-tip.is-middle.is-right {
|
||||
margin-left: 4px; }
|
||||
|
||||
.nux-dot-tip.is-top .components-popover__content {
|
||||
margin-bottom: 20px; }
|
||||
|
||||
.nux-dot-tip.is-bottom .components-popover__content {
|
||||
margin-top: 20px; }
|
||||
|
||||
.nux-dot-tip.is-middle.is-left .components-popover__content {
|
||||
margin-right: 20px; }
|
||||
|
||||
.nux-dot-tip.is-middle.is-right .components-popover__content {
|
||||
margin-left: 20px; }
|
||||
|
||||
.nux-dot-tip:not(.is-mobile).is-left, .nux-dot-tip:not(.is-mobile).is-center, .nux-dot-tip:not(.is-mobile).is-right {
|
||||
z-index: 1000001; }
|
||||
@media (max-width: 600px) {
|
||||
.nux-dot-tip:not(.is-mobile).is-left .components-popover__content, .nux-dot-tip:not(.is-mobile).is-center .components-popover__content, .nux-dot-tip:not(.is-mobile).is-right .components-popover__content {
|
||||
align-self: end;
|
||||
left: 5px;
|
||||
margin: 20px 0 0 0;
|
||||
max-width: none !important;
|
||||
position: fixed;
|
||||
right: 5px;
|
||||
width: auto; } }
|
||||
|
||||
.nux-dot-tip.components-popover:not(.is-mobile):not(.is-middle).is-right .components-popover__content {
|
||||
/*!rtl:ignore*/
|
||||
margin-left: 0; }
|
||||
|
||||
.nux-dot-tip.components-popover:not(.is-mobile):not(.is-middle).is-left .components-popover__content {
|
||||
/*!rtl:ignore*/
|
||||
margin-right: 0; }
|
||||
|
||||
.nux-dot-tip.components-popover.edit-post-more-menu__content:not(.is-mobile):not(.is-middle).is-right .components-popover__content {
|
||||
/*!rtl:ignore*/
|
||||
margin-left: -12px; }
|
||||
|
||||
.nux-dot-tip.components-popover.edit-post-more-menu__content:not(.is-mobile):not(.is-middle).is-left .components-popover__content {
|
||||
/*!rtl:ignore*/
|
||||
margin-right: -12px; }
|
1
wp-includes/css/dist/nux/style.min.css
vendored
Normal file
1
wp-includes/css/dist/nux/style.min.css
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
.nux-dot-tip::after,.nux-dot-tip::before{border-radius:100%;content:" ";pointer-events:none;position:absolute}.nux-dot-tip::before{animation:nux-pulse 1.6s infinite cubic-bezier(.17,.67,.92,.62);background:rgba(0,115,156,.9);height:24px;left:-12px;top:-12px;transform:scale(.33333);width:24px}.nux-dot-tip::after{background:#00739c;height:8px;left:-4px;top:-4px;width:8px}@keyframes nux-pulse{100%{background:rgba(0,115,156,0);transform:scale(1)}}.nux-dot-tip .components-popover__content{padding:5px 41px 5px 20px;width:350px}@media (min-width:600px){.nux-dot-tip .components-popover__content{width:450px}}.nux-dot-tip .components-popover__content .nux-dot-tip__disable{position:absolute;right:0;top:0}.nux-dot-tip.is-top{margin-top:-4px}.nux-dot-tip.is-bottom{margin-top:4px}.nux-dot-tip.is-middle.is-left{margin-left:-4px}.nux-dot-tip.is-middle.is-right{margin-left:4px}.nux-dot-tip.is-top .components-popover__content{margin-bottom:20px}.nux-dot-tip.is-bottom .components-popover__content{margin-top:20px}.nux-dot-tip.is-middle.is-left .components-popover__content{margin-right:20px}.nux-dot-tip.is-middle.is-right .components-popover__content{margin-left:20px}.nux-dot-tip:not(.is-mobile).is-center,.nux-dot-tip:not(.is-mobile).is-left,.nux-dot-tip:not(.is-mobile).is-right{z-index:1000001}@media (max-width:600px){.nux-dot-tip:not(.is-mobile).is-center .components-popover__content,.nux-dot-tip:not(.is-mobile).is-left .components-popover__content,.nux-dot-tip:not(.is-mobile).is-right .components-popover__content{align-self:end;left:5px;margin:20px 0 0 0;max-width:none!important;position:fixed;right:5px;width:auto}}.nux-dot-tip.components-popover:not(.is-mobile):not(.is-middle).is-right .components-popover__content{/*!rtl:ignore*/margin-left:0}.nux-dot-tip.components-popover:not(.is-mobile):not(.is-middle).is-left .components-popover__content{/*!rtl:ignore*/margin-right:0}.nux-dot-tip.components-popover.edit-post-more-menu__content:not(.is-mobile):not(.is-middle).is-right .components-popover__content{/*!rtl:ignore*/margin-left:-12px}.nux-dot-tip.components-popover.edit-post-more-menu__content:not(.is-mobile):not(.is-middle).is-left .components-popover__content{/*!rtl:ignore*/margin-right:-12px}
|
1858
wp-includes/css/editor-rtl.css
Normal file
1858
wp-includes/css/editor-rtl.css
Normal file
File diff suppressed because it is too large
Load diff
2
wp-includes/css/editor-rtl.min.css
vendored
Normal file
2
wp-includes/css/editor-rtl.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1858
wp-includes/css/editor.css
Normal file
1858
wp-includes/css/editor.css
Normal file
File diff suppressed because it is too large
Load diff
2
wp-includes/css/editor.min.css
vendored
Normal file
2
wp-includes/css/editor.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
349
wp-includes/css/jquery-ui-dialog-rtl.css
Normal file
349
wp-includes/css/jquery-ui-dialog-rtl.css
Normal file
|
@ -0,0 +1,349 @@
|
|||
/*!
|
||||
* jQuery UI CSS Framework 1.11.4
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
* http://api.jqueryui.com/category/theming/
|
||||
*/
|
||||
|
||||
/* Layout helpers
|
||||
----------------------------------*/
|
||||
.ui-helper-hidden {
|
||||
display: none;
|
||||
}
|
||||
.ui-helper-hidden-accessible {
|
||||
border: 0;
|
||||
clip: rect(0 0 0 0);
|
||||
height: 1px;
|
||||
margin: -1px;
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
}
|
||||
.ui-helper-reset {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
outline: 0;
|
||||
line-height: 1.3;
|
||||
text-decoration: none;
|
||||
font-size: 100%;
|
||||
list-style: none;
|
||||
}
|
||||
.ui-helper-clearfix:before,
|
||||
.ui-helper-clearfix:after {
|
||||
content: "";
|
||||
display: table;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
.ui-helper-clearfix:after {
|
||||
clear: both;
|
||||
}
|
||||
.ui-helper-clearfix {
|
||||
min-height: 0; /* support: IE7 */
|
||||
}
|
||||
.ui-helper-zfix {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0;
|
||||
right: 0;
|
||||
position: absolute;
|
||||
opacity: 0;
|
||||
filter:Alpha(Opacity=0); /* support: IE8 */
|
||||
}
|
||||
|
||||
.ui-front {
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
|
||||
/* Interaction Cues
|
||||
----------------------------------*/
|
||||
.ui-state-disabled {
|
||||
cursor: default !important;
|
||||
}
|
||||
|
||||
|
||||
/* Icons
|
||||
----------------------------------*/
|
||||
|
||||
/* states and images */
|
||||
.ui-icon {
|
||||
display: block;
|
||||
text-indent: -99999px;
|
||||
overflow: hidden;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
|
||||
/* Misc visuals
|
||||
----------------------------------*/
|
||||
|
||||
/* Overlays */
|
||||
.ui-widget-overlay {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
/*!
|
||||
* jQuery UI Resizable 1.11.4
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*/
|
||||
.ui-resizable {
|
||||
position: relative;
|
||||
}
|
||||
.ui-resizable-handle {
|
||||
position: absolute;
|
||||
font-size: 0.1px;
|
||||
display: block;
|
||||
touch-action: none;
|
||||
}
|
||||
.ui-resizable-disabled .ui-resizable-handle,
|
||||
.ui-resizable-autohide .ui-resizable-handle {
|
||||
display: none;
|
||||
}
|
||||
.ui-resizable-n {
|
||||
cursor: n-resize;
|
||||
height: 7px;
|
||||
width: 100%;
|
||||
top: -5px;
|
||||
right: 0;
|
||||
}
|
||||
.ui-resizable-s {
|
||||
cursor: s-resize;
|
||||
height: 7px;
|
||||
width: 100%;
|
||||
bottom: -5px;
|
||||
right: 0;
|
||||
}
|
||||
/* rtl:ignore */
|
||||
.ui-resizable-e {
|
||||
cursor: e-resize;
|
||||
width: 7px;
|
||||
right: -5px;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
}
|
||||
/* rtl:ignore */
|
||||
.ui-resizable-w {
|
||||
cursor: w-resize;
|
||||
width: 7px;
|
||||
left: -5px;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
}
|
||||
/* rtl:ignore */
|
||||
.ui-resizable-se {
|
||||
cursor: se-resize;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
right: 1px;
|
||||
bottom: 1px;
|
||||
}
|
||||
/* rtl:ignore */
|
||||
.ui-resizable-sw {
|
||||
cursor: sw-resize;
|
||||
width: 9px;
|
||||
height: 9px;
|
||||
left: -5px;
|
||||
bottom: -5px;
|
||||
}
|
||||
/* rtl:ignore */
|
||||
.ui-resizable-nw {
|
||||
cursor: nw-resize;
|
||||
width: 9px;
|
||||
height: 9px;
|
||||
left: -5px;
|
||||
top: -5px;
|
||||
}
|
||||
/* rtl:ignore */
|
||||
.ui-resizable-ne {
|
||||
cursor: ne-resize;
|
||||
width: 9px;
|
||||
height: 9px;
|
||||
right: -5px;
|
||||
top: -5px;
|
||||
}
|
||||
|
||||
/* WP buttons: see buttons.css. */
|
||||
|
||||
.ui-button {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
font-size: 13px;
|
||||
line-height: 26px;
|
||||
height: 28px;
|
||||
margin: 0;
|
||||
padding: 0 10px 1px;
|
||||
cursor: pointer;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
-webkit-appearance: none;
|
||||
border-radius: 3px;
|
||||
white-space: nowrap;
|
||||
box-sizing: border-box;
|
||||
color: #555;
|
||||
border-color: #cccccc;
|
||||
background: #f7f7f7;
|
||||
box-shadow: 0 1px 0 #cccccc;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.ui-button:active,
|
||||
.ui-button:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
/* Remove the dotted border on :focus and the extra padding in Firefox */
|
||||
.ui-button::-moz-focus-inner {
|
||||
border-width: 0;
|
||||
border-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.ui-button:hover,
|
||||
.ui-button:focus {
|
||||
background: #fafafa;
|
||||
border-color: #999;
|
||||
color: #23282d;
|
||||
}
|
||||
|
||||
.ui-button:focus {
|
||||
border-color: #5b9dd9;
|
||||
box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
|
||||
}
|
||||
|
||||
.ui-button:active {
|
||||
background: #eee;
|
||||
border-color: #999;
|
||||
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
|
||||
transform: translateY(1px);
|
||||
}
|
||||
|
||||
.ui-button[disabled],
|
||||
.ui-button:disabled {
|
||||
color: #a0a5aa !important;
|
||||
border-color: #ddd !important;
|
||||
background: #f7f7f7 !important;
|
||||
box-shadow: none !important;
|
||||
text-shadow: 0 1px 0 #fff !important;
|
||||
cursor: default;
|
||||
transform: none !important;
|
||||
}
|
||||
|
||||
@media screen and ( max-width: 782px ) {
|
||||
|
||||
.ui-button {
|
||||
padding: 6px 14px;
|
||||
line-height: normal;
|
||||
font-size: 14px;
|
||||
vertical-align: middle;
|
||||
height: auto;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* WP Theme */
|
||||
|
||||
.ui-dialog {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
z-index: 100102;
|
||||
background-color: #fff;
|
||||
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
|
||||
}
|
||||
|
||||
.ui-dialog-titlebar {
|
||||
background: #fcfcfc;
|
||||
border-bottom: 1px solid #dfdfdf;
|
||||
height: 36px;
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
line-height: 36px;
|
||||
padding: 0 16px 0 36px;
|
||||
}
|
||||
|
||||
.ui-button.ui-dialog-titlebar-close {
|
||||
background: none;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
color: #666;
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
padding: 0;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.ui-dialog-titlebar-close:before {
|
||||
font: normal 20px/1 dashicons;
|
||||
vertical-align: top;
|
||||
speak: none;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
line-height: 36px;
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
content: '\f158';
|
||||
}
|
||||
|
||||
.ui-button.ui-dialog-titlebar-close:hover {
|
||||
color: #00a0d2;
|
||||
}
|
||||
|
||||
.ui-dialog-titlebar-close .ui-button-text {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.ui-dialog-content {
|
||||
padding: 16px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.ui-dialog-buttonpane {
|
||||
background: #fcfcfc;
|
||||
border-top: 1px solid #dfdfdf;
|
||||
padding: 16px;
|
||||
}
|
||||
|
||||
.ui-dialog-buttonpane .ui-button {
|
||||
margin-right: 16px;
|
||||
}
|
||||
|
||||
.ui-dialog-buttonpane .ui-dialog-buttonset {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.ui-draggable .ui-dialog-titlebar {
|
||||
cursor: move;
|
||||
}
|
||||
|
||||
.ui-widget-overlay {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
min-height: 360px;
|
||||
background: #000;
|
||||
opacity: 0.7;
|
||||
filter: alpha(opacity=70);
|
||||
z-index: 100101;
|
||||
}
|
18
wp-includes/css/jquery-ui-dialog-rtl.min.css
vendored
Normal file
18
wp-includes/css/jquery-ui-dialog-rtl.min.css
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*! This file is auto-generated */
|
||||
/*!
|
||||
* jQuery UI CSS Framework 1.11.4
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
* http://api.jqueryui.com/category/theming/
|
||||
*/.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:after,.ui-helper-clearfix:before{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;right:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;right:0;width:100%;height:100%}/*!
|
||||
* jQuery UI Resizable 1.11.4
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*/.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;display:block;touch-action:none}.ui-resizable-autohide .ui-resizable-handle,.ui-resizable-disabled .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;right:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;right:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-button{display:inline-block;text-decoration:none;font-size:13px;line-height:26px;height:28px;margin:0;padding:0 10px 1px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box;color:#555;border-color:#ccc;background:#f7f7f7;box-shadow:0 1px 0 #ccc;vertical-align:top}.ui-button:active,.ui-button:focus{outline:0}.ui-button::-moz-focus-inner{border-width:0;border-style:none;padding:0}.ui-button:focus,.ui-button:hover{background:#fafafa;border-color:#999;color:#23282d}.ui-button:focus{border-color:#5b9dd9;box-shadow:0 0 3px rgba(0,115,170,.8)}.ui-button:active{background:#eee;border-color:#999;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);transform:translateY(1px)}.ui-button:disabled,.ui-button[disabled]{color:#a0a5aa!important;border-color:#ddd!important;background:#f7f7f7!important;box-shadow:none!important;text-shadow:0 1px 0 #fff!important;cursor:default;transform:none!important}@media screen and (max-width:782px){.ui-button{padding:6px 14px;line-height:normal;font-size:14px;vertical-align:middle;height:auto;margin-bottom:4px}}.ui-dialog{position:absolute;top:0;right:0;z-index:100102;background-color:#fff;box-shadow:0 3px 6px rgba(0,0,0,.3)}.ui-dialog-titlebar{background:#fcfcfc;border-bottom:1px solid #dfdfdf;height:36px;font-size:18px;font-weight:600;line-height:36px;padding:0 16px 0 36px}.ui-button.ui-dialog-titlebar-close{background:0 0;border:none;box-shadow:none;color:#666;cursor:pointer;display:block;padding:0;position:absolute;top:0;left:0;width:36px;height:36px;text-align:center}.ui-dialog-titlebar-close:before{font:normal 20px/1 dashicons;vertical-align:top;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;line-height:36px;width:36px;height:36px;content:'\f158'}.ui-button.ui-dialog-titlebar-close:hover{color:#00a0d2}.ui-dialog-titlebar-close .ui-button-text{display:none}.ui-dialog-content{padding:16px;overflow:auto}.ui-dialog-buttonpane{background:#fcfcfc;border-top:1px solid #dfdfdf;padding:16px}.ui-dialog-buttonpane .ui-button{margin-right:16px}.ui-dialog-buttonpane .ui-dialog-buttonset{float:left}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-widget-overlay{position:fixed;top:0;right:0;left:0;bottom:0;min-height:360px;background:#000;opacity:.7;filter:alpha(opacity=70);z-index:100101}
|
349
wp-includes/css/jquery-ui-dialog.css
Normal file
349
wp-includes/css/jquery-ui-dialog.css
Normal file
|
@ -0,0 +1,349 @@
|
|||
/*!
|
||||
* jQuery UI CSS Framework 1.11.4
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
* http://api.jqueryui.com/category/theming/
|
||||
*/
|
||||
|
||||
/* Layout helpers
|
||||
----------------------------------*/
|
||||
.ui-helper-hidden {
|
||||
display: none;
|
||||
}
|
||||
.ui-helper-hidden-accessible {
|
||||
border: 0;
|
||||
clip: rect(0 0 0 0);
|
||||
height: 1px;
|
||||
margin: -1px;
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
}
|
||||
.ui-helper-reset {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
outline: 0;
|
||||
line-height: 1.3;
|
||||
text-decoration: none;
|
||||
font-size: 100%;
|
||||
list-style: none;
|
||||
}
|
||||
.ui-helper-clearfix:before,
|
||||
.ui-helper-clearfix:after {
|
||||
content: "";
|
||||
display: table;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
.ui-helper-clearfix:after {
|
||||
clear: both;
|
||||
}
|
||||
.ui-helper-clearfix {
|
||||
min-height: 0; /* support: IE7 */
|
||||
}
|
||||
.ui-helper-zfix {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0;
|
||||
left: 0;
|
||||
position: absolute;
|
||||
opacity: 0;
|
||||
filter:Alpha(Opacity=0); /* support: IE8 */
|
||||
}
|
||||
|
||||
.ui-front {
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
|
||||
/* Interaction Cues
|
||||
----------------------------------*/
|
||||
.ui-state-disabled {
|
||||
cursor: default !important;
|
||||
}
|
||||
|
||||
|
||||
/* Icons
|
||||
----------------------------------*/
|
||||
|
||||
/* states and images */
|
||||
.ui-icon {
|
||||
display: block;
|
||||
text-indent: -99999px;
|
||||
overflow: hidden;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
|
||||
/* Misc visuals
|
||||
----------------------------------*/
|
||||
|
||||
/* Overlays */
|
||||
.ui-widget-overlay {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
/*!
|
||||
* jQuery UI Resizable 1.11.4
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*/
|
||||
.ui-resizable {
|
||||
position: relative;
|
||||
}
|
||||
.ui-resizable-handle {
|
||||
position: absolute;
|
||||
font-size: 0.1px;
|
||||
display: block;
|
||||
touch-action: none;
|
||||
}
|
||||
.ui-resizable-disabled .ui-resizable-handle,
|
||||
.ui-resizable-autohide .ui-resizable-handle {
|
||||
display: none;
|
||||
}
|
||||
.ui-resizable-n {
|
||||
cursor: n-resize;
|
||||
height: 7px;
|
||||
width: 100%;
|
||||
top: -5px;
|
||||
left: 0;
|
||||
}
|
||||
.ui-resizable-s {
|
||||
cursor: s-resize;
|
||||
height: 7px;
|
||||
width: 100%;
|
||||
bottom: -5px;
|
||||
left: 0;
|
||||
}
|
||||
/* rtl:ignore */
|
||||
.ui-resizable-e {
|
||||
cursor: e-resize;
|
||||
width: 7px;
|
||||
right: -5px;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
}
|
||||
/* rtl:ignore */
|
||||
.ui-resizable-w {
|
||||
cursor: w-resize;
|
||||
width: 7px;
|
||||
left: -5px;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
}
|
||||
/* rtl:ignore */
|
||||
.ui-resizable-se {
|
||||
cursor: se-resize;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
right: 1px;
|
||||
bottom: 1px;
|
||||
}
|
||||
/* rtl:ignore */
|
||||
.ui-resizable-sw {
|
||||
cursor: sw-resize;
|
||||
width: 9px;
|
||||
height: 9px;
|
||||
left: -5px;
|
||||
bottom: -5px;
|
||||
}
|
||||
/* rtl:ignore */
|
||||
.ui-resizable-nw {
|
||||
cursor: nw-resize;
|
||||
width: 9px;
|
||||
height: 9px;
|
||||
left: -5px;
|
||||
top: -5px;
|
||||
}
|
||||
/* rtl:ignore */
|
||||
.ui-resizable-ne {
|
||||
cursor: ne-resize;
|
||||
width: 9px;
|
||||
height: 9px;
|
||||
right: -5px;
|
||||
top: -5px;
|
||||
}
|
||||
|
||||
/* WP buttons: see buttons.css. */
|
||||
|
||||
.ui-button {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
font-size: 13px;
|
||||
line-height: 26px;
|
||||
height: 28px;
|
||||
margin: 0;
|
||||
padding: 0 10px 1px;
|
||||
cursor: pointer;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
-webkit-appearance: none;
|
||||
border-radius: 3px;
|
||||
white-space: nowrap;
|
||||
box-sizing: border-box;
|
||||
color: #555;
|
||||
border-color: #cccccc;
|
||||
background: #f7f7f7;
|
||||
box-shadow: 0 1px 0 #cccccc;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.ui-button:active,
|
||||
.ui-button:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
/* Remove the dotted border on :focus and the extra padding in Firefox */
|
||||
.ui-button::-moz-focus-inner {
|
||||
border-width: 0;
|
||||
border-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.ui-button:hover,
|
||||
.ui-button:focus {
|
||||
background: #fafafa;
|
||||
border-color: #999;
|
||||
color: #23282d;
|
||||
}
|
||||
|
||||
.ui-button:focus {
|
||||
border-color: #5b9dd9;
|
||||
box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
|
||||
}
|
||||
|
||||
.ui-button:active {
|
||||
background: #eee;
|
||||
border-color: #999;
|
||||
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
|
||||
transform: translateY(1px);
|
||||
}
|
||||
|
||||
.ui-button[disabled],
|
||||
.ui-button:disabled {
|
||||
color: #a0a5aa !important;
|
||||
border-color: #ddd !important;
|
||||
background: #f7f7f7 !important;
|
||||
box-shadow: none !important;
|
||||
text-shadow: 0 1px 0 #fff !important;
|
||||
cursor: default;
|
||||
transform: none !important;
|
||||
}
|
||||
|
||||
@media screen and ( max-width: 782px ) {
|
||||
|
||||
.ui-button {
|
||||
padding: 6px 14px;
|
||||
line-height: normal;
|
||||
font-size: 14px;
|
||||
vertical-align: middle;
|
||||
height: auto;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* WP Theme */
|
||||
|
||||
.ui-dialog {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 100102;
|
||||
background-color: #fff;
|
||||
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
|
||||
}
|
||||
|
||||
.ui-dialog-titlebar {
|
||||
background: #fcfcfc;
|
||||
border-bottom: 1px solid #dfdfdf;
|
||||
height: 36px;
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
line-height: 36px;
|
||||
padding: 0 36px 0 16px;
|
||||
}
|
||||
|
||||
.ui-button.ui-dialog-titlebar-close {
|
||||
background: none;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
color: #666;
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
padding: 0;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.ui-dialog-titlebar-close:before {
|
||||
font: normal 20px/1 dashicons;
|
||||
vertical-align: top;
|
||||
speak: none;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
line-height: 36px;
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
content: '\f158';
|
||||
}
|
||||
|
||||
.ui-button.ui-dialog-titlebar-close:hover {
|
||||
color: #00a0d2;
|
||||
}
|
||||
|
||||
.ui-dialog-titlebar-close .ui-button-text {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.ui-dialog-content {
|
||||
padding: 16px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.ui-dialog-buttonpane {
|
||||
background: #fcfcfc;
|
||||
border-top: 1px solid #dfdfdf;
|
||||
padding: 16px;
|
||||
}
|
||||
|
||||
.ui-dialog-buttonpane .ui-button {
|
||||
margin-left: 16px;
|
||||
}
|
||||
|
||||
.ui-dialog-buttonpane .ui-dialog-buttonset {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.ui-draggable .ui-dialog-titlebar {
|
||||
cursor: move;
|
||||
}
|
||||
|
||||
.ui-widget-overlay {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
min-height: 360px;
|
||||
background: #000;
|
||||
opacity: 0.7;
|
||||
filter: alpha(opacity=70);
|
||||
z-index: 100101;
|
||||
}
|
18
wp-includes/css/jquery-ui-dialog.min.css
vendored
Normal file
18
wp-includes/css/jquery-ui-dialog.min.css
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*! This file is auto-generated */
|
||||
/*!
|
||||
* jQuery UI CSS Framework 1.11.4
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
* http://api.jqueryui.com/category/theming/
|
||||
*/.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:after,.ui-helper-clearfix:before{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}/*!
|
||||
* jQuery UI Resizable 1.11.4
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*/.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;display:block;touch-action:none}.ui-resizable-autohide .ui-resizable-handle,.ui-resizable-disabled .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-button{display:inline-block;text-decoration:none;font-size:13px;line-height:26px;height:28px;margin:0;padding:0 10px 1px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box;color:#555;border-color:#ccc;background:#f7f7f7;box-shadow:0 1px 0 #ccc;vertical-align:top}.ui-button:active,.ui-button:focus{outline:0}.ui-button::-moz-focus-inner{border-width:0;border-style:none;padding:0}.ui-button:focus,.ui-button:hover{background:#fafafa;border-color:#999;color:#23282d}.ui-button:focus{border-color:#5b9dd9;box-shadow:0 0 3px rgba(0,115,170,.8)}.ui-button:active{background:#eee;border-color:#999;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);transform:translateY(1px)}.ui-button:disabled,.ui-button[disabled]{color:#a0a5aa!important;border-color:#ddd!important;background:#f7f7f7!important;box-shadow:none!important;text-shadow:0 1px 0 #fff!important;cursor:default;transform:none!important}@media screen and (max-width:782px){.ui-button{padding:6px 14px;line-height:normal;font-size:14px;vertical-align:middle;height:auto;margin-bottom:4px}}.ui-dialog{position:absolute;top:0;left:0;z-index:100102;background-color:#fff;box-shadow:0 3px 6px rgba(0,0,0,.3)}.ui-dialog-titlebar{background:#fcfcfc;border-bottom:1px solid #dfdfdf;height:36px;font-size:18px;font-weight:600;line-height:36px;padding:0 36px 0 16px}.ui-button.ui-dialog-titlebar-close{background:0 0;border:none;box-shadow:none;color:#666;cursor:pointer;display:block;padding:0;position:absolute;top:0;right:0;width:36px;height:36px;text-align:center}.ui-dialog-titlebar-close:before{font:normal 20px/1 dashicons;vertical-align:top;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;line-height:36px;width:36px;height:36px;content:'\f158'}.ui-button.ui-dialog-titlebar-close:hover{color:#00a0d2}.ui-dialog-titlebar-close .ui-button-text{display:none}.ui-dialog-content{padding:16px;overflow:auto}.ui-dialog-buttonpane{background:#fcfcfc;border-top:1px solid #dfdfdf;padding:16px}.ui-dialog-buttonpane .ui-button{margin-left:16px}.ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-widget-overlay{position:fixed;top:0;left:0;right:0;bottom:0;min-height:360px;background:#000;opacity:.7;filter:alpha(opacity=70);z-index:100101}
|
2628
wp-includes/css/media-views-rtl.css
Normal file
2628
wp-includes/css/media-views-rtl.css
Normal file
File diff suppressed because it is too large
Load diff
9
wp-includes/css/media-views-rtl.min.css
vendored
Normal file
9
wp-includes/css/media-views-rtl.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
2628
wp-includes/css/media-views.css
Normal file
2628
wp-includes/css/media-views.css
Normal file
File diff suppressed because it is too large
Load diff
9
wp-includes/css/media-views.min.css
vendored
Normal file
9
wp-includes/css/media-views.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
123
wp-includes/css/wp-auth-check-rtl.css
Normal file
123
wp-includes/css/wp-auth-check-rtl.css
Normal file
|
@ -0,0 +1,123 @@
|
|||
/*------------------------------------------------------------------------------
|
||||
Interim login dialog
|
||||
------------------------------------------------------------------------------*/
|
||||
|
||||
#wp-auth-check-wrap.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#wp-auth-check-wrap #wp-auth-check-bg {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
left: 0;
|
||||
background: #000;
|
||||
opacity: 0.7;
|
||||
filter: alpha(opacity=70);
|
||||
z-index: 1000010; /* needs to appear above .notification-dialog */
|
||||
}
|
||||
|
||||
#wp-auth-check-wrap #wp-auth-check {
|
||||
position: fixed;
|
||||
right: 50%;
|
||||
overflow: hidden;
|
||||
top: 40px;
|
||||
bottom: 20px;
|
||||
max-height: 415px;
|
||||
width: 380px;
|
||||
margin: 0 -190px 0 0;
|
||||
padding: 30px 0 0;
|
||||
background-color: #f1f1f1;
|
||||
z-index: 1000011; /* needs to appear above #wp-auth-check-bg */
|
||||
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
|
||||
}
|
||||
|
||||
@media screen and ( max-width: 380px ) {
|
||||
#wp-auth-check-wrap #wp-auth-check {
|
||||
right: 0;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
#wp-auth-check-wrap.fallback #wp-auth-check {
|
||||
max-height: 180px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
#wp-auth-check-wrap #wp-auth-check-form {
|
||||
height: 100%;
|
||||
position: relative;
|
||||
overflow: auto;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
|
||||
#wp-auth-check-form.loading:before {
|
||||
content: "";
|
||||
display: block;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
position: absolute;
|
||||
right: 50%;
|
||||
top: 50%;
|
||||
margin: -10px -10px 0 0;
|
||||
background: url(../images/spinner.gif) no-repeat center;
|
||||
background-size: 20px 20px;
|
||||
transform: translateZ(0);
|
||||
}
|
||||
|
||||
@media print,
|
||||
(-webkit-min-device-pixel-ratio: 1.25),
|
||||
(min-resolution: 120dpi) {
|
||||
|
||||
#wp-auth-check-form.loading:before {
|
||||
background-image: url(../images/spinner-2x.gif);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
#wp-auth-check-wrap #wp-auth-check-form iframe {
|
||||
height: 98%; /* Scrollbar fix */
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#wp-auth-check-wrap .wp-auth-check-close {
|
||||
position: absolute;
|
||||
top: 5px;
|
||||
left: 5px;
|
||||
height: 22px;
|
||||
width: 22px;
|
||||
color: #72777c;
|
||||
text-decoration: none;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#wp-auth-check-wrap .wp-auth-check-close:before {
|
||||
content: "\f158";
|
||||
font: normal 20px/22px dashicons;
|
||||
speak: none;
|
||||
-webkit-font-smoothing: antialiased !important;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
#wp-auth-check-wrap .wp-auth-check-close:hover,
|
||||
#wp-auth-check-wrap .wp-auth-check-close:focus {
|
||||
color: #0073aa;
|
||||
}
|
||||
|
||||
#wp-auth-check-wrap .wp-auth-fallback-expired {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
#wp-auth-check-wrap .wp-auth-fallback {
|
||||
font-size: 14px;
|
||||
line-height: 21px;
|
||||
padding: 0 25px;
|
||||
display: none;
|
||||
}
|
||||
|
||||
#wp-auth-check-wrap.fallback .wp-auth-fallback,
|
||||
#wp-auth-check-wrap.fallback .wp-auth-check-close {
|
||||
display: block;
|
||||
}
|
2
wp-includes/css/wp-auth-check-rtl.min.css
vendored
Normal file
2
wp-includes/css/wp-auth-check-rtl.min.css
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
/*! This file is auto-generated */
|
||||
#wp-auth-check-wrap.hidden{display:none}#wp-auth-check-wrap #wp-auth-check-bg{position:fixed;top:0;bottom:0;right:0;left:0;background:#000;opacity:.7;filter:alpha(opacity=70);z-index:1000010}#wp-auth-check-wrap #wp-auth-check{position:fixed;right:50%;overflow:hidden;top:40px;bottom:20px;max-height:415px;width:380px;margin:0 -190px 0 0;padding:30px 0 0;background-color:#f1f1f1;z-index:1000011;box-shadow:0 3px 6px rgba(0,0,0,.3)}@media screen and (max-width:380px){#wp-auth-check-wrap #wp-auth-check{right:0;width:100%;margin:0}}#wp-auth-check-wrap.fallback #wp-auth-check{max-height:180px;overflow:auto}#wp-auth-check-wrap #wp-auth-check-form{height:100%;position:relative;overflow:auto;-webkit-overflow-scrolling:touch}#wp-auth-check-form.loading:before{content:"";display:block;width:20px;height:20px;position:absolute;right:50%;top:50%;margin:-10px -10px 0 0;background:url(../images/spinner.gif) no-repeat center;background-size:20px 20px;transform:translateZ(0)}@media print,(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){#wp-auth-check-form.loading:before{background-image:url(../images/spinner-2x.gif)}}#wp-auth-check-wrap #wp-auth-check-form iframe{height:98%;width:100%}#wp-auth-check-wrap .wp-auth-check-close{position:absolute;top:5px;left:5px;height:22px;width:22px;color:#72777c;text-decoration:none;text-align:center}#wp-auth-check-wrap .wp-auth-check-close:before{content:"\f158";font:normal 20px/22px dashicons;speak:none;-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale}#wp-auth-check-wrap .wp-auth-check-close:focus,#wp-auth-check-wrap .wp-auth-check-close:hover{color:#0073aa}#wp-auth-check-wrap .wp-auth-fallback-expired{outline:0}#wp-auth-check-wrap .wp-auth-fallback{font-size:14px;line-height:21px;padding:0 25px;display:none}#wp-auth-check-wrap.fallback .wp-auth-check-close,#wp-auth-check-wrap.fallback .wp-auth-fallback{display:block}
|
123
wp-includes/css/wp-auth-check.css
Normal file
123
wp-includes/css/wp-auth-check.css
Normal file
|
@ -0,0 +1,123 @@
|
|||
/*------------------------------------------------------------------------------
|
||||
Interim login dialog
|
||||
------------------------------------------------------------------------------*/
|
||||
|
||||
#wp-auth-check-wrap.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#wp-auth-check-wrap #wp-auth-check-bg {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: #000;
|
||||
opacity: 0.7;
|
||||
filter: alpha(opacity=70);
|
||||
z-index: 1000010; /* needs to appear above .notification-dialog */
|
||||
}
|
||||
|
||||
#wp-auth-check-wrap #wp-auth-check {
|
||||
position: fixed;
|
||||
left: 50%;
|
||||
overflow: hidden;
|
||||
top: 40px;
|
||||
bottom: 20px;
|
||||
max-height: 415px;
|
||||
width: 380px;
|
||||
margin: 0 0 0 -190px;
|
||||
padding: 30px 0 0;
|
||||
background-color: #f1f1f1;
|
||||
z-index: 1000011; /* needs to appear above #wp-auth-check-bg */
|
||||
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
|
||||
}
|
||||
|
||||
@media screen and ( max-width: 380px ) {
|
||||
#wp-auth-check-wrap #wp-auth-check {
|
||||
left: 0;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
#wp-auth-check-wrap.fallback #wp-auth-check {
|
||||
max-height: 180px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
#wp-auth-check-wrap #wp-auth-check-form {
|
||||
height: 100%;
|
||||
position: relative;
|
||||
overflow: auto;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
|
||||
#wp-auth-check-form.loading:before {
|
||||
content: "";
|
||||
display: block;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
margin: -10px 0 0 -10px;
|
||||
background: url(../images/spinner.gif) no-repeat center;
|
||||
background-size: 20px 20px;
|
||||
transform: translateZ(0);
|
||||
}
|
||||
|
||||
@media print,
|
||||
(-webkit-min-device-pixel-ratio: 1.25),
|
||||
(min-resolution: 120dpi) {
|
||||
|
||||
#wp-auth-check-form.loading:before {
|
||||
background-image: url(../images/spinner-2x.gif);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
#wp-auth-check-wrap #wp-auth-check-form iframe {
|
||||
height: 98%; /* Scrollbar fix */
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#wp-auth-check-wrap .wp-auth-check-close {
|
||||
position: absolute;
|
||||
top: 5px;
|
||||
right: 5px;
|
||||
height: 22px;
|
||||
width: 22px;
|
||||
color: #72777c;
|
||||
text-decoration: none;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#wp-auth-check-wrap .wp-auth-check-close:before {
|
||||
content: "\f158";
|
||||
font: normal 20px/22px dashicons;
|
||||
speak: none;
|
||||
-webkit-font-smoothing: antialiased !important;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
#wp-auth-check-wrap .wp-auth-check-close:hover,
|
||||
#wp-auth-check-wrap .wp-auth-check-close:focus {
|
||||
color: #0073aa;
|
||||
}
|
||||
|
||||
#wp-auth-check-wrap .wp-auth-fallback-expired {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
#wp-auth-check-wrap .wp-auth-fallback {
|
||||
font-size: 14px;
|
||||
line-height: 21px;
|
||||
padding: 0 25px;
|
||||
display: none;
|
||||
}
|
||||
|
||||
#wp-auth-check-wrap.fallback .wp-auth-fallback,
|
||||
#wp-auth-check-wrap.fallback .wp-auth-check-close {
|
||||
display: block;
|
||||
}
|
2
wp-includes/css/wp-auth-check.min.css
vendored
Normal file
2
wp-includes/css/wp-auth-check.min.css
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
/*! This file is auto-generated */
|
||||
#wp-auth-check-wrap.hidden{display:none}#wp-auth-check-wrap #wp-auth-check-bg{position:fixed;top:0;bottom:0;left:0;right:0;background:#000;opacity:.7;filter:alpha(opacity=70);z-index:1000010}#wp-auth-check-wrap #wp-auth-check{position:fixed;left:50%;overflow:hidden;top:40px;bottom:20px;max-height:415px;width:380px;margin:0 0 0 -190px;padding:30px 0 0;background-color:#f1f1f1;z-index:1000011;box-shadow:0 3px 6px rgba(0,0,0,.3)}@media screen and (max-width:380px){#wp-auth-check-wrap #wp-auth-check{left:0;width:100%;margin:0}}#wp-auth-check-wrap.fallback #wp-auth-check{max-height:180px;overflow:auto}#wp-auth-check-wrap #wp-auth-check-form{height:100%;position:relative;overflow:auto;-webkit-overflow-scrolling:touch}#wp-auth-check-form.loading:before{content:"";display:block;width:20px;height:20px;position:absolute;left:50%;top:50%;margin:-10px 0 0 -10px;background:url(../images/spinner.gif) no-repeat center;background-size:20px 20px;transform:translateZ(0)}@media print,(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){#wp-auth-check-form.loading:before{background-image:url(../images/spinner-2x.gif)}}#wp-auth-check-wrap #wp-auth-check-form iframe{height:98%;width:100%}#wp-auth-check-wrap .wp-auth-check-close{position:absolute;top:5px;right:5px;height:22px;width:22px;color:#72777c;text-decoration:none;text-align:center}#wp-auth-check-wrap .wp-auth-check-close:before{content:"\f158";font:normal 20px/22px dashicons;speak:none;-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale}#wp-auth-check-wrap .wp-auth-check-close:focus,#wp-auth-check-wrap .wp-auth-check-close:hover{color:#0073aa}#wp-auth-check-wrap .wp-auth-fallback-expired{outline:0}#wp-auth-check-wrap .wp-auth-fallback{font-size:14px;line-height:21px;padding:0 25px;display:none}#wp-auth-check-wrap.fallback .wp-auth-check-close,#wp-auth-check-wrap.fallback .wp-auth-fallback{display:block}
|
19
wp-includes/css/wp-embed-template-ie.css
Normal file
19
wp-includes/css/wp-embed-template-ie.css
Normal file
|
@ -0,0 +1,19 @@
|
|||
.dashicons-no {
|
||||
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAQAAAAngNWGAAAAcElEQVR4AdXRVxmEMBAGwJMQCUhAIhKQECmRsFJwMFfp7HfP/E8pk0173CuKpt/0R+WaBaaZqogLagBMuh+DdoKbyRCwqZ/SnM0R5oQuZ2UHS8Z6k23qPxZCTrV5UlHMi8bsfHVXP7K/GXZHaTO7S54CWLdHlN2YIwAAAABJRU5ErkJggg==);
|
||||
}
|
||||
|
||||
.dashicons-admin-comments {
|
||||
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAATUlEQVR4AWMYWqCpvUcAiA8A8X9iMFStAD4DG0AKScQNVDZw1MBRAwvIMLCA5jmFlCD4AMQGlOTtBgoNwzQQ3TCKDaTcMMxYN2AYVgAAYPKsEBxN0PIAAAAASUVORK5CYII=);
|
||||
}
|
||||
|
||||
.wp-embed-comments a:hover .dashicons-admin-comments {
|
||||
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAATElEQVR4AWMYYqB4lQAQHwDi/8RgqFoBfAY2gBSSiBuobOCogaMGFpBhYAEdcwrhIPgAxAaU5O0GCg3DNBDdMIoNpNwwzFg3YBhWAABG71qAFYcFqgAAAABJRU5ErkJggg==);
|
||||
}
|
||||
|
||||
.dashicons-share {
|
||||
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAc0lEQVR4AWMYfqCpvccAiBcA8X8gfgDEBZQaeAFkGBoOoMR1/7HgDeQa2ECZgQiDHID4AMwAor0MCmBoQP+HBnwAskFQdgBRkQJViGk7wiAHUr21AYdhDTA1dDOQHl6mPFLokmwoT9j0z3qUFw70L77oDwAiuzCIub1XpQAAAABJRU5ErkJggg==);
|
||||
}
|
||||
|
||||
.wp-embed-share-dialog-open:hover .dashicons-share {
|
||||
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAc0lEQVR4AWMYhqB4lQEQLwDi/0D8AIgLKDXwAsgwNBxAiev+Y8EbyDWwgTIDEQY5APEBmAFEexkUwNCA/g8N+ABkg6DsAKIiBaoQ03aEQQ6kemsDDsMaYEroZiA9vEx5pNAl2VCesOmf9SgvHOhffNEfAAAMqPR5IEZH5wAAAABJRU5ErkJggg==);
|
||||
}
|
2
wp-includes/css/wp-embed-template-ie.min.css
vendored
Normal file
2
wp-includes/css/wp-embed-template-ie.min.css
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
/*! This file is auto-generated */
|
||||
.dashicons-no{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAQAAAAngNWGAAAAcElEQVR4AdXRVxmEMBAGwJMQCUhAIhKQECmRsFJwMFfp7HfP/E8pk0173CuKpt/0R+WaBaaZqogLagBMuh+DdoKbyRCwqZ/SnM0R5oQuZ2UHS8Z6k23qPxZCTrV5UlHMi8bsfHVXP7K/GXZHaTO7S54CWLdHlN2YIwAAAABJRU5ErkJggg==)}.dashicons-admin-comments{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAATUlEQVR4AWMYWqCpvUcAiA8A8X9iMFStAD4DG0AKScQNVDZw1MBRAwvIMLCA5jmFlCD4AMQGlOTtBgoNwzQQ3TCKDaTcMMxYN2AYVgAAYPKsEBxN0PIAAAAASUVORK5CYII=)}.wp-embed-comments a:hover .dashicons-admin-comments{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAATElEQVR4AWMYYqB4lQAQHwDi/8RgqFoBfAY2gBSSiBuobOCogaMGFpBhYAEdcwrhIPgAxAaU5O0GCg3DNBDdMIoNpNwwzFg3YBhWAABG71qAFYcFqgAAAABJRU5ErkJggg==)}.dashicons-share{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAc0lEQVR4AWMYfqCpvccAiBcA8X8gfgDEBZQaeAFkGBoOoMR1/7HgDeQa2ECZgQiDHID4AMwAor0MCmBoQP+HBnwAskFQdgBRkQJViGk7wiAHUr21AYdhDTA1dDOQHl6mPFLokmwoT9j0z3qUFw70L77oDwAiuzCIub1XpQAAAABJRU5ErkJggg==)}.wp-embed-share-dialog-open:hover .dashicons-share{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAc0lEQVR4AWMYhqB4lQEQLwDi/0D8AIgLKDXwAsgwNBxAiev+Y8EbyDWwgTIDEQY5APEBmAFEexkUwNCA/g8N+ABkg6DsAKIiBaoQ03aEQQ6kemsDDsMaYEroZiA9vEx5pNAl2VCesOmf9SgvHOhffNEfAAAMqPR5IEZH5wAAAABJRU5ErkJggg==)}
|
359
wp-includes/css/wp-embed-template.css
Normal file
359
wp-includes/css/wp-embed-template.css
Normal file
|
@ -0,0 +1,359 @@
|
|||
html, body {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
/* Text meant only for screen readers */
|
||||
.screen-reader-text {
|
||||
border: 0;
|
||||
clip: rect(1px, 1px, 1px, 1px);
|
||||
-webkit-clip-path: inset(50%);
|
||||
clip-path: inset(50%);
|
||||
height: 1px;
|
||||
margin: -1px;
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
word-wrap: normal !important;
|
||||
}
|
||||
|
||||
/* Dashicons */
|
||||
.dashicons {
|
||||
display: inline-block;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
background-color: transparent;
|
||||
background-repeat: no-repeat;
|
||||
background-size: 20px;
|
||||
background-position: center;
|
||||
transition: background .1s ease-in;
|
||||
position: relative;
|
||||
top: 5px;
|
||||
}
|
||||
|
||||
.dashicons-no {
|
||||
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M15.55%2013.7l-2.19%202.06-3.42-3.65-3.64%203.43-2.06-2.18%203.64-3.43-3.42-3.64%202.18-2.06%203.43%203.64%203.64-3.42%202.05%202.18-3.64%203.43z%27%20fill%3D%27%23fff%27%2F%3E%3C%2Fsvg%3E");
|
||||
}
|
||||
|
||||
.dashicons-admin-comments {
|
||||
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M5%202h9q.82%200%201.41.59T16%204v7q0%20.82-.59%201.41T14%2013h-2l-5%205v-5H5q-.82%200-1.41-.59T3%2011V4q0-.82.59-1.41T5%202z%27%20fill%3D%27%2382878c%27%2F%3E%3C%2Fsvg%3E");
|
||||
}
|
||||
|
||||
.wp-embed-comments a:hover .dashicons-admin-comments {
|
||||
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M5%202h9q.82%200%201.41.59T16%204v7q0%20.82-.59%201.41T14%2013h-2l-5%205v-5H5q-.82%200-1.41-.59T3%2011V4q0-.82.59-1.41T5%202z%27%20fill%3D%27%230073aa%27%2F%3E%3C%2Fsvg%3E");
|
||||
}
|
||||
|
||||
.dashicons-share {
|
||||
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.5%2012q1.24%200%202.12.88T17.5%2015t-.88%202.12-2.12.88-2.12-.88T11.5%2015q0-.34.09-.69l-4.38-2.3Q6.32%2013%205%2013q-1.24%200-2.12-.88T2%2010t.88-2.12T5%207q1.3%200%202.21.99l4.38-2.3q-.09-.35-.09-.69%200-1.24.88-2.12T14.5%202t2.12.88T17.5%205t-.88%202.12T14.5%208q-1.3%200-2.21-.99l-4.38%202.3Q8%209.66%208%2010t-.09.69l4.38%202.3q.89-.99%202.21-.99z%27%20fill%3D%27%2382878c%27%2F%3E%3C%2Fsvg%3E");
|
||||
display: none;
|
||||
}
|
||||
|
||||
.js .dashicons-share {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.wp-embed-share-dialog-open:hover .dashicons-share {
|
||||
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.5%2012q1.24%200%202.12.88T17.5%2015t-.88%202.12-2.12.88-2.12-.88T11.5%2015q0-.34.09-.69l-4.38-2.3Q6.32%2013%205%2013q-1.24%200-2.12-.88T2%2010t.88-2.12T5%207q1.3%200%202.21.99l4.38-2.3q-.09-.35-.09-.69%200-1.24.88-2.12T14.5%202t2.12.88T17.5%205t-.88%202.12T14.5%208q-1.3%200-2.21-.99l-4.38%202.3Q8%209.66%208%2010t-.09.69l4.38%202.3q.89-.99%202.21-.99z%27%20fill%3D%27%230073aa%27%2F%3E%3C%2Fsvg%3E");
|
||||
}
|
||||
|
||||
.wp-embed {
|
||||
padding: 25px;
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
||||
line-height: 1.5;
|
||||
color: #82878c;
|
||||
background: #fff;
|
||||
border: 1px solid #e5e5e5;
|
||||
box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
|
||||
/* Clearfix */
|
||||
overflow: auto;
|
||||
zoom: 1;
|
||||
}
|
||||
|
||||
.wp-embed a {
|
||||
color: #82878c;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.wp-embed a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.wp-embed-featured-image {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.wp-embed-featured-image img {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.wp-embed-featured-image.square {
|
||||
float: left;
|
||||
max-width: 160px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.wp-embed p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
p.wp-embed-heading {
|
||||
margin: 0 0 15px;
|
||||
font-weight: 600;
|
||||
font-size: 22px;
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
.wp-embed-heading a {
|
||||
color: #32373c;
|
||||
}
|
||||
|
||||
.wp-embed .wp-embed-more {
|
||||
color: #b4b9be;
|
||||
}
|
||||
|
||||
.wp-embed-footer {
|
||||
display: table;
|
||||
width: 100%;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.wp-embed-site-icon {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 0;
|
||||
transform: translateY(-50%);
|
||||
height: 25px;
|
||||
width: 25px;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.wp-embed-site-title {
|
||||
font-weight: 600;
|
||||
line-height: 25px;
|
||||
}
|
||||
|
||||
.wp-embed-site-title a {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
padding-left: 35px;
|
||||
}
|
||||
|
||||
.wp-embed-site-title,
|
||||
.wp-embed-meta {
|
||||
display: table-cell;
|
||||
}
|
||||
|
||||
.wp-embed-meta {
|
||||
text-align: right;
|
||||
white-space: nowrap;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.wp-embed-comments,
|
||||
.wp-embed-share {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.wp-embed-meta a:hover {
|
||||
text-decoration: none;
|
||||
color: #0073aa;
|
||||
}
|
||||
|
||||
.wp-embed-comments a {
|
||||
line-height: 25px;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.wp-embed-comments + .wp-embed-share {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.wp-embed-share-dialog {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background-color: #222;
|
||||
background-color: rgba(10, 10, 10, 0.9);
|
||||
color: #fff;
|
||||
opacity: 1;
|
||||
transition: opacity .25s ease-in-out;
|
||||
}
|
||||
|
||||
.wp-embed-share-dialog.hidden {
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.wp-embed-share-dialog-open,
|
||||
.wp-embed-share-dialog-close {
|
||||
margin: -8px 0 0;
|
||||
padding: 0;
|
||||
background: transparent;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.wp-embed-share-dialog-open .dashicons,
|
||||
.wp-embed-share-dialog-close .dashicons {
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
.wp-embed-share-dialog-open .dashicons {
|
||||
top: 8px;
|
||||
}
|
||||
|
||||
.wp-embed-share-dialog-open:focus .dashicons,
|
||||
.wp-embed-share-dialog-close:focus .dashicons {
|
||||
box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, .8);
|
||||
border-radius: 100%;
|
||||
}
|
||||
|
||||
.wp-embed-share-dialog-close {
|
||||
position: absolute;
|
||||
top: 20px;
|
||||
right: 20px;
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
.wp-embed-share-dialog-close:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.wp-embed-share-dialog-close .dashicons {
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
background-size: 24px;
|
||||
}
|
||||
|
||||
.wp-embed-share-dialog-content {
|
||||
height: 100%;
|
||||
transform-style: preserve-3d;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.wp-embed-share-dialog-text {
|
||||
margin-top: 25px;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.wp-embed-share-tabs {
|
||||
margin: 0 0 20px;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.wp-embed-share-tab-button {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.wp-embed-share-tab-button button {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: none;
|
||||
background: transparent;
|
||||
font-size: 16px;
|
||||
line-height: 1.3;
|
||||
color: #aaa;
|
||||
cursor: pointer;
|
||||
transition: color .1s ease-in;
|
||||
}
|
||||
|
||||
.wp-embed-share-tab-button [aria-selected="true"] {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.wp-embed-share-tab-button button:hover {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.wp-embed-share-tab-button + .wp-embed-share-tab-button {
|
||||
margin: 0 0 0 10px;
|
||||
padding: 0 0 0 11px;
|
||||
border-left: 1px solid #aaa;
|
||||
}
|
||||
|
||||
.wp-embed-share-tab[aria-hidden="true"] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
p.wp-embed-share-description {
|
||||
margin: 0;
|
||||
font-size: 14px;
|
||||
line-height: 1;
|
||||
font-style: italic;
|
||||
color: #aaa;
|
||||
}
|
||||
|
||||
.wp-embed-share-input {
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
border: none;
|
||||
height: 28px;
|
||||
margin: 0 0 10px 0;
|
||||
padding: 0 5px;
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
||||
line-height: 1.5;
|
||||
resize: none;
|
||||
cursor: text;
|
||||
}
|
||||
|
||||
textarea.wp-embed-share-input {
|
||||
height: 72px;
|
||||
}
|
||||
|
||||
html[dir="rtl"] .wp-embed-featured-image.square {
|
||||
float: right;
|
||||
margin-right: 0;
|
||||
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
html[dir="rtl"] .wp-embed-site-title a {
|
||||
padding-left: 0;
|
||||
padding-right: 35px;
|
||||
}
|
||||
|
||||
html[dir="rtl"] .wp-embed-site-icon {
|
||||
margin-right: 0;
|
||||
margin-left: 10px;
|
||||
left: auto;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
html[dir="rtl"] .wp-embed-meta {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
html[dir="rtl"] .wp-embed-footer {
|
||||
}
|
||||
|
||||
html[dir="rtl"] .wp-embed-share {
|
||||
margin-left: 0;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
html[dir="rtl"] .wp-embed-share-dialog-close {
|
||||
right: auto;
|
||||
left: 20px;
|
||||
}
|
||||
|
||||
html[dir="rtl"] .wp-embed-share-tab-button + .wp-embed-share-tab-button {
|
||||
margin: 0 10px 0 0;
|
||||
padding: 0 11px 0 0;
|
||||
border-left: none;
|
||||
border-right: 1px solid #aaa;
|
||||
}
|
2
wp-includes/css/wp-embed-template.min.css
vendored
Normal file
2
wp-includes/css/wp-embed-template.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
224
wp-includes/css/wp-pointer-rtl.css
Normal file
224
wp-includes/css/wp-pointer-rtl.css
Normal file
|
@ -0,0 +1,224 @@
|
|||
.wp-pointer-content {
|
||||
padding: 0 0 10px;
|
||||
position: relative;
|
||||
font-size: 13px;
|
||||
background: #fff;
|
||||
border: 1px solid #ddd;
|
||||
box-shadow: 0 3px 6px rgba(0,0,0,0.075);
|
||||
}
|
||||
|
||||
.wp-pointer-content h3 {
|
||||
position: relative;
|
||||
margin: -1px -1px 5px;
|
||||
padding: 15px 60px 14px 18px;
|
||||
border: 1px solid #3592b6;
|
||||
border-bottom: none;
|
||||
line-height: 1.4em;
|
||||
font-size: 14px;
|
||||
color: #fff;
|
||||
background: #00a0d2;
|
||||
}
|
||||
|
||||
.wp-pointer-content h3:before {
|
||||
background: #fff;
|
||||
border-radius: 50%;
|
||||
color: #00a0d2;
|
||||
content: "\f227";
|
||||
font: normal 20px/1.6 dashicons;
|
||||
position: absolute;
|
||||
top: 8px;
|
||||
right: 15px;
|
||||
speak: none;
|
||||
text-align: center;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.wp-pointer-content h4 {
|
||||
margin: 1.33em 20px 1em;
|
||||
font-size: 1.15em;
|
||||
}
|
||||
|
||||
.wp-pointer-content p {
|
||||
padding: 0 20px;
|
||||
}
|
||||
|
||||
.wp-pointer-buttons {
|
||||
margin: 0;
|
||||
padding: 5px 15px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.wp-pointer-buttons a {
|
||||
float: left;
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.wp-pointer-buttons a.close {
|
||||
padding-right: 3px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.wp-pointer-buttons a.close:before {
|
||||
background: none;
|
||||
color: #72777c;
|
||||
content: "\f153";
|
||||
display: block !important;
|
||||
font: normal 16px/1 dashicons;
|
||||
speak: none;
|
||||
margin: 1px 0;
|
||||
text-align: center;
|
||||
-webkit-font-smoothing: antialiased !important;
|
||||
width: 10px;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
right: -15px;
|
||||
top: 1px;
|
||||
}
|
||||
|
||||
.wp-pointer-buttons a.close:hover:before {
|
||||
color: #c00;
|
||||
}
|
||||
|
||||
/* The arrow base class must take up no space, even with transparent borders. */
|
||||
.wp-pointer-arrow,
|
||||
.wp-pointer-arrow-inner {
|
||||
position: absolute;
|
||||
width: 0;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
.wp-pointer-arrow {
|
||||
z-index: 10;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border: 0 solid transparent;
|
||||
}
|
||||
|
||||
.wp-pointer-arrow-inner {
|
||||
z-index: 20;
|
||||
}
|
||||
|
||||
/* Make Room for the Arrow! */
|
||||
.wp-pointer-top,
|
||||
.wp-pointer-undefined {
|
||||
padding-top: 13px;
|
||||
}
|
||||
|
||||
.wp-pointer-bottom {
|
||||
margin-top: -13px;
|
||||
padding-bottom: 13px;
|
||||
}
|
||||
|
||||
/* rtl:ignore */
|
||||
.wp-pointer-left {
|
||||
padding-left: 13px;
|
||||
}
|
||||
/* rtl:ignore */
|
||||
.wp-pointer-right {
|
||||
margin-left: -13px;
|
||||
padding-right: 13px;
|
||||
}
|
||||
|
||||
/* Base Size & Positioning */
|
||||
.wp-pointer-top .wp-pointer-arrow,
|
||||
.wp-pointer-bottom .wp-pointer-arrow,
|
||||
.wp-pointer-undefined .wp-pointer-arrow {
|
||||
right: 50px;
|
||||
}
|
||||
|
||||
.wp-pointer-left .wp-pointer-arrow,
|
||||
.wp-pointer-right .wp-pointer-arrow {
|
||||
top: 50%;
|
||||
margin-top: -15px;
|
||||
}
|
||||
|
||||
/* Arrow Sprite */
|
||||
.wp-pointer-top .wp-pointer-arrow,
|
||||
.wp-pointer-undefined .wp-pointer-arrow {
|
||||
top: 0;
|
||||
border-width: 0 13px 13px 13px;
|
||||
border-bottom-color: #3592b6;
|
||||
}
|
||||
|
||||
.wp-pointer-top .wp-pointer-arrow-inner,
|
||||
.wp-pointer-undefined .wp-pointer-arrow-inner {
|
||||
top: 1px;
|
||||
margin-right: -13px;
|
||||
margin-top: -13px;
|
||||
border: 13px solid transparent;
|
||||
border-bottom-color: #00a0d2;
|
||||
display: block;
|
||||
content: " ";
|
||||
}
|
||||
|
||||
.wp-pointer-bottom .wp-pointer-arrow {
|
||||
bottom: 0;
|
||||
border-width: 13px 13px 0 13px;
|
||||
border-top-color: #ccc;
|
||||
}
|
||||
|
||||
.wp-pointer-bottom .wp-pointer-arrow-inner {
|
||||
bottom: 1px;
|
||||
margin-right: -13px;
|
||||
margin-bottom: -13px;
|
||||
border: 13px solid transparent;
|
||||
border-top-color: #fff;
|
||||
display: block;
|
||||
content: " ";
|
||||
}
|
||||
|
||||
/* rtl:ignore */
|
||||
.wp-pointer-left .wp-pointer-arrow {
|
||||
left: 0;
|
||||
border-width: 13px 13px 13px 0;
|
||||
border-right-color: #ccc;
|
||||
}
|
||||
|
||||
/* rtl:ignore */
|
||||
.wp-pointer-left .wp-pointer-arrow-inner {
|
||||
left: 1px;
|
||||
margin-left: -13px;
|
||||
margin-top: -13px;
|
||||
border: 13px solid transparent;
|
||||
border-right-color: #fff;
|
||||
display: block;
|
||||
content: " ";
|
||||
}
|
||||
|
||||
/* rtl:ignore */
|
||||
.wp-pointer-right .wp-pointer-arrow {
|
||||
right: 0;
|
||||
border-width: 13px 0 13px 13px;
|
||||
border-left-color: #ccc;
|
||||
}
|
||||
|
||||
/* rtl:ignore */
|
||||
.wp-pointer-right .wp-pointer-arrow-inner {
|
||||
right: 1px;
|
||||
margin-right: -13px;
|
||||
margin-top: -13px;
|
||||
border: 13px solid transparent;
|
||||
border-left-color: #fff;
|
||||
display: block;
|
||||
content: " ";
|
||||
}
|
||||
|
||||
.wp-pointer.arrow-bottom .wp-pointer-content {
|
||||
margin-bottom: -45px;
|
||||
}
|
||||
|
||||
.wp-pointer.arrow-bottom .wp-pointer-arrow {
|
||||
top: 100%;
|
||||
margin-top: -30px;
|
||||
}
|
||||
|
||||
/* Disable pointers at responsive sizes */
|
||||
@media screen and ( max-width: 782px ) {
|
||||
.wp-pointer {
|
||||
display: none;
|
||||
}
|
||||
}
|
2
wp-includes/css/wp-pointer-rtl.min.css
vendored
Normal file
2
wp-includes/css/wp-pointer-rtl.min.css
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
/*! This file is auto-generated */
|
||||
.wp-pointer-content{padding:0 0 10px;position:relative;font-size:13px;background:#fff;border:1px solid #ddd;box-shadow:0 3px 6px rgba(0,0,0,.075)}.wp-pointer-content h3{position:relative;margin:-1px -1px 5px;padding:15px 60px 14px 18px;border:1px solid #3592b6;border-bottom:none;line-height:1.4em;font-size:14px;color:#fff;background:#00a0d2}.wp-pointer-content h3:before{background:#fff;border-radius:50%;color:#00a0d2;content:"\f227";font:normal 20px/1.6 dashicons;position:absolute;top:8px;right:15px;speak:none;text-align:center;width:32px;height:32px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wp-pointer-content h4{margin:1.33em 20px 1em;font-size:1.15em}.wp-pointer-content p{padding:0 20px}.wp-pointer-buttons{margin:0;padding:5px 15px;overflow:auto}.wp-pointer-buttons a{float:left;display:inline-block;text-decoration:none}.wp-pointer-buttons a.close{padding-right:3px;position:relative}.wp-pointer-buttons a.close:before{background:0 0;color:#72777c;content:"\f153";display:block!important;font:normal 16px/1 dashicons;speak:none;margin:1px 0;text-align:center;-webkit-font-smoothing:antialiased!important;width:10px;height:100%;position:absolute;right:-15px;top:1px}.wp-pointer-buttons a.close:hover:before{color:#c00}.wp-pointer-arrow,.wp-pointer-arrow-inner{position:absolute;width:0;height:0}.wp-pointer-arrow{z-index:10;width:0;height:0;border:0 solid transparent}.wp-pointer-arrow-inner{z-index:20}.wp-pointer-top,.wp-pointer-undefined{padding-top:13px}.wp-pointer-bottom{margin-top:-13px;padding-bottom:13px}.wp-pointer-left{padding-left:13px}.wp-pointer-right{margin-left:-13px;padding-right:13px}.wp-pointer-bottom .wp-pointer-arrow,.wp-pointer-top .wp-pointer-arrow,.wp-pointer-undefined .wp-pointer-arrow{right:50px}.wp-pointer-left .wp-pointer-arrow,.wp-pointer-right .wp-pointer-arrow{top:50%;margin-top:-15px}.wp-pointer-top .wp-pointer-arrow,.wp-pointer-undefined .wp-pointer-arrow{top:0;border-width:0 13px 13px 13px;border-bottom-color:#3592b6}.wp-pointer-top .wp-pointer-arrow-inner,.wp-pointer-undefined .wp-pointer-arrow-inner{top:1px;margin-right:-13px;margin-top:-13px;border:13px solid transparent;border-bottom-color:#00a0d2;display:block;content:" "}.wp-pointer-bottom .wp-pointer-arrow{bottom:0;border-width:13px 13px 0 13px;border-top-color:#ccc}.wp-pointer-bottom .wp-pointer-arrow-inner{bottom:1px;margin-right:-13px;margin-bottom:-13px;border:13px solid transparent;border-top-color:#fff;display:block;content:" "}.wp-pointer-left .wp-pointer-arrow{left:0;border-width:13px 13px 13px 0;border-right-color:#ccc}.wp-pointer-left .wp-pointer-arrow-inner{left:1px;margin-left:-13px;margin-top:-13px;border:13px solid transparent;border-right-color:#fff;display:block;content:" "}.wp-pointer-right .wp-pointer-arrow{right:0;border-width:13px 0 13px 13px;border-left-color:#ccc}.wp-pointer-right .wp-pointer-arrow-inner{right:1px;margin-right:-13px;margin-top:-13px;border:13px solid transparent;border-left-color:#fff;display:block;content:" "}.wp-pointer.arrow-bottom .wp-pointer-content{margin-bottom:-45px}.wp-pointer.arrow-bottom .wp-pointer-arrow{top:100%;margin-top:-30px}@media screen and (max-width:782px){.wp-pointer{display:none}}
|
224
wp-includes/css/wp-pointer.css
Normal file
224
wp-includes/css/wp-pointer.css
Normal file
|
@ -0,0 +1,224 @@
|
|||
.wp-pointer-content {
|
||||
padding: 0 0 10px;
|
||||
position: relative;
|
||||
font-size: 13px;
|
||||
background: #fff;
|
||||
border: 1px solid #ddd;
|
||||
box-shadow: 0 3px 6px rgba(0,0,0,0.075);
|
||||
}
|
||||
|
||||
.wp-pointer-content h3 {
|
||||
position: relative;
|
||||
margin: -1px -1px 5px;
|
||||
padding: 15px 18px 14px 60px;
|
||||
border: 1px solid #3592b6;
|
||||
border-bottom: none;
|
||||
line-height: 1.4em;
|
||||
font-size: 14px;
|
||||
color: #fff;
|
||||
background: #00a0d2;
|
||||
}
|
||||
|
||||
.wp-pointer-content h3:before {
|
||||
background: #fff;
|
||||
border-radius: 50%;
|
||||
color: #00a0d2;
|
||||
content: "\f227";
|
||||
font: normal 20px/1.6 dashicons;
|
||||
position: absolute;
|
||||
top: 8px;
|
||||
left: 15px;
|
||||
speak: none;
|
||||
text-align: center;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.wp-pointer-content h4 {
|
||||
margin: 1.33em 20px 1em;
|
||||
font-size: 1.15em;
|
||||
}
|
||||
|
||||
.wp-pointer-content p {
|
||||
padding: 0 20px;
|
||||
}
|
||||
|
||||
.wp-pointer-buttons {
|
||||
margin: 0;
|
||||
padding: 5px 15px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.wp-pointer-buttons a {
|
||||
float: right;
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.wp-pointer-buttons a.close {
|
||||
padding-left: 3px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.wp-pointer-buttons a.close:before {
|
||||
background: none;
|
||||
color: #72777c;
|
||||
content: "\f153";
|
||||
display: block !important;
|
||||
font: normal 16px/1 dashicons;
|
||||
speak: none;
|
||||
margin: 1px 0;
|
||||
text-align: center;
|
||||
-webkit-font-smoothing: antialiased !important;
|
||||
width: 10px;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
left: -15px;
|
||||
top: 1px;
|
||||
}
|
||||
|
||||
.wp-pointer-buttons a.close:hover:before {
|
||||
color: #c00;
|
||||
}
|
||||
|
||||
/* The arrow base class must take up no space, even with transparent borders. */
|
||||
.wp-pointer-arrow,
|
||||
.wp-pointer-arrow-inner {
|
||||
position: absolute;
|
||||
width: 0;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
.wp-pointer-arrow {
|
||||
z-index: 10;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border: 0 solid transparent;
|
||||
}
|
||||
|
||||
.wp-pointer-arrow-inner {
|
||||
z-index: 20;
|
||||
}
|
||||
|
||||
/* Make Room for the Arrow! */
|
||||
.wp-pointer-top,
|
||||
.wp-pointer-undefined {
|
||||
padding-top: 13px;
|
||||
}
|
||||
|
||||
.wp-pointer-bottom {
|
||||
margin-top: -13px;
|
||||
padding-bottom: 13px;
|
||||
}
|
||||
|
||||
/* rtl:ignore */
|
||||
.wp-pointer-left {
|
||||
padding-left: 13px;
|
||||
}
|
||||
/* rtl:ignore */
|
||||
.wp-pointer-right {
|
||||
margin-left: -13px;
|
||||
padding-right: 13px;
|
||||
}
|
||||
|
||||
/* Base Size & Positioning */
|
||||
.wp-pointer-top .wp-pointer-arrow,
|
||||
.wp-pointer-bottom .wp-pointer-arrow,
|
||||
.wp-pointer-undefined .wp-pointer-arrow {
|
||||
left: 50px;
|
||||
}
|
||||
|
||||
.wp-pointer-left .wp-pointer-arrow,
|
||||
.wp-pointer-right .wp-pointer-arrow {
|
||||
top: 50%;
|
||||
margin-top: -15px;
|
||||
}
|
||||
|
||||
/* Arrow Sprite */
|
||||
.wp-pointer-top .wp-pointer-arrow,
|
||||
.wp-pointer-undefined .wp-pointer-arrow {
|
||||
top: 0;
|
||||
border-width: 0 13px 13px 13px;
|
||||
border-bottom-color: #3592b6;
|
||||
}
|
||||
|
||||
.wp-pointer-top .wp-pointer-arrow-inner,
|
||||
.wp-pointer-undefined .wp-pointer-arrow-inner {
|
||||
top: 1px;
|
||||
margin-left: -13px;
|
||||
margin-top: -13px;
|
||||
border: 13px solid transparent;
|
||||
border-bottom-color: #00a0d2;
|
||||
display: block;
|
||||
content: " ";
|
||||
}
|
||||
|
||||
.wp-pointer-bottom .wp-pointer-arrow {
|
||||
bottom: 0;
|
||||
border-width: 13px 13px 0 13px;
|
||||
border-top-color: #ccc;
|
||||
}
|
||||
|
||||
.wp-pointer-bottom .wp-pointer-arrow-inner {
|
||||
bottom: 1px;
|
||||
margin-left: -13px;
|
||||
margin-bottom: -13px;
|
||||
border: 13px solid transparent;
|
||||
border-top-color: #fff;
|
||||
display: block;
|
||||
content: " ";
|
||||
}
|
||||
|
||||
/* rtl:ignore */
|
||||
.wp-pointer-left .wp-pointer-arrow {
|
||||
left: 0;
|
||||
border-width: 13px 13px 13px 0;
|
||||
border-right-color: #ccc;
|
||||
}
|
||||
|
||||
/* rtl:ignore */
|
||||
.wp-pointer-left .wp-pointer-arrow-inner {
|
||||
left: 1px;
|
||||
margin-left: -13px;
|
||||
margin-top: -13px;
|
||||
border: 13px solid transparent;
|
||||
border-right-color: #fff;
|
||||
display: block;
|
||||
content: " ";
|
||||
}
|
||||
|
||||
/* rtl:ignore */
|
||||
.wp-pointer-right .wp-pointer-arrow {
|
||||
right: 0;
|
||||
border-width: 13px 0 13px 13px;
|
||||
border-left-color: #ccc;
|
||||
}
|
||||
|
||||
/* rtl:ignore */
|
||||
.wp-pointer-right .wp-pointer-arrow-inner {
|
||||
right: 1px;
|
||||
margin-right: -13px;
|
||||
margin-top: -13px;
|
||||
border: 13px solid transparent;
|
||||
border-left-color: #fff;
|
||||
display: block;
|
||||
content: " ";
|
||||
}
|
||||
|
||||
.wp-pointer.arrow-bottom .wp-pointer-content {
|
||||
margin-bottom: -45px;
|
||||
}
|
||||
|
||||
.wp-pointer.arrow-bottom .wp-pointer-arrow {
|
||||
top: 100%;
|
||||
margin-top: -30px;
|
||||
}
|
||||
|
||||
/* Disable pointers at responsive sizes */
|
||||
@media screen and ( max-width: 782px ) {
|
||||
.wp-pointer {
|
||||
display: none;
|
||||
}
|
||||
}
|
2
wp-includes/css/wp-pointer.min.css
vendored
Normal file
2
wp-includes/css/wp-pointer.min.css
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
/*! This file is auto-generated */
|
||||
.wp-pointer-content{padding:0 0 10px;position:relative;font-size:13px;background:#fff;border:1px solid #ddd;box-shadow:0 3px 6px rgba(0,0,0,.075)}.wp-pointer-content h3{position:relative;margin:-1px -1px 5px;padding:15px 18px 14px 60px;border:1px solid #3592b6;border-bottom:none;line-height:1.4em;font-size:14px;color:#fff;background:#00a0d2}.wp-pointer-content h3:before{background:#fff;border-radius:50%;color:#00a0d2;content:"\f227";font:normal 20px/1.6 dashicons;position:absolute;top:8px;left:15px;speak:none;text-align:center;width:32px;height:32px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wp-pointer-content h4{margin:1.33em 20px 1em;font-size:1.15em}.wp-pointer-content p{padding:0 20px}.wp-pointer-buttons{margin:0;padding:5px 15px;overflow:auto}.wp-pointer-buttons a{float:right;display:inline-block;text-decoration:none}.wp-pointer-buttons a.close{padding-left:3px;position:relative}.wp-pointer-buttons a.close:before{background:0 0;color:#72777c;content:"\f153";display:block!important;font:normal 16px/1 dashicons;speak:none;margin:1px 0;text-align:center;-webkit-font-smoothing:antialiased!important;width:10px;height:100%;position:absolute;left:-15px;top:1px}.wp-pointer-buttons a.close:hover:before{color:#c00}.wp-pointer-arrow,.wp-pointer-arrow-inner{position:absolute;width:0;height:0}.wp-pointer-arrow{z-index:10;width:0;height:0;border:0 solid transparent}.wp-pointer-arrow-inner{z-index:20}.wp-pointer-top,.wp-pointer-undefined{padding-top:13px}.wp-pointer-bottom{margin-top:-13px;padding-bottom:13px}.wp-pointer-left{padding-left:13px}.wp-pointer-right{margin-left:-13px;padding-right:13px}.wp-pointer-bottom .wp-pointer-arrow,.wp-pointer-top .wp-pointer-arrow,.wp-pointer-undefined .wp-pointer-arrow{left:50px}.wp-pointer-left .wp-pointer-arrow,.wp-pointer-right .wp-pointer-arrow{top:50%;margin-top:-15px}.wp-pointer-top .wp-pointer-arrow,.wp-pointer-undefined .wp-pointer-arrow{top:0;border-width:0 13px 13px 13px;border-bottom-color:#3592b6}.wp-pointer-top .wp-pointer-arrow-inner,.wp-pointer-undefined .wp-pointer-arrow-inner{top:1px;margin-left:-13px;margin-top:-13px;border:13px solid transparent;border-bottom-color:#00a0d2;display:block;content:" "}.wp-pointer-bottom .wp-pointer-arrow{bottom:0;border-width:13px 13px 0 13px;border-top-color:#ccc}.wp-pointer-bottom .wp-pointer-arrow-inner{bottom:1px;margin-left:-13px;margin-bottom:-13px;border:13px solid transparent;border-top-color:#fff;display:block;content:" "}.wp-pointer-left .wp-pointer-arrow{left:0;border-width:13px 13px 13px 0;border-right-color:#ccc}.wp-pointer-left .wp-pointer-arrow-inner{left:1px;margin-left:-13px;margin-top:-13px;border:13px solid transparent;border-right-color:#fff;display:block;content:" "}.wp-pointer-right .wp-pointer-arrow{right:0;border-width:13px 0 13px 13px;border-left-color:#ccc}.wp-pointer-right .wp-pointer-arrow-inner{right:1px;margin-right:-13px;margin-top:-13px;border:13px solid transparent;border-left-color:#fff;display:block;content:" "}.wp-pointer.arrow-bottom .wp-pointer-content{margin-bottom:-45px}.wp-pointer.arrow-bottom .wp-pointer-arrow{top:100%;margin-top:-30px}@media screen and (max-width:782px){.wp-pointer{display:none}}
|
Loading…
Add table
Add a link
Reference in a new issue