Revive `grunt-rtlcss`, which does not appear to enjoy syntax errors.
props netweb. see #36753, #29792. Built from https://develop.svn.wordpress.org/trunk@37363 git-svn-id: http://core.svn.wordpress.org/trunk@37329 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
172af4e0ce
commit
610215ceb1
|
@ -0,0 +1,462 @@
|
|||
html {
|
||||
background: #f1f1f1;
|
||||
margin: 0 20px;
|
||||
}
|
||||
|
||||
body {
|
||||
background: #fff;
|
||||
color: #444;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
|
||||
margin: 140px auto 25px;
|
||||
padding: 20px 20px 10px 20px;
|
||||
max-width: 700px;
|
||||
-webkit-font-smoothing: subpixel-antialiased;
|
||||
-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13);
|
||||
box-shadow: 0 1px 3px rgba(0,0,0,0.13);
|
||||
}
|
||||
|
||||
a {
|
||||
color: #0073aa;
|
||||
}
|
||||
|
||||
a:hover,
|
||||
a:active {
|
||||
color: #00a0d2;
|
||||
}
|
||||
|
||||
a:focus {
|
||||
color: #124964;
|
||||
-webkit-box-shadow:
|
||||
0 0 0 1px #5b9dd9,
|
||||
0 0 2px 1px rgba(30, 140, 190, .8);
|
||||
box-shadow:
|
||||
0 0 0 1px #5b9dd9,
|
||||
0 0 2px 1px rgba(30, 140, 190, .8);
|
||||
}
|
||||
|
||||
.ie8 a:focus {
|
||||
outline: #5b9dd9 solid 1px;
|
||||
}
|
||||
|
||||
h1, h2 {
|
||||
border-bottom: 1px solid #ddd;
|
||||
clear: both;
|
||||
color: #666;
|
||||
font-size: 24px;
|
||||
padding: 0;
|
||||
padding-bottom: 7px;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
p, li, dd, dt {
|
||||
padding-bottom: 2px;
|
||||
font-size: 14px;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
code, .code {
|
||||
font-family: Consolas, Monaco, monospace;
|
||||
}
|
||||
|
||||
ul, ol, dl {
|
||||
padding: 5px 22px 5px 5px;
|
||||
}
|
||||
|
||||
a img {
|
||||
border:0
|
||||
}
|
||||
abbr {
|
||||
border: 0;
|
||||
font-variant: normal;
|
||||
}
|
||||
|
||||
fieldset {
|
||||
border: 0;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
label {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#logo {
|
||||
margin: 6px 0 14px 0;
|
||||
padding: 0 0 7px 0;
|
||||
border-bottom: none;
|
||||
text-align:center
|
||||
}
|
||||
#logo a {
|
||||
background-image: url(../images/w-logo-blue.png?ver=20131202);
|
||||
background-image: none, url(../images/wordpress-logo.svg?ver=20131107);
|
||||
-webkit-background-size: 84px;
|
||||
background-size: 84px;
|
||||
background-position: center top;
|
||||
background-repeat: no-repeat;
|
||||
color: #444; /* same as login.css */
|
||||
height: 84px;
|
||||
font-size: 20px;
|
||||
font-weight: normal;
|
||||
line-height: 1.3em;
|
||||
margin: -130px auto 25px;
|
||||
padding: 0;
|
||||
text-decoration: none;
|
||||
width: 84px;
|
||||
text-indent: -9999px;
|
||||
outline: none;
|
||||
overflow: hidden;
|
||||
display: block;
|
||||
}
|
||||
|
||||
#logo a:focus {
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.step {
|
||||
margin: 20px 0 15px;
|
||||
}
|
||||
.step, th {
|
||||
text-align: right;
|
||||
padding: 0;
|
||||
}
|
||||
.language-chooser.wp-core-ui .step .button.button-large {
|
||||
height: 36px;
|
||||
font-size: 14px;
|
||||
line-height: 33px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
textarea {
|
||||
border: 1px solid #ddd;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
|
||||
width: 100%;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.form-table {
|
||||
border-collapse: collapse;
|
||||
margin-top: 1em;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.form-table td {
|
||||
margin-bottom: 9px;
|
||||
padding: 10px 0 10px 20px;
|
||||
font-size: 14px;
|
||||
vertical-align: top
|
||||
}
|
||||
|
||||
.form-table th {
|
||||
font-size: 14px;
|
||||
text-align: right;
|
||||
padding: 10px 0 10px 20px;
|
||||
width: 140px;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.form-table code {
|
||||
line-height: 18px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.form-table p {
|
||||
margin: 4px 0 0 0;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.form-table input {
|
||||
line-height: 20px;
|
||||
font-size: 15px;
|
||||
padding: 3px 5px;
|
||||
border: 1px solid #ddd;
|
||||
-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.07);
|
||||
box-shadow: inset 0 1px 2px rgba(0,0,0,0.07);
|
||||
}
|
||||
|
||||
input,
|
||||
submit {
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
|
||||
}
|
||||
|
||||
.form-table input[type=text],
|
||||
.form-table input[type=email],
|
||||
.form-table input[type=url],
|
||||
.form-table input[type=password] {
|
||||
width: 206px;
|
||||
}
|
||||
|
||||
.form-table th p {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.form-table.install-success th,
|
||||
.form-table.install-success td {
|
||||
vertical-align: middle;
|
||||
padding: 16px 0 16px 20px;
|
||||
}
|
||||
|
||||
.form-table.install-success td p {
|
||||
margin: 0;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.form-table.install-success td code {
|
||||
margin: 0;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
#error-page {
|
||||
margin-top: 50px;
|
||||
}
|
||||
|
||||
#error-page p {
|
||||
font-size: 14px;
|
||||
line-height: 18px;
|
||||
margin: 25px 0 20px;
|
||||
}
|
||||
|
||||
#error-page code, .code {
|
||||
font-family: Consolas, Monaco, monospace;
|
||||
}
|
||||
|
||||
.wp-hide-pw > .dashicons {
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
#pass-strength-result {
|
||||
background-color: #eee;
|
||||
border: 1px solid #ddd;
|
||||
color: #23282d;
|
||||
margin: -2px 0px 5px 5px;
|
||||
padding: 3px 5px;
|
||||
text-align: center;
|
||||
width: 218px;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
#pass-strength-result.short {
|
||||
background-color: #f1adad;
|
||||
border-color: #e35b5b;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
#pass-strength-result.bad {
|
||||
background-color: #fbc5a9;
|
||||
border-color: #f78b53;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
#pass-strength-result.good {
|
||||
background-color: #ffe399;
|
||||
border-color: #ffc733;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
#pass-strength-result.strong {
|
||||
background-color: #c1e1b9;
|
||||
border-color: #83c373;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
#pass1.short, #pass1-text.short {
|
||||
border-color: #e35b5b;
|
||||
}
|
||||
|
||||
#pass1.bad, #pass1-text.bad {
|
||||
border-color: #f78b53;
|
||||
}
|
||||
|
||||
#pass1.good, #pass1-text.good {
|
||||
border-color: #ffc733;
|
||||
}
|
||||
|
||||
#pass1.strong, #pass1-text.strong {
|
||||
border-color: #83c373;
|
||||
}
|
||||
|
||||
.pw-weak {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.message {
|
||||
border-right: 4px solid #dc3232;
|
||||
padding: .7em .6em;
|
||||
background-color: #fbeaea;
|
||||
}
|
||||
|
||||
/* rtl:ignore */
|
||||
#dbname,
|
||||
#uname,
|
||||
#pwd,
|
||||
#dbhost,
|
||||
#prefix,
|
||||
#user_login,
|
||||
#admin_email,
|
||||
#pass1,
|
||||
#pass2 {
|
||||
direction: ltr;
|
||||
}
|
||||
|
||||
#pass1-text,
|
||||
.show-password #pass1 {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.show-password #pass1-text
|
||||
{
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.form-table span.description.important {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
|
||||
/* localization */
|
||||
body.rtl,
|
||||
.rtl textarea,
|
||||
.rtl input,
|
||||
.rtl submit {
|
||||
font-family: Tahoma, sans-serif;
|
||||
}
|
||||
|
||||
:lang(he-il) body.rtl,
|
||||
:lang(he-il) .rtl textarea,
|
||||
:lang(he-il) .rtl input,
|
||||
:lang(he-il) .rtl submit {
|
||||
font-family: Arial, sans-serif;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 799px) {
|
||||
body {
|
||||
margin-top: 115px;
|
||||
}
|
||||
#logo a {
|
||||
margin: -125px auto 30px;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and ( max-width: 782px ) {
|
||||
|
||||
.form-table {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.form-table th,
|
||||
.form-table td {
|
||||
display: block;
|
||||
width: auto;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.form-table th {
|
||||
padding: 20px 0 0;
|
||||
}
|
||||
|
||||
.form-table td {
|
||||
padding: 5px 0;
|
||||
border: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
textarea,
|
||||
input {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.form-table td input[type="text"],
|
||||
.form-table td input[type="email"],
|
||||
.form-table td input[type="url"],
|
||||
.form-table td input[type="password"],
|
||||
.form-table td select,
|
||||
.form-table td textarea,
|
||||
.form-table span.description {
|
||||
width: 100%;
|
||||
font-size: 16px;
|
||||
line-height: 1.5;
|
||||
padding: 7px 10px;
|
||||
display: block;
|
||||
max-width: none;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
body.language-chooser {
|
||||
max-width: 300px;
|
||||
}
|
||||
|
||||
.language-chooser select {
|
||||
padding: 8px;
|
||||
width: 100%;
|
||||
display: block;
|
||||
border: 1px solid #ddd;
|
||||
background-color: #fff;
|
||||
color: #32373c;
|
||||
font-size: 16px;
|
||||
font-family: Arial, sans-serif;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.language-chooser p {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.screen-reader-input,
|
||||
.screen-reader-text {
|
||||
position: absolute;
|
||||
margin: -1px;
|
||||
padding: 0;
|
||||
height: 1px;
|
||||
width: 1px;
|
||||
overflow: hidden;
|
||||
clip: rect(0 0 0 0);
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.spinner {
|
||||
background: url(../images/spinner.gif) no-repeat;
|
||||
-webkit-background-size: 20px 20px;
|
||||
background-size: 20px 20px;
|
||||
visibility: hidden;
|
||||
opacity: 0.7;
|
||||
filter: alpha(opacity=70);
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
margin: 2px 5px 0;
|
||||
}
|
||||
|
||||
.step .spinner {
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
margin-left: 15px;
|
||||
}
|
||||
|
||||
.button-secondary.hide-if-no-js,
|
||||
.hide-if-no-js {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* HiDPI Displays
|
||||
*/
|
||||
@media print,
|
||||
(-webkit-min-device-pixel-ratio: 1.25),
|
||||
(min-resolution: 120dpi) {
|
||||
|
||||
.spinner {
|
||||
background-image: url(../images/spinner-2x.gif);
|
||||
}
|
||||
|
||||
}
|
File diff suppressed because one or more lines are too long
|
@ -132,7 +132,7 @@ label {
|
|||
}
|
||||
textarea {
|
||||
border: 1px solid #ddd;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
|
||||
width: 100%;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,120 @@
|
|||
/*------------------------------------------------------------------------------
|
||||
27.0 - Localization
|
||||
------------------------------------------------------------------------------*/
|
||||
|
||||
/* RTL except Hebrew (see below): Tahoma as the first font; */
|
||||
body.rtl,
|
||||
body.rtl .press-this a.wp-switch-editor {
|
||||
font-family: Tahoma, Arial, sans-serif;
|
||||
}
|
||||
|
||||
/* Arial is best for RTL headings. */
|
||||
.rtl h1,
|
||||
.rtl h2,
|
||||
.rtl h3,
|
||||
.rtl h4,
|
||||
.rtl h5,
|
||||
.rtl h6 {
|
||||
font-family: Arial, sans-serif;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* he_IL: Remove Tahoma from the font stack. Arial is best for Hebrew. */
|
||||
body.locale-he-il,
|
||||
body.locale-he-il .press-this a.wp-switch-editor {
|
||||
font-family: Arial, sans-serif;
|
||||
}
|
||||
|
||||
/* he_IL: Have <em> be bold rather than italic. */
|
||||
.locale-he-il em {
|
||||
font-style: normal;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* zh_CN: Remove italic properties. */
|
||||
.locale-zh-cn .howto,
|
||||
.locale-zh-cn .tablenav .displaying-num,
|
||||
.locale-zh-cn .js .input-with-default-title,
|
||||
.locale-zh-cn .link-to-original,
|
||||
.locale-zh-cn .inline-edit-row fieldset span.title,
|
||||
.locale-zh-cn .inline-edit-row fieldset span.checkbox-title,
|
||||
.locale-zh-cn #utc-time,
|
||||
.locale-zh-cn #local-time,
|
||||
.locale-zh-cn p.install-help,
|
||||
.locale-zh-cn p.help,
|
||||
.locale-zh-cn p.description,
|
||||
.locale-zh-cn span.description,
|
||||
.locale-zh-cn .form-wrap p {
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
/* zh_CN: Enlarge dashboard widget 'Configure' link */
|
||||
.locale-zh-cn .hdnle a { font-size: 12px; }
|
||||
|
||||
/* zn_CH: Enlarge font size, set font-size: normal */
|
||||
.locale-zh-cn form.upgrade .hint { font-style: normal; font-size: 100%; }
|
||||
|
||||
/* zh_CN: Enlarge font-size. */
|
||||
.locale-zh-cn #sort-buttons { font-size: 1em !important; }
|
||||
|
||||
/* de_DE: Text needs more space for translation */
|
||||
.locale-de-de #customize-header-actions .button,
|
||||
.locale-de-de-formal #customize-header-actions .button {
|
||||
padding: 0 5px 1px; /* default 0 10px 1px */
|
||||
}
|
||||
.locale-de-de #customize-header-actions .spinner,
|
||||
.locale-de-de-formal #customize-header-actions .spinner {
|
||||
margin: 16px 3px 0; /* default 16px 4px 0 5px */
|
||||
}
|
||||
|
||||
/* ru_RU: Text needs more room to breathe. */
|
||||
.locale-ru-ru #adminmenu {
|
||||
width: inherit; /* back-compat for pre-3.2 */
|
||||
}
|
||||
.locale-ru-ru #adminmenu,
|
||||
.locale-ru-ru #wpbody {
|
||||
margin-right: 0; /* back-compat for pre-3.2 */
|
||||
}
|
||||
.locale-ru-ru .inline-edit-row fieldset label span.title,
|
||||
.locale-ru-ru .inline-edit-row fieldset.inline-edit-date legend {
|
||||
width: 8em; /* default 6em */
|
||||
}
|
||||
.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap,
|
||||
.locale-ru-ru .inline-edit-row fieldset .timestamp-wrap {
|
||||
margin-right: 8em; /* default 6em */
|
||||
}
|
||||
.locale-ru-ru.post-php .tagsdiv .newtag,
|
||||
.locale-ru-ru.post-new-php .tagsdiv .newtag {
|
||||
width: 165px; /* default 180px - 15px */
|
||||
}
|
||||
.locale-ru-ru.press-this .posting {
|
||||
margin-left: 277px; /* default 252px + 25px */
|
||||
}
|
||||
.locale-ru-ru .press-this-sidebar {
|
||||
width: 265px; /* default 240px + 25px */
|
||||
}
|
||||
.locale-ru-ru #customize-header-actions .button {
|
||||
padding: 0 5px 1px; /* default 0 10px 1px */
|
||||
}
|
||||
.locale-ru-ru #customize-header-actions .spinner {
|
||||
margin: 16px 3px 0; /* default 16px 4px 0 5px */
|
||||
}
|
||||
|
||||
/* lt_LT: QuickEdit */
|
||||
.locale-lt-lt .inline-edit-row fieldset label span.title,
|
||||
.locale-lt-lt .inline-edit-row fieldset.inline-edit-date legend {
|
||||
width: 8em; /* default 6em */
|
||||
}
|
||||
.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap,
|
||||
.locale-lt-lt .inline-edit-row fieldset .timestamp-wrap {
|
||||
margin-right: 8em; /* default 6em */
|
||||
}
|
||||
|
||||
@media screen and (max-width: 782px) {
|
||||
.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap,
|
||||
.locale-ru-ru .inline-edit-row fieldset .timestamp-wrap,
|
||||
.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap,
|
||||
.locale-lt-lt .inline-edit-row fieldset .timestamp-wrap {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
.locale-he-il em,.locale-zh-cn #local-time,.locale-zh-cn #utc-time,.locale-zh-cn .form-wrap p,.locale-zh-cn .howto,.locale-zh-cn .inline-edit-row fieldset span.checkbox-title,.locale-zh-cn .inline-edit-row fieldset span.title,.locale-zh-cn .js .input-with-default-title,.locale-zh-cn .link-to-original,.locale-zh-cn .tablenav .displaying-num,.locale-zh-cn p.description,.locale-zh-cn p.help,.locale-zh-cn p.install-help,.locale-zh-cn span.description{font-style:normal}.locale-de-de #customize-header-actions .button,.locale-de-de-formal #customize-header-actions .button,.locale-ru-ru #customize-header-actions .button{padding:0 5px 1px}body.rtl,body.rtl .press-this a.wp-switch-editor{font-family:Tahoma,Arial,sans-serif}.rtl h1,.rtl h2,.rtl h3,.rtl h4,.rtl h5,.rtl h6{font-family:Arial,sans-serif;font-weight:700}body.locale-he-il,body.locale-he-il .press-this a.wp-switch-editor{font-family:Arial,sans-serif}.locale-he-il em{font-weight:700}.locale-zh-cn .hdnle a{font-size:12px}.locale-zh-cn form.upgrade .hint{font-style:normal;font-size:100%}.locale-zh-cn #sort-buttons{font-size:1em!important}.locale-de-de #customize-header-actions .spinner,.locale-de-de-formal #customize-header-actions .spinner{margin:16px 3px 0}.locale-ru-ru #adminmenu{width:inherit}.locale-ru-ru #adminmenu,.locale-ru-ru #wpbody{margin-right:0}.locale-ru-ru .inline-edit-row fieldset label span.title,.locale-ru-ru .inline-edit-row fieldset.inline-edit-date legend{width:8em}.locale-ru-ru .inline-edit-row fieldset .timestamp-wrap,.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap{margin-right:8em}.locale-ru-ru.post-new-php .tagsdiv .newtag,.locale-ru-ru.post-php .tagsdiv .newtag{width:165px}.locale-ru-ru.press-this .posting{margin-left:277px}.locale-ru-ru .press-this-sidebar{width:265px}.locale-ru-ru #customize-header-actions .spinner{margin:16px 3px 0}.locale-lt-lt .inline-edit-row fieldset label span.title,.locale-lt-lt .inline-edit-row fieldset.inline-edit-date legend{width:8em}.locale-lt-lt .inline-edit-row fieldset .timestamp-wrap,.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap{margin-right:8em}@media screen and (max-width:782px){.locale-lt-lt .inline-edit-row fieldset .timestamp-wrap,.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap,.locale-ru-ru .inline-edit-row fieldset .timestamp-wrap,.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap{margin-right:0}}
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,269 @@
|
|||
@import url(forms-rtl.css);
|
||||
@import url(l10n-rtl.css);
|
||||
|
||||
html,
|
||||
body {
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
background: #f1f1f1;
|
||||
min-width: 0;
|
||||
color: #444;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
|
||||
font-size: 13px;
|
||||
line-height: 1.4em;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #0073aa;
|
||||
-webkit-transition-property: border, background, color;
|
||||
transition-property: border, background, color;
|
||||
-webkit-transition-duration: .05s;
|
||||
transition-duration: .05s;
|
||||
-webkit-transition-timing-function: ease-in-out;
|
||||
transition-timing-function: ease-in-out;
|
||||
}
|
||||
|
||||
a {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
a:hover,
|
||||
a:active {
|
||||
color: #00a0d2;
|
||||
}
|
||||
|
||||
a:focus {
|
||||
color: #124964;
|
||||
-webkit-box-shadow:
|
||||
0 0 0 1px #5b9dd9,
|
||||
0 0 2px 1px rgba(30, 140, 190, .8);
|
||||
box-shadow:
|
||||
0 0 0 1px #5b9dd9,
|
||||
0 0 2px 1px rgba(30, 140, 190, .8);
|
||||
}
|
||||
|
||||
.ie8 a:focus {
|
||||
outline: #5b9dd9 solid 1px;
|
||||
}
|
||||
|
||||
p {
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.login .message,
|
||||
.login #login_error {
|
||||
border-right: 4px solid #00a0d2;
|
||||
padding: 12px;
|
||||
margin-right: 0;
|
||||
background-color: #fff;
|
||||
-webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
|
||||
box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
|
||||
}
|
||||
|
||||
.login #login_error {
|
||||
border-right-color: #dc3232;
|
||||
}
|
||||
|
||||
#loginform p.submit,
|
||||
.login-action-lostpassword p.submit {
|
||||
border: none;
|
||||
margin: -10px 0 20px; /* May want to revisit this */
|
||||
}
|
||||
|
||||
.login * {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.login form {
|
||||
margin-top: 20px;
|
||||
margin-right: 0;
|
||||
padding: 26px 24px 46px;
|
||||
font-weight: normal;
|
||||
overflow: hidden;
|
||||
background: #fff;
|
||||
-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13);
|
||||
box-shadow: 0 1px 3px rgba(0,0,0,0.13);
|
||||
}
|
||||
|
||||
.login form .forgetmenot {
|
||||
font-weight: normal;
|
||||
float: right;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.login .button-primary {
|
||||
float: left;
|
||||
}
|
||||
|
||||
#login form p {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#login form p.submit {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.login label {
|
||||
color: #72777c;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.login form .forgetmenot label {
|
||||
font-size: 12px;
|
||||
line-height: 19px;
|
||||
}
|
||||
|
||||
.login h1 {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.login h1 a {
|
||||
background-image: url(../images/w-logo-blue.png?ver=20131202);
|
||||
background-image: none, url(../images/wordpress-logo.svg?ver=20131107);
|
||||
-webkit-background-size: 84px;
|
||||
background-size: 84px;
|
||||
background-position: center top;
|
||||
background-repeat: no-repeat;
|
||||
color: #444;
|
||||
height: 84px;
|
||||
font-size: 20px;
|
||||
font-weight: normal;
|
||||
line-height: 1.3em;
|
||||
margin: 0 auto 25px;
|
||||
padding: 0;
|
||||
text-decoration: none;
|
||||
width: 84px;
|
||||
text-indent: -9999px;
|
||||
outline: none;
|
||||
overflow: hidden;
|
||||
display: block;
|
||||
}
|
||||
|
||||
#login {
|
||||
width: 320px;
|
||||
padding: 8% 0 0;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.login #nav,
|
||||
.login #backtoblog {
|
||||
font-size: 13px;
|
||||
padding: 0 24px 0;
|
||||
}
|
||||
|
||||
.login #nav {
|
||||
margin: 24px 0 0 0;
|
||||
}
|
||||
|
||||
#backtoblog {
|
||||
margin: 16px 0;
|
||||
}
|
||||
|
||||
.login #nav a,
|
||||
.login #backtoblog a {
|
||||
text-decoration: none;
|
||||
color: #555d66;
|
||||
}
|
||||
|
||||
.login #nav a:hover,
|
||||
.login #backtoblog a:hover,
|
||||
.login h1 a:hover {
|
||||
color: #00a0d2;
|
||||
}
|
||||
|
||||
.login #nav a:focus,
|
||||
.login #backtoblog a:focus,
|
||||
.login h1 a:focus {
|
||||
color: #124964;
|
||||
}
|
||||
|
||||
.login form .input,
|
||||
.login input[type="text"] {
|
||||
font-size: 24px;
|
||||
width: 100%;
|
||||
padding: 3px;
|
||||
margin: 2px 0 16px 6px;
|
||||
}
|
||||
|
||||
.login form .input,
|
||||
.login input[type="text"],
|
||||
.login form input[type="checkbox"] {
|
||||
background: #fbfbfb;
|
||||
}
|
||||
|
||||
.ie7 .login form .input,
|
||||
.ie8 .login form .input {
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
.login-action-rp input[type="text"] {
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.login #pass-strength-result {
|
||||
font-weight: 600;
|
||||
margin: -1px 0 16px 5px;
|
||||
padding: 6px 5px;
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.mobile #login {
|
||||
padding: 20px 0;
|
||||
}
|
||||
|
||||
.mobile #login form {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.mobile #login #nav,
|
||||
.mobile #login #backtoblog {
|
||||
margin-right: 8px;
|
||||
}
|
||||
|
||||
body.interim-login {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.interim-login #login {
|
||||
padding: 0;
|
||||
margin: 5px auto 20px;
|
||||
}
|
||||
|
||||
.interim-login.login h1 a {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.interim-login #login_error,
|
||||
.interim-login.login .message {
|
||||
margin: 0 0 16px;
|
||||
}
|
||||
|
||||
.interim-login.login form {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
@-ms-viewport {
|
||||
width: device-width;
|
||||
}
|
||||
|
||||
@media screen and ( max-width: 782px ) {
|
||||
.interim-login input[type=checkbox] {
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
}
|
||||
|
||||
.interim-login input[type=checkbox]:checked:before {
|
||||
width: 16px;
|
||||
font: normal 21px/1 dashicons;
|
||||
margin: -3px -4px 0 0;
|
||||
}
|
||||
}
|
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,893 @@
|
|||
/* nav-menu */
|
||||
|
||||
/* @todo: determine if this is truly for nav menus only */
|
||||
.no-js #message {
|
||||
display: block;
|
||||
}
|
||||
|
||||
ul.add-menu-item-tabs li {
|
||||
padding: 3px 8px 3px 5px;
|
||||
}
|
||||
|
||||
.accordion-section ul.category-tabs,
|
||||
.accordion-section ul.add-menu-item-tabs,
|
||||
.accordion-section ul.wp-tab-bar {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.accordion-section .categorychecklist {
|
||||
margin: 13px 0;
|
||||
}
|
||||
|
||||
#nav-menu-meta .accordion-section-content {
|
||||
padding: 18px 13px;
|
||||
}
|
||||
|
||||
#nav-menu-meta .button-controls {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#nav-menus-frame {
|
||||
margin-right: 300px;
|
||||
margin-top: 23px;
|
||||
}
|
||||
|
||||
#wpbody-content #menu-settings-column {
|
||||
display:inline;
|
||||
width:281px;
|
||||
margin-right: -300px;
|
||||
clear: both;
|
||||
float: right;
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
#menu-settings-column .inside {
|
||||
clear: both;
|
||||
margin: 10px 0 0;
|
||||
}
|
||||
|
||||
.metabox-holder-disabled .postbox,
|
||||
.metabox-holder-disabled .accordion-section-content,
|
||||
.metabox-holder-disabled .accordion-section-title {
|
||||
opacity: 0.5;
|
||||
filter: alpha(opacity=50);
|
||||
}
|
||||
|
||||
.metabox-holder-disabled .button-controls .select-all {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#wpbody {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.blank-slate .menu-settings {
|
||||
border: none;
|
||||
margin-top: 0;
|
||||
padding-top: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.is-submenu {
|
||||
color: #555d66; /* #fafafa background */
|
||||
font-style: italic;
|
||||
font-weight: normal;
|
||||
margin-right: 4px;
|
||||
}
|
||||
|
||||
.manage-menus {
|
||||
margin-top: 23px;
|
||||
padding: 10px;
|
||||
overflow: hidden;
|
||||
background: #fbfbfb;
|
||||
}
|
||||
|
||||
.manage-menus .selected-menu,
|
||||
.manage-menus select,
|
||||
.manage-menus .submit-btn,
|
||||
.nav-menus-php .add-new-menu-action {
|
||||
display: inline-block;
|
||||
margin-left: 3px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.manage-menus select,
|
||||
.menu-location-menus select {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.menu-edit #post-body-content h3 {
|
||||
margin: 1em 0 10px;
|
||||
}
|
||||
|
||||
.menu-settings {
|
||||
border-top: 1px solid #eee;
|
||||
margin-top: 2em;
|
||||
}
|
||||
|
||||
.menu-settings dl {
|
||||
margin: 0 0 10px;
|
||||
overflow: hidden;
|
||||
padding-right: 18%;
|
||||
}
|
||||
|
||||
.menu-settings dd {
|
||||
float: right;
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.menu-settings dt {
|
||||
float: right;
|
||||
clear: both;
|
||||
width: 21.951%;
|
||||
padding: 3px 0 0;
|
||||
margin-right: -21.951%;
|
||||
}
|
||||
|
||||
.menu-settings label {
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
.menu-edit .checkbox-input {
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
.theme-location-set {
|
||||
color: #72777c;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
/* Menu Container */
|
||||
#menu-management-liquid {
|
||||
float: right;
|
||||
min-width: 100%;
|
||||
margin-top: 3px;
|
||||
}
|
||||
|
||||
#menu-management {
|
||||
position: relative;
|
||||
margin-left: 20px;
|
||||
margin-top: -3px;
|
||||
width: 100%;
|
||||
background: #f5f5f5;
|
||||
}
|
||||
|
||||
#menu-management .menu-edit {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.nav-menus-php #post-body {
|
||||
padding: 0 10px 10px;
|
||||
border-top: 1px solid #fff;
|
||||
border-bottom: 1px solid #ddd;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
#nav-menu-header,
|
||||
#nav-menu-footer {
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
#nav-menu-header {
|
||||
border-bottom: 1px solid #ddd;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#nav-menu-header .menu-name-label {
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
margin-left: 7px;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.nav-menus-php #post-body div.updated,
|
||||
.nav-menus-php #post-body div.error {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.nav-menus-php #post-body-content {
|
||||
position: relative;
|
||||
float: none;
|
||||
}
|
||||
|
||||
#menu-management .menu-add-new abbr {
|
||||
font-weight:600;
|
||||
}
|
||||
|
||||
#select-nav-menu-container {
|
||||
text-align: left;
|
||||
padding: 0 10px 3px 10px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
#select-nav-menu {
|
||||
width: 100px;
|
||||
display: inline;
|
||||
}
|
||||
|
||||
#menu-name-label {
|
||||
margin-top: -2px;
|
||||
}
|
||||
|
||||
.widefat .menu-locations .menu-location-title {
|
||||
padding: 13px 10px 0;
|
||||
}
|
||||
|
||||
.menu-location-title label {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.menu-location-menus select {
|
||||
float: right;
|
||||
}
|
||||
|
||||
#locations-nav-menu-wrapper {
|
||||
padding: 5px 0;
|
||||
}
|
||||
|
||||
.locations-nav-menu-select select {
|
||||
float: right;
|
||||
width: 160px;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.locations-row-links {
|
||||
float: right;
|
||||
margin: 6px 6px 0 0;
|
||||
}
|
||||
|
||||
.locations-edit-menu-link,
|
||||
.locations-add-menu-link {
|
||||
margin: 0 3px;
|
||||
}
|
||||
|
||||
.locations-edit-menu-link {
|
||||
padding-left: 3px;
|
||||
border-left: 1px solid #ccc;
|
||||
}
|
||||
|
||||
#menu-management .inside {
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
/* Add Menu Item Boxes */
|
||||
.postbox .howto input,
|
||||
.customlinkdiv .menu-item-textbox {
|
||||
width: 180px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.accordion-container .outer-border {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.customlinkdiv p {
|
||||
margin-top: 0
|
||||
}
|
||||
|
||||
#nav-menu-theme-locations .howto select {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#nav-menu-theme-locations .button-controls {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.add-menu-item-view-all {
|
||||
height: 400px;
|
||||
}
|
||||
|
||||
/* Button Primary Actions */
|
||||
#menu-container .submit {
|
||||
margin: 0 0 10px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.nav-menus-php .meta-sep,
|
||||
.nav-menus-php .submitdelete,
|
||||
.nav-menus-php .submitcancel {
|
||||
display: block;
|
||||
float: right;
|
||||
margin: 6px 0;
|
||||
line-height: 15px;
|
||||
}
|
||||
|
||||
.meta-sep {
|
||||
padding: 0 2px;
|
||||
}
|
||||
|
||||
/* @todo: is this actually used? */
|
||||
#cancel-save {
|
||||
text-decoration: underline;
|
||||
font-size: 12px;
|
||||
margin-right: 20px;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.button.right, .button-secondary.right, .button-primary.right {
|
||||
float: left;
|
||||
}
|
||||
|
||||
/* Button Secondary Actions */
|
||||
.list-controls {
|
||||
float: right;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.add-to-menu {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.button-controls {
|
||||
clear:both;
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
.show-all,
|
||||
.hide-all {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.hide-all {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Create Menu */
|
||||
#menu-name {
|
||||
width: 270px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
#manage-menu .inside {
|
||||
padding: 0px 0px;
|
||||
}
|
||||
|
||||
/* Custom Links */
|
||||
#available-links dt {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#add-custom-link .howto {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
#add-custom-link label span {
|
||||
display: block;
|
||||
float: right;
|
||||
margin-top: 5px;
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
.menu-item-textbox {
|
||||
width: 180px;
|
||||
}
|
||||
|
||||
.customlinkdiv label,
|
||||
.nav-menus-php .howto span {
|
||||
float: right;
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
/* Menu item types */
|
||||
.quick-search {
|
||||
width: 190px;
|
||||
}
|
||||
|
||||
.quick-search-wrap .spinner {
|
||||
float: none;
|
||||
margin: -3px 0 0 -10px;
|
||||
}
|
||||
|
||||
.nav-menus-php .list-wrap {
|
||||
display: none;
|
||||
clear: both;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.nav-menus-php .postbox p.submit {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
/* Listings */
|
||||
.nav-menus-php .list li {
|
||||
display: none;
|
||||
margin: 0;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.nav-menus-php .list li .menu-item-title {
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.nav-menus-php .list li .menu-item-title input {
|
||||
margin-left: 3px;
|
||||
margin-top: -3px;
|
||||
}
|
||||
|
||||
.menu-item-title input[type=checkbox] {
|
||||
display: inline-block;
|
||||
margin-top: -4px;
|
||||
}
|
||||
|
||||
/* Nav Menu */
|
||||
#menu-container .inside {
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.menu {
|
||||
padding-top:1em;
|
||||
}
|
||||
|
||||
#menu-to-edit {
|
||||
margin: 0;
|
||||
padding: 0.1em 0;
|
||||
}
|
||||
|
||||
.menu ul {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.menu li {
|
||||
margin-bottom: 0;
|
||||
position:relative;
|
||||
}
|
||||
|
||||
.menu-item-bar {
|
||||
clear:both;
|
||||
line-height:1.5em;
|
||||
position:relative;
|
||||
margin: 9px 0 0;
|
||||
}
|
||||
|
||||
.menu-item-bar .menu-item-handle {
|
||||
border: 1px solid #ddd;
|
||||
position: relative;
|
||||
padding: 10px 15px;
|
||||
height: auto;
|
||||
min-height: 20px;
|
||||
width: 382px;
|
||||
line-height: 30px;
|
||||
overflow: hidden;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
.menu-item-bar .menu-item-handle:hover {
|
||||
border-color: #999;
|
||||
}
|
||||
|
||||
#menu-to-edit .menu-item-invalid .menu-item-handle {
|
||||
background: #f6c9cc;
|
||||
border-color: #f1acb1;
|
||||
}
|
||||
|
||||
.no-js .menu-item-edit-active .item-edit {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.js .menu-item-handle {
|
||||
cursor: move;
|
||||
}
|
||||
|
||||
.menu li.deleting .menu-item-handle {
|
||||
background-image: none;
|
||||
background-color: #f66;
|
||||
}
|
||||
|
||||
.menu-item-handle .item-title {
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
line-height: 20px;
|
||||
display: block;
|
||||
margin-left: 13em;
|
||||
}
|
||||
|
||||
.menu-item-handle .menu-item-title.no-title {
|
||||
color: #72777c;
|
||||
}
|
||||
|
||||
/* Sortables */
|
||||
li.menu-item.ui-sortable-helper .menu-item-bar {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
li.menu-item.ui-sortable-helper .menu-item-transport .menu-item-bar {
|
||||
margin-top: 13px;
|
||||
}
|
||||
|
||||
.menu .sortable-placeholder {
|
||||
height: 35px;
|
||||
width: 410px;
|
||||
margin-top: 13px;
|
||||
}
|
||||
|
||||
/* Hide the transport list when it's empty */
|
||||
.menu-item .menu-item-transport:empty {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* WARNING: The factor of 30px is hardcoded into the nav-menus JavaScript. */
|
||||
.menu-item-depth-0 { margin-right: 0px; }
|
||||
.menu-item-depth-1 { margin-right: 30px; }
|
||||
.menu-item-depth-2 { margin-right: 60px; }
|
||||
.menu-item-depth-3 { margin-right: 90px; }
|
||||
.menu-item-depth-4 { margin-right: 120px; }
|
||||
.menu-item-depth-5 { margin-right: 150px; }
|
||||
.menu-item-depth-6 { margin-right: 180px; }
|
||||
.menu-item-depth-7 { margin-right: 210px; }
|
||||
.menu-item-depth-8 { margin-right: 240px; }
|
||||
.menu-item-depth-9 { margin-right: 270px; }
|
||||
.menu-item-depth-10 { margin-right: 300px; }
|
||||
.menu-item-depth-11 { margin-right: 330px; }
|
||||
|
||||
.menu-item-depth-0 .menu-item-transport { margin-right: 0px; }
|
||||
.menu-item-depth-1 .menu-item-transport { margin-right: -30px; }
|
||||
.menu-item-depth-2 .menu-item-transport { margin-right: -60px; }
|
||||
.menu-item-depth-3 .menu-item-transport { margin-right: -90px; }
|
||||
.menu-item-depth-4 .menu-item-transport { margin-right: -120px; }
|
||||
.menu-item-depth-5 .menu-item-transport { margin-right: -150px; }
|
||||
.menu-item-depth-6 .menu-item-transport { margin-right: -180px; }
|
||||
.menu-item-depth-7 .menu-item-transport { margin-right: -210px; }
|
||||
.menu-item-depth-8 .menu-item-transport { margin-right: -240px; }
|
||||
.menu-item-depth-9 .menu-item-transport { margin-right: -270px; }
|
||||
.menu-item-depth-10 .menu-item-transport { margin-right: -300px; }
|
||||
.menu-item-depth-11 .menu-item-transport { margin-right: -330px; }
|
||||
|
||||
body.menu-max-depth-0 { min-width: 950px !important; }
|
||||
body.menu-max-depth-1 { min-width: 980px !important; }
|
||||
body.menu-max-depth-2 { min-width: 1010px !important; }
|
||||
body.menu-max-depth-3 { min-width: 1040px !important; }
|
||||
body.menu-max-depth-4 { min-width: 1070px !important; }
|
||||
body.menu-max-depth-5 { min-width: 1100px !important; }
|
||||
body.menu-max-depth-6 { min-width: 1130px !important; }
|
||||
body.menu-max-depth-7 { min-width: 1160px !important; }
|
||||
body.menu-max-depth-8 { min-width: 1190px !important; }
|
||||
body.menu-max-depth-9 { min-width: 1220px !important; }
|
||||
body.menu-max-depth-10 { min-width: 1250px !important; }
|
||||
body.menu-max-depth-11 { min-width: 1280px !important; }
|
||||
|
||||
/* Menu item controls */
|
||||
.item-type {
|
||||
display: inline-block;
|
||||
padding: 12px 16px;
|
||||
color: #666;
|
||||
font-size: 12px;
|
||||
line-height: 18px;
|
||||
}
|
||||
|
||||
.item-controls {
|
||||
font-size: 12px;
|
||||
position: absolute;
|
||||
left: 20px;
|
||||
top: -1px;
|
||||
}
|
||||
|
||||
.item-controls a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.item-controls a:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.item-controls .item-order {
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
.nav-menus-php .item-edit {
|
||||
position: absolute;
|
||||
left: -20px;
|
||||
top: 0;
|
||||
display: block;
|
||||
width: 30px;
|
||||
height: 40px;
|
||||
margin-left: 0 !important;
|
||||
text-indent: 100%;
|
||||
outline: none;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.no-js.nav-menus-php .item-edit {
|
||||
position: static;
|
||||
float: left;
|
||||
width: auto;
|
||||
height: auto;
|
||||
margin-left: -10px !important;
|
||||
padding: 12px 0;
|
||||
color: #0073aa;
|
||||
text-decoration: underline;
|
||||
font-size: 12px;
|
||||
line-height: 18px;
|
||||
text-indent: 0;
|
||||
}
|
||||
|
||||
.nav-menus-php .item-edit:before {
|
||||
margin-top: 10px;
|
||||
margin-right: 4px;
|
||||
width: 20px;
|
||||
-webkit-border-radius: 50%;
|
||||
border-radius: 50%;
|
||||
text-indent: -1px; /* account for the dashicon alignment */
|
||||
}
|
||||
|
||||
.no-js.nav-menus-php .item-edit:before {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.rtl .nav-menus-php .item-edit:before {
|
||||
text-indent: 1px; /* account for the dashicon alignment */
|
||||
}
|
||||
|
||||
.nav-menus-php .item-edit:focus {
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.nav-menus-php .item-edit:focus:before {
|
||||
-webkit-box-shadow:
|
||||
0 0 0 1px #5b9dd9,
|
||||
0 0 2px 1px rgba(30, 140, 190, .8);
|
||||
box-shadow:
|
||||
0 0 0 1px #5b9dd9,
|
||||
0 0 2px 1px rgba(30, 140, 190, .8);
|
||||
}
|
||||
|
||||
/* Menu editing */
|
||||
.menu-instructions-inactive {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.menu-item-settings {
|
||||
display: block;
|
||||
width: 402px;
|
||||
padding: 10px 10px 10px 0;
|
||||
position: relative;
|
||||
z-index: 10; /* Keep .item-title's shadow from appearing on top of .menu-item-settings */
|
||||
border: 1px solid #e5e5e5;
|
||||
border-top: none;
|
||||
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
|
||||
box-shadow: 0 1px 1px rgba(0,0,0,0.04);
|
||||
}
|
||||
|
||||
.menu-item-settings .field-move a {
|
||||
display: none;
|
||||
margin: 0 2px;
|
||||
}
|
||||
|
||||
.menu-item-edit-active .menu-item-settings {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.menu-item-edit-inactive .menu-item-settings {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.add-menu-item-pagelinks {
|
||||
margin: .5em auto;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.link-to-original {
|
||||
display: block;
|
||||
margin: 0 0 10px;
|
||||
padding: 3px 5px 5px;
|
||||
border: 1px solid #ddd;
|
||||
color: #72777c;
|
||||
font-size: 12px;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.link-to-original a {
|
||||
padding-right: 4px;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.hidden-field {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.menu-item-settings .description-thin,
|
||||
.menu-item-settings .description-wide {
|
||||
margin-left: 10px;
|
||||
float: right;
|
||||
}
|
||||
|
||||
.description-thin {
|
||||
width: 190px;
|
||||
}
|
||||
|
||||
.description-wide {
|
||||
width: 390px;
|
||||
}
|
||||
|
||||
.menu-item-actions {
|
||||
padding-top: 15px;
|
||||
}
|
||||
|
||||
#cancel-save {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* Major/minor publishing actions (classes) */
|
||||
.nav-menus-php .major-publishing-actions {
|
||||
clear: both;
|
||||
padding: 7px 0 6px;
|
||||
}
|
||||
|
||||
.nav-menus-php .major-publishing-actions .publishing-action {
|
||||
text-align: left;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.nav-menus-php .blank-slate .menu-settings {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.nav-menus-php .delete-action {
|
||||
float: right;
|
||||
margin-top: 2px;
|
||||
}
|
||||
|
||||
.nav-menus-php .submitbox .submitcancel {
|
||||
border-bottom: 1px solid #0073aa;
|
||||
padding: 1px 2px;
|
||||
color: #0073aa;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.nav-menus-php .submitbox .submitcancel:hover {
|
||||
background: #0073aa;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.nav-menus-php .major-publishing-actions .form-invalid {
|
||||
padding-right: 4px;
|
||||
margin-right: -4px;
|
||||
}
|
||||
|
||||
#nav-menus-frame,
|
||||
.button-controls,
|
||||
#menu-item-url-wrap,
|
||||
#menu-item-name-wrap {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* =Media Queries
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
@media only screen and (min-width: 769px) and (max-width: 1000px){
|
||||
body.menu-max-depth-0 {
|
||||
min-width: 0 !important;
|
||||
}
|
||||
|
||||
#menu-management-liquid{
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.nav-menus-php #post-body-content{
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.menu-item-bar .menu-item-handle{
|
||||
width: 90%;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and ( max-width: 782px ) {
|
||||
body.nav-menus-php {
|
||||
min-width: 0 !important;
|
||||
}
|
||||
|
||||
#nav-menus-frame {
|
||||
margin-right: 0;
|
||||
float: none;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#wpbody-content #menu-settings-column {
|
||||
display: block;
|
||||
width: 100%;
|
||||
float: none;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
#side-sortables .add-menu-item-tabs {
|
||||
margin: 15px 0 14px;
|
||||
}
|
||||
|
||||
ul.add-menu-item-tabs li.tabs {
|
||||
padding: 13px 15px 14px;
|
||||
}
|
||||
|
||||
.nav-menus-php .item-controls .item-type {
|
||||
margin-top: 2px;
|
||||
}
|
||||
|
||||
.nav-menus-php .customlinkdiv .howto input {
|
||||
width: 65%;
|
||||
}
|
||||
|
||||
.nav-menus-php .quick-search {
|
||||
width: 85%;
|
||||
}
|
||||
|
||||
#menu-management-liquid {
|
||||
margin-top: 25px;
|
||||
}
|
||||
|
||||
.nav-menus-php .menu-name-label.howto span {
|
||||
margin-top: 13px
|
||||
}
|
||||
|
||||
.menu-name-label #menu-name {
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
.nav-menus-php .major-publishing-actions .publishing-action {
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
.nav-menus-php .delete-action {
|
||||
font-size: 14px;
|
||||
line-height: 50px;
|
||||
margin-top: 12px;
|
||||
}
|
||||
|
||||
.menu-item-bar .menu-item-handle,
|
||||
.menu-item-settings,
|
||||
.description-wide {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.menu-item-settings {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.menu-item-settings .description-thin,
|
||||
.menu-item-settings .description-wide {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.menu-item-settings input {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.menu-item-settings input[type="checkbox"],
|
||||
.menu-item-settings input[type="radio"] {
|
||||
width: 25px;
|
||||
}
|
||||
|
||||
.menu-settings dl {
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.menu-settings dd {
|
||||
float: none;
|
||||
width: 100%;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.menu-settings dt {
|
||||
float: none;
|
||||
width: auto;
|
||||
margin-right: 0;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.manage-menus select {
|
||||
margin: 0.5em 0;
|
||||
}
|
||||
|
||||
.widefat .menu-locations .menu-location-title {
|
||||
padding-top: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 768px) {
|
||||
/* menu locations */
|
||||
#menu-locations-wrap .widefat {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,122 @@
|
|||
/*
|
||||
Press This TinyMCE editor styles :)
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* Links
|
||||
*/
|
||||
a {
|
||||
color: #0073aa;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: #0073aa;
|
||||
}
|
||||
|
||||
a:hover,
|
||||
a:focus,
|
||||
a:active {
|
||||
color: #00a0d2;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Lists
|
||||
*/
|
||||
ul,
|
||||
ol {
|
||||
margin: 0 3em 1.5em 0;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: disc;
|
||||
}
|
||||
|
||||
ol {
|
||||
list-style: decimal;
|
||||
}
|
||||
|
||||
li > ul,
|
||||
li > ol {
|
||||
margin-bottom: 0;
|
||||
margin-right: 1.5em;
|
||||
}
|
||||
|
||||
dt {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
dd {
|
||||
margin: 0 1.5em 1.5em;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Media
|
||||
*
|
||||
* Basic image and object styles
|
||||
*/
|
||||
img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
/* Makes sure embeds and iframes fit inside their containers */
|
||||
embed,
|
||||
iframe,
|
||||
object {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* TinyMCE styles
|
||||
*
|
||||
* Pretty dang good.
|
||||
*/
|
||||
body {
|
||||
color: #404040;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
|
||||
font-size: 20px;
|
||||
font-weight: 400;
|
||||
line-height: 1.6;
|
||||
}
|
||||
@media (max-width: 900px) {
|
||||
body#tinymce {
|
||||
padding-top: 30px !important;
|
||||
}
|
||||
}
|
||||
@media (max-width: 640px) {
|
||||
body {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 320px) {
|
||||
body {
|
||||
margin: 0 15px;
|
||||
}
|
||||
}
|
||||
|
||||
#tinymce b,
|
||||
#tinymce strong {
|
||||
/* overrides TinyMCE's !important. Woohoo. */
|
||||
font-weight: 700 !important;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
margin: 1em 1.5em;
|
||||
color: #9ea7af;
|
||||
font-size: em(25px);
|
||||
font-style: italic;
|
||||
}
|
||||
@media (max-width: 900px) {
|
||||
blockquote {
|
||||
margin: 1.5em 1em;
|
||||
}
|
||||
}
|
||||
|
||||
ul,
|
||||
ol {
|
||||
margin: 0 .75em 1.5em 0;
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
embed,iframe,img,object{max-width:100%}a,a:visited{color:#0073aa}a:active,a:focus,a:hover{color:#00a0d2}ul{list-style:disc}ol{list-style:decimal}li>ol,li>ul{margin-bottom:0;margin-right:1.5em}dt{font-weight:700}dd{margin:0 1.5em 1.5em}img{height:auto}body{color:#404040;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:20px;font-weight:400;line-height:1.6}@media (max-width:640px){body{font-size:16px}}@media (max-width:320px){body{margin:0 15px}}#tinymce b,#tinymce strong{font-weight:700!important}blockquote{margin:1em 1.5em;color:#9ea7af;font-size:em(25px);font-style:italic}@media (max-width:900px){body#tinymce{padding-top:30px!important}blockquote{margin:1.5em 1em}}ol,ul{margin:0 .75em 1.5em 0}
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,598 @@
|
|||
/*------------------------------------------------------------------------------
|
||||
11.2 - Post Revisions
|
||||
------------------------------------------------------------------------------*/
|
||||
.revisions-control-frame,
|
||||
.revisions-diff-frame {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.revisions-controls {
|
||||
padding-top: 40px;
|
||||
height: 100px;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.revisions-controls input[type="checkbox"] {
|
||||
position: relative;
|
||||
top: -1px;
|
||||
vertical-align: text-bottom;
|
||||
}
|
||||
|
||||
.revisions.pinned .revisions-controls {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
height: 82px;
|
||||
background: #fff;
|
||||
-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
|
||||
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
|
||||
}
|
||||
|
||||
.revisions-tickmarks {
|
||||
position: relative;
|
||||
margin: 0 auto;
|
||||
height: 0.7em;
|
||||
top: 7px;
|
||||
max-width: 70%;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.revisions-tickmarks > div {
|
||||
position: absolute;
|
||||
height: 100%;
|
||||
border-right: 1px solid #a0a5aa;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.revisions-tickmarks > div:first-child {
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
.comparing-two-revisions .revisions-controls {
|
||||
height: 140px;
|
||||
}
|
||||
|
||||
.comparing-two-revisions.pinned .revisions-controls {
|
||||
height: 124px;
|
||||
}
|
||||
|
||||
.revisions .diff-error {
|
||||
position: absolute;
|
||||
text-align: center;
|
||||
margin: 0 auto;
|
||||
width: 100%;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.revisions.diff-error .diff-error {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.revisions .loading-indicator {
|
||||
position: absolute;
|
||||
vertical-align: middle;
|
||||
opacity: 0;
|
||||
width: 100%;
|
||||
width: -webkit-calc( 100% - 30px );
|
||||
width: calc( 100% - 30px );
|
||||
top: 50%;
|
||||
top: -webkit-calc( 50% - 10px );
|
||||
top: calc( 50% - 10px );
|
||||
-webkit-transition: opacity 0.5s;
|
||||
transition: opacity 0.5s;
|
||||
filter: alpha(opacity=0); /* ie8 and earlier */
|
||||
}
|
||||
|
||||
body.folded .revisions .loading-indicator {
|
||||
margin-right: -32px;
|
||||
}
|
||||
|
||||
.revisions .loading-indicator span.spinner {
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
float: none;
|
||||
}
|
||||
|
||||
.revisions.loading .loading-indicator {
|
||||
opacity: 1;
|
||||
filter: alpha(opacity=100); /* ie8 and earlier */
|
||||
}
|
||||
|
||||
.revisions .diff {
|
||||
-webkit-transition: opacity 0.5s;
|
||||
transition: opacity 0.5s;
|
||||
}
|
||||
|
||||
.revisions.loading .diff {
|
||||
opacity: 0.5;
|
||||
filter: alpha(opacity=50); /* ie8 and earlier */
|
||||
}
|
||||
|
||||
.revisions.diff-error .diff {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.revisions-meta {
|
||||
margin-top: 20px;
|
||||
background-color: #fff;
|
||||
-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
|
||||
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
|
||||
}
|
||||
|
||||
.revisions.pinned .revisions-meta {
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.revision-toggle-compare-mode {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.comparing-two-revisions .revisions-previous,
|
||||
.comparing-two-revisions .revisions-next,
|
||||
.revisions-meta .diff-meta-to strong {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.revisions-controls .author-card .date {
|
||||
color: #72777c;
|
||||
}
|
||||
|
||||
.revisions-controls .author-card.autosave {
|
||||
color: #d54e21;
|
||||
}
|
||||
|
||||
.revisions-controls .author-card .author-name {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.comparing-two-revisions .diff-meta-to strong {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.revisions.pinned .revisions-buttons {
|
||||
padding: 0 11px;
|
||||
}
|
||||
|
||||
.revisions-previous,
|
||||
.revisions-next {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.revisions-previous {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.revisions-next {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.revisions-controls .wp-slider {
|
||||
max-width: 70%;
|
||||
margin: 0 auto;
|
||||
top: -3px;
|
||||
}
|
||||
|
||||
.revisions-diff {
|
||||
padding: 15px;
|
||||
background-color: #fff;
|
||||
-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
|
||||
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
|
||||
}
|
||||
|
||||
.revisions-diff h3:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
/* Revision meta box */
|
||||
.post-revisions li img,
|
||||
#revisions-meta-restored img {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
table.diff tbody tr td:nth-child(2) {
|
||||
width: 4%;
|
||||
}
|
||||
|
||||
table.diff {
|
||||
table-layout: fixed;
|
||||
width: 100%;
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
table.diff col.content {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
table.diff col.content.diffsplit {
|
||||
width: 48%;
|
||||
}
|
||||
|
||||
table.diff col.diffsplit.middle {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
table.diff col.ltype {
|
||||
width: 30px;
|
||||
}
|
||||
|
||||
table.diff tr {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
table.diff td,
|
||||
table.diff th {
|
||||
font-family: Consolas, Monaco, monospace;
|
||||
font-size: 14px;
|
||||
line-height: 1.618;
|
||||
padding: .5em;
|
||||
vertical-align: top;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
table.diff td h1,
|
||||
table.diff td h2,
|
||||
table.diff td h3,
|
||||
table.diff td h4,
|
||||
table.diff td h5,
|
||||
table.diff td h6 {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
table.diff .diff-deletedline del,
|
||||
table.diff .diff-addedline ins {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
table.diff .diff-deletedline {
|
||||
background-color: #ffe9e9;
|
||||
}
|
||||
|
||||
table.diff .diff-deletedline del {
|
||||
background-color: #faa;
|
||||
}
|
||||
|
||||
table.diff .diff-addedline {
|
||||
background-color: #e9ffe9;
|
||||
}
|
||||
|
||||
table.diff .diff-addedline ins {
|
||||
background-color: #afa;
|
||||
}
|
||||
|
||||
.diff-meta {
|
||||
padding: 5px;
|
||||
clear: both;
|
||||
min-height: 32px;
|
||||
}
|
||||
|
||||
.diff-title strong {
|
||||
line-height: 32px;
|
||||
min-width: 60px;
|
||||
text-align: left;
|
||||
float: right;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.revisions-controls .author-card .author-info {
|
||||
font-size: 12px;
|
||||
line-height: 16px;
|
||||
}
|
||||
|
||||
.revisions-controls .author-card .avatar,
|
||||
.revisions-controls .author-card .author-info {
|
||||
float: right;
|
||||
margin-right: 6px;
|
||||
margin-left: 6px;
|
||||
}
|
||||
|
||||
.revisions-controls .author-card .byline {
|
||||
display: block;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.revisions-controls .author-card .avatar {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.diff-meta input.restore-revision {
|
||||
float: left;
|
||||
margin-right: 6px;
|
||||
margin-left: 6px;
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
.diff-meta-from {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.comparing-two-revisions .diff-meta-from {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.revisions-tooltip {
|
||||
position: absolute;
|
||||
bottom: 105px;
|
||||
margin-left: 0;
|
||||
margin-right: -69px;
|
||||
z-index: 0;
|
||||
max-width: 350px;
|
||||
min-width: 130px;
|
||||
padding: 8px 4px;
|
||||
display: none;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.revisions-tooltip.flipped {
|
||||
margin-right: 0;
|
||||
margin-left: -70px;
|
||||
}
|
||||
|
||||
.revisions.pinned .revisions-tooltip {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.comparing-two-revisions .revisions-tooltip {
|
||||
bottom: 145px;
|
||||
}
|
||||
|
||||
.revisions-tooltip-arrow {
|
||||
width: 70px;
|
||||
height: 15px;
|
||||
overflow: hidden;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
margin-right: 35px;
|
||||
bottom: -15px;
|
||||
}
|
||||
|
||||
.revisions-tooltip.flipped .revisions-tooltip-arrow {
|
||||
margin-right: 0;
|
||||
margin-left: 35px;
|
||||
right: auto;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.revisions-tooltip-arrow > span {
|
||||
content: "";
|
||||
position: absolute;
|
||||
right: 20px;
|
||||
top: -20px;
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
-webkit-transform: rotate(-45deg);
|
||||
-ms-transform: rotate(-45deg);
|
||||
transform: rotate(-45deg);
|
||||
}
|
||||
|
||||
.revisions-tooltip.flipped .revisions-tooltip-arrow > span {
|
||||
right: auto;
|
||||
left: 20px;
|
||||
}
|
||||
|
||||
.ie8 .revisions-tooltip-arrow > span {
|
||||
right: 15px;
|
||||
top: -25px;
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)";
|
||||
}
|
||||
|
||||
.ie8 .revisions-tooltip.flipped .revisions-tooltip-arrow > span {
|
||||
left: 25px;
|
||||
}
|
||||
|
||||
.revisions-tooltip,
|
||||
.revisions-tooltip-arrow > span {
|
||||
border: 1px solid #ddd;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.revisions-tooltip {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.arrow {
|
||||
width: 70px;
|
||||
height: 16px;
|
||||
overflow: hidden;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
margin-right: -35px;
|
||||
bottom: 90px;
|
||||
z-index: 10000;
|
||||
}
|
||||
|
||||
.arrow:after {
|
||||
z-index: 9999;
|
||||
background-color: #fff;
|
||||
-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
|
||||
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
|
||||
}
|
||||
|
||||
.arrow.top {
|
||||
top: -16px;
|
||||
bottom: auto;
|
||||
}
|
||||
|
||||
.arrow.left {
|
||||
right: 20%;
|
||||
}
|
||||
|
||||
.arrow:after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
right: 20px;
|
||||
top: -20px;
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
-webkit-transform: rotate(-45deg);
|
||||
-ms-transform: rotate(-45deg);
|
||||
transform: rotate(-45deg);
|
||||
}
|
||||
|
||||
.revisions-tooltip,
|
||||
.revisions-tooltip-arrow:after {
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
div.revisions-controls > .wp-slider > .ui-slider-handle {
|
||||
margin-right: -10px;
|
||||
}
|
||||
|
||||
.rtl div.revisions-controls > .wp-slider > .ui-slider-handle {
|
||||
margin-left: -10px;
|
||||
}
|
||||
|
||||
/* jQuery UI Slider */
|
||||
.wp-slider.ui-slider {
|
||||
position: relative;
|
||||
border: 1px solid #ddd;
|
||||
text-align: right;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.wp-slider .ui-slider-handle {
|
||||
-webkit-border-radius: 50%;
|
||||
border-radius: 50%;
|
||||
height: 18px;
|
||||
margin-top: -5px;
|
||||
outline: none;
|
||||
padding: 2px;
|
||||
position: absolute;
|
||||
width: 18px;
|
||||
z-index: 2;
|
||||
-ms-touch-action: none;
|
||||
touch-action: none;
|
||||
}
|
||||
|
||||
.wp-slider .ui-slider-handle,
|
||||
.wp-slider .ui-slider-handle.focus {
|
||||
background: #f7f7f7;
|
||||
border: 1px solid #ccc;
|
||||
-webkit-box-shadow: 0 1px 0 #cccccc;
|
||||
box-shadow: 0 1px 0 #cccccc;
|
||||
}
|
||||
|
||||
.wp-slider .ui-slider-handle:hover,
|
||||
.wp-slider .ui-slider-handle.ui-state-hover {
|
||||
background: #fafafa;
|
||||
border-color: #999;
|
||||
}
|
||||
|
||||
.wp-slider .ui-slider-handle:active,
|
||||
.wp-slider .ui-slider-handle.ui-state-active {
|
||||
background: #eee;
|
||||
border-color: #999;
|
||||
-webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
|
||||
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
|
||||
-webkit-transform: translateY(1px);
|
||||
-ms-transform: translateY(1px);
|
||||
transform: translateY(1px);
|
||||
}
|
||||
|
||||
|
||||
.wp-slider .ui-slider-handle:before {
|
||||
background: none;
|
||||
position: absolute;
|
||||
top: 2px;
|
||||
right: 2px;
|
||||
color: #555;
|
||||
content: "\f229";
|
||||
font: normal 18px/1 dashicons;
|
||||
speak: none;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.wp-slider .ui-slider-handle:hover:before,
|
||||
.wp-slider .ui-slider-handle.ui-state-hover:before {
|
||||
color: #23282d;
|
||||
}
|
||||
|
||||
.wp-slider .ui-slider-handle.from-handle:before,
|
||||
.wp-slider .ui-slider-handle.to-handle:before {
|
||||
font-size: 20px !important;
|
||||
margin: -1px -1px 0 0;
|
||||
}
|
||||
|
||||
.wp-slider .ui-slider-handle.from-handle:before {
|
||||
content: "\f141";
|
||||
}
|
||||
|
||||
.wp-slider .ui-slider-handle.to-handle:before {
|
||||
content: "\f139";
|
||||
}
|
||||
|
||||
.rtl .wp-slider .ui-slider-handle.from-handle:before {
|
||||
content: "\f139";
|
||||
}
|
||||
|
||||
.rtl .wp-slider .ui-slider-handle.to-handle:before {
|
||||
content: "\f141";
|
||||
left: -1px;
|
||||
}
|
||||
|
||||
.wp-slider .ui-slider-range {
|
||||
position: absolute;
|
||||
font-size: .7em;
|
||||
display: block;
|
||||
border: 0;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.wp-slider.ui-slider-horizontal {
|
||||
height: .7em;
|
||||
}
|
||||
|
||||
.wp-slider.ui-slider-horizontal .ui-slider-handle {
|
||||
top: -.25em;
|
||||
margin-right: -.6em;
|
||||
}
|
||||
|
||||
.wp-slider.ui-slider-horizontal .ui-slider-range {
|
||||
top: 0;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.wp-slider.ui-slider-horizontal .ui-slider-range-min {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.wp-slider.ui-slider-horizontal .ui-slider-range-max {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
/* =Media Queries
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
/**
|
||||
* HiDPI Displays
|
||||
*/
|
||||
@media print,
|
||||
(-webkit-min-device-pixel-ratio: 1.25),
|
||||
(min-resolution: 120dpi) {
|
||||
.revision-tick.completed-false {
|
||||
background-image: url(../images/spinner-2x.gif);
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and ( max-width: 782px ) {
|
||||
#diff-next-revision,
|
||||
#diff-previous-revision {
|
||||
margin-top: -1em;
|
||||
}
|
||||
|
||||
table.diff {
|
||||
-ms-word-break: break-all;
|
||||
word-break: break-all;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
}
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,49 @@
|
|||
/*------------------------------------------------------------------------------
|
||||
28.0 - Site Icon
|
||||
------------------------------------------------------------------------------*/
|
||||
|
||||
.site-icon-preview .favicon-preview {
|
||||
margin: 5px 0 20px;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
max-width: 180px;
|
||||
}
|
||||
|
||||
.site-icon-preview .favicon,
|
||||
.site-icon-preview .browser-title {
|
||||
height: 16px;
|
||||
right: 88px;
|
||||
overflow: hidden;
|
||||
position: absolute;
|
||||
top: 16px;
|
||||
}
|
||||
|
||||
.site-icon-preview .favicon {
|
||||
width: 16px;
|
||||
}
|
||||
|
||||
.site-icon-preview .browser-title {
|
||||
right: 109px;
|
||||
width: 72px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.site-icon-preview .app-icon-preview {
|
||||
background-color: #000;
|
||||
-webkit-border-radius: 16px;
|
||||
border-radius: 16px;
|
||||
height: 64px;
|
||||
overflow: hidden;
|
||||
width: 64px;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.customize-control-site_icon .favicon-preview {
|
||||
float: right;
|
||||
margin-left: 12px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.customize-control-site_icon .app-icon-preview {
|
||||
margin-top: 9px;
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
.site-icon-preview .favicon-preview{margin:5px 0 20px;overflow:hidden;position:relative;max-width:180px}.site-icon-preview .browser-title,.site-icon-preview .favicon{height:16px;right:88px;overflow:hidden;position:absolute;top:16px}.site-icon-preview .favicon{width:16px}.site-icon-preview .browser-title{right:109px;width:72px;white-space:nowrap}.site-icon-preview .app-icon-preview{background-color:#000;-webkit-border-radius:16px;border-radius:16px;height:64px;overflow:hidden;width:64px;margin-top:5px}.customize-control-site_icon .favicon-preview{float:right;margin-left:12px;margin-bottom:0}.customize-control-site_icon .app-icon-preview{margin-top:9px}
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,590 @@
|
|||
/* General Widgets Styles */
|
||||
|
||||
.widget {
|
||||
margin: 0 auto 10px;
|
||||
position: relative;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.widget-top {
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
background: #f7f7f7;
|
||||
}
|
||||
|
||||
.widget-top a.widget-action,
|
||||
.widget-top a.widget-action:hover {
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
outline: none;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.widget-title h3,
|
||||
.widget-title h4 {
|
||||
margin: 0;
|
||||
padding: 15px;
|
||||
font-size: 1em;
|
||||
line-height: 1;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.widgets-holder-wrap .widget-inside {
|
||||
border-top: none;
|
||||
padding: 1px 15px 15px 15px;
|
||||
line-height: 16px;
|
||||
}
|
||||
|
||||
.in-widget-title,
|
||||
#widgets-right a.widget-control-edit,
|
||||
#available-widgets .widget-description {
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.deleting .widget-title,
|
||||
.deleting .widget-top a.widget-action:after {
|
||||
color: #a0a5aa;
|
||||
}
|
||||
|
||||
/* Widget Dragging Helpers */
|
||||
.widget.ui-draggable-dragging {
|
||||
min-width: 100%;
|
||||
}
|
||||
|
||||
.widget.ui-sortable-helper {
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
.widget-placeholder {
|
||||
border: 1px dashed #b4b9be;
|
||||
margin: 0 auto 10px;
|
||||
height: 45px;
|
||||
width: 100%;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
#widgets-right .widget-placeholder {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
#widgets-right .closed .widget-placeholder {
|
||||
height: 0;
|
||||
border: 0;
|
||||
margin-top: -10px;
|
||||
}
|
||||
|
||||
/* Widget Sidebars */
|
||||
.sidebar-name {
|
||||
position: relative;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.sidebar-name-arrow {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.js .sidebar-name {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.sidebar-name h2,
|
||||
.sidebar-name h3 {
|
||||
margin: 0;
|
||||
padding: 8px 10px;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.widgets-holder-wrap .description {
|
||||
padding: 0 0 15px;
|
||||
margin: 0;
|
||||
font-style: normal;
|
||||
color: #72777c;
|
||||
}
|
||||
|
||||
.widget-holder .description,
|
||||
.inactive-sidebar .description {
|
||||
color: #555d66;
|
||||
}
|
||||
|
||||
#widgets-right .widgets-holder-wrap .description {
|
||||
padding-right: 7px;
|
||||
padding-left: 7px;
|
||||
}
|
||||
|
||||
/* Widgets 2-col Layout */
|
||||
div.widget-liquid-left {
|
||||
margin: 0;
|
||||
width: 38%;
|
||||
float: right;
|
||||
}
|
||||
|
||||
div.widget-liquid-right {
|
||||
float: left;
|
||||
width: 58%;
|
||||
}
|
||||
|
||||
/* Widgets Left - Available Widgets */
|
||||
|
||||
div#widgets-left {
|
||||
padding-top: 12px;
|
||||
}
|
||||
|
||||
div#widgets-left .closed .sidebar-name,
|
||||
div#widgets-left .inactive-sidebar.closed .sidebar-name {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
div#widgets-left .sidebar-name h2,
|
||||
div#widgets-left .sidebar-name h3 {
|
||||
padding: 10px 0;
|
||||
margin: 0 0 0 10px;
|
||||
}
|
||||
|
||||
#widgets-left .sidebar-name .sidebar-name-arrow:before {
|
||||
padding: 9px;
|
||||
}
|
||||
|
||||
#widgets-left .widgets-holder-wrap,
|
||||
div#widgets-left .widget-holder {
|
||||
background: transparent;
|
||||
border: none;
|
||||
}
|
||||
|
||||
#widgets-left .widgets-holder-wrap {
|
||||
border: none;
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
#available-widgets .widget-action {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#available-widgets .widget {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#available-widgets .widget:nth-child(odd) {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
#available-widgets .widget .widget-description {
|
||||
display: block;
|
||||
padding: 10px 15px;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
#available-widgets #widget-list {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* Inactive Sidebars */
|
||||
#widgets-left .inactive-sidebar {
|
||||
clear: both;
|
||||
width: 100%;
|
||||
background: transparent;
|
||||
padding: 0;
|
||||
margin: 0 0 20px 0;
|
||||
border: none;
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
#widgets-left .inactive-sidebar.first {
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
/* Not sure what this is for... */
|
||||
div#widgets-left .inactive-sidebar .widget.expanded {
|
||||
right: auto;
|
||||
}
|
||||
|
||||
.widget-title-action {
|
||||
float: left;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
div#widgets-left .inactive-sidebar .widgets-sortables {
|
||||
min-height: 42px;
|
||||
padding: 0;
|
||||
background: transparent;
|
||||
margin: 0;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* Widgets Right */
|
||||
|
||||
div#widgets-right .sidebars-column-1,
|
||||
div#widgets-right .sidebars-column-2 {
|
||||
max-width: 450px;
|
||||
}
|
||||
|
||||
div#widgets-right .widgets-holder-wrap {
|
||||
margin: 10px 0 0 0;
|
||||
}
|
||||
|
||||
div#widgets-right .sidebar-description {
|
||||
min-height: 20px;
|
||||
margin-top: -5px;
|
||||
}
|
||||
|
||||
div#widgets-right .sidebar-name h2,
|
||||
div#widgets-right .sidebar-name h3 {
|
||||
padding: 15px 7px;
|
||||
}
|
||||
|
||||
div#widgets-right .sidebar-name .sidebar-name-arrow:before {
|
||||
top: 2px;
|
||||
}
|
||||
|
||||
div#widgets-right .widget-top {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
div#widgets-right .widgets-sortables {
|
||||
padding: 0 8px;
|
||||
margin-bottom: 9px;
|
||||
position: relative;
|
||||
min-height: 123px;
|
||||
}
|
||||
|
||||
div#widgets-right .closed .widgets-sortables {
|
||||
min-height: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-name .spinner,
|
||||
.remove-inactive-widgets .spinner {
|
||||
float: none;
|
||||
position: relative;
|
||||
top: -2px;
|
||||
margin: -5px 5px;
|
||||
}
|
||||
|
||||
/* Dragging a widget over a closed sidebar */
|
||||
#widgets-right .widgets-holder-wrap.widget-hover {
|
||||
border-color: #72777c;
|
||||
-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.3);
|
||||
box-shadow: 0 1px 2px rgba(0,0,0,0.3);
|
||||
}
|
||||
|
||||
/* Accessibility Mode */
|
||||
.widgets_access #widgets-left .widget .widget-top {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.widgets_access #wpwrap .widgets-holder-wrap.closed .sidebar-description,
|
||||
.widgets_access #wpwrap .widgets-holder-wrap.closed .widget,
|
||||
.widgets_access #wpwrap .widget-control-edit {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.widgets_access #widgets-left .widget .widget-top:hover,
|
||||
.widgets_access #widgets-right .widget .widget-top:hover {
|
||||
border-color: #ddd;
|
||||
}
|
||||
|
||||
#available-widgets .widget-control-edit .edit,
|
||||
#widgets-left .inactive-sidebar .widget-control-edit .add,
|
||||
#widgets-right .widget-control-edit .add {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.widget-control-edit {
|
||||
display: block;
|
||||
color: #666;
|
||||
background: #EEE;
|
||||
padding: 0 15px;
|
||||
line-height: 43px;
|
||||
border-right: 1px solid #DDD;
|
||||
}
|
||||
|
||||
#widgets-left .widget-control-edit:hover,
|
||||
#widgets-right .widget-control-edit:hover {
|
||||
color: #fff;
|
||||
background: #444;
|
||||
border-right: 0;
|
||||
outline: 1px solid #444;
|
||||
}
|
||||
|
||||
.widgets-holder-wrap .sidebar-name,
|
||||
.widgets-holder-wrap .sidebar-description {
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.editwidget {
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.editwidget .widget-inside {
|
||||
display: block;
|
||||
padding: 0 15px;
|
||||
}
|
||||
|
||||
.editwidget .widget-control-actions {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.js .widgets-holder-wrap.closed .widget,
|
||||
.js .widgets-holder-wrap.closed .sidebar-description,
|
||||
.js .widgets-holder-wrap.closed .remove-inactive-widgets,
|
||||
.js .widgets-holder-wrap.closed .description,
|
||||
.js .closed br.clear {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.js .widgets-holder-wrap.closed .widget.ui-sortable-helper {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Hide Widget Settings by Default */
|
||||
.widget-inside,
|
||||
.widget-description {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.widget-inside {
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
/* Dragging widgets over the available widget area show's a "Deactivate" message */
|
||||
#removing-widget {
|
||||
display: none;
|
||||
font-weight: normal;
|
||||
padding-right: 15px;
|
||||
font-size: 12px;
|
||||
line-height: 1;
|
||||
color: black;
|
||||
}
|
||||
|
||||
.js #removing-widget {
|
||||
color: #00a0d2;
|
||||
}
|
||||
|
||||
.widget-control-noform,
|
||||
#access-off,
|
||||
.widgets_access .widget-action,
|
||||
.widgets_access .sidebar-name-arrow,
|
||||
.widgets_access #access-on,
|
||||
.widgets_access .widget-holder .description,
|
||||
.no-js .widget-holder .description {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.widgets_access .widget-holder,
|
||||
.widgets_access #widget-list {
|
||||
padding-top: 10px;
|
||||
}
|
||||
|
||||
.widgets_access #access-off {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.widgets_access .sidebar-name,
|
||||
.widgets_access .widget .widget-top {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
|
||||
/* Widgets Area Chooser */
|
||||
.widget-liquid-left #widgets-left.chooser #available-widgets .widget,
|
||||
.widget-liquid-left #widgets-left.chooser .inactive-sidebar {
|
||||
-webkit-transition: opacity 0.1s linear;
|
||||
transition: opacity 0.1s linear;
|
||||
}
|
||||
|
||||
.widget-liquid-left #widgets-left.chooser #available-widgets .widget,
|
||||
.widget-liquid-left #widgets-left.chooser .inactive-sidebar {
|
||||
/* -webkit-filter: blur(1px); */
|
||||
opacity: 0.2;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.widget-liquid-left #widgets-left.chooser #available-widgets .widget-in-question {
|
||||
/* -webkit-filter: none; */
|
||||
opacity: 1;
|
||||
pointer-events: auto;
|
||||
}
|
||||
|
||||
.widgets-chooser ul,
|
||||
#widgets-left .widget-in-question .widget-top,
|
||||
#available-widgets .widget-top:hover,
|
||||
div#widgets-right .widget-top:hover,
|
||||
#widgets-left .widget-top:hover {
|
||||
border-color: #999;
|
||||
-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.1);
|
||||
box-shadow: 0 1px 2px rgba(0,0,0,0.1);
|
||||
}
|
||||
|
||||
.widgets-chooser ul.widgets-chooser-sidebars {
|
||||
margin: 0;
|
||||
list-style-type: none;
|
||||
max-height: 300px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.widgets-chooser {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.widgets-chooser ul {
|
||||
border: 1px solid #ccc;
|
||||
}
|
||||
|
||||
.widgets-chooser li {
|
||||
padding: 10px 35px 10px 15px;
|
||||
border-bottom: 1px solid #ccc;
|
||||
background: #fff;
|
||||
margin: 0;
|
||||
cursor: pointer;
|
||||
outline: none;
|
||||
position: relative;
|
||||
-webkit-transition: background 0.2s ease-in-out;
|
||||
transition: background 0.2s ease-in-out;
|
||||
}
|
||||
|
||||
/* @todo looks like these hover/focus states are overridden by .widgets-chooser-selected */
|
||||
.widgets-chooser li:hover,
|
||||
.widgets-chooser li:focus {
|
||||
background: rgba(255,255,255,0.7);
|
||||
}
|
||||
|
||||
.widgets-chooser li:focus:before {
|
||||
content: "\f147";
|
||||
display: block;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font: normal 26px/1 dashicons;
|
||||
color: #555d66;
|
||||
position: absolute;
|
||||
top: 7px;
|
||||
right: 5px;
|
||||
}
|
||||
|
||||
.widgets-chooser li:last-child {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.widgets-chooser li.widgets-chooser-selected {
|
||||
background: #00a0d2;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.widgets-chooser li.widgets-chooser-selected:before,
|
||||
.widgets-chooser li.widgets-chooser-selected:focus:before {
|
||||
content: "\f147";
|
||||
display: block;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font: normal 26px/1 dashicons;
|
||||
color: #fff;
|
||||
position: absolute;
|
||||
top: 7px;
|
||||
right: 5px;
|
||||
}
|
||||
|
||||
.widgets-chooser .widgets-chooser-actions {
|
||||
padding: 10px 0 12px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.widgets-chooser button {
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
#available-widgets .widget .widget-top {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#available-widgets .widget.ui-draggable-dragging .widget-top {
|
||||
cursor: move;
|
||||
}
|
||||
|
||||
/* =Media Queries
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
@media screen and (max-width: 480px) {
|
||||
div.widget-liquid-left {
|
||||
width: 100%;
|
||||
float: none;
|
||||
border-left: none;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
#widgets-left .sidebar-name {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
#widgets-left #available-widgets .widget-top {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
#widgets-left .inactive-sidebar .widgets-sortables {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
div.widget-liquid-right {
|
||||
width: 100%;
|
||||
float: none;
|
||||
}
|
||||
|
||||
div.widget {
|
||||
margin: 0 auto 10px !important;
|
||||
max-width: 480px;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 320px) {
|
||||
div.widget {
|
||||
max-width: 320px;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 1250px) {
|
||||
#widgets-left #available-widgets .widget {
|
||||
width: 49%;
|
||||
float: right;
|
||||
}
|
||||
|
||||
.widget.ui-draggable-dragging {
|
||||
min-width: 49%;
|
||||
}
|
||||
|
||||
#widgets-left #available-widgets .widget:nth-child(even) {
|
||||
float: left;
|
||||
}
|
||||
|
||||
#widgets-right .sidebars-column-1,
|
||||
#widgets-right .sidebars-column-2 {
|
||||
float: right;
|
||||
width: 49%;
|
||||
}
|
||||
|
||||
#widgets-right .sidebars-column-1 {
|
||||
margin-left: 2%;
|
||||
}
|
||||
|
||||
#widgets-right.single-sidebar .sidebars-column-1,
|
||||
#widgets-right.single-sidebar .sidebars-column-2 {
|
||||
float: none;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,389 @@
|
|||
/* ----------------------------------------------------------------------------
|
||||
|
||||
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 backwards
|
||||
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;
|
||||
-webkit-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
white-space: nowrap;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
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;
|
||||
-webkit-box-shadow: 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;
|
||||
-webkit-box-shadow: 0 1px 0 #cccccc;
|
||||
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,
|
||||
.wp-core-ui .button-link:focus {
|
||||
border-color: #5b9dd9;
|
||||
-webkit-box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
|
||||
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;
|
||||
-webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
|
||||
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
|
||||
-webkit-transform: translateY(1px);
|
||||
-ms-transform: translateY(1px);
|
||||
transform: translateY(1px);
|
||||
}
|
||||
|
||||
.wp-core-ui .button.active:focus {
|
||||
border-color: #5b9dd9;
|
||||
-webkit-box-shadow:
|
||||
inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ),
|
||||
0 0 3px rgba( 0, 115, 170, .8 );
|
||||
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;
|
||||
-webkit-box-shadow: none !important;
|
||||
box-shadow: none !important;
|
||||
text-shadow: 0 1px 0 #fff !important;
|
||||
cursor: default;
|
||||
-webkit-transform: none !important;
|
||||
-ms-transform: none !important;
|
||||
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;
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
border: 0;
|
||||
-webkit-border-radius: 0;
|
||||
border-radius: 0;
|
||||
background: none;
|
||||
outline: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.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;
|
||||
-webkit-box-shadow: 0 1px 0 #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 {
|
||||
-webkit-box-shadow: 0 1px 0 #0073aa,
|
||||
0 0 2px 1px #33b3db;
|
||||
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;
|
||||
-webkit-box-shadow: inset 0 2px 0 #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;
|
||||
-webkit-box-shadow: none !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 {
|
||||
-webkit-box-shadow: 0 2px 0 #006799;
|
||||
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 {
|
||||
-webkit-box-shadow: inset 0 3px 0 #006799;
|
||||
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;
|
||||
-webkit-border-radius: 0;
|
||||
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 {
|
||||
-webkit-border-radius: 0 3px 3px 0;
|
||||
border-radius: 0 3px 3px 0;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-group > .button:last-child {
|
||||
-webkit-border-radius: 3px 0 0 3px;
|
||||
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;
|
||||
}
|
||||
|
||||
/* 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;
|
||||
}
|
||||
|
||||
}
|
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,363 @@
|
|||
/*!
|
||||
* 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;
|
||||
-ms-touch-action: none;
|
||||
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;
|
||||
-webkit-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
white-space: nowrap;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
color: #555;
|
||||
border-color: #cccccc;
|
||||
background: #f7f7f7;
|
||||
-webkit-box-shadow: 0 1px 0 #cccccc;
|
||||
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;
|
||||
-webkit-box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
|
||||
box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
|
||||
}
|
||||
|
||||
.ui-button:active {
|
||||
background: #eee;
|
||||
border-color: #999;
|
||||
-webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
|
||||
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
|
||||
-webkit-transform: translateY(1px);
|
||||
-ms-transform: translateY(1px);
|
||||
transform: translateY(1px);
|
||||
}
|
||||
|
||||
.ui-button[disabled],
|
||||
.ui-button:disabled {
|
||||
color: #a0a5aa !important;
|
||||
border-color: #ddd !important;
|
||||
background: #f7f7f7 !important;
|
||||
-webkit-box-shadow: none !important;
|
||||
box-shadow: none !important;
|
||||
text-shadow: 0 1px 0 #fff !important;
|
||||
cursor: default;
|
||||
-webkit-transform: none !important;
|
||||
-ms-transform: none !important;
|
||||
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;
|
||||
-webkit-box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
|
||||
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;
|
||||
-webkit-box-shadow: 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;
|
||||
}
|
|
@ -0,0 +1,17 @@
|
|||
/*!
|
||||
* 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-button,.ui-helper-reset{text-decoration:none;margin:0}.ui-helper-reset{padding:0;border:0;outline:0;line-height:1.3;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{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;-ms-touch-action:none;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;font-size:13px;line-height:26px;height:28px;padding:0 10px 1px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;-webkit-border-radius:3px;border-radius:3px;white-space:nowrap;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;color:#555;border-color:#ccc;background:#f7f7f7;-webkit-box-shadow:0 1px 0 #ccc;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;-webkit-box-shadow:0 0 3px rgba(0,115,170,.8);box-shadow:0 0 3px rgba(0,115,170,.8)}.ui-button:active{background:#eee;border-color:#999;-webkit-box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);-webkit-transform:translateY(1px);-ms-transform:translateY(1px);transform:translateY(1px)}.ui-button:disabled,.ui-button[disabled]{color:#a0a5aa!important;border-color:#ddd!important;background:#f7f7f7!important;-webkit-box-shadow:none!important;box-shadow:none!important;text-shadow:0 1px 0 #fff!important;cursor:default;-webkit-transform:none!important;-ms-transform:none!important;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;-webkit-box-shadow:0 3px 6px rgba(0,0,0,.3);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;-webkit-box-shadow: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:400 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}
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,124 @@
|
|||
/*------------------------------------------------------------------------------
|
||||
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 */
|
||||
-webkit-box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
|
||||
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;
|
||||
-webkit-background-size: 20px 20px;
|
||||
background-size: 20px 20px;
|
||||
-webkit-transform: translateZ(0);
|
||||
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;
|
||||
}
|
||||
|
||||
#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;
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
#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;-webkit-box-shadow:0 3px 6px rgba(0,0,0,.3);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) center no-repeat;-webkit-background-size:20px 20px;background-size:20px 20px;-webkit-transform:translateZ(0);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}#wp-auth-check-wrap .wp-auth-check-close:before{content:"\f158";font:400 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}
|
|
@ -0,0 +1,212 @@
|
|||
.wp-pointer-content {
|
||||
padding: 0 0 10px;
|
||||
position: relative;
|
||||
font-size: 13px;
|
||||
background: #fff;
|
||||
border: 1px solid #ddd;
|
||||
-webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.075);
|
||||
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;
|
||||
-webkit-border-radius: 50%;
|
||||
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 p {
|
||||
padding: 0 15px;
|
||||
}
|
||||
|
||||
.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: #b4b9be;
|
||||
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: " ";
|
||||
}
|
||||
|
||||
/* Disable pointers at responsive sizes */
|
||||
@media screen and ( max-width: 782px ) {
|
||||
.wp-pointer {
|
||||
display: none;
|
||||
}
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
.wp-pointer-content{padding:0 0 10px;position:relative;font-size:13px;background:#fff;border:1px solid #ddd;-webkit-box-shadow:0 3px 6px rgba(0,0,0,.075);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;-webkit-border-radius:50%;border-radius:50%;color:#00a0d2;content:"\f227";font:400 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 p{padding:0 15px}.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:#b4b9be;content:"\f153";display:block!important;font:400 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;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;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:" "}@media screen and (max-width:782px){.wp-pointer{display:none}}
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.6-alpha-37362';
|
||||
$wp_version = '4.6-alpha-37363';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue