Update WordPress to 5.2

This commit is contained in:
Oliver Davies 2019-05-08 08:05:39 +01:00
parent 489b5a5914
commit e00f87f2f5
599 changed files with 119573 additions and 55990 deletions

View file

@ -8,7 +8,6 @@
2.0 About Page
2.1 Typography
2.2 Structure
2.3 Floating Header Layout
3.0 Credits & Freedoms Pages
------------------------------------------------------------------------------*/
@ -51,29 +50,14 @@
vertical-align: middle;
}
.about-wrap figure {
position: relative;
margin: 0;
.about-wrap .inline-svg img {
max-width: 100%;
width: auto;
height: auto;
}
.about-wrap .feature-section figure img {
margin-bottom: 0;
}
.about-wrap figcaption {
position: absolute;
bottom: 0;
width: 100%;
padding: 40px 10px 15px;
overflow: auto;
box-sizing: border-box;
background: linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 60%,transparent);
font-weight: 600;
text-shadow: 0px 0px 5px rgba(0,0,0,.75);
}
.about-wrap .jetpack-video-wrapper {
margin-bottom: 0;
.about-wrap video {
margin: 1.5em auto;
}
/* WordPress Version Badge */
@ -92,7 +76,7 @@
display: inline-block;
width: 140px;
text-rendering: optimizeLegibility;
box-shadow: 0 1px 3px rgba(0,0,0,0.2);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.svg .wp-badge {
@ -111,26 +95,16 @@
padding-left: 15px;
padding-right: 15px;
font-size: 18px;
line-height: 1.33333333;
}
/* 1.1 - Typography */
.about-wrap p {
line-height: 1.5;
font-size: 14px;
}
.about-wrap .feature-section p {
max-width: 55em;
margin-right: auto;
margin-left: auto;
}
.about-wrap h1 {
margin: 0.2em 0 0 200px;
padding: 0;
color: #32373c;
line-height: 1.2em;
line-height: 1.2;
font-size: 2.8em;
font-weight: 400;
}
@ -149,13 +123,14 @@
line-height: 1.5;
}
.about-wrap .under-the-hood-header {
margin: 40px 0 0;
text-align: center;
.about-wrap h4 {
font-size: 16px;
color: #23282d;
}
.about-wrap h4 {
color: #23282d;
.about-wrap p {
line-height: 1.5;
font-size: 16px;
}
.about-wrap code,
@ -175,7 +150,7 @@
.about-wrap .about-text {
margin-top: 1.4em;
font-weight: 400;
line-height: 1.6em;
line-height: 1.6;
font-size: 19px;
}
@ -186,93 +161,135 @@
/* 1.2 - Structure */
.about-wrap [class$="-col"] {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
.about-wrap .has-1-columns,
.about-wrap .has-2-columns,
.about-wrap .has-3-columns,
.about-wrap .has-4-columns {
display: -ms-grid;
display: grid;
max-width: 800px;
margin-top: 40px;
margin-right: auto;
margin-left: auto;
}
.about-wrap .one-col {
margin: 0 auto;
max-width: 680px;
}
.about-wrap .one-col.is-wide {
max-width: 760px;
}
.about-wrap .under-the-hood {
margin: auto;
max-width: 1020px;
}
.about-wrap .inline-svg img {
max-width: 100%;
width: 100%;
height: auto;
}
.about-wrap .inline-svg.full-width {
margin-bottom: 120px;
}
.about-wrap .under-the-hood .inline-svg {
margin-right: 100px;
}
.about-wrap [class$="-col"] .col {
flex: 1;
align-self: flex-start;
}
.about-wrap [class$="-col"] .col + .col {
.about-wrap .column {
margin-left: 20px;
margin-right: 20px;
}
.about-wrap [class$="-col"] .is-span-two {
flex: 2;
.about-wrap .is-wide {
max-width: 760px;
}
.about-wrap .one-col img {
margin: 1em 0 2em;
.about-wrap .is-fullwidth {
max-width: 100%;
}
.about-wrap .one-col .alignright img {
.about-wrap .has-1-columns {
display: block;
max-width: 680px;
margin: 0 auto 40px;
}
.about-wrap .has-2-columns {
-ms-grid-columns: 1fr 1fr;
grid-template-columns: 1fr 1fr;
}
.about-wrap .has-2-columns .column:nth-of-type(2n+1) {
-ms-grid-column: 1;
grid-column-start: 1;
}
.about-wrap .has-2-columns .column:nth-of-type(2n) {
-ms-grid-column: 2;
grid-column-start: 2;
}
.about-wrap .has-2-columns.is-wider-right {
-ms-grid-columns: 1fr 2fr;
grid-template-columns: 1fr 2fr;
}
.about-wrap .has-2-columns.is-wider-left {
-ms-grid-columns: 2fr 1fr;
grid-template-columns: 2fr 1fr;
}
.about-wrap .has-3-columns {
-ms-grid-columns: (1fr)[3];
grid-template-columns: repeat(3, 1fr);
}
.about-wrap .has-3-columns .column:nth-of-type(3n+1) {
-ms-grid-column: 1;
grid-column-start: 1;
}
.about-wrap .has-3-columns .column:nth-of-type(3n+2) {
-ms-grid-column: 2;
grid-column-start: 2;
}
.about-wrap .has-3-columns .column:nth-of-type(3n) {
-ms-grid-column: 3;
grid-column-start: 3;
}
.about-wrap .has-4-columns {
-ms-grid-columns: (1fr)[4];
grid-template-columns: repeat(4, 1fr);
}
.about-wrap .has-4-columns .column:nth-of-type(4n+1) {
-ms-grid-column: 1;
grid-column-start: 1;
}
.about-wrap .has-4-columns .column:nth-of-type(4n+2) {
-ms-grid-column: 2;
grid-column-start: 2;
}
.about-wrap .has-4-columns .column:nth-of-type(4n+3) {
-ms-grid-column: 3;
grid-column-start: 3;
}
.about-wrap .has-4-columns .column:nth-of-type(4n) {
-ms-grid-column: 4;
grid-column-start: 4;
}
.about-wrap .column :first-child {
margin-top: 0;
}
.about-wrap .two-col img {
margin-bottom: 1.5em;
}
.about-wrap .feature-video .mejs-controls {
display: none !important;
}
.about-wrap .feature-video .mejs-overlay-loading span {
background: transparent; /* Hide loading.gif */
}
.about-wrap video {
margin: 1.5em auto;
}
.about-wrap .inline-svg.alignright {
margin-right: 80px;
}
.about-wrap .cta {
.about-wrap .aligncenter {
text-align: center;
}
.about-wrap .cta .button {
margin: 0 auto 5px;
font-weight: 600;
.about-wrap .alignleft {
float: right;
margin-left: 40px;
}
.about-wrap .feature-section .button {
margin-top: 1.5em;
font-weight: 600;
.about-wrap .alignright {
float: left;
margin-right: 40px;
}
.about-wrap .is-vertically-aligned-top {
align-self: start;
}
.about-wrap .is-vertically-aligned-center {
align-self: center;
}
.about-wrap .is-vertically-aligned-bottom {
align-self: end;
}
/* 1.3 - Point Releases */
@ -282,6 +299,10 @@
border-bottom: 1px solid #ddd;
}
.about-wrap .changelog {
margin-bottom: 40px;
}
.about-wrap .changelog.point-releases h3 {
padding-top: 35px;
}
@ -290,96 +311,39 @@
padding-top: 7px;
}
.about-wrap .changelog.feature-section .col {
margin-top: 40px;
}
/*------------------------------------------------------------------------------
2.0 - About Page
------------------------------------------------------------------------------*/
/* 2.1 - Typography */
.about-wrap .feature-section-header {
margin: 50px 0 0;
}
.about-wrap .feature-section.two-col h3 {
margin-top: 0;
}
.about-wrap .feature-section h4 {
margin: 1.4em 0 0.6em 0;
font-size: 1em;
.about-wrap .lead-description {
font-size: 1.5em;
text-align: center;
}
.about-wrap .feature-section p {
margin-top: 0.6em;
}
.about-wrap .lead-description {
font-size: 1.5em;
text-align: center;
}
.about-wrap .two-col-text {
column-count: 2;
column-gap: 40px;
}
.about-wrap .two-col-text p:first-of-type {
margin-top: 0;
}
.about-wrap .streamlined-updates p,
.about-wrap .native-fonts p {
margin-bottom: 3em;
}
.about-wrap .under-the-hood img + h3 {
margin-top: 1.25em;
}
/* 2.2 - Structure */
.about-wrap .headline-feature {
margin-bottom: 40px;
margin: 0 auto 40px;
max-width: 680px;
}
.about-wrap .featured-image {
text-align: center;
.about-wrap .headline-feature h2 {
margin: 50px 0 0;
}
.about-wrap .feature-section {
overflow: hidden;
}
.about-wrap .feature-section.no-heading {
padding-top: 35px;
}
.about-wrap .feature-section .media-container {
overflow: hidden;
}
.about-wrap .embed-container {
text-align: center;
}
.about-wrap .embed-container iframe {
max-width: 100%;
}
.about-wrap .wp-embedded-content {
max-width: 100%;
}
.about-wrap .feature-section .col {
margin-top: 40px;
}
.about-wrap .changelog {
margin-bottom: 40px;
}
.about-wrap .changelog.feature-section .col {
margin-top: 40px;
.about-wrap .headline-feature img {
max-width: 600px;
width: 100%;
}
/* Return to Dashboard Home link */
@ -401,11 +365,13 @@
/* Credits */
.about-wrap h3.wp-people-group {
.about-wrap h2.wp-people-group {
margin: 2.6em 0 1.33em;
padding: 0;
font-size: 16px;
line-height: inherit;
font-weight: 600;
text-align: right;
}
.about-wrap .wp-people-group {
@ -450,7 +416,7 @@
margin: 6px 0 2px;
font-size: 16px;
font-weight: 400;
line-height: 2em;
line-height: 2;
text-decoration: none;
}
@ -482,18 +448,25 @@
margin: 0.6em 0;
}
.freedoms-php .about-wrap .col .freedoms-image {
.freedoms-php .has-4-columns {
margin-bottom: 40px;
}
.freedoms-php .column .freedoms-image {
background-image: url('https://s.w.org/wp-content/themes/pub/wporg-main/images/freedoms-2x.png');
background-size: 100%;
padding-top: 100%;
}
.freedoms-php .about-wrap .col:nth-of-type(2) .freedoms-image {
.freedoms-php .column:nth-of-type(2) .freedoms-image {
background-position: 100% 34%;
}
.freedoms-php .about-wrap .col:nth-of-type(3) .freedoms-image {
.freedoms-php .column:nth-of-type(3) .freedoms-image {
background-position: 100% 66%;
}
.freedoms-php .about-wrap .col:nth-of-type(4) .freedoms-image {
.freedoms-php .column:nth-of-type(4) .freedoms-image {
background-position: 100% 100%;
}
@ -502,46 +475,60 @@
------------------------------------------------------------------------------*/
@media screen and (max-width: 782px) {
.about-wrap .two-col-text {
column-count: 1;
.about-wrap .has-3-columns,
.about-wrap .has-4-columns {
-ms-grid-columns: 1fr 1fr;
grid-template-columns: 1fr 1fr;
}
.about-wrap .one-col .alignright {
margin-right: 20px;
max-width: 150px;
.about-wrap .has-3-columns .column:nth-of-type(3n+1),
.about-wrap .has-4-columns .column:nth-of-type(4n+1) {
-ms-grid-column: 1;
grid-column-start: 1;
-ms-grid-row: 1;
grid-row-start: 1;
}
.about-wrap .two-col .col,
.about-wrap .three-col .col,
.about-wrap .four-col .col {
min-width: 48% !important;
max-width: 48% !important;
margin-right: 0 !important;
.about-wrap .has-3-columns .column:nth-of-type(3n+2),
.about-wrap .has-4-columns .column:nth-of-type(4n+2) {
-ms-grid-column: 2;
grid-column-start: 2;
-ms-grid-row: 1;
grid-row-start: 1;
}
.about-wrap .eight-col .col {
min-width: 24% !important;
.about-wrap .has-3-columns .column:nth-of-type(3n),
.about-wrap .has-4-columns .column:nth-of-type(4n+3) {
-ms-grid-column: 1;
grid-column-start: 1;
-ms-grid-row: 2;
grid-row-start: 2;
}
.about-wrap .three-col img,
.about-wrap .four-col img,
.about-wrap .eight-col img {
.about-wrap .has-4-columns .column:nth-of-type(4n) {
-ms-grid-column: 2;
grid-column-start: 2;
-ms-grid-row: 2;
grid-row-start: 2;
}
}
@media screen and (max-width: 600px) {
.about-wrap .has-2-columns,
.about-wrap .has-3-columns,
.about-wrap .has-4-columns {
display: block;
margin: 0 auto;
}
.about-wrap figcaption {
position: relative;
margin-top: 10px;
margin-bottom: 15px;
padding: 0;
background: none;
color: #40464D;
text-shadow: none;
.about-wrap :not(.is-wider-right):not(.is-wider-left) .column {
margin-left: 0;
margin-right: 0;
}
.about-wrap .under-the-hood .inline-svg {
margin-right: 40px;
.about-wrap .has-2-columns.is-wider-right,
.about-wrap .has-2-columns.is-wider-left {
display: -ms-grid;
display: grid;
}
}
@ -565,57 +552,21 @@
margin-bottom: 1.5em;
width: 100%;
}
.about-wrap .one-col .alignright {
max-width: 120px;
}
.about-wrap .feature-section .col {
margin-top: 1em;
}
.about-wrap .two-col .col,
.about-wrap .three-col .col,
.about-wrap .three-col .col {
min-width: 100% !important;
}
.about-wrap .eight-col .col {
min-width: 48% !important;
}
.about-wrap .under-the-hood.four-col .col,
.about-wrap .under-the-hood.three-col .col,
.about-wrap .under-the-hood.two-col .col,
.about-wrap .under-the-hood.one-col .col {
margin-bottom: 2em;
padding-bottom: 0;
}
.about-wrap .under-the-hood:nth-of-type(2n),
.about-wrap .under-the-hood:nth-of-type(3n) {
margin-top: 0;
}
.about-wrap .under-the-hood img + h3 {
margin-top: 1.25em;
}
.about-wrap .under-the-hood .inline-svg {
display: none;
}
.about-wrap .inline-svg.full-width {
margin-bottom: 60px;
}
}
@media only screen and (max-width: 320px) {
.about-wrap .one-col .alignright {
float: none;
margin: 0 auto;
@media only screen and (max-width: 480px) {
.about-wrap .has-2-columns.is-wider-right,
.about-wrap .has-2-columns.is-wider-left {
display: block;
}
.about-wrap .one-col .alignright img {
margin: 0 0 1em;
.about-wrap .column {
margin-left: 0;
margin-right: 0;
}
.about-wrap .has-2-columns.is-wider-right img,
.about-wrap .has-2-columns.is-wider-left img {
max-width: 160px;
}
}

File diff suppressed because one or more lines are too long

View file

@ -8,7 +8,6 @@
2.0 About Page
2.1 Typography
2.2 Structure
2.3 Floating Header Layout
3.0 Credits & Freedoms Pages
------------------------------------------------------------------------------*/
@ -51,29 +50,14 @@
vertical-align: middle;
}
.about-wrap figure {
position: relative;
margin: 0;
.about-wrap .inline-svg img {
max-width: 100%;
width: auto;
height: auto;
}
.about-wrap .feature-section figure img {
margin-bottom: 0;
}
.about-wrap figcaption {
position: absolute;
bottom: 0;
width: 100%;
padding: 40px 10px 15px;
overflow: auto;
box-sizing: border-box;
background: linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 60%,transparent);
font-weight: 600;
text-shadow: 0px 0px 5px rgba(0,0,0,.75);
}
.about-wrap .jetpack-video-wrapper {
margin-bottom: 0;
.about-wrap video {
margin: 1.5em auto;
}
/* WordPress Version Badge */
@ -92,7 +76,7 @@
display: inline-block;
width: 140px;
text-rendering: optimizeLegibility;
box-shadow: 0 1px 3px rgba(0,0,0,0.2);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.svg .wp-badge {
@ -111,26 +95,16 @@
padding-right: 15px;
padding-left: 15px;
font-size: 18px;
line-height: 1.33333333;
}
/* 1.1 - Typography */
.about-wrap p {
line-height: 1.5;
font-size: 14px;
}
.about-wrap .feature-section p {
max-width: 55em;
margin-left: auto;
margin-right: auto;
}
.about-wrap h1 {
margin: 0.2em 200px 0 0;
padding: 0;
color: #32373c;
line-height: 1.2em;
line-height: 1.2;
font-size: 2.8em;
font-weight: 400;
}
@ -149,13 +123,14 @@
line-height: 1.5;
}
.about-wrap .under-the-hood-header {
margin: 40px 0 0;
text-align: center;
.about-wrap h4 {
font-size: 16px;
color: #23282d;
}
.about-wrap h4 {
color: #23282d;
.about-wrap p {
line-height: 1.5;
font-size: 16px;
}
.about-wrap code,
@ -175,7 +150,7 @@
.about-wrap .about-text {
margin-top: 1.4em;
font-weight: 400;
line-height: 1.6em;
line-height: 1.6;
font-size: 19px;
}
@ -186,93 +161,135 @@
/* 1.2 - Structure */
.about-wrap [class$="-col"] {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
.about-wrap .has-1-columns,
.about-wrap .has-2-columns,
.about-wrap .has-3-columns,
.about-wrap .has-4-columns {
display: -ms-grid;
display: grid;
max-width: 800px;
margin-top: 40px;
margin-left: auto;
margin-right: auto;
}
.about-wrap .one-col {
margin: 0 auto;
max-width: 680px;
}
.about-wrap .one-col.is-wide {
max-width: 760px;
}
.about-wrap .under-the-hood {
margin: auto;
max-width: 1020px;
}
.about-wrap .inline-svg img {
max-width: 100%;
width: 100%;
height: auto;
}
.about-wrap .inline-svg.full-width {
margin-bottom: 120px;
}
.about-wrap .under-the-hood .inline-svg {
margin-left: 100px;
}
.about-wrap [class$="-col"] .col {
flex: 1;
align-self: flex-start;
}
.about-wrap [class$="-col"] .col + .col {
.about-wrap .column {
margin-right: 20px;
margin-left: 20px;
}
.about-wrap [class$="-col"] .is-span-two {
flex: 2;
.about-wrap .is-wide {
max-width: 760px;
}
.about-wrap .one-col img {
margin: 1em 0 2em;
.about-wrap .is-fullwidth {
max-width: 100%;
}
.about-wrap .one-col .alignright img {
.about-wrap .has-1-columns {
display: block;
max-width: 680px;
margin: 0 auto 40px;
}
.about-wrap .has-2-columns {
-ms-grid-columns: 1fr 1fr;
grid-template-columns: 1fr 1fr;
}
.about-wrap .has-2-columns .column:nth-of-type(2n+1) {
-ms-grid-column: 1;
grid-column-start: 1;
}
.about-wrap .has-2-columns .column:nth-of-type(2n) {
-ms-grid-column: 2;
grid-column-start: 2;
}
.about-wrap .has-2-columns.is-wider-right {
-ms-grid-columns: 1fr 2fr;
grid-template-columns: 1fr 2fr;
}
.about-wrap .has-2-columns.is-wider-left {
-ms-grid-columns: 2fr 1fr;
grid-template-columns: 2fr 1fr;
}
.about-wrap .has-3-columns {
-ms-grid-columns: (1fr)[3];
grid-template-columns: repeat(3, 1fr);
}
.about-wrap .has-3-columns .column:nth-of-type(3n+1) {
-ms-grid-column: 1;
grid-column-start: 1;
}
.about-wrap .has-3-columns .column:nth-of-type(3n+2) {
-ms-grid-column: 2;
grid-column-start: 2;
}
.about-wrap .has-3-columns .column:nth-of-type(3n) {
-ms-grid-column: 3;
grid-column-start: 3;
}
.about-wrap .has-4-columns {
-ms-grid-columns: (1fr)[4];
grid-template-columns: repeat(4, 1fr);
}
.about-wrap .has-4-columns .column:nth-of-type(4n+1) {
-ms-grid-column: 1;
grid-column-start: 1;
}
.about-wrap .has-4-columns .column:nth-of-type(4n+2) {
-ms-grid-column: 2;
grid-column-start: 2;
}
.about-wrap .has-4-columns .column:nth-of-type(4n+3) {
-ms-grid-column: 3;
grid-column-start: 3;
}
.about-wrap .has-4-columns .column:nth-of-type(4n) {
-ms-grid-column: 4;
grid-column-start: 4;
}
.about-wrap .column :first-child {
margin-top: 0;
}
.about-wrap .two-col img {
margin-bottom: 1.5em;
}
.about-wrap .feature-video .mejs-controls {
display: none !important;
}
.about-wrap .feature-video .mejs-overlay-loading span {
background: transparent; /* Hide loading.gif */
}
.about-wrap video {
margin: 1.5em auto;
}
.about-wrap .inline-svg.alignright {
margin-left: 80px;
}
.about-wrap .cta {
.about-wrap .aligncenter {
text-align: center;
}
.about-wrap .cta .button {
margin: 0 auto 5px;
font-weight: 600;
.about-wrap .alignleft {
float: left;
margin-right: 40px;
}
.about-wrap .feature-section .button {
margin-top: 1.5em;
font-weight: 600;
.about-wrap .alignright {
float: right;
margin-left: 40px;
}
.about-wrap .is-vertically-aligned-top {
align-self: start;
}
.about-wrap .is-vertically-aligned-center {
align-self: center;
}
.about-wrap .is-vertically-aligned-bottom {
align-self: end;
}
/* 1.3 - Point Releases */
@ -282,6 +299,10 @@
border-bottom: 1px solid #ddd;
}
.about-wrap .changelog {
margin-bottom: 40px;
}
.about-wrap .changelog.point-releases h3 {
padding-top: 35px;
}
@ -290,96 +311,39 @@
padding-top: 7px;
}
.about-wrap .changelog.feature-section .col {
margin-top: 40px;
}
/*------------------------------------------------------------------------------
2.0 - About Page
------------------------------------------------------------------------------*/
/* 2.1 - Typography */
.about-wrap .feature-section-header {
margin: 50px 0 0;
}
.about-wrap .feature-section.two-col h3 {
margin-top: 0;
}
.about-wrap .feature-section h4 {
margin: 1.4em 0 0.6em 0;
font-size: 1em;
.about-wrap .lead-description {
font-size: 1.5em;
text-align: center;
}
.about-wrap .feature-section p {
margin-top: 0.6em;
}
.about-wrap .lead-description {
font-size: 1.5em;
text-align: center;
}
.about-wrap .two-col-text {
column-count: 2;
column-gap: 40px;
}
.about-wrap .two-col-text p:first-of-type {
margin-top: 0;
}
.about-wrap .streamlined-updates p,
.about-wrap .native-fonts p {
margin-bottom: 3em;
}
.about-wrap .under-the-hood img + h3 {
margin-top: 1.25em;
}
/* 2.2 - Structure */
.about-wrap .headline-feature {
margin-bottom: 40px;
margin: 0 auto 40px;
max-width: 680px;
}
.about-wrap .featured-image {
text-align: center;
.about-wrap .headline-feature h2 {
margin: 50px 0 0;
}
.about-wrap .feature-section {
overflow: hidden;
}
.about-wrap .feature-section.no-heading {
padding-top: 35px;
}
.about-wrap .feature-section .media-container {
overflow: hidden;
}
.about-wrap .embed-container {
text-align: center;
}
.about-wrap .embed-container iframe {
max-width: 100%;
}
.about-wrap .wp-embedded-content {
max-width: 100%;
}
.about-wrap .feature-section .col {
margin-top: 40px;
}
.about-wrap .changelog {
margin-bottom: 40px;
}
.about-wrap .changelog.feature-section .col {
margin-top: 40px;
.about-wrap .headline-feature img {
max-width: 600px;
width: 100%;
}
/* Return to Dashboard Home link */
@ -401,11 +365,13 @@
/* Credits */
.about-wrap h3.wp-people-group {
.about-wrap h2.wp-people-group {
margin: 2.6em 0 1.33em;
padding: 0;
font-size: 16px;
line-height: inherit;
font-weight: 600;
text-align: left;
}
.about-wrap .wp-people-group {
@ -450,7 +416,7 @@
margin: 6px 0 2px;
font-size: 16px;
font-weight: 400;
line-height: 2em;
line-height: 2;
text-decoration: none;
}
@ -482,18 +448,25 @@
margin: 0.6em 0;
}
.freedoms-php .about-wrap .col .freedoms-image {
.freedoms-php .has-4-columns {
margin-bottom: 40px;
}
.freedoms-php .column .freedoms-image {
background-image: url('https://s.w.org/wp-content/themes/pub/wporg-main/images/freedoms-2x.png');
background-size: 100%;
padding-top: 100%;
}
.freedoms-php .about-wrap .col:nth-of-type(2) .freedoms-image {
.freedoms-php .column:nth-of-type(2) .freedoms-image {
background-position: 0 34%;
}
.freedoms-php .about-wrap .col:nth-of-type(3) .freedoms-image {
.freedoms-php .column:nth-of-type(3) .freedoms-image {
background-position: 0 66%;
}
.freedoms-php .about-wrap .col:nth-of-type(4) .freedoms-image {
.freedoms-php .column:nth-of-type(4) .freedoms-image {
background-position: 0 100%;
}
@ -502,46 +475,60 @@
------------------------------------------------------------------------------*/
@media screen and (max-width: 782px) {
.about-wrap .two-col-text {
column-count: 1;
.about-wrap .has-3-columns,
.about-wrap .has-4-columns {
-ms-grid-columns: 1fr 1fr;
grid-template-columns: 1fr 1fr;
}
.about-wrap .one-col .alignright {
margin-left: 20px;
max-width: 150px;
.about-wrap .has-3-columns .column:nth-of-type(3n+1),
.about-wrap .has-4-columns .column:nth-of-type(4n+1) {
-ms-grid-column: 1;
grid-column-start: 1;
-ms-grid-row: 1;
grid-row-start: 1;
}
.about-wrap .two-col .col,
.about-wrap .three-col .col,
.about-wrap .four-col .col {
min-width: 48% !important;
max-width: 48% !important;
margin-left: 0 !important;
.about-wrap .has-3-columns .column:nth-of-type(3n+2),
.about-wrap .has-4-columns .column:nth-of-type(4n+2) {
-ms-grid-column: 2;
grid-column-start: 2;
-ms-grid-row: 1;
grid-row-start: 1;
}
.about-wrap .eight-col .col {
min-width: 24% !important;
.about-wrap .has-3-columns .column:nth-of-type(3n),
.about-wrap .has-4-columns .column:nth-of-type(4n+3) {
-ms-grid-column: 1;
grid-column-start: 1;
-ms-grid-row: 2;
grid-row-start: 2;
}
.about-wrap .three-col img,
.about-wrap .four-col img,
.about-wrap .eight-col img {
.about-wrap .has-4-columns .column:nth-of-type(4n) {
-ms-grid-column: 2;
grid-column-start: 2;
-ms-grid-row: 2;
grid-row-start: 2;
}
}
@media screen and (max-width: 600px) {
.about-wrap .has-2-columns,
.about-wrap .has-3-columns,
.about-wrap .has-4-columns {
display: block;
margin: 0 auto;
}
.about-wrap figcaption {
position: relative;
margin-top: 10px;
margin-bottom: 15px;
padding: 0;
background: none;
color: #40464D;
text-shadow: none;
.about-wrap :not(.is-wider-right):not(.is-wider-left) .column {
margin-right: 0;
margin-left: 0;
}
.about-wrap .under-the-hood .inline-svg {
margin-left: 40px;
.about-wrap .has-2-columns.is-wider-right,
.about-wrap .has-2-columns.is-wider-left {
display: -ms-grid;
display: grid;
}
}
@ -565,57 +552,21 @@
margin-bottom: 1.5em;
width: 100%;
}
.about-wrap .one-col .alignright {
max-width: 120px;
}
.about-wrap .feature-section .col {
margin-top: 1em;
}
.about-wrap .two-col .col,
.about-wrap .three-col .col,
.about-wrap .three-col .col {
min-width: 100% !important;
}
.about-wrap .eight-col .col {
min-width: 48% !important;
}
.about-wrap .under-the-hood.four-col .col,
.about-wrap .under-the-hood.three-col .col,
.about-wrap .under-the-hood.two-col .col,
.about-wrap .under-the-hood.one-col .col {
margin-bottom: 2em;
padding-bottom: 0;
}
.about-wrap .under-the-hood:nth-of-type(2n),
.about-wrap .under-the-hood:nth-of-type(3n) {
margin-top: 0;
}
.about-wrap .under-the-hood img + h3 {
margin-top: 1.25em;
}
.about-wrap .under-the-hood .inline-svg {
display: none;
}
.about-wrap .inline-svg.full-width {
margin-bottom: 60px;
}
}
@media only screen and (max-width: 320px) {
.about-wrap .one-col .alignright {
float: none;
margin: 0 auto;
@media only screen and (max-width: 480px) {
.about-wrap .has-2-columns.is-wider-right,
.about-wrap .has-2-columns.is-wider-left {
display: block;
}
.about-wrap .one-col .alignright img {
margin: 0 0 1em;
.about-wrap .column {
margin-right: 0;
margin-left: 0;
}
.about-wrap .has-2-columns.is-wider-right img,
.about-wrap .has-2-columns.is-wider-left img {
max-width: 160px;
}
}

File diff suppressed because one or more lines are too long

View file

@ -159,14 +159,14 @@
#adminmenu a {
display: block;
line-height: 18px;
line-height: 1.3;
padding: 2px 5px;
color: #eee;
}
#adminmenu .wp-submenu a {
color: #b4b9be;
color: rgba(240,245,250,0.7);
color: rgba(240, 245, 250, 0.7);
}
#adminmenu .wp-submenu a:hover,
@ -202,7 +202,7 @@
padding: 7px 0 8px;
z-index: 9999;
background-color: #32373c;
box-shadow: 0 3px 5px rgba(0,0,0,0.2);
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}
.js #adminmenu .sub-open,
@ -280,7 +280,7 @@
#adminmenu .wp-submenu a {
font-size: 13px;
line-height: 18px;
line-height: 1.4;
margin: 0;
padding: 5px 0;
}
@ -311,7 +311,7 @@
#adminmenu .wp-submenu-head {
font-size: 14px;
font-weight: 400;
line-height: 18px;
line-height: 1.3;
padding: 0;
}
@ -359,14 +359,14 @@
div.wp-menu-image:before {
color: #a0a5aa;
color: rgba(240,245,250,0.6);
color: rgba(240, 245, 250, 0.6);
padding: 7px 0;
transition: all .1s ease-in-out;
}
#adminmenu div.wp-menu-image:before {
color: #a0a5aa;
color: rgba(240,245,250,0.6);
color: rgba(240, 245, 250, 0.6);
}
#adminmenu li.wp-has-current-submenu:hover div.wp-menu-image:before,
@ -515,22 +515,23 @@ ul#adminmenu > li.current > a.current:after {
#adminmenu .update-plugins {
display: inline-block;
vertical-align: top;
margin: 1px 2px 0 0;
box-sizing: border-box;
margin: 1px 2px -1px 0;
padding: 0 5px;
min-width: 7px;
height: 17px;
border-radius: 11px;
min-width: 18px;
height: 18px;
border-radius: 9px;
background-color: #ca4a1f;
color: #fff;
font-size: 9px;
line-height: 17px;
font-size: 11px;
line-height: 1.6;
text-align: center;
z-index: 26;
}
#adminmenu li.current a .awaiting-mod,
#adminmenu li a.wp-has-current-submenu .update-plugins {
background-color: #00b9eb;
background-color: #ca4a1f;
color: #fff;
}

File diff suppressed because one or more lines are too long

View file

@ -159,14 +159,14 @@
#adminmenu a {
display: block;
line-height: 18px;
line-height: 1.3;
padding: 2px 5px;
color: #eee;
}
#adminmenu .wp-submenu a {
color: #b4b9be;
color: rgba(240,245,250,0.7);
color: rgba(240, 245, 250, 0.7);
}
#adminmenu .wp-submenu a:hover,
@ -202,7 +202,7 @@
padding: 7px 0 8px;
z-index: 9999;
background-color: #32373c;
box-shadow: 0 3px 5px rgba(0,0,0,0.2);
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}
.js #adminmenu .sub-open,
@ -280,7 +280,7 @@
#adminmenu .wp-submenu a {
font-size: 13px;
line-height: 18px;
line-height: 1.4;
margin: 0;
padding: 5px 0;
}
@ -311,7 +311,7 @@
#adminmenu .wp-submenu-head {
font-size: 14px;
font-weight: 400;
line-height: 18px;
line-height: 1.3;
padding: 0;
}
@ -359,14 +359,14 @@
div.wp-menu-image:before {
color: #a0a5aa;
color: rgba(240,245,250,0.6);
color: rgba(240, 245, 250, 0.6);
padding: 7px 0;
transition: all .1s ease-in-out;
}
#adminmenu div.wp-menu-image:before {
color: #a0a5aa;
color: rgba(240,245,250,0.6);
color: rgba(240, 245, 250, 0.6);
}
#adminmenu li.wp-has-current-submenu:hover div.wp-menu-image:before,
@ -515,22 +515,23 @@ ul#adminmenu > li.current > a.current:after {
#adminmenu .update-plugins {
display: inline-block;
vertical-align: top;
margin: 1px 0 0 2px;
box-sizing: border-box;
margin: 1px 0 -1px 2px;
padding: 0 5px;
min-width: 7px;
height: 17px;
border-radius: 11px;
min-width: 18px;
height: 18px;
border-radius: 9px;
background-color: #ca4a1f;
color: #fff;
font-size: 9px;
line-height: 17px;
font-size: 11px;
line-height: 1.6;
text-align: center;
z-index: 26;
}
#adminmenu li.current a .awaiting-mod,
#adminmenu li a.wp-has-current-submenu .update-plugins {
background-color: #00b9eb;
background-color: #ca4a1f;
color: #fff;
}

File diff suppressed because one or more lines are too long

View file

@ -28,7 +28,7 @@
.wp-core-ui .CodeMirror-lint-message-error,
.wp-core-ui .CodeMirror-lint-message-warning {
box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.1 );
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
margin: 5px 0 2px;
padding: 3px 28px 3px 12px;
}
@ -63,7 +63,7 @@
}
.wrap .CodeMirror .CodeMirror-matchingbracket {
background: rgba(255, 150, 0, .3);
background: rgba(255, 150, 0, 0.3);
color: inherit;
}

View file

@ -28,7 +28,7 @@
.wp-core-ui .CodeMirror-lint-message-error,
.wp-core-ui .CodeMirror-lint-message-warning {
box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.1 );
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
margin: 5px 0 2px;
padding: 3px 12px 3px 28px;
}
@ -63,7 +63,7 @@
}
.wrap .CodeMirror .CodeMirror-matchingbracket {
background: rgba(255, 150, 0, .3);
background: rgba(255, 150, 0, 0.3);
color: inherit;
}

View file

@ -20,7 +20,7 @@
border-right: 1px solid #ccc;
color: #555;
display: block;
line-height: 22px;
line-height: 2;
padding: 0 6px;
text-align: center;
}
@ -45,7 +45,7 @@
.wp-color-result:focus {
border-color: #5b9dd9;
box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
}
.wp-color-result:active {
@ -87,7 +87,7 @@
width: 65px;
font-size: 12px;
font-family: monospace;
line-height: 16px;
line-height: 1.4;
margin: 0;
vertical-align: top;
}
@ -115,14 +115,14 @@
.iris-picker .iris-strip .ui-slider-handle:focus {
box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8);
0 0 2px 1px rgba(30, 140, 190, 0.8);
}
.iris-picker .iris-palette:focus {
box-shadow:
inset 0 0 5px rgba(0,0,0,.4),
inset 0 0 5px rgba(0, 0, 0, 0.4),
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8);
0 0 2px 1px rgba(30, 140, 190, 0.8);
}
@media screen and (max-width: 782px) {
@ -130,7 +130,7 @@
width: 80px;
padding: 6px 5px 5px;
font-size: 16px;
line-height: 18px;
line-height: 1.15;
}
.wp-customizer .wp-picker-container input[type="text"].wp-color-picker {
@ -141,12 +141,12 @@
height: auto;
padding: 0 40px 0 0;
font-size: 14px;
line-height: 29px;
line-height: 2.1;
}
.wp-customizer .wp-picker-container .wp-color-result.button {
font-size: 13px;
line-height: 26px;
line-height: 2;
}
.wp-picker-container .wp-color-result-text {
@ -163,7 +163,7 @@
@media screen and (max-width: 640px) {
.wp-customizer .wp-picker-container .wp-color-result.button {
font-size: 14px;
line-height: 29px;
line-height: 2.1;
}
.wp-customizer .wp-picker-container input[type="text"].wp-color-picker {

View file

@ -1,2 +1,2 @@
/*! This file is auto-generated */
.wp-color-picker{width:80px}.wp-picker-container .hidden{display:none}.wp-picker-container .wp-color-result.button{height:24px;margin:0 0 6px 6px;padding:0 30px 0 0;font-size:11px}.wp-color-result-text{background:#f7f7f7;border-radius:2px 0 0 2px;border-right:1px solid #ccc;color:#555;display:block;line-height:22px;padding:0 6px;text-align:center}.wp-color-result:focus,.wp-color-result:hover{background:#fafafa;border-color:#999;color:#23282d}.wp-color-result:focus:after,.wp-color-result:hover:after{color:#23282d;border-color:#a0a5aa;border-right:1px solid #999}.wp-picker-containers{display:inline-block}.wp-color-result:focus{border-color:#5b9dd9;box-shadow:0 0 3px rgba(0,115,170,.8)}.wp-color-result:active{transform:none!important}.wp-picker-open+.wp-picker-input-wrap{display:inline-block;vertical-align:top}.wp-picker-input-wrap label{display:inline-block;vertical-align:top}.form-table .wp-picker-input-wrap label{margin:0!important}.wp-customizer .wp-picker-input-wrap .button,.wp-picker-input-wrap .button{margin-right:6px}.wp-picker-container .iris-square-slider .ui-slider-handle:focus{background-color:#555}.wp-picker-container .iris-picker{border-radius:0;border-color:#ddd;margin-top:6px}.wp-picker-container input[type=text].wp-color-picker{width:65px;font-size:12px;font-family:monospace;line-height:16px;margin:0;vertical-align:top}.wp-color-picker::-webkit-input-placeholder{color:#72777c}.wp-color-picker::-moz-placeholder{color:#72777c;opacity:1}.wp-color-picker:-ms-input-placeholder{color:#72777c}.wp-picker-container input[type=text].iris-error{background-color:#ffebe8;border-color:#c00;color:#000}.iris-picker .iris-strip .ui-slider-handle:focus,.iris-picker .ui-square-handle:focus{box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}.iris-picker .iris-palette:focus{box-shadow:inset 0 0 5px rgba(0,0,0,.4),0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}@media screen and (max-width:782px){.wp-picker-container input[type=text].wp-color-picker{width:80px;padding:6px 5px 5px;font-size:16px;line-height:18px}.wp-customizer .wp-picker-container input[type=text].wp-color-picker{padding:5px 5px 4px}.wp-picker-container .wp-color-result.button{height:auto;padding:0 40px 0 0;font-size:14px;line-height:29px}.wp-customizer .wp-picker-container .wp-color-result.button{font-size:13px;line-height:26px}.wp-picker-container .wp-color-result-text{padding:0 14px;font-size:inherit;line-height:inherit}.wp-customizer .wp-picker-container .wp-color-result-text{padding:0 10px}}@media screen and (max-width:640px){.wp-customizer .wp-picker-container .wp-color-result.button{font-size:14px;line-height:29px}.wp-customizer .wp-picker-container input[type=text].wp-color-picker{padding:6px 5px}}
.wp-color-picker{width:80px}.wp-picker-container .hidden{display:none}.wp-picker-container .wp-color-result.button{height:24px;margin:0 0 6px 6px;padding:0 30px 0 0;font-size:11px}.wp-color-result-text{background:#f7f7f7;border-radius:2px 0 0 2px;border-right:1px solid #ccc;color:#555;display:block;line-height:2;padding:0 6px;text-align:center}.wp-color-result:focus,.wp-color-result:hover{background:#fafafa;border-color:#999;color:#23282d}.wp-color-result:focus:after,.wp-color-result:hover:after{color:#23282d;border-color:#a0a5aa;border-right:1px solid #999}.wp-picker-containers{display:inline-block}.wp-color-result:focus{border-color:#5b9dd9;box-shadow:0 0 3px rgba(0,115,170,.8)}.wp-color-result:active{transform:none!important}.wp-picker-open+.wp-picker-input-wrap{display:inline-block;vertical-align:top}.wp-picker-input-wrap label{display:inline-block;vertical-align:top}.form-table .wp-picker-input-wrap label{margin:0!important}.wp-customizer .wp-picker-input-wrap .button,.wp-picker-input-wrap .button{margin-right:6px}.wp-picker-container .iris-square-slider .ui-slider-handle:focus{background-color:#555}.wp-picker-container .iris-picker{border-radius:0;border-color:#ddd;margin-top:6px}.wp-picker-container input[type=text].wp-color-picker{width:65px;font-size:12px;font-family:monospace;line-height:1.4;margin:0;vertical-align:top}.wp-color-picker::-webkit-input-placeholder{color:#72777c}.wp-color-picker::-moz-placeholder{color:#72777c;opacity:1}.wp-color-picker:-ms-input-placeholder{color:#72777c}.wp-picker-container input[type=text].iris-error{background-color:#ffebe8;border-color:#c00;color:#000}.iris-picker .iris-strip .ui-slider-handle:focus,.iris-picker .ui-square-handle:focus{box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}.iris-picker .iris-palette:focus{box-shadow:inset 0 0 5px rgba(0,0,0,.4),0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}@media screen and (max-width:782px){.wp-picker-container input[type=text].wp-color-picker{width:80px;padding:6px 5px 5px;font-size:16px;line-height:1.15}.wp-customizer .wp-picker-container input[type=text].wp-color-picker{padding:5px 5px 4px}.wp-picker-container .wp-color-result.button{height:auto;padding:0 40px 0 0;font-size:14px;line-height:2.1}.wp-customizer .wp-picker-container .wp-color-result.button{font-size:13px;line-height:2}.wp-picker-container .wp-color-result-text{padding:0 14px;font-size:inherit;line-height:inherit}.wp-customizer .wp-picker-container .wp-color-result-text{padding:0 10px}}@media screen and (max-width:640px){.wp-customizer .wp-picker-container .wp-color-result.button{font-size:14px;line-height:2.1}.wp-customizer .wp-picker-container input[type=text].wp-color-picker{padding:6px 5px}}

View file

@ -20,7 +20,7 @@
border-left: 1px solid #ccc;
color: #555;
display: block;
line-height: 22px;
line-height: 2;
padding: 0 6px;
text-align: center;
}
@ -45,7 +45,7 @@
.wp-color-result:focus {
border-color: #5b9dd9;
box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
}
.wp-color-result:active {
@ -87,7 +87,7 @@
width: 65px;
font-size: 12px;
font-family: monospace;
line-height: 16px;
line-height: 1.4;
margin: 0;
vertical-align: top;
}
@ -115,14 +115,14 @@
.iris-picker .iris-strip .ui-slider-handle:focus {
box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8);
0 0 2px 1px rgba(30, 140, 190, 0.8);
}
.iris-picker .iris-palette:focus {
box-shadow:
inset 0 0 5px rgba(0,0,0,.4),
inset 0 0 5px rgba(0, 0, 0, 0.4),
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8);
0 0 2px 1px rgba(30, 140, 190, 0.8);
}
@media screen and (max-width: 782px) {
@ -130,7 +130,7 @@
width: 80px;
padding: 6px 5px 5px;
font-size: 16px;
line-height: 18px;
line-height: 1.15;
}
.wp-customizer .wp-picker-container input[type="text"].wp-color-picker {
@ -141,12 +141,12 @@
height: auto;
padding: 0 0 0 40px;
font-size: 14px;
line-height: 29px;
line-height: 2.1;
}
.wp-customizer .wp-picker-container .wp-color-result.button {
font-size: 13px;
line-height: 26px;
line-height: 2;
}
.wp-picker-container .wp-color-result-text {
@ -163,7 +163,7 @@
@media screen and (max-width: 640px) {
.wp-customizer .wp-picker-container .wp-color-result.button {
font-size: 14px;
line-height: 29px;
line-height: 2.1;
}
.wp-customizer .wp-picker-container input[type="text"].wp-color-picker {

View file

@ -1,2 +1,2 @@
/*! This file is auto-generated */
.wp-color-picker{width:80px}.wp-picker-container .hidden{display:none}.wp-picker-container .wp-color-result.button{height:24px;margin:0 6px 6px 0;padding:0 0 0 30px;font-size:11px}.wp-color-result-text{background:#f7f7f7;border-radius:0 2px 2px 0;border-left:1px solid #ccc;color:#555;display:block;line-height:22px;padding:0 6px;text-align:center}.wp-color-result:focus,.wp-color-result:hover{background:#fafafa;border-color:#999;color:#23282d}.wp-color-result:focus:after,.wp-color-result:hover:after{color:#23282d;border-color:#a0a5aa;border-left:1px solid #999}.wp-picker-containers{display:inline-block}.wp-color-result:focus{border-color:#5b9dd9;box-shadow:0 0 3px rgba(0,115,170,.8)}.wp-color-result:active{transform:none!important}.wp-picker-open+.wp-picker-input-wrap{display:inline-block;vertical-align:top}.wp-picker-input-wrap label{display:inline-block;vertical-align:top}.form-table .wp-picker-input-wrap label{margin:0!important}.wp-customizer .wp-picker-input-wrap .button,.wp-picker-input-wrap .button{margin-left:6px}.wp-picker-container .iris-square-slider .ui-slider-handle:focus{background-color:#555}.wp-picker-container .iris-picker{border-radius:0;border-color:#ddd;margin-top:6px}.wp-picker-container input[type=text].wp-color-picker{width:65px;font-size:12px;font-family:monospace;line-height:16px;margin:0;vertical-align:top}.wp-color-picker::-webkit-input-placeholder{color:#72777c}.wp-color-picker::-moz-placeholder{color:#72777c;opacity:1}.wp-color-picker:-ms-input-placeholder{color:#72777c}.wp-picker-container input[type=text].iris-error{background-color:#ffebe8;border-color:#c00;color:#000}.iris-picker .iris-strip .ui-slider-handle:focus,.iris-picker .ui-square-handle:focus{box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}.iris-picker .iris-palette:focus{box-shadow:inset 0 0 5px rgba(0,0,0,.4),0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}@media screen and (max-width:782px){.wp-picker-container input[type=text].wp-color-picker{width:80px;padding:6px 5px 5px;font-size:16px;line-height:18px}.wp-customizer .wp-picker-container input[type=text].wp-color-picker{padding:5px 5px 4px}.wp-picker-container .wp-color-result.button{height:auto;padding:0 0 0 40px;font-size:14px;line-height:29px}.wp-customizer .wp-picker-container .wp-color-result.button{font-size:13px;line-height:26px}.wp-picker-container .wp-color-result-text{padding:0 14px;font-size:inherit;line-height:inherit}.wp-customizer .wp-picker-container .wp-color-result-text{padding:0 10px}}@media screen and (max-width:640px){.wp-customizer .wp-picker-container .wp-color-result.button{font-size:14px;line-height:29px}.wp-customizer .wp-picker-container input[type=text].wp-color-picker{padding:6px 5px}}
.wp-color-picker{width:80px}.wp-picker-container .hidden{display:none}.wp-picker-container .wp-color-result.button{height:24px;margin:0 6px 6px 0;padding:0 0 0 30px;font-size:11px}.wp-color-result-text{background:#f7f7f7;border-radius:0 2px 2px 0;border-left:1px solid #ccc;color:#555;display:block;line-height:2;padding:0 6px;text-align:center}.wp-color-result:focus,.wp-color-result:hover{background:#fafafa;border-color:#999;color:#23282d}.wp-color-result:focus:after,.wp-color-result:hover:after{color:#23282d;border-color:#a0a5aa;border-left:1px solid #999}.wp-picker-containers{display:inline-block}.wp-color-result:focus{border-color:#5b9dd9;box-shadow:0 0 3px rgba(0,115,170,.8)}.wp-color-result:active{transform:none!important}.wp-picker-open+.wp-picker-input-wrap{display:inline-block;vertical-align:top}.wp-picker-input-wrap label{display:inline-block;vertical-align:top}.form-table .wp-picker-input-wrap label{margin:0!important}.wp-customizer .wp-picker-input-wrap .button,.wp-picker-input-wrap .button{margin-left:6px}.wp-picker-container .iris-square-slider .ui-slider-handle:focus{background-color:#555}.wp-picker-container .iris-picker{border-radius:0;border-color:#ddd;margin-top:6px}.wp-picker-container input[type=text].wp-color-picker{width:65px;font-size:12px;font-family:monospace;line-height:1.4;margin:0;vertical-align:top}.wp-color-picker::-webkit-input-placeholder{color:#72777c}.wp-color-picker::-moz-placeholder{color:#72777c;opacity:1}.wp-color-picker:-ms-input-placeholder{color:#72777c}.wp-picker-container input[type=text].iris-error{background-color:#ffebe8;border-color:#c00;color:#000}.iris-picker .iris-strip .ui-slider-handle:focus,.iris-picker .ui-square-handle:focus{box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}.iris-picker .iris-palette:focus{box-shadow:inset 0 0 5px rgba(0,0,0,.4),0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}@media screen and (max-width:782px){.wp-picker-container input[type=text].wp-color-picker{width:80px;padding:6px 5px 5px;font-size:16px;line-height:1.15}.wp-customizer .wp-picker-container input[type=text].wp-color-picker{padding:5px 5px 4px}.wp-picker-container .wp-color-result.button{height:auto;padding:0 0 0 40px;font-size:14px;line-height:2.1}.wp-customizer .wp-picker-container .wp-color-result.button{font-size:13px;line-height:2}.wp-picker-container .wp-color-result-text{padding:0 14px;font-size:inherit;line-height:inherit}.wp-customizer .wp-picker-container .wp-color-result-text{padding:0 10px}}@media screen and (max-width:640px){.wp-customizer .wp-picker-container .wp-color-result.button{font-size:14px;line-height:2.1}.wp-customizer .wp-picker-container input[type=text].wp-color-picker{padding:6px 5px}}

View file

@ -130,7 +130,7 @@ input[type=radio]:checked:before {
/* Active tabs use a bottom border color that matches the page background color. */
.about-wrap h2 .nav-tab-active,
.about-wrap .nav-tab-active,
.nav-tab-active,
.nav-tab-active:hover {
background-color: $body-background;
@ -348,6 +348,26 @@ ul#adminmenu > li.current > a.current:after {
background: $adminbar-input-background;
}
/* Admin Bar: recovery mode */
#wpadminbar #wp-admin-bar-recovery-mode {
color: $adminbar-recovery-exit-text;
background-color: $adminbar-recovery-exit-background;
}
#wpadminbar #wp-admin-bar-recovery-mode .ab-item,
#wpadminbar #wp-admin-bar-recovery-mode a.ab-item {
color: $adminbar-recovery-exit-text;
}
#wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover >.ab-item,
#wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
color: $adminbar-recovery-exit-text;
background-color: $adminbar-recovery-exit-background-alt;
}
/* Admin Bar: my account */
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {

View file

@ -55,4 +55,8 @@ $menu-collapse-focus-icon: $menu-highlight-icon !default;
$adminbar-avatar-frame: lighten( $menu-background, 7% ) !default;
$adminbar-input-background: lighten( $menu-background, 7% ) !default;
$adminbar-recovery-exit-text: $menu-bubble-text !default;
$adminbar-recovery-exit-background: $menu-bubble-background !default;
$adminbar-recovery-exit-background-alt: mix(black, $adminbar-recovery-exit-background, 10%) !default;
$menu-customizer-text: mix( $base-color, $text-color, 40% ) !default;

View file

@ -153,7 +153,7 @@ input[type=radio]:checked:before {
}
/* Active tabs use a bottom border color that matches the page background color. */
.about-wrap h2 .nav-tab-active,
.about-wrap .nav-tab-active,
.nav-tab-active,
.nav-tab-active:hover {
background-color: #f1f1f1;
@ -370,6 +370,25 @@ ul#adminmenu > li.current > a.current:after {
background: #6eb9d4;
}
/* Admin Bar: recovery mode */
#wpadminbar #wp-admin-bar-recovery-mode {
color: #fff;
background-color: #e1a948;
}
#wpadminbar #wp-admin-bar-recovery-mode .ab-item,
#wpadminbar #wp-admin-bar-recovery-mode a.ab-item {
color: #fff;
}
#wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item,
#wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
color: #fff;
background-color: #cb9841;
}
/* Admin Bar: my account */
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
border-color: #6eb9d4;

File diff suppressed because one or more lines are too long

View file

@ -153,7 +153,7 @@ input[type=radio]:checked:before {
}
/* Active tabs use a bottom border color that matches the page background color. */
.about-wrap h2 .nav-tab-active,
.about-wrap .nav-tab-active,
.nav-tab-active,
.nav-tab-active:hover {
background-color: #f1f1f1;
@ -370,6 +370,25 @@ ul#adminmenu > li.current > a.current:after {
background: #6eb9d4;
}
/* Admin Bar: recovery mode */
#wpadminbar #wp-admin-bar-recovery-mode {
color: #fff;
background-color: #e1a948;
}
#wpadminbar #wp-admin-bar-recovery-mode .ab-item,
#wpadminbar #wp-admin-bar-recovery-mode a.ab-item {
color: #fff;
}
#wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item,
#wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
color: #fff;
background-color: #cb9841;
}
/* Admin Bar: my account */
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
border-color: #6eb9d4;

File diff suppressed because one or more lines are too long

View file

@ -153,7 +153,7 @@ input[type=radio]:checked:before {
}
/* Active tabs use a bottom border color that matches the page background color. */
.about-wrap h2 .nav-tab-active,
.about-wrap .nav-tab-active,
.nav-tab-active,
.nav-tab-active:hover {
background-color: #f1f1f1;
@ -370,6 +370,25 @@ ul#adminmenu > li.current > a.current:after {
background: #6c645c;
}
/* Admin Bar: recovery mode */
#wpadminbar #wp-admin-bar-recovery-mode {
color: #fff;
background-color: #9ea476;
}
#wpadminbar #wp-admin-bar-recovery-mode .ab-item,
#wpadminbar #wp-admin-bar-recovery-mode a.ab-item {
color: #fff;
}
#wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item,
#wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
color: #fff;
background-color: #8e946a;
}
/* Admin Bar: my account */
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
border-color: #6c645c;

File diff suppressed because one or more lines are too long

View file

@ -153,7 +153,7 @@ input[type=radio]:checked:before {
}
/* Active tabs use a bottom border color that matches the page background color. */
.about-wrap h2 .nav-tab-active,
.about-wrap .nav-tab-active,
.nav-tab-active,
.nav-tab-active:hover {
background-color: #f1f1f1;
@ -370,6 +370,25 @@ ul#adminmenu > li.current > a.current:after {
background: #6c645c;
}
/* Admin Bar: recovery mode */
#wpadminbar #wp-admin-bar-recovery-mode {
color: #fff;
background-color: #9ea476;
}
#wpadminbar #wp-admin-bar-recovery-mode .ab-item,
#wpadminbar #wp-admin-bar-recovery-mode a.ab-item {
color: #fff;
}
#wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item,
#wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
color: #fff;
background-color: #8e946a;
}
/* Admin Bar: my account */
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
border-color: #6c645c;

File diff suppressed because one or more lines are too long

View file

@ -153,7 +153,7 @@ input[type=radio]:checked:before {
}
/* Active tabs use a bottom border color that matches the page background color. */
.about-wrap h2 .nav-tab-active,
.about-wrap .nav-tab-active,
.nav-tab-active,
.nav-tab-active:hover {
background-color: #f1f1f1;
@ -370,6 +370,25 @@ ul#adminmenu > li.current > a.current:after {
background: #634c84;
}
/* Admin Bar: recovery mode */
#wpadminbar #wp-admin-bar-recovery-mode {
color: #fff;
background-color: #d46f15;
}
#wpadminbar #wp-admin-bar-recovery-mode .ab-item,
#wpadminbar #wp-admin-bar-recovery-mode a.ab-item {
color: #fff;
}
#wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item,
#wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
color: #fff;
background-color: #bf6413;
}
/* Admin Bar: my account */
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
border-color: #634c84;

File diff suppressed because one or more lines are too long

View file

@ -153,7 +153,7 @@ input[type=radio]:checked:before {
}
/* Active tabs use a bottom border color that matches the page background color. */
.about-wrap h2 .nav-tab-active,
.about-wrap .nav-tab-active,
.nav-tab-active,
.nav-tab-active:hover {
background-color: #f1f1f1;
@ -370,6 +370,25 @@ ul#adminmenu > li.current > a.current:after {
background: #634c84;
}
/* Admin Bar: recovery mode */
#wpadminbar #wp-admin-bar-recovery-mode {
color: #fff;
background-color: #d46f15;
}
#wpadminbar #wp-admin-bar-recovery-mode .ab-item,
#wpadminbar #wp-admin-bar-recovery-mode a.ab-item {
color: #fff;
}
#wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item,
#wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
color: #fff;
background-color: #bf6413;
}
/* Admin Bar: my account */
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
border-color: #634c84;

File diff suppressed because one or more lines are too long

View file

@ -153,7 +153,7 @@ input[type=radio]:checked:before {
}
/* Active tabs use a bottom border color that matches the page background color. */
.about-wrap h2 .nav-tab-active,
.about-wrap .nav-tab-active,
.nav-tab-active,
.nav-tab-active:hover {
background-color: #f5f5f5;
@ -370,6 +370,25 @@ ul#adminmenu > li.current > a.current:after {
background: #f7f7f7;
}
/* Admin Bar: recovery mode */
#wpadminbar #wp-admin-bar-recovery-mode {
color: #fff;
background-color: #d64e07;
}
#wpadminbar #wp-admin-bar-recovery-mode .ab-item,
#wpadminbar #wp-admin-bar-recovery-mode a.ab-item {
color: #fff;
}
#wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item,
#wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
color: #fff;
background-color: #c14606;
}
/* Admin Bar: my account */
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
border-color: #f7f7f7;

File diff suppressed because one or more lines are too long

View file

@ -153,7 +153,7 @@ input[type=radio]:checked:before {
}
/* Active tabs use a bottom border color that matches the page background color. */
.about-wrap h2 .nav-tab-active,
.about-wrap .nav-tab-active,
.nav-tab-active,
.nav-tab-active:hover {
background-color: #f5f5f5;
@ -370,6 +370,25 @@ ul#adminmenu > li.current > a.current:after {
background: #f7f7f7;
}
/* Admin Bar: recovery mode */
#wpadminbar #wp-admin-bar-recovery-mode {
color: #fff;
background-color: #d64e07;
}
#wpadminbar #wp-admin-bar-recovery-mode .ab-item,
#wpadminbar #wp-admin-bar-recovery-mode a.ab-item {
color: #fff;
}
#wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item,
#wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
color: #fff;
background-color: #c14606;
}
/* Admin Bar: my account */
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
border-color: #f7f7f7;

File diff suppressed because one or more lines are too long

View file

@ -153,7 +153,7 @@ input[type=radio]:checked:before {
}
/* Active tabs use a bottom border color that matches the page background color. */
.about-wrap h2 .nav-tab-active,
.about-wrap .nav-tab-active,
.nav-tab-active,
.nav-tab-active:hover {
background-color: #f1f1f1;
@ -370,6 +370,25 @@ ul#adminmenu > li.current > a.current:after {
background: #464d52;
}
/* Admin Bar: recovery mode */
#wpadminbar #wp-admin-bar-recovery-mode {
color: #fff;
background-color: #69a8bb;
}
#wpadminbar #wp-admin-bar-recovery-mode .ab-item,
#wpadminbar #wp-admin-bar-recovery-mode a.ab-item {
color: #fff;
}
#wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item,
#wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
color: #fff;
background-color: #5f97a8;
}
/* Admin Bar: my account */
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
border-color: #464d52;

File diff suppressed because one or more lines are too long

View file

@ -153,7 +153,7 @@ input[type=radio]:checked:before {
}
/* Active tabs use a bottom border color that matches the page background color. */
.about-wrap h2 .nav-tab-active,
.about-wrap .nav-tab-active,
.nav-tab-active,
.nav-tab-active:hover {
background-color: #f1f1f1;
@ -370,6 +370,25 @@ ul#adminmenu > li.current > a.current:after {
background: #464d52;
}
/* Admin Bar: recovery mode */
#wpadminbar #wp-admin-bar-recovery-mode {
color: #fff;
background-color: #69a8bb;
}
#wpadminbar #wp-admin-bar-recovery-mode .ab-item,
#wpadminbar #wp-admin-bar-recovery-mode a.ab-item {
color: #fff;
}
#wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item,
#wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
color: #fff;
background-color: #5f97a8;
}
/* Admin Bar: my account */
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
border-color: #464d52;

File diff suppressed because one or more lines are too long

View file

@ -153,7 +153,7 @@ input[type=radio]:checked:before {
}
/* Active tabs use a bottom border color that matches the page background color. */
.about-wrap h2 .nav-tab-active,
.about-wrap .nav-tab-active,
.nav-tab-active,
.nav-tab-active:hover {
background-color: #f1f1f1;
@ -370,6 +370,25 @@ ul#adminmenu > li.current > a.current:after {
background: #879ea5;
}
/* Admin Bar: recovery mode */
#wpadminbar #wp-admin-bar-recovery-mode {
color: #fff;
background-color: #aa9d88;
}
#wpadminbar #wp-admin-bar-recovery-mode .ab-item,
#wpadminbar #wp-admin-bar-recovery-mode a.ab-item {
color: #fff;
}
#wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item,
#wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
color: #fff;
background-color: #998d7a;
}
/* Admin Bar: my account */
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
border-color: #879ea5;

File diff suppressed because one or more lines are too long

View file

@ -153,7 +153,7 @@ input[type=radio]:checked:before {
}
/* Active tabs use a bottom border color that matches the page background color. */
.about-wrap h2 .nav-tab-active,
.about-wrap .nav-tab-active,
.nav-tab-active,
.nav-tab-active:hover {
background-color: #f1f1f1;
@ -370,6 +370,25 @@ ul#adminmenu > li.current > a.current:after {
background: #879ea5;
}
/* Admin Bar: recovery mode */
#wpadminbar #wp-admin-bar-recovery-mode {
color: #fff;
background-color: #aa9d88;
}
#wpadminbar #wp-admin-bar-recovery-mode .ab-item,
#wpadminbar #wp-admin-bar-recovery-mode a.ab-item {
color: #fff;
}
#wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item,
#wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
color: #fff;
background-color: #998d7a;
}
/* Admin Bar: my account */
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
border-color: #879ea5;

File diff suppressed because one or more lines are too long

View file

@ -153,7 +153,7 @@ input[type=radio]:checked:before {
}
/* Active tabs use a bottom border color that matches the page background color. */
.about-wrap h2 .nav-tab-active,
.about-wrap .nav-tab-active,
.nav-tab-active,
.nav-tab-active:hover {
background-color: #f1f1f1;
@ -370,6 +370,25 @@ ul#adminmenu > li.current > a.current:after {
background: #d66560;
}
/* Admin Bar: recovery mode */
#wpadminbar #wp-admin-bar-recovery-mode {
color: #fff;
background-color: #ccaf0b;
}
#wpadminbar #wp-admin-bar-recovery-mode .ab-item,
#wpadminbar #wp-admin-bar-recovery-mode a.ab-item {
color: #fff;
}
#wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item,
#wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
color: #fff;
background-color: #b89e0a;
}
/* Admin Bar: my account */
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
border-color: #d66560;

File diff suppressed because one or more lines are too long

View file

@ -153,7 +153,7 @@ input[type=radio]:checked:before {
}
/* Active tabs use a bottom border color that matches the page background color. */
.about-wrap h2 .nav-tab-active,
.about-wrap .nav-tab-active,
.nav-tab-active,
.nav-tab-active:hover {
background-color: #f1f1f1;
@ -370,6 +370,25 @@ ul#adminmenu > li.current > a.current:after {
background: #d66560;
}
/* Admin Bar: recovery mode */
#wpadminbar #wp-admin-bar-recovery-mode {
color: #fff;
background-color: #ccaf0b;
}
#wpadminbar #wp-admin-bar-recovery-mode .ab-item,
#wpadminbar #wp-admin-bar-recovery-mode a.ab-item {
color: #fff;
}
#wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item,
#wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
color: #fff;
background-color: #b89e0a;
}
/* Admin Bar: my account */
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
border-color: #d66560;

File diff suppressed because one or more lines are too long

View file

@ -156,7 +156,7 @@
color: #0073aa;
z-index: 100000;
line-height: normal;
box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
text-decoration: none;
/* Only visible in Windows High Contrast mode */
outline: 2px solid transparent;
@ -191,7 +191,7 @@ p.popular-tags,
.imgedit-group,
.comment-ays {
border: 1px solid #e5e5e5;
box-shadow: 0 1px 1px rgba(0,0,0,0.04);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}
table.widefat,
@ -274,7 +274,7 @@ a:focus .media-icon img,
color: #124964;
box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8);
0 0 2px 1px rgba(30, 140, 190, 0.8);
/* Only visible in Windows High Contrast mode */
outline: 1px solid transparent;
}
@ -423,7 +423,7 @@ code {
padding: 3px 5px 2px 5px;
margin: 0 1px;
background: #eaeaea;
background: rgba(0,0,0,0.07);
background: rgba(0, 0, 0, 0.07);
font-size: 13px;
}
@ -586,7 +586,7 @@ code {
font-weight: 400;
margin: 0;
padding: 9px 0 4px 0;
line-height: 29px;
line-height: 1.3;
}
.wrap h1.wp-heading-inline {
@ -647,7 +647,7 @@ code {
.wrap .page-title-action:focus {
border-color: #5b9dd9;
box-shadow: 0 0 2px rgba( 30, 140, 190, 0.8 );
box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
/* Only visible in Windows High Contrast mode */
outline: 2px solid transparent;
}
@ -666,7 +666,7 @@ code {
div#widgets-right .widget-top:hover,
#widgets-left .widget-top:hover {
border-color: #999;
box-shadow: 0 1px 2px rgba(0,0,0,0.1);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.sorthelper {
@ -831,7 +831,7 @@ img.emoji {
.tagchecklist .ntdelbutton:focus .remove-tag-icon:before {
box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8);
0 0 2px 1px rgba(30, 140, 190, 0.8);
}
.key-labels label {
@ -914,11 +914,11 @@ span.required,
#delete-action {
float: right;
line-height: 28px;
line-height: 2.1;
}
#delete-link {
line-height: 28px;
line-height: 2.1;
vertical-align: middle;
text-align: right;
margin-right: 8px;
@ -931,7 +931,7 @@ span.required,
#publishing-action {
text-align: left;
float: left;
line-height: 23px;
line-height: 1.9;
}
#publishing-action .spinner {
@ -996,7 +996,7 @@ th.action-links {
margin: 12px 0 25px;
padding: 0 10px;
width: 100%;
box-shadow: 0 1px 1px rgba(0,0,0,0.04);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
border: 1px solid #e5e5e5;
background: #fff;
color: #555;
@ -1185,7 +1185,7 @@ th.action-links {
width: 24%;
background: #fff;
border: 1px solid #e5e5e5;
box-shadow: 0 1px 1px rgba(0,0,0,0.04);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}
.filter-group legend {
@ -1206,7 +1206,7 @@ th.action-links {
.filter-drawer .filter-group-feature input,
.filter-drawer .filter-group-feature label {
line-height: 16px;
line-height: 1.4;
}
.filter-drawer .filter-group-feature input {
@ -1243,7 +1243,7 @@ th.action-links {
.wp-filter .button-link.edit-filters {
padding: 0 5px;
line-height: 28px;
line-height: 2.2;
}
.filtered-by {
@ -1267,7 +1267,7 @@ th.action-links {
margin: 0 5px;
padding: 4px 8px;
border: 1px solid #e5e5e5;
box-shadow: 0 1px 1px rgba(0,0,0,0.04);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
background: #fff;
font-size: 11px;
}
@ -1365,7 +1365,7 @@ div.updated,
div.error {
background: #fff;
border-right: 4px solid #fff;
box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.1 );
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
margin: 5px 15px 2px;
padding: 1px 12px;
}
@ -1430,7 +1430,7 @@ div.error p,
.notice-dismiss:focus {
outline: none;
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, 0.8);
}
.ie8 .notice-dismiss:focus {
@ -1551,14 +1551,14 @@ div.error {
#update-nag,
.update-nag {
display: inline-block;
line-height: 19px;
line-height: 1.4;
padding: 11px 15px;
font-size: 14px;
text-align: right;
margin: 25px 2px 0 20px;
background-color: #fff;
border-right: 4px solid #ffba00;
box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
}
ul#dismissed-updates {
@ -1670,7 +1670,7 @@ form.upgrade .hint {
background-color: #fff;
border: 1px solid #ddd;
border-top: none;
box-shadow: 0 1px 0 rgba(0,0,0,.025);
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.025);
}
#screen-options-link-wrap,
@ -1681,7 +1681,7 @@ form.upgrade .hint {
border: 1px solid #ddd;
border-top: none;
background: #fff;
box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1);
box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.1);
}
#screen-meta-links .screen-meta-toggle {
@ -1760,7 +1760,7 @@ form.upgrade .hint {
.metabox-prefs label {
display: inline-block;
padding-left: 15px;
line-height: 30px;
line-height: 2.35;
}
#number-of-columns {
@ -1799,7 +1799,7 @@ form.upgrade .hint {
}
.metabox-prefs .screen-options label {
line-height: 28px;
line-height: 2.2;
padding-left: 0;
}
@ -1863,7 +1863,7 @@ form.upgrade .hint {
.contextual-help-tabs a {
display: block;
padding: 5px 12px 5px 5px;
line-height: 18px;
line-height: 1.4;
text-decoration: none;
border: 1px solid transparent;
border-left: none;
@ -1879,7 +1879,7 @@ form.upgrade .hint {
margin: 0 0 0 -1px;
border-right: 2px solid #00a0d2;
background: #f6fbfd;
box-shadow: 0 2px 0 rgba(0,0,0,0.02), 0 1px 0 rgba(0,0,0,0.02);
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.02), 0 1px 0 rgba(0, 0, 0, 0.02);
}
.contextual-help-tabs .active a {
@ -1895,7 +1895,7 @@ form.upgrade .hint {
.help-tab-content {
display: none;
margin: 0 0 12px 22px;
line-height: 1.6em;
line-height: 1.6;
}
.help-tab-content.active {
@ -2078,13 +2078,13 @@ html.wp-toolbar {
.postbox .inside {
padding: 0 12px 12px;
line-height: 1.4em;
line-height: 1.4;
font-size: 13px;
}
.stuffbox .inside {
padding: 0;
line-height: 1.4em;
line-height: 1.4;
font-size: 13px;
margin-top: 0;
}
@ -2153,7 +2153,7 @@ html.wp-toolbar {
#wpfooter p {
font-size: 13px;
margin: 0;
line-height: 20px;
line-height: 1.55;
}
#footer-thankyou {
@ -2171,7 +2171,7 @@ html.wp-toolbar {
margin-right: 0.5em; /* half the font size so set the font size properly */
padding: 5px 10px;
font-size: 14px;
line-height: 24px;
line-height: 1.71428571;
font-weight: 600;
background: #e5e5e5;
color: #555;
@ -2183,7 +2183,7 @@ h3 .nav-tab, /* Back-compat for pre-4.4 */
.nav-tab-small .nav-tab {
padding: 5px 14px;
font-size: 12px;
line-height: 16px;
line-height: 1.33;
}
.nav-tab:hover,
@ -2285,7 +2285,7 @@ h1.nav-tab-wrapper, /* Back-compat for pre-4.4 */
/* Back-compat for nav-menus screen */
.nav-menus-php .metabox-holder h3 {
padding: 10px 14px 11px 10px;
line-height: 21px;
line-height: 1.5;
}
#templateside ul li a {
@ -2348,7 +2348,7 @@ body.iframe {
.importers td {
padding-left: 14px;
line-height: 1.5em;
line-height: 1.4;
}
.importers .import-system {
@ -2373,7 +2373,7 @@ body.iframe {
}
.importer-action {
line-height: 20px; /* Same as with .updating-message */
line-height: 1.55; /* Same as with .updating-message */
color: #555;
margin-bottom: 1em;
}
@ -2428,7 +2428,7 @@ body.iframe {
br.clear {
height: 2px;
line-height: 2px;
line-height: 0.15;
}
.checkbox {
@ -2532,7 +2532,7 @@ div.action-links {
background: #f5f5f5;
font-size: 22px;
font-weight: 600;
line-height: 56px;
line-height: 2.4;
position: relative;
height: 56px;
}
@ -2558,15 +2558,15 @@ div.action-links {
font-family: "Helvetica Neue", sans-serif;
display: inline-block;
font-size: 30px;
line-height: 50px;
line-height: 1.68;
box-sizing: border-box;
max-width: 100%;
padding: 0 15px;
margin-top: 174px;
color: #fff;
background: rgba( 30, 30, 30, 0.9 );
text-shadow: 0 1px 3px rgba( 0, 0, 0, 0.4 );
box-shadow: 0 0 30px rgba( 255, 255, 255, 0.1 );
background: rgba(30, 30, 30, 0.9);
text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
border-radius: 8px;
}
@ -2582,7 +2582,7 @@ div.action-links {
height: 250px;
width: 100%;
background: transparent;
box-shadow: inset 0 0 50px 4px rgba( 0, 0, 0, 0.2 ), inset 0 -1px 0 rgba( 0, 0, 0, 0.1 );
box-shadow: inset 0 0 50px 4px rgba(0, 0, 0, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}
#plugin-information-tabs {
@ -2603,7 +2603,7 @@ div.action-links {
padding: 9px 10px;
margin: 0;
height: 18px;
line-height: 18px;
line-height: 1.3;
font-size: 14px;
text-decoration: none;
transition: none;
@ -2795,7 +2795,7 @@ div.action-links {
max-width: 100%;
width: auto;
height: auto;
box-shadow: 0 1px 2px rgba( 0, 0, 0, 0.3 );
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
/* rtl:ignore */
@ -2883,7 +2883,7 @@ div.action-links {
#plugin-information-title.with-banner h2 {
margin-top: 30px;
font-size: 20px;
line-height: 40px;
line-height: 2;
max-width: 85%;
}
@ -3050,7 +3050,7 @@ img {
.js .postbox .handlediv:focus .toggle-indicator:before {
box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8);
0 0 2px 1px rgba(30, 140, 190, 0.8);
}
/* @todo: appears to be Press This only and overridden */
@ -3145,7 +3145,7 @@ img {
}
[role="treeitem"] .folder-label.focus {
color: #124964;
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, 0.8);
}
[role="treeitem"].hover,
[role="treeitem"] .folder-label.hover {
@ -3313,7 +3313,7 @@ img {
}
#documentation label {
line-height: 22px;
line-height: 1.8;
vertical-align: baseline;
font-weight: 600;
}
@ -3374,7 +3374,7 @@ img {
.widget-top .widget-action:focus .toggle-indicator:before {
box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30,140,190,.8);
0 0 2px 1px rgba(30, 140, 190, 0.8);
}
.control-section .accordion-section-title:after,
@ -3472,7 +3472,7 @@ img {
border-right: none;
border-left: none;
padding: 10px 14px 11px 10px;
line-height: 21px;
line-height: 1.55;
background: #fff;
}
@ -3921,7 +3921,7 @@ img {
.filter-drawer .filter-group-feature input,
.filter-drawer .filter-group-feature label {
line-height: 25px;
line-height: 2.1;
}
.filter-drawer .filter-group-feature label {
@ -3930,7 +3930,7 @@ img {
.wp-filter .button.drawer-toggle {
font-size: 13px;
line-height: 26px;
line-height: 2;
height: 28px;
}
@ -3999,10 +3999,17 @@ img {
h1 .nav-tab,
h2 .nav-tab,
h3 .nav-tab {
h3 .nav-tab,
nav .nav-tab {
margin: 10px 0 0 10px;
border-bottom: 1px solid #ccc;
}
.nav-tab-active:hover,
.nav-tab-active:focus,
.nav-tab-active:focus:active {
border-bottom: 1px solid #ccc;
}
}
@media screen and (max-width: 320px) {

File diff suppressed because one or more lines are too long

View file

@ -156,7 +156,7 @@
color: #0073aa;
z-index: 100000;
line-height: normal;
box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
text-decoration: none;
/* Only visible in Windows High Contrast mode */
outline: 2px solid transparent;
@ -191,7 +191,7 @@ p.popular-tags,
.imgedit-group,
.comment-ays {
border: 1px solid #e5e5e5;
box-shadow: 0 1px 1px rgba(0,0,0,0.04);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}
table.widefat,
@ -274,7 +274,7 @@ a:focus .media-icon img,
color: #124964;
box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8);
0 0 2px 1px rgba(30, 140, 190, 0.8);
/* Only visible in Windows High Contrast mode */
outline: 1px solid transparent;
}
@ -423,7 +423,7 @@ code {
padding: 3px 5px 2px 5px;
margin: 0 1px;
background: #eaeaea;
background: rgba(0,0,0,0.07);
background: rgba(0, 0, 0, 0.07);
font-size: 13px;
}
@ -586,7 +586,7 @@ code {
font-weight: 400;
margin: 0;
padding: 9px 0 4px 0;
line-height: 29px;
line-height: 1.3;
}
.wrap h1.wp-heading-inline {
@ -647,7 +647,7 @@ code {
.wrap .page-title-action:focus {
border-color: #5b9dd9;
box-shadow: 0 0 2px rgba( 30, 140, 190, 0.8 );
box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
/* Only visible in Windows High Contrast mode */
outline: 2px solid transparent;
}
@ -666,7 +666,7 @@ code {
div#widgets-right .widget-top:hover,
#widgets-left .widget-top:hover {
border-color: #999;
box-shadow: 0 1px 2px rgba(0,0,0,0.1);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.sorthelper {
@ -831,7 +831,7 @@ img.emoji {
.tagchecklist .ntdelbutton:focus .remove-tag-icon:before {
box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8);
0 0 2px 1px rgba(30, 140, 190, 0.8);
}
.key-labels label {
@ -914,11 +914,11 @@ span.required,
#delete-action {
float: left;
line-height: 28px;
line-height: 2.1;
}
#delete-link {
line-height: 28px;
line-height: 2.1;
vertical-align: middle;
text-align: left;
margin-left: 8px;
@ -931,7 +931,7 @@ span.required,
#publishing-action {
text-align: right;
float: right;
line-height: 23px;
line-height: 1.9;
}
#publishing-action .spinner {
@ -996,7 +996,7 @@ th.action-links {
margin: 12px 0 25px;
padding: 0 10px;
width: 100%;
box-shadow: 0 1px 1px rgba(0,0,0,0.04);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
border: 1px solid #e5e5e5;
background: #fff;
color: #555;
@ -1185,7 +1185,7 @@ th.action-links {
width: 24%;
background: #fff;
border: 1px solid #e5e5e5;
box-shadow: 0 1px 1px rgba(0,0,0,0.04);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}
.filter-group legend {
@ -1206,7 +1206,7 @@ th.action-links {
.filter-drawer .filter-group-feature input,
.filter-drawer .filter-group-feature label {
line-height: 16px;
line-height: 1.4;
}
.filter-drawer .filter-group-feature input {
@ -1243,7 +1243,7 @@ th.action-links {
.wp-filter .button-link.edit-filters {
padding: 0 5px;
line-height: 28px;
line-height: 2.2;
}
.filtered-by {
@ -1267,7 +1267,7 @@ th.action-links {
margin: 0 5px;
padding: 4px 8px;
border: 1px solid #e5e5e5;
box-shadow: 0 1px 1px rgba(0,0,0,0.04);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
background: #fff;
font-size: 11px;
}
@ -1365,7 +1365,7 @@ div.updated,
div.error {
background: #fff;
border-left: 4px solid #fff;
box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.1 );
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
margin: 5px 15px 2px;
padding: 1px 12px;
}
@ -1430,7 +1430,7 @@ div.error p,
.notice-dismiss:focus {
outline: none;
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, 0.8);
}
.ie8 .notice-dismiss:focus {
@ -1551,14 +1551,14 @@ div.error {
#update-nag,
.update-nag {
display: inline-block;
line-height: 19px;
line-height: 1.4;
padding: 11px 15px;
font-size: 14px;
text-align: left;
margin: 25px 20px 0 2px;
background-color: #fff;
border-left: 4px solid #ffba00;
box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
}
ul#dismissed-updates {
@ -1670,7 +1670,7 @@ form.upgrade .hint {
background-color: #fff;
border: 1px solid #ddd;
border-top: none;
box-shadow: 0 1px 0 rgba(0,0,0,.025);
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.025);
}
#screen-options-link-wrap,
@ -1681,7 +1681,7 @@ form.upgrade .hint {
border: 1px solid #ddd;
border-top: none;
background: #fff;
box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1);
box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.1);
}
#screen-meta-links .screen-meta-toggle {
@ -1760,7 +1760,7 @@ form.upgrade .hint {
.metabox-prefs label {
display: inline-block;
padding-right: 15px;
line-height: 30px;
line-height: 2.35;
}
#number-of-columns {
@ -1799,7 +1799,7 @@ form.upgrade .hint {
}
.metabox-prefs .screen-options label {
line-height: 28px;
line-height: 2.2;
padding-right: 0;
}
@ -1863,7 +1863,7 @@ form.upgrade .hint {
.contextual-help-tabs a {
display: block;
padding: 5px 5px 5px 12px;
line-height: 18px;
line-height: 1.4;
text-decoration: none;
border: 1px solid transparent;
border-right: none;
@ -1879,7 +1879,7 @@ form.upgrade .hint {
margin: 0 -1px 0 0;
border-left: 2px solid #00a0d2;
background: #f6fbfd;
box-shadow: 0 2px 0 rgba(0,0,0,0.02), 0 1px 0 rgba(0,0,0,0.02);
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.02), 0 1px 0 rgba(0, 0, 0, 0.02);
}
.contextual-help-tabs .active a {
@ -1895,7 +1895,7 @@ form.upgrade .hint {
.help-tab-content {
display: none;
margin: 0 22px 12px 0;
line-height: 1.6em;
line-height: 1.6;
}
.help-tab-content.active {
@ -2078,13 +2078,13 @@ html.wp-toolbar {
.postbox .inside {
padding: 0 12px 12px;
line-height: 1.4em;
line-height: 1.4;
font-size: 13px;
}
.stuffbox .inside {
padding: 0;
line-height: 1.4em;
line-height: 1.4;
font-size: 13px;
margin-top: 0;
}
@ -2153,7 +2153,7 @@ html.wp-toolbar {
#wpfooter p {
font-size: 13px;
margin: 0;
line-height: 20px;
line-height: 1.55;
}
#footer-thankyou {
@ -2171,7 +2171,7 @@ html.wp-toolbar {
margin-left: 0.5em; /* half the font size so set the font size properly */
padding: 5px 10px;
font-size: 14px;
line-height: 24px;
line-height: 1.71428571;
font-weight: 600;
background: #e5e5e5;
color: #555;
@ -2183,7 +2183,7 @@ h3 .nav-tab, /* Back-compat for pre-4.4 */
.nav-tab-small .nav-tab {
padding: 5px 14px;
font-size: 12px;
line-height: 16px;
line-height: 1.33;
}
.nav-tab:hover,
@ -2285,7 +2285,7 @@ h1.nav-tab-wrapper, /* Back-compat for pre-4.4 */
/* Back-compat for nav-menus screen */
.nav-menus-php .metabox-holder h3 {
padding: 10px 10px 11px 14px;
line-height: 21px;
line-height: 1.5;
}
#templateside ul li a {
@ -2348,7 +2348,7 @@ body.iframe {
.importers td {
padding-right: 14px;
line-height: 1.5em;
line-height: 1.4;
}
.importers .import-system {
@ -2373,7 +2373,7 @@ body.iframe {
}
.importer-action {
line-height: 20px; /* Same as with .updating-message */
line-height: 1.55; /* Same as with .updating-message */
color: #555;
margin-bottom: 1em;
}
@ -2428,7 +2428,7 @@ body.iframe {
br.clear {
height: 2px;
line-height: 2px;
line-height: 0.15;
}
.checkbox {
@ -2532,7 +2532,7 @@ div.action-links {
background: #f5f5f5;
font-size: 22px;
font-weight: 600;
line-height: 56px;
line-height: 2.4;
position: relative;
height: 56px;
}
@ -2558,15 +2558,15 @@ div.action-links {
font-family: "Helvetica Neue", sans-serif;
display: inline-block;
font-size: 30px;
line-height: 50px;
line-height: 1.68;
box-sizing: border-box;
max-width: 100%;
padding: 0 15px;
margin-top: 174px;
color: #fff;
background: rgba( 30, 30, 30, 0.9 );
text-shadow: 0 1px 3px rgba( 0, 0, 0, 0.4 );
box-shadow: 0 0 30px rgba( 255, 255, 255, 0.1 );
background: rgba(30, 30, 30, 0.9);
text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
border-radius: 8px;
}
@ -2582,7 +2582,7 @@ div.action-links {
height: 250px;
width: 100%;
background: transparent;
box-shadow: inset 0 0 50px 4px rgba( 0, 0, 0, 0.2 ), inset 0 -1px 0 rgba( 0, 0, 0, 0.1 );
box-shadow: inset 0 0 50px 4px rgba(0, 0, 0, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}
#plugin-information-tabs {
@ -2603,7 +2603,7 @@ div.action-links {
padding: 9px 10px;
margin: 0;
height: 18px;
line-height: 18px;
line-height: 1.3;
font-size: 14px;
text-decoration: none;
transition: none;
@ -2795,7 +2795,7 @@ div.action-links {
max-width: 100%;
width: auto;
height: auto;
box-shadow: 0 1px 2px rgba( 0, 0, 0, 0.3 );
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
/* rtl:ignore */
@ -2883,7 +2883,7 @@ div.action-links {
#plugin-information-title.with-banner h2 {
margin-top: 30px;
font-size: 20px;
line-height: 40px;
line-height: 2;
max-width: 85%;
}
@ -3050,7 +3050,7 @@ img {
.js .postbox .handlediv:focus .toggle-indicator:before {
box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8);
0 0 2px 1px rgba(30, 140, 190, 0.8);
}
/* @todo: appears to be Press This only and overridden */
@ -3145,7 +3145,7 @@ img {
}
[role="treeitem"] .folder-label.focus {
color: #124964;
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, 0.8);
}
[role="treeitem"].hover,
[role="treeitem"] .folder-label.hover {
@ -3313,7 +3313,7 @@ img {
}
#documentation label {
line-height: 22px;
line-height: 1.8;
vertical-align: baseline;
font-weight: 600;
}
@ -3374,7 +3374,7 @@ img {
.widget-top .widget-action:focus .toggle-indicator:before {
box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30,140,190,.8);
0 0 2px 1px rgba(30, 140, 190, 0.8);
}
.control-section .accordion-section-title:after,
@ -3472,7 +3472,7 @@ img {
border-left: none;
border-right: none;
padding: 10px 10px 11px 14px;
line-height: 21px;
line-height: 1.55;
background: #fff;
}
@ -3921,7 +3921,7 @@ img {
.filter-drawer .filter-group-feature input,
.filter-drawer .filter-group-feature label {
line-height: 25px;
line-height: 2.1;
}
.filter-drawer .filter-group-feature label {
@ -3930,7 +3930,7 @@ img {
.wp-filter .button.drawer-toggle {
font-size: 13px;
line-height: 26px;
line-height: 2;
height: 28px;
}
@ -3999,10 +3999,17 @@ img {
h1 .nav-tab,
h2 .nav-tab,
h3 .nav-tab {
h3 .nav-tab,
nav .nav-tab {
margin: 10px 10px 0 0;
border-bottom: 1px solid #ccc;
}
.nav-tab-active:hover,
.nav-tab-active:focus,
.nav-tab-active:focus:active {
border-bottom: 1px solid #ccc;
}
}
@media screen and (max-width: 320px) {

File diff suppressed because one or more lines are too long

View file

@ -21,7 +21,7 @@ body {
}
#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked {
background-color: rgba( 0, 0, 0, 0.7 );
background-color: rgba(0, 0, 0, 0.7);
padding: 25px;
}
@ -34,7 +34,7 @@ body {
padding: 25px 109px 25px 25px;
position: relative;
background: #fff;
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
line-height: 1.5;
overflow-y: auto;
text-align: right;
@ -392,7 +392,7 @@ body.trashing #publish-settings {
position: absolute;
z-index: 9;
width: 100%;
box-shadow: 0 1px 0 rgba(0, 0, 0, .1);
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
#customize-controls .customize-section-title.is-in-view {
@ -430,7 +430,7 @@ body.trashing #publish-settings {
#customize-controls .customize-info .preview-notice {
font-size: 13px;
line-height: 24px;
line-height: 1.9;
}
#customize-controls .customize-pane-child .customize-section-title h3,
@ -918,7 +918,7 @@ p.customize-section-description {
.customize-control select,
.customize-control input[type="radio"],
.customize-control input[type="checkbox"] {
line-height: 28px;
line-height: 2;
}
.customize-control input[type="text"],
@ -929,7 +929,7 @@ p.customize-section-description {
.customize-control input[type="tel"],
.customize-control input[type="url"] {
width: 100%;
line-height: 18px;
line-height: 1.3;
margin: 0;
}
@ -945,7 +945,7 @@ p.customize-section-description {
.customize-control select {
width: 100%;
height: 28px;
line-height: 28px;
line-height: 2;
}
.customize-control select[multiple] {
@ -955,7 +955,7 @@ p.customize-section-description {
.customize-control-title {
display: block;
font-size: 14px;
line-height: 24px;
line-height: 1.75;
font-weight: 600;
margin-bottom: 4px;
}
@ -963,7 +963,7 @@ p.customize-section-description {
.customize-control-description {
display: block;
font-style: italic;
line-height: 18px;
line-height: 1.4;
margin-top: 0;
margin-bottom: 5px;
}
@ -984,7 +984,7 @@ p.customize-section-description {
}
.customize-control .customize-inside-control-row {
line-height: 20px;
line-height: 1.6;
display: block;
margin-right: 24px;
padding-top: 6px;
@ -1004,7 +1004,7 @@ p.customize-section-description {
.customize-control-radio .customize-control-title {
margin-bottom: 0;
line-height: 22px;
line-height: 1.6;
}
.customize-control-radio .customize-control-title + .customize-control-description {
@ -1098,7 +1098,7 @@ p.customize-section-description {
.customize-control-dropdown-pages .add-new-toggle {
margin-right: 1px;
font-weight: 600;
line-height: 28px;
line-height: 2.2;
}
#customize-preview iframe {
@ -1379,6 +1379,7 @@ p.customize-section-description {
}
.customize-control .attachment-media-view .placeholder,
.customize-control .attachment-media-view .button-add-media,
.customize-control-header .placeholder {
width: 100%;
position: relative;
@ -1387,7 +1388,27 @@ p.customize-section-description {
border: 1px dashed #b4b9be;
box-sizing: border-box;
padding: 9px 0;
line-height: 20px;
line-height: 1.6;
}
.customize-control .attachment-media-view .button-add-media {
cursor: pointer;
background-color: #edeff0;
color: #32373c;
}
.customize-control .attachment-media-view .button-add-media:hover {
background-color: #fbfbfc;
}
.customize-control .attachment-media-view .button-add-media:focus {
background-color: #fbfbfc;
border-style: solid;
border-color: #5b9dd9;
box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
/* Only visible in Windows High Contrast mode */
outline: 2px solid transparent;
outline-offset: -2px;
}
.customize-control-header .inner {
@ -1532,7 +1553,7 @@ p.customize-section-description {
outline: none;
box-shadow:
0 0 0 1px #5b9dd9,
0 0 3px 1px rgba(30, 140, 190, .8);
0 0 3px 1px rgba(30, 140, 190, 0.8);
}
.customize-control-header .uploaded div:last-child > .choice {
@ -1624,7 +1645,7 @@ p.customize-section-description {
.theme-browser .theme.active .theme-actions,
.wp-customizer .theme-browser .theme .theme-actions {
padding: 10px 15px;
box-shadow: inset 0 1px 0 rgba(0,0,0,0.1);
box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 640px) {
@ -1786,7 +1807,7 @@ p.customize-section-description {
.themes-filter-bar .feature-filter-toggle.open {
background: #eee;
border-color: #999;
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);
transform: translateY(1px);
}
@ -1838,7 +1859,7 @@ p.customize-section-description {
.control-panel-themes .filter-themes-count {
position: relative;
float: left;
line-height: 34px;
line-height: 2.6;
}
.control-panel-themes .filter-themes-count .themes-displayed {
@ -2067,7 +2088,7 @@ p.customize-section-description {
}
.themes-filter-bar .wp-filter-search {
line-height: 25px;
line-height: 1.8;
padding: 6px 30px 6px 10px;
max-width: 100%;
width: 40%;
@ -2195,7 +2216,7 @@ p.customize-section-description {
height: 46px;
width: 26px;
display: block;
line-height: 46px;
line-height: 2.3;
padding: 0 8px 0 8px;
border-left: 1px solid #ddd;
}
@ -2245,7 +2266,7 @@ p.customize-section-description {
}
.wp-customizer .theme-overlay .theme-backdrop {
background: rgba( 238, 238, 238, 0.75 );
background: rgba(238, 238, 238, 0.75);
position: fixed;
z-index: 110;
}
@ -2345,7 +2366,7 @@ body.cheatin {
padding: 1em 2em;
max-width: 700px;
min-width: 0;
box-shadow: 0 1px 3px rgba(0,0,0,0.13);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
}
body.cheatin h1 {
@ -2591,7 +2612,7 @@ body.adding-widget .add-new-widget:before,
right: 16px;
width: 30px;
height: 30px;
line-height: 28px;
line-height: 2.1;
text-align: center;
color: #72777c;
}
@ -2643,7 +2664,7 @@ body.adding-widget .add-new-widget:before,
#available-menu-items-search .clear-results:focus {
box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8);
0 0 2px 1px rgba(30, 140, 190, 0.8);
}
#available-menu-items-search .search-icon:after,
@ -2742,7 +2763,7 @@ body.adding-widget .add-new-widget:before,
.customize-control input[type="radio"] + label + br,
.customize-control input[type="checkbox"] + label + br {
line-height: 32px; /* For widgets checkboxes */
line-height: 2.5; /* For widgets checkboxes */
}
.customize-control .date-time-fields select {
@ -2811,7 +2832,7 @@ body.adding-widget .add-new-widget:before,
position: absolute;
top: 0;
right: 48px;
line-height: 45px;
line-height: 3.2;
font-size: 14px;
padding: 0 12px;
margin: 0;
@ -2942,7 +2963,7 @@ body.adding-widget .add-new-widget:before,
.theme-browser .theme.active .theme-actions,
.wp-customizer .theme-browser .theme .theme-actions {
padding: 9px 15px;
box-shadow: inset 0 1px 0 rgba(0,0,0,0.1);
box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
}
}

File diff suppressed because one or more lines are too long

View file

@ -21,7 +21,7 @@ body {
}
#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked {
background-color: rgba( 0, 0, 0, 0.7 );
background-color: rgba(0, 0, 0, 0.7);
padding: 25px;
}
@ -34,7 +34,7 @@ body {
padding: 25px 25px 25px 109px;
position: relative;
background: #fff;
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
line-height: 1.5;
overflow-y: auto;
text-align: left;
@ -392,7 +392,7 @@ body.trashing #publish-settings {
position: absolute;
z-index: 9;
width: 100%;
box-shadow: 0 1px 0 rgba(0, 0, 0, .1);
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
#customize-controls .customize-section-title.is-in-view {
@ -430,7 +430,7 @@ body.trashing #publish-settings {
#customize-controls .customize-info .preview-notice {
font-size: 13px;
line-height: 24px;
line-height: 1.9;
}
#customize-controls .customize-pane-child .customize-section-title h3,
@ -918,7 +918,7 @@ p.customize-section-description {
.customize-control select,
.customize-control input[type="radio"],
.customize-control input[type="checkbox"] {
line-height: 28px;
line-height: 2;
}
.customize-control input[type="text"],
@ -929,7 +929,7 @@ p.customize-section-description {
.customize-control input[type="tel"],
.customize-control input[type="url"] {
width: 100%;
line-height: 18px;
line-height: 1.3;
margin: 0;
}
@ -945,7 +945,7 @@ p.customize-section-description {
.customize-control select {
width: 100%;
height: 28px;
line-height: 28px;
line-height: 2;
}
.customize-control select[multiple] {
@ -955,7 +955,7 @@ p.customize-section-description {
.customize-control-title {
display: block;
font-size: 14px;
line-height: 24px;
line-height: 1.75;
font-weight: 600;
margin-bottom: 4px;
}
@ -963,7 +963,7 @@ p.customize-section-description {
.customize-control-description {
display: block;
font-style: italic;
line-height: 18px;
line-height: 1.4;
margin-top: 0;
margin-bottom: 5px;
}
@ -984,7 +984,7 @@ p.customize-section-description {
}
.customize-control .customize-inside-control-row {
line-height: 20px;
line-height: 1.6;
display: block;
margin-left: 24px;
padding-top: 6px;
@ -1004,7 +1004,7 @@ p.customize-section-description {
.customize-control-radio .customize-control-title {
margin-bottom: 0;
line-height: 22px;
line-height: 1.6;
}
.customize-control-radio .customize-control-title + .customize-control-description {
@ -1098,7 +1098,7 @@ p.customize-section-description {
.customize-control-dropdown-pages .add-new-toggle {
margin-left: 1px;
font-weight: 600;
line-height: 28px;
line-height: 2.2;
}
#customize-preview iframe {
@ -1379,6 +1379,7 @@ p.customize-section-description {
}
.customize-control .attachment-media-view .placeholder,
.customize-control .attachment-media-view .button-add-media,
.customize-control-header .placeholder {
width: 100%;
position: relative;
@ -1387,7 +1388,27 @@ p.customize-section-description {
border: 1px dashed #b4b9be;
box-sizing: border-box;
padding: 9px 0;
line-height: 20px;
line-height: 1.6;
}
.customize-control .attachment-media-view .button-add-media {
cursor: pointer;
background-color: #edeff0;
color: #32373c;
}
.customize-control .attachment-media-view .button-add-media:hover {
background-color: #fbfbfc;
}
.customize-control .attachment-media-view .button-add-media:focus {
background-color: #fbfbfc;
border-style: solid;
border-color: #5b9dd9;
box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
/* Only visible in Windows High Contrast mode */
outline: 2px solid transparent;
outline-offset: -2px;
}
.customize-control-header .inner {
@ -1532,7 +1553,7 @@ p.customize-section-description {
outline: none;
box-shadow:
0 0 0 1px #5b9dd9,
0 0 3px 1px rgba(30, 140, 190, .8);
0 0 3px 1px rgba(30, 140, 190, 0.8);
}
.customize-control-header .uploaded div:last-child > .choice {
@ -1624,7 +1645,7 @@ p.customize-section-description {
.theme-browser .theme.active .theme-actions,
.wp-customizer .theme-browser .theme .theme-actions {
padding: 10px 15px;
box-shadow: inset 0 1px 0 rgba(0,0,0,0.1);
box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 640px) {
@ -1786,7 +1807,7 @@ p.customize-section-description {
.themes-filter-bar .feature-filter-toggle.open {
background: #eee;
border-color: #999;
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);
transform: translateY(1px);
}
@ -1838,7 +1859,7 @@ p.customize-section-description {
.control-panel-themes .filter-themes-count {
position: relative;
float: right;
line-height: 34px;
line-height: 2.6;
}
.control-panel-themes .filter-themes-count .themes-displayed {
@ -2067,7 +2088,7 @@ p.customize-section-description {
}
.themes-filter-bar .wp-filter-search {
line-height: 25px;
line-height: 1.8;
padding: 6px 10px 6px 30px;
max-width: 100%;
width: 40%;
@ -2195,7 +2216,7 @@ p.customize-section-description {
height: 46px;
width: 26px;
display: block;
line-height: 46px;
line-height: 2.3;
padding: 0 8px 0 8px;
border-right: 1px solid #ddd;
}
@ -2245,7 +2266,7 @@ p.customize-section-description {
}
.wp-customizer .theme-overlay .theme-backdrop {
background: rgba( 238, 238, 238, 0.75 );
background: rgba(238, 238, 238, 0.75);
position: fixed;
z-index: 110;
}
@ -2345,7 +2366,7 @@ body.cheatin {
padding: 1em 2em;
max-width: 700px;
min-width: 0;
box-shadow: 0 1px 3px rgba(0,0,0,0.13);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
}
body.cheatin h1 {
@ -2591,7 +2612,7 @@ body.adding-widget .add-new-widget:before,
left: 16px;
width: 30px;
height: 30px;
line-height: 28px;
line-height: 2.1;
text-align: center;
color: #72777c;
}
@ -2643,7 +2664,7 @@ body.adding-widget .add-new-widget:before,
#available-menu-items-search .clear-results:focus {
box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8);
0 0 2px 1px rgba(30, 140, 190, 0.8);
}
#available-menu-items-search .search-icon:after,
@ -2742,7 +2763,7 @@ body.adding-widget .add-new-widget:before,
.customize-control input[type="radio"] + label + br,
.customize-control input[type="checkbox"] + label + br {
line-height: 32px; /* For widgets checkboxes */
line-height: 2.5; /* For widgets checkboxes */
}
.customize-control .date-time-fields select {
@ -2811,7 +2832,7 @@ body.adding-widget .add-new-widget:before,
position: absolute;
top: 0;
left: 48px;
line-height: 45px;
line-height: 3.2;
font-size: 14px;
padding: 0 12px;
margin: 0;
@ -2942,7 +2963,7 @@ body.adding-widget .add-new-widget:before,
.theme-browser .theme.active .theme-actions,
.wp-customizer .theme-browser .theme .theme-actions {
padding: 9px 15px;
box-shadow: inset 0 1px 0 rgba(0,0,0,0.1);
box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
}
}

File diff suppressed because one or more lines are too long

View file

@ -37,7 +37,7 @@
.customize-control-nav_menu_location .create-menu {
margin-right: 6px;
vertical-align: middle;
line-height: 28px;
line-height: 2.2;
}
#customize-controls .customize-control-nav_menu_name {
@ -870,7 +870,7 @@ li.assigned-to-menu-location .add-new-menu-item {
#available-menu-items .item-add:focus:before {
box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8);
0 0 2px 1px rgba(30, 140, 190, 0.8);
}

File diff suppressed because one or more lines are too long

View file

@ -37,7 +37,7 @@
.customize-control-nav_menu_location .create-menu {
margin-left: 6px;
vertical-align: middle;
line-height: 28px;
line-height: 2.2;
}
#customize-controls .customize-control-nav_menu_name {
@ -870,7 +870,7 @@ li.assigned-to-menu-location .add-new-menu-item {
#available-menu-items .item-add:focus:before {
box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8);
0 0 2px 1px rgba(30, 140, 190, 0.8);
}

File diff suppressed because one or more lines are too long

View file

@ -112,7 +112,7 @@
.control-section.accordion-section.highlighted > .accordion-section-title,
.customize-control-widget_form.highlighted {
outline: none;
box-shadow: 0 0 2px rgba(30,140,190,0.8);
box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
position: relative;
z-index: 1;
}
@ -189,7 +189,7 @@
#customize-theme-controls .widget-area-select .selected {
color: #fff;
text-shadow: 0 -1px 0 rgba(0,0,0,.4);
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
background: #00a0d2;
}

View file

@ -112,7 +112,7 @@
.control-section.accordion-section.highlighted > .accordion-section-title,
.customize-control-widget_form.highlighted {
outline: none;
box-shadow: 0 0 2px rgba(30,140,190,0.8);
box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
position: relative;
z-index: 1;
}
@ -189,7 +189,7 @@
#customize-theme-controls .widget-area-select .selected {
color: #fff;
text-shadow: 0 -1px 0 rgba(0,0,0,.4);
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
background: #00a0d2;
}

View file

@ -104,7 +104,7 @@
margin: 16px 0;
padding: 23px 10px 0;
border: 1px solid #e5e5e5;
box-shadow: 0 1px 1px rgba(0,0,0,0.04);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
background: #fff;
font-size: 13px;
line-height: 2.1em;
@ -599,23 +599,15 @@ body #dashboard-widgets .postbox form .submit {
margin: 12px;
}
#dashboard_quick_press .drafts,
#dashboard_quick_press .easy-blogging {
#dashboard_quick_press .drafts {
padding: 10px 0 0;
}
/* Dashboard Quick Draft - Form styling */
input#save-post {
float: right;
}
form.initial-form.quickpress-open label.prompt {
font-style: normal;
}
form.initial-form.quickpress-open input#title {
height: auto;
#dashboard_quick_press label {
display: inline-block;
margin-bottom: 4px;
}
#dashboard_quick_press input,
@ -624,10 +616,6 @@ form.initial-form.quickpress-open input#title {
margin: 0;
}
#dashboard_quick_press textarea {
resize: vertical;
}
#dashboard-widgets .postbox form .submit {
margin: -39px 0;
float: left;
@ -637,39 +625,11 @@ form.initial-form.quickpress-open input#title {
margin-top: 12px;
}
#title-wrap #title-prompt-text,
.textarea-wrap #content-prompt-text {
color: #72777c;
}
#title-wrap #title-prompt-text {
font-size: 1.1em;
padding: 7px 8px;
}
.input-text-wrap,
.textarea-wrap {
position: relative;
}
.input-text-wrap .prompt,
.textarea-wrap .prompt {
position: absolute;
}
.textarea-wrap #content-prompt-text {
font-size: 1.1em;
padding: 7px 8px;
}
.textarea-wrap textarea#content {
margin: 0 0 8px;
padding: 6px 7px;
}
#quick-press textarea#content {
min-height: 90px;
max-height: 1300px;
margin: 0 0 8px;
padding: 6px 7px;
resize: none;
}
@ -1000,24 +960,6 @@ form.initial-form.quickpress-open input#title {
font-size: 13px;
}
/* QuickDraft */
#title-wrap label,
#description-wrap label {
cursor: text;
}
#title-wrap #title {
padding: 2px 6px;
font-size: 1.3em;
outline: none;
}
#title-wrap #title-prompt-text {
font-size: 1.1em;
padding: 5px 8px;
}
/* Feeds */
.rss-widget ul {
margin: 0;

File diff suppressed because one or more lines are too long

View file

@ -104,7 +104,7 @@
margin: 16px 0;
padding: 23px 10px 0;
border: 1px solid #e5e5e5;
box-shadow: 0 1px 1px rgba(0,0,0,0.04);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
background: #fff;
font-size: 13px;
line-height: 2.1em;
@ -599,23 +599,15 @@ body #dashboard-widgets .postbox form .submit {
margin: 12px;
}
#dashboard_quick_press .drafts,
#dashboard_quick_press .easy-blogging {
#dashboard_quick_press .drafts {
padding: 10px 0 0;
}
/* Dashboard Quick Draft - Form styling */
input#save-post {
float: left;
}
form.initial-form.quickpress-open label.prompt {
font-style: normal;
}
form.initial-form.quickpress-open input#title {
height: auto;
#dashboard_quick_press label {
display: inline-block;
margin-bottom: 4px;
}
#dashboard_quick_press input,
@ -624,10 +616,6 @@ form.initial-form.quickpress-open input#title {
margin: 0;
}
#dashboard_quick_press textarea {
resize: vertical;
}
#dashboard-widgets .postbox form .submit {
margin: -39px 0;
float: right;
@ -637,39 +625,11 @@ form.initial-form.quickpress-open input#title {
margin-top: 12px;
}
#title-wrap #title-prompt-text,
.textarea-wrap #content-prompt-text {
color: #72777c;
}
#title-wrap #title-prompt-text {
font-size: 1.1em;
padding: 7px 8px;
}
.input-text-wrap,
.textarea-wrap {
position: relative;
}
.input-text-wrap .prompt,
.textarea-wrap .prompt {
position: absolute;
}
.textarea-wrap #content-prompt-text {
font-size: 1.1em;
padding: 7px 8px;
}
.textarea-wrap textarea#content {
margin: 0 0 8px;
padding: 6px 7px;
}
#quick-press textarea#content {
min-height: 90px;
max-height: 1300px;
margin: 0 0 8px;
padding: 6px 7px;
resize: none;
}
@ -1000,24 +960,6 @@ form.initial-form.quickpress-open input#title {
font-size: 13px;
}
/* QuickDraft */
#title-wrap label,
#description-wrap label {
cursor: text;
}
#title-wrap #title {
padding: 2px 6px;
font-size: 1.3em;
outline: none;
}
#title-wrap #title-prompt-text {
font-size: 1.1em;
padding: 5px 8px;
}
/* Feeds */
.rss-widget ul {
margin: 0;

File diff suppressed because one or more lines are too long

View file

@ -154,7 +154,7 @@ body.post-new-php .submitbox .submitdelete {
position: relative;
min-width: 255px;
border: 1px solid #e5e5e5;
box-shadow: 0 1px 1px rgba(0,0,0,0.04);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
background: #fff;
}
@ -312,7 +312,7 @@ form#tags-filter {
border: 1px solid #e5e5e5;
border-top: none;
background-color: #f7f7f7;
box-shadow: 0 1px 1px rgba(0,0,0,0.04);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
z-index: 999;
}
@ -496,6 +496,7 @@ span.wp-media-buttons-icon:before {
#timestampdiv input {
border-width: 1px;
border-style: solid;
text-align: center;
}
.notification-dialog {
@ -506,7 +507,7 @@ span.wp-media-buttons-icon:before {
width: 450px;
margin-right: -225px;
background: #fff;
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
line-height: 1.5;
z-index: 1000005;
overflow-y: auto;
@ -862,33 +863,20 @@ span.wp-media-buttons-icon:before {
11.4 - Post formats
------------------------------------------------------------------------------*/
.post-state-format {
overflow: hidden;
.post-format-icon::before {
display: inline-block;
vertical-align: middle;
height: 20px;
width: 20px;
margin-left: 5px;
margin-top: -4px;
}
.post-state-format:before {
display: block;
height: 20px;
width: 20px;
font: normal 20px/1 dashicons !important;
margin-left: 7px;
color: #ddd;
font: normal 20px/1 dashicons;
speak: none;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.post-state-format:before,
.post-format-icon:before {
color: #ddd;
transition: all .1s ease-in-out;
}
a.post-state-format:hover:before,
a.post-format-icon:hover:before {
color: #00a0d2;
}
@ -897,7 +885,7 @@ a.post-format-icon:hover:before {
line-height: 2em;
}
#post-formats-select .post-format-icon:before {
#post-formats-select .post-format-icon::before {
top: 5px;
}
@ -906,77 +894,47 @@ input.post-format {
}
label.post-format-icon {
margin-right: 0px;
padding: 2px 0px 2px 0;
margin-right: 0;
padding: 2px 0;
}
.post-format-icon:before {
position: relative;
display: inline-block;
margin-left: 7px;
font: normal 20px/1 dashicons;
speak: none;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.post-state-format.post-format-standard:before,
.post-format-icon.post-format-standard:before,
a.post-state-format.format-standard:before {
.post-format-icon.post-format-standard::before {
content: "\f109";
}
.post-state-format.post-format-image:before,
.post-format-icon.post-format-image:before,
a.post-state-format.format-image:before {
.post-format-icon.post-format-image::before {
content: "\f128";
}
.post-state-format.post-format-gallery:before,
.post-format-icon.post-format-gallery:before,
a.post-state-format.format-gallery:before {
.post-format-icon.post-format-gallery::before {
content: "\f161";
}
.post-state-format.post-format-audio:before,
.post-format-icon.post-format-audio:before,
a.post-state-format.format-audio:before {
.post-format-icon.post-format-audio::before {
content: "\f127";
}
.post-state-format.post-format-video:before,
.post-format-icon.post-format-video:before,
a.post-state-format.format-video:before {
.post-format-icon.post-format-video::before {
content: "\f126";
}
.post-state-format.post-format-chat:before,
.post-format-icon.post-format-chat:before,
a.post-state-format.format-chat:before {
.post-format-icon.post-format-chat::before {
content: "\f125";
}
.post-state-format.post-format-status:before,
.post-format-icon.post-format-status:before,
a.post-state-format.format-status:before {
.post-format-icon.post-format-status::before {
content: "\f130";
}
.post-state-format.post-format-aside:before,
.post-format-icon.post-format-aside:before,
a.post-state-format.format-aside:before {
.post-format-icon.post-format-aside::before {
content: "\f123";
}
.post-state-format.post-format-quote:before,
.post-format-icon.post-format-quote:before,
a.post-state-format.format-quote:before {
.post-format-icon.post-format-quote::before {
content: "\f122";
}
.post-state-format.post-format-link:before,
.post-format-icon.post-format-link:before,
a.post-state-format.format-link:before {
.post-format-icon.post-format-link::before {
content: "\f103";
}
@ -1315,12 +1273,10 @@ table.links-table {
/* DFW 2
-------------------------------------------------------------- */
#wp-content-wrap .mce-wp-dfw,
#qt_content_dfw {
display: none;
}
.wp-editor-expand #wp-content-wrap .mce-wp-dfw,
.wp-editor-expand #qt_content_dfw {
display: inline-block;
}

File diff suppressed because one or more lines are too long

View file

@ -154,7 +154,7 @@ body.post-new-php .submitbox .submitdelete {
position: relative;
min-width: 255px;
border: 1px solid #e5e5e5;
box-shadow: 0 1px 1px rgba(0,0,0,0.04);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
background: #fff;
}
@ -312,7 +312,7 @@ form#tags-filter {
border: 1px solid #e5e5e5;
border-top: none;
background-color: #f7f7f7;
box-shadow: 0 1px 1px rgba(0,0,0,0.04);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
z-index: 999;
}
@ -496,6 +496,7 @@ span.wp-media-buttons-icon:before {
#timestampdiv input {
border-width: 1px;
border-style: solid;
text-align: center;
}
.notification-dialog {
@ -506,7 +507,7 @@ span.wp-media-buttons-icon:before {
width: 450px;
margin-left: -225px;
background: #fff;
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
line-height: 1.5;
z-index: 1000005;
overflow-y: auto;
@ -862,33 +863,20 @@ span.wp-media-buttons-icon:before {
11.4 - Post formats
------------------------------------------------------------------------------*/
.post-state-format {
overflow: hidden;
.post-format-icon::before {
display: inline-block;
vertical-align: middle;
height: 20px;
width: 20px;
margin-right: 5px;
margin-top: -4px;
}
.post-state-format:before {
display: block;
height: 20px;
width: 20px;
font: normal 20px/1 dashicons !important;
margin-right: 7px;
color: #ddd;
font: normal 20px/1 dashicons;
speak: none;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.post-state-format:before,
.post-format-icon:before {
color: #ddd;
transition: all .1s ease-in-out;
}
a.post-state-format:hover:before,
a.post-format-icon:hover:before {
color: #00a0d2;
}
@ -897,7 +885,7 @@ a.post-format-icon:hover:before {
line-height: 2em;
}
#post-formats-select .post-format-icon:before {
#post-formats-select .post-format-icon::before {
top: 5px;
}
@ -906,77 +894,47 @@ input.post-format {
}
label.post-format-icon {
margin-left: 0px;
padding: 2px 0 2px 0px;
margin-left: 0;
padding: 2px 0;
}
.post-format-icon:before {
position: relative;
display: inline-block;
margin-right: 7px;
font: normal 20px/1 dashicons;
speak: none;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.post-state-format.post-format-standard:before,
.post-format-icon.post-format-standard:before,
a.post-state-format.format-standard:before {
.post-format-icon.post-format-standard::before {
content: "\f109";
}
.post-state-format.post-format-image:before,
.post-format-icon.post-format-image:before,
a.post-state-format.format-image:before {
.post-format-icon.post-format-image::before {
content: "\f128";
}
.post-state-format.post-format-gallery:before,
.post-format-icon.post-format-gallery:before,
a.post-state-format.format-gallery:before {
.post-format-icon.post-format-gallery::before {
content: "\f161";
}
.post-state-format.post-format-audio:before,
.post-format-icon.post-format-audio:before,
a.post-state-format.format-audio:before {
.post-format-icon.post-format-audio::before {
content: "\f127";
}
.post-state-format.post-format-video:before,
.post-format-icon.post-format-video:before,
a.post-state-format.format-video:before {
.post-format-icon.post-format-video::before {
content: "\f126";
}
.post-state-format.post-format-chat:before,
.post-format-icon.post-format-chat:before,
a.post-state-format.format-chat:before {
.post-format-icon.post-format-chat::before {
content: "\f125";
}
.post-state-format.post-format-status:before,
.post-format-icon.post-format-status:before,
a.post-state-format.format-status:before {
.post-format-icon.post-format-status::before {
content: "\f130";
}
.post-state-format.post-format-aside:before,
.post-format-icon.post-format-aside:before,
a.post-state-format.format-aside:before {
.post-format-icon.post-format-aside::before {
content: "\f123";
}
.post-state-format.post-format-quote:before,
.post-format-icon.post-format-quote:before,
a.post-state-format.format-quote:before {
.post-format-icon.post-format-quote::before {
content: "\f122";
}
.post-state-format.post-format-link:before,
.post-format-icon.post-format-link:before,
a.post-state-format.format-link:before {
.post-format-icon.post-format-link::before {
content: "\f103";
}
@ -1315,12 +1273,10 @@ table.links-table {
/* DFW 2
-------------------------------------------------------------- */
#wp-content-wrap .mce-wp-dfw,
#qt_content_dfw {
display: none;
}
.wp-editor-expand #wp-content-wrap .mce-wp-dfw,
.wp-editor-expand #qt_content_dfw {
display: inline-block;
}

File diff suppressed because one or more lines are too long

View file

@ -24,7 +24,7 @@ input[type="week"],
select,
textarea {
border: 1px solid #ddd;
box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.07 );
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
background-color: #fff;
color: #32373c;
outline: none;
@ -51,7 +51,7 @@ input[type="radio"]:focus,
select:focus,
textarea:focus {
border-color: #5b9dd9;
box-shadow: 0 0 2px rgba( 30, 140, 190, 0.8 );
box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
/* Only visible in Windows High Contrast mode */
outline: 2px solid transparent;
}
@ -86,7 +86,7 @@ input[type="radio"] {
width: 16px;
min-width: 16px;
-webkit-appearance: none;
box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.1 );
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
transition: .05s border-color ease-in-out;
}
@ -243,7 +243,7 @@ textarea[readonly] {
.form-invalid select,
.form-invalid select:focus {
border-color: #dc3232 !important;
box-shadow: 0 0 2px rgba( 204, 0, 0, 0.8 );
box-shadow: 0 0 2px rgba(204, 0, 0, 0.8);
}
.form-table .form-required.form-invalid td:after {
@ -277,10 +277,10 @@ select:disabled,
select.disabled,
textarea:disabled,
textarea.disabled {
background: rgba( 255, 255, 255, 0.5 );
border-color: rgba( 222, 222, 222, 0.75 );
box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.04 );
color: rgba( 51, 51, 51, 0.5 );
background: rgba(255, 255, 255, 0.5);
border-color: rgba(222, 222, 222, 0.75);
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
color: rgba(51, 51, 51, 0.5);
}
input[type="file"]:disabled,
@ -427,11 +427,16 @@ input[type="number"].tiny-text {
margin-right: 1em;
}
button.wp-hide-pw > .dashicons {
.wp-hide-pw > .dashicons,
.wp-cancel-pw > .dashicons {
position: relative;
top: 3px;
}
.wp-cancel-pw .dashicons-no {
display: none;
}
label,
#your-profile label + a {
vertical-align: middle;
@ -459,7 +464,7 @@ fieldset label,
background-color: #eee;
border: 1px solid #ddd;
color: #23282d;
margin: -2px 1px 5px 5px;
margin: -1px 0 5px;
padding: 3px 5px;
text-align: center;
width: 25em;
@ -515,13 +520,25 @@ fieldset label,
padding-top: 8px;
}
.wp-pwd [type="text"],
.wp-pwd [type="password"] {
margin: 0;
/* Same height as the buttons */
line-height: 20px;
min-height: 28px;
max-height: 40px;
}
#pass1-text,
.show-password #pass1 {
display: none;
}
.show-password #pass1-text
{
#pass1-text::-ms-clear {
display: none;
}
.show-password #pass1-text {
display: inline-block;
}
@ -579,7 +596,7 @@ ul#add-to-blog-users {
position: absolute;
z-index: 10000;
border: 1px solid #5b9dd9;
box-shadow: 0 1px 2px rgba( 30, 140, 190, 0.8 );
box-shadow: 0 1px 2px rgba(30, 140, 190, 0.8);
background-color: #fff;
}
@ -782,7 +799,7 @@ table.form-table td .updated p {
min-width: 255px;
max-width: 520px;
border: 1px solid #e5e5e5;
box-shadow: 0 1px 1px rgba(0,0,0,0.04);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
background: #fff;
}
@ -1114,7 +1131,7 @@ table.form-table td .updated p {
.privacy_requests tbody th {
border-right: 4px solid #fff;
background: #fff;
box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}
.privacy_requests tbody .has-request-results th {
@ -1127,7 +1144,7 @@ table.form-table td .updated p {
.privacy_requests tbody td {
background: #fff;
box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}
.privacy_requests tbody .has-request-results td {
@ -1462,31 +1479,44 @@ table.form-table td .updated p {
.wp-pwd [type="text"],
.wp-pwd [type="password"] {
padding-left: 40px;
padding-left: 88px;
}
.wp-pwd button.button {
background: transparent;
border: none;
border: 1px solid transparent;
box-shadow: none;
line-height: 2;
margin: 0;
padding: 5px 10px;
padding: 5px 9px;
position: absolute;
left: 0;
top: 0;
}
.wp-pwd button.wp-hide-pw {
left: 40px;
}
.wp-pwd button.button:hover,
.wp-pwd button.button:focus,
.wp-pwd button.button:focus {
background: transparent;
}
.wp-pwd button.button:active {
background: transparent;
box-shadow: none;
transform: none;
}
.wp-pwd .button .text {
display: none;
}
.wp-cancel-pw .dashicons-no {
display: inline-block;
}
.options-general-php input[type="text"].small-text {
max-width: 6.25em;
margin: 0;
@ -1533,12 +1563,6 @@ table.form-table td .updated p {
.form-wrap .form-field {
padding: 0;
}
/* users */
#profile-page .form-table textarea {
max-width: 400px;
width: auto;
}
}
@media only screen and (max-height: 480px), screen and (max-width: 450px) {

File diff suppressed because one or more lines are too long

View file

@ -24,7 +24,7 @@ input[type="week"],
select,
textarea {
border: 1px solid #ddd;
box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.07 );
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
background-color: #fff;
color: #32373c;
outline: none;
@ -51,7 +51,7 @@ input[type="radio"]:focus,
select:focus,
textarea:focus {
border-color: #5b9dd9;
box-shadow: 0 0 2px rgba( 30, 140, 190, 0.8 );
box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
/* Only visible in Windows High Contrast mode */
outline: 2px solid transparent;
}
@ -86,7 +86,7 @@ input[type="radio"] {
width: 16px;
min-width: 16px;
-webkit-appearance: none;
box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.1 );
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
transition: .05s border-color ease-in-out;
}
@ -243,7 +243,7 @@ textarea[readonly] {
.form-invalid select,
.form-invalid select:focus {
border-color: #dc3232 !important;
box-shadow: 0 0 2px rgba( 204, 0, 0, 0.8 );
box-shadow: 0 0 2px rgba(204, 0, 0, 0.8);
}
.form-table .form-required.form-invalid td:after {
@ -277,10 +277,10 @@ select:disabled,
select.disabled,
textarea:disabled,
textarea.disabled {
background: rgba( 255, 255, 255, 0.5 );
border-color: rgba( 222, 222, 222, 0.75 );
box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.04 );
color: rgba( 51, 51, 51, 0.5 );
background: rgba(255, 255, 255, 0.5);
border-color: rgba(222, 222, 222, 0.75);
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
color: rgba(51, 51, 51, 0.5);
}
input[type="file"]:disabled,
@ -427,11 +427,16 @@ input[type="number"].tiny-text {
margin-left: 1em;
}
button.wp-hide-pw > .dashicons {
.wp-hide-pw > .dashicons,
.wp-cancel-pw > .dashicons {
position: relative;
top: 3px;
}
.wp-cancel-pw .dashicons-no {
display: none;
}
label,
#your-profile label + a {
vertical-align: middle;
@ -459,7 +464,7 @@ fieldset label,
background-color: #eee;
border: 1px solid #ddd;
color: #23282d;
margin: -2px 5px 5px 1px;
margin: -1px 0 5px;
padding: 3px 5px;
text-align: center;
width: 25em;
@ -515,13 +520,25 @@ fieldset label,
padding-top: 8px;
}
.wp-pwd [type="text"],
.wp-pwd [type="password"] {
margin: 0;
/* Same height as the buttons */
line-height: 20px;
min-height: 28px;
max-height: 40px;
}
#pass1-text,
.show-password #pass1 {
display: none;
}
.show-password #pass1-text
{
#pass1-text::-ms-clear {
display: none;
}
.show-password #pass1-text {
display: inline-block;
}
@ -579,7 +596,7 @@ ul#add-to-blog-users {
position: absolute;
z-index: 10000;
border: 1px solid #5b9dd9;
box-shadow: 0 1px 2px rgba( 30, 140, 190, 0.8 );
box-shadow: 0 1px 2px rgba(30, 140, 190, 0.8);
background-color: #fff;
}
@ -782,7 +799,7 @@ table.form-table td .updated p {
min-width: 255px;
max-width: 520px;
border: 1px solid #e5e5e5;
box-shadow: 0 1px 1px rgba(0,0,0,0.04);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
background: #fff;
}
@ -1114,7 +1131,7 @@ table.form-table td .updated p {
.privacy_requests tbody th {
border-left: 4px solid #fff;
background: #fff;
box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}
.privacy_requests tbody .has-request-results th {
@ -1127,7 +1144,7 @@ table.form-table td .updated p {
.privacy_requests tbody td {
background: #fff;
box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}
.privacy_requests tbody .has-request-results td {
@ -1462,31 +1479,44 @@ table.form-table td .updated p {
.wp-pwd [type="text"],
.wp-pwd [type="password"] {
padding-right: 40px;
padding-right: 88px;
}
.wp-pwd button.button {
background: transparent;
border: none;
border: 1px solid transparent;
box-shadow: none;
line-height: 2;
margin: 0;
padding: 5px 10px;
padding: 5px 9px;
position: absolute;
right: 0;
top: 0;
}
.wp-pwd button.wp-hide-pw {
right: 40px;
}
.wp-pwd button.button:hover,
.wp-pwd button.button:focus,
.wp-pwd button.button:focus {
background: transparent;
}
.wp-pwd button.button:active {
background: transparent;
box-shadow: none;
transform: none;
}
.wp-pwd .button .text {
display: none;
}
.wp-cancel-pw .dashicons-no {
display: inline-block;
}
.options-general-php input[type="text"].small-text {
max-width: 6.25em;
margin: 0;
@ -1533,12 +1563,6 @@ table.form-table td .updated p {
.form-wrap .form-field {
padding: 0;
}
/* users */
#profile-page .form-table textarea {
max-width: 400px;
width: auto;
}
}
@media only screen and (max-height: 480px), screen and (max-width: 450px) {

File diff suppressed because one or more lines are too long

View file

@ -471,12 +471,6 @@ div#dashboard-widgets {
display: inline;
}
a.post-state-format {
text-indent: 0;
line-height: 0;
font-size: 0;
}
table.ie-fixed {
table-layout: fixed;
}

File diff suppressed because one or more lines are too long

View file

@ -471,12 +471,6 @@ div#dashboard-widgets {
display: inline;
}
a.post-state-format {
text-indent: 0;
line-height: 0;
font-size: 0;
}
table.ie-fixed {
table-layout: fixed;
}

File diff suppressed because one or more lines are too long

View file

@ -11,7 +11,7 @@ body {
padding: 20px 20px 10px 20px;
max-width: 700px;
-webkit-font-smoothing: subpixel-antialiased;
box-shadow: 0 1px 3px rgba(0,0,0,0.13);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
}
a {
@ -27,7 +27,7 @@ a:focus {
color: #124964;
box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8);
0 0 2px 1px rgba(30, 140, 190, 0.8);
}
.ie8 a:focus {
@ -163,7 +163,7 @@ textarea {
font-size: 15px;
padding: 3px 5px;
border: 1px solid #ddd;
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,

View file

@ -11,7 +11,7 @@ body {
padding: 20px 20px 10px 20px;
max-width: 700px;
-webkit-font-smoothing: subpixel-antialiased;
box-shadow: 0 1px 3px rgba(0,0,0,0.13);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
}
a {
@ -27,7 +27,7 @@ a:focus {
color: #124964;
box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8);
0 0 2px 1px rgba(30, 140, 190, 0.8);
}
.ie8 a:focus {
@ -163,7 +163,7 @@ textarea {
font-size: 15px;
padding: 3px 5px;
border: 1px solid #ddd;
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,

View file

@ -152,10 +152,19 @@
overflow: hidden;
}
#replysubmit .reply-submit-buttons {
margin-bottom: 0;
}
#replysubmit .button {
margin-left: 5px;
}
#replysubmit .spinner {
float: none;
margin: -4px 0 0;
}
#replyrow.inline-edit-row fieldset.comment-reply {
font-size: inherit;
line-height: inherit;
@ -497,7 +506,7 @@ th.asc a:focus span.sorting-indicator:before {
.wp-list-table .toggle-row:focus:before {
box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8);
0 0 2px 1px rgba(30, 140, 190, 0.8);
}
.ie8 .wp-list-table .toggle-row:focus:before {
@ -1202,15 +1211,15 @@ ul.cat-checklist {
.plugin-install #the-list td,
.upgrade .plugins td,
.upgrade .plugins th {
box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}
.plugins tr.active.plugin-update-tr + tr.inactive th,
.plugins tr.active.plugin-update-tr + tr.inactive td,
.plugins tr.active + tr.inactive th,
.plugins tr.active + tr.inactive td {
border-top: 1px solid rgba(0,0,0,0.03);
box-shadow: inset 0 1px 0 rgba(0,0,0,0.02), inset 0 -1px 0 #e1e1e1;
border-top: 1px solid rgba(0, 0, 0, 0.03);
box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.02), inset 0 -1px 0 #e1e1e1;
}
.plugins .update td,
@ -1248,7 +1257,7 @@ ul.cat-checklist {
.plugins .plugin-title .dashicons:before {
padding: 2px;
background-color: #eee;
box-shadow: inset 0 0 10px rgba(160,165,170,.15);
box-shadow: inset 0 0 10px rgba(160, 165, 170, 0.15);
font-size: 60px;
color: #B4B9BE;
}
@ -1281,7 +1290,7 @@ ul.cat-checklist {
}
.plugins .plugin-update-tr .plugin-update {
box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
overflow: hidden; /* clearfix */
padding: 0;
}
@ -1301,6 +1310,31 @@ ul.cat-checklist {
text-decoration: underline;
}
.plugins tr.paused th.check-column {
border-right: 4px solid #d54e21;
}
.plugins tr.paused th,
.plugins tr.paused td {
background-color: #fef7f1;
}
.plugins tr.paused .plugin-title,
.plugins .paused .dashicons-warning {
color: #dc3232;
}
.plugins .paused .error-display p,
.plugins .paused .error-display code {
font-size: 90%;
font-style: italic;
color: rgb( 0, 0, 0, 0.7 );
}
.plugins .resume-link {
color: #dc3232;
}
.plugin-card .update-now:before {
color: #f56e28;
content: "\f463";
@ -2123,7 +2157,7 @@ div.action-links,
table.plugin-install #the-list tr {
display: block;
box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}
.plugin-card {

File diff suppressed because one or more lines are too long

View file

@ -152,10 +152,19 @@
overflow: hidden;
}
#replysubmit .reply-submit-buttons {
margin-bottom: 0;
}
#replysubmit .button {
margin-right: 5px;
}
#replysubmit .spinner {
float: none;
margin: -4px 0 0;
}
#replyrow.inline-edit-row fieldset.comment-reply {
font-size: inherit;
line-height: inherit;
@ -497,7 +506,7 @@ th.asc a:focus span.sorting-indicator:before {
.wp-list-table .toggle-row:focus:before {
box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8);
0 0 2px 1px rgba(30, 140, 190, 0.8);
}
.ie8 .wp-list-table .toggle-row:focus:before {
@ -1202,15 +1211,15 @@ ul.cat-checklist {
.plugin-install #the-list td,
.upgrade .plugins td,
.upgrade .plugins th {
box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}
.plugins tr.active.plugin-update-tr + tr.inactive th,
.plugins tr.active.plugin-update-tr + tr.inactive td,
.plugins tr.active + tr.inactive th,
.plugins tr.active + tr.inactive td {
border-top: 1px solid rgba(0,0,0,0.03);
box-shadow: inset 0 1px 0 rgba(0,0,0,0.02), inset 0 -1px 0 #e1e1e1;
border-top: 1px solid rgba(0, 0, 0, 0.03);
box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.02), inset 0 -1px 0 #e1e1e1;
}
.plugins .update td,
@ -1248,7 +1257,7 @@ ul.cat-checklist {
.plugins .plugin-title .dashicons:before {
padding: 2px;
background-color: #eee;
box-shadow: inset 0 0 10px rgba(160,165,170,.15);
box-shadow: inset 0 0 10px rgba(160, 165, 170, 0.15);
font-size: 60px;
color: #B4B9BE;
}
@ -1281,7 +1290,7 @@ ul.cat-checklist {
}
.plugins .plugin-update-tr .plugin-update {
box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
overflow: hidden; /* clearfix */
padding: 0;
}
@ -1301,6 +1310,31 @@ ul.cat-checklist {
text-decoration: underline;
}
.plugins tr.paused th.check-column {
border-left: 4px solid #d54e21;
}
.plugins tr.paused th,
.plugins tr.paused td {
background-color: #fef7f1;
}
.plugins tr.paused .plugin-title,
.plugins .paused .dashicons-warning {
color: #dc3232;
}
.plugins .paused .error-display p,
.plugins .paused .error-display code {
font-size: 90%;
font-style: italic;
color: rgb( 0, 0, 0, 0.7 );
}
.plugins .resume-link {
color: #dc3232;
}
.plugin-card .update-now:before {
color: #f56e28;
content: "\f463";
@ -2123,7 +2157,7 @@ div.action-links,
table.plugin-install #the-list tr {
display: block;
box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}
.plugin-card {

File diff suppressed because one or more lines are too long

View file

@ -37,7 +37,7 @@ a:focus {
color: #124964;
box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8);
0 0 2px 1px rgba(30, 140, 190, 0.8);
}
.ie8 a:focus {
@ -56,7 +56,7 @@ p {
margin-right: 0;
margin-bottom: 20px;
background-color: #fff;
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 .success {
@ -79,22 +79,49 @@ p {
}
.login .password-input-wrapper {
display: table;
position: relative;
}
.login .input.password-input {
display: table-cell;
margin: 0;
}
.login .input::-ms-clear {
display: none;
}
.login .pw-weak {
margin-bottom: 15px;
}
.login .button.button-secondary {
display: table-cell;
border-radius: 0;
vertical-align: middle;
background: transparent;
border: 1px solid transparent;
box-shadow: none;
font-size: 14px;
line-height: 2;
height: auto;
margin: 0;
padding: 5px 9px;
position: absolute;
left: 0;
top: 0;
}
.login .button.button-secondary:hover {
background: transparent;
}
.login .button.button-secondary:focus {
background: transparent;
border-color: #5b9dd9;
box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
}
.login .button.button-secondary:active {
background: transparent;
box-shadow: none;
transform: none;
}
.login form {
@ -104,7 +131,7 @@ p {
font-weight: 400;
overflow: hidden;
background: #fff;
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 {
@ -127,7 +154,6 @@ p {
}
.login label {
color: #72777c;
font-size: 14px;
}
@ -209,10 +235,15 @@ p {
.login input[type="text"] {
font-size: 24px;
width: 100%;
padding: 3px;
padding: 5px;
margin: 2px 0 16px 6px;
}
.login-action-rp form .input,
.login-action-rp input[type="text"] {
padding: 5px 5px 5px 45px;
}
.login form .input,
.login input[type="text"],
.login form input[type="checkbox"] {

File diff suppressed because one or more lines are too long

View file

@ -37,7 +37,7 @@ a:focus {
color: #124964;
box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8);
0 0 2px 1px rgba(30, 140, 190, 0.8);
}
.ie8 a:focus {
@ -56,7 +56,7 @@ p {
margin-left: 0;
margin-bottom: 20px;
background-color: #fff;
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 .success {
@ -79,22 +79,49 @@ p {
}
.login .password-input-wrapper {
display: table;
position: relative;
}
.login .input.password-input {
display: table-cell;
margin: 0;
}
.login .input::-ms-clear {
display: none;
}
.login .pw-weak {
margin-bottom: 15px;
}
.login .button.button-secondary {
display: table-cell;
border-radius: 0;
vertical-align: middle;
background: transparent;
border: 1px solid transparent;
box-shadow: none;
font-size: 14px;
line-height: 2;
height: auto;
margin: 0;
padding: 5px 9px;
position: absolute;
right: 0;
top: 0;
}
.login .button.button-secondary:hover {
background: transparent;
}
.login .button.button-secondary:focus {
background: transparent;
border-color: #5b9dd9;
box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
}
.login .button.button-secondary:active {
background: transparent;
box-shadow: none;
transform: none;
}
.login form {
@ -104,7 +131,7 @@ p {
font-weight: 400;
overflow: hidden;
background: #fff;
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 {
@ -127,7 +154,6 @@ p {
}
.login label {
color: #72777c;
font-size: 14px;
}
@ -209,10 +235,15 @@ p {
.login input[type="text"] {
font-size: 24px;
width: 100%;
padding: 3px;
padding: 5px;
margin: 2px 6px 16px 0;
}
.login-action-rp form .input,
.login-action-rp input[type="text"] {
padding: 5px 45px 5px 5px;
}
.login form .input,
.login input[type="text"],
.login form input[type="checkbox"] {

File diff suppressed because one or more lines are too long

View file

@ -164,7 +164,7 @@
overflow: hidden;
border-radius: 22px;
background: #ddd;
box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.media-item .bar {
@ -174,7 +174,7 @@
margin-top: -22px;
border-radius: 22px;
background-color: #0073aa;
box-shadow: inset 0 0 2px rgba(0,0,0,0.3);
box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
}
.media-item .progress .percent {
@ -186,7 +186,7 @@
text-align: center;
line-height: 22px;
font-weight: 400;
text-shadow: 0 1px 2px rgba(0,0,0,0.2);
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.upload-php .fixed .column-parent {
@ -222,7 +222,7 @@
.find-box {
background-color: #fff;
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
width: 600px;
overflow: hidden;
margin-right: -300px;
@ -312,7 +312,7 @@
#find-posts-close:focus {
box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8);
0 0 2px 1px rgba(30, 140, 190, 0.8);
/* Only visible in Windows High Contrast mode */
outline: 2px solid transparent;
outline-offset: -2px;
@ -825,6 +825,13 @@ border color while dragging a file over the uploader drop area */
/*------------------------------------------------------------------------------
14.2 - Image Editor
------------------------------------------------------------------------------*/
.wp_attachment_details .attachment-alt-text {
margin-bottom: 5px;
}
.wp_attachment_details .attachment-alt-text-description {
margin-top: 5px;
}
.wp_attachment_details label[for="content"] {
font-size: 13px;
@ -1091,7 +1098,7 @@ border color while dragging a file over the uploader drop area */
.image-editor .imgedit-settings .imgedit-help-toggle:focus {
color: #0074a2;
border-color: #5b9dd9;
box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
/* Only visible in Windows High Contrast mode */
outline: 2px solid transparent;
}

File diff suppressed because one or more lines are too long

View file

@ -164,7 +164,7 @@
overflow: hidden;
border-radius: 22px;
background: #ddd;
box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.media-item .bar {
@ -174,7 +174,7 @@
margin-top: -22px;
border-radius: 22px;
background-color: #0073aa;
box-shadow: inset 0 0 2px rgba(0,0,0,0.3);
box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
}
.media-item .progress .percent {
@ -186,7 +186,7 @@
text-align: center;
line-height: 22px;
font-weight: 400;
text-shadow: 0 1px 2px rgba(0,0,0,0.2);
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.upload-php .fixed .column-parent {
@ -222,7 +222,7 @@
.find-box {
background-color: #fff;
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
width: 600px;
overflow: hidden;
margin-left: -300px;
@ -312,7 +312,7 @@
#find-posts-close:focus {
box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8);
0 0 2px 1px rgba(30, 140, 190, 0.8);
/* Only visible in Windows High Contrast mode */
outline: 2px solid transparent;
outline-offset: -2px;
@ -825,6 +825,13 @@ border color while dragging a file over the uploader drop area */
/*------------------------------------------------------------------------------
14.2 - Image Editor
------------------------------------------------------------------------------*/
.wp_attachment_details .attachment-alt-text {
margin-bottom: 5px;
}
.wp_attachment_details .attachment-alt-text-description {
margin-top: 5px;
}
.wp_attachment_details label[for="content"] {
font-size: 13px;
@ -1091,7 +1098,7 @@ border color while dragging a file over the uploader drop area */
.image-editor .imgedit-settings .imgedit-help-toggle:focus {
color: #0074a2;
border-color: #5b9dd9;
box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
/* Only visible in Windows High Contrast mode */
outline: 2px solid transparent;
}

File diff suppressed because one or more lines are too long

View file

@ -168,7 +168,7 @@ ul.add-menu-item-tabs li {
}
.nav-menus-php #post-body {
padding: 0 10px 10px;
padding: 0 10px;
border-top: 1px solid #fff;
border-bottom: 1px solid #ddd;
background: #fff;
@ -202,6 +202,10 @@ ul.add-menu-item-tabs li {
float: none;
}
.nav-menus-php #post-body-content .post-body-plain {
margin-bottom: 0;
}
#menu-management .menu-add-new abbr {
font-weight: 600;
}
@ -434,7 +438,7 @@ ul.add-menu-item-tabs li {
.menu-item-bar {
clear: both;
line-height: 1.5em;
line-height: 1.5;
position: relative;
margin: 9px 0 0;
}
@ -446,7 +450,7 @@ ul.add-menu-item-tabs li {
height: auto;
min-height: 20px;
width: 382px;
line-height: 30px;
line-height: 2.4;
overflow: hidden;
word-wrap: break-word;
}
@ -476,7 +480,7 @@ ul.add-menu-item-tabs li {
.menu-item-handle .item-title {
font-size: 13px;
font-weight: 600;
line-height: 20px;
line-height: 1.6;
display: block;
/* @todo: responsive view. */
margin-left: 13em;
@ -552,7 +556,7 @@ body.menu-max-depth-11 { min-width: 1280px !important; }
padding: 12px 16px;
color: #666;
font-size: 12px;
line-height: 18px;
line-height: 1.5;
}
.item-controls {
@ -594,7 +598,7 @@ body.menu-max-depth-11 { min-width: 1280px !important; }
color: #0073aa;
text-decoration: underline;
font-size: 12px;
line-height: 18px;
line-height: 1.5;
}
.no-js.nav-menus-php .item-edit .screen-reader-text {
@ -629,7 +633,7 @@ body.menu-max-depth-11 { min-width: 1280px !important; }
.nav-menus-php .item-edit:focus:before {
box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8);
0 0 2px 1px rgba(30, 140, 190, 0.8);
}
/* Menu editing */
@ -645,7 +649,7 @@ body.menu-max-depth-11 { min-width: 1280px !important; }
z-index: 10; /* Keep .item-title's shadow from appearing on top of .menu-item-settings */
border: 1px solid #e5e5e5;
border-top: none;
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 {
@ -733,7 +737,7 @@ body.menu-max-depth-11 { min-width: 1280px !important; }
.nav-menus-php .major-publishing-actions {
clear: both;
padding: 10px 0;
line-height: 28px;
line-height: 2.1;
}
.nav-menus-php .major-publishing-actions .publishing-action {
@ -748,7 +752,7 @@ body.menu-max-depth-11 { min-width: 1280px !important; }
/* Same as the Publish Meta Box #delete-action */
.nav-menus-php .delete-action {
float: right;
line-height: 28px;
line-height: 2.1;
}
.nav-menus-php .major-publishing-actions .form-invalid {
@ -837,7 +841,7 @@ body.menu-max-depth-11 { min-width: 1280px !important; }
.nav-menus-php .delete-action {
font-size: 14px;
line-height: 30px;
line-height: 2.1;
}
.menu-item-bar .menu-item-handle,

File diff suppressed because one or more lines are too long

View file

@ -168,7 +168,7 @@ ul.add-menu-item-tabs li {
}
.nav-menus-php #post-body {
padding: 0 10px 10px;
padding: 0 10px;
border-top: 1px solid #fff;
border-bottom: 1px solid #ddd;
background: #fff;
@ -202,6 +202,10 @@ ul.add-menu-item-tabs li {
float: none;
}
.nav-menus-php #post-body-content .post-body-plain {
margin-bottom: 0;
}
#menu-management .menu-add-new abbr {
font-weight: 600;
}
@ -434,7 +438,7 @@ ul.add-menu-item-tabs li {
.menu-item-bar {
clear: both;
line-height: 1.5em;
line-height: 1.5;
position: relative;
margin: 9px 0 0;
}
@ -446,7 +450,7 @@ ul.add-menu-item-tabs li {
height: auto;
min-height: 20px;
width: 382px;
line-height: 30px;
line-height: 2.4;
overflow: hidden;
word-wrap: break-word;
}
@ -476,7 +480,7 @@ ul.add-menu-item-tabs li {
.menu-item-handle .item-title {
font-size: 13px;
font-weight: 600;
line-height: 20px;
line-height: 1.6;
display: block;
/* @todo: responsive view. */
margin-right: 13em;
@ -552,7 +556,7 @@ body.menu-max-depth-11 { min-width: 1280px !important; }
padding: 12px 16px;
color: #666;
font-size: 12px;
line-height: 18px;
line-height: 1.5;
}
.item-controls {
@ -594,7 +598,7 @@ body.menu-max-depth-11 { min-width: 1280px !important; }
color: #0073aa;
text-decoration: underline;
font-size: 12px;
line-height: 18px;
line-height: 1.5;
}
.no-js.nav-menus-php .item-edit .screen-reader-text {
@ -629,7 +633,7 @@ body.menu-max-depth-11 { min-width: 1280px !important; }
.nav-menus-php .item-edit:focus:before {
box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8);
0 0 2px 1px rgba(30, 140, 190, 0.8);
}
/* Menu editing */
@ -645,7 +649,7 @@ body.menu-max-depth-11 { min-width: 1280px !important; }
z-index: 10; /* Keep .item-title's shadow from appearing on top of .menu-item-settings */
border: 1px solid #e5e5e5;
border-top: none;
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 {
@ -733,7 +737,7 @@ body.menu-max-depth-11 { min-width: 1280px !important; }
.nav-menus-php .major-publishing-actions {
clear: both;
padding: 10px 0;
line-height: 28px;
line-height: 2.1;
}
.nav-menus-php .major-publishing-actions .publishing-action {
@ -748,7 +752,7 @@ body.menu-max-depth-11 { min-width: 1280px !important; }
/* Same as the Publish Meta Box #delete-action */
.nav-menus-php .delete-action {
float: left;
line-height: 28px;
line-height: 2.1;
}
.nav-menus-php .major-publishing-actions .form-invalid {
@ -837,7 +841,7 @@ body.menu-max-depth-11 { min-width: 1280px !important; }
.nav-menus-php .delete-action {
font-size: 14px;
line-height: 30px;
line-height: 2.1;
}
.menu-item-bar .menu-item-handle,

File diff suppressed because one or more lines are too long

View file

@ -6,9 +6,12 @@
position: relative;
}
.revisions-diff-frame {
top: 10px;
}
.revisions-controls {
padding-top: 40px;
height: 100px;
z-index: 1;
}
@ -23,7 +26,7 @@
top: 0;
height: 82px;
background: #fff;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.revisions-tickmarks {
@ -110,7 +113,8 @@ body.folded .revisions .loading-indicator {
.revisions-meta {
margin-top: 20px;
background-color: #fff;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
overflow: hidden;
}
.revisions.pinned .revisions-meta {
@ -172,7 +176,7 @@ body.folded .revisions .loading-indicator {
.revisions-diff {
padding: 15px;
background-color: #fff;
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 {
@ -294,7 +298,7 @@ table.diff .diff-addedline ins {
float: left;
margin-right: 6px;
margin-left: 6px;
margin-top: 4px;
margin-top: 2px;
}
.diff-meta-from {
@ -397,7 +401,7 @@ table.diff .diff-addedline ins {
.arrow:after {
z-index: 9999;
background-color: #fff;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.arrow.top {
@ -470,7 +474,7 @@ div.revisions-controls > .wp-slider > .ui-slider-handle {
.wp-slider .ui-slider-handle.ui-state-active {
background: #eee;
border-color: #999;
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);
transform: translateY(1px);
}
@ -566,9 +570,32 @@ div.revisions-controls > .wp-slider > .ui-slider-handle {
margin-top: -1em;
}
.revisions-buttons {
overflow: hidden;
margin-bottom: 15px;
}
.revisions-controls,
.comparing-two-revisions .revisions-controls {
height: 170px;
}
.revisions-tooltip {
bottom: 130px;
z-index: 2;
}
.diff-meta {
overflow: hidden;
}
table.diff {
-ms-word-break: break-all;
word-break: break-all;
word-wrap: break-word;
}
.diff-meta input.restore-revision {
margin-top: 0;
}
}

File diff suppressed because one or more lines are too long

View file

@ -6,9 +6,12 @@
position: relative;
}
.revisions-diff-frame {
top: 10px;
}
.revisions-controls {
padding-top: 40px;
height: 100px;
z-index: 1;
}
@ -23,7 +26,7 @@
top: 0;
height: 82px;
background: #fff;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.revisions-tickmarks {
@ -110,7 +113,8 @@ body.folded .revisions .loading-indicator {
.revisions-meta {
margin-top: 20px;
background-color: #fff;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
overflow: hidden;
}
.revisions.pinned .revisions-meta {
@ -172,7 +176,7 @@ body.folded .revisions .loading-indicator {
.revisions-diff {
padding: 15px;
background-color: #fff;
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 {
@ -294,7 +298,7 @@ table.diff .diff-addedline ins {
float: right;
margin-left: 6px;
margin-right: 6px;
margin-top: 4px;
margin-top: 2px;
}
.diff-meta-from {
@ -397,7 +401,7 @@ table.diff .diff-addedline ins {
.arrow:after {
z-index: 9999;
background-color: #fff;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.arrow.top {
@ -470,7 +474,7 @@ div.revisions-controls > .wp-slider > .ui-slider-handle {
.wp-slider .ui-slider-handle.ui-state-active {
background: #eee;
border-color: #999;
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);
transform: translateY(1px);
}
@ -566,9 +570,32 @@ div.revisions-controls > .wp-slider > .ui-slider-handle {
margin-top: -1em;
}
.revisions-buttons {
overflow: hidden;
margin-bottom: 15px;
}
.revisions-controls,
.comparing-two-revisions .revisions-controls {
height: 170px;
}
.revisions-tooltip {
bottom: 130px;
z-index: 2;
}
.diff-meta {
overflow: hidden;
}
table.diff {
-ms-word-break: break-all;
word-break: break-all;
word-wrap: break-word;
}
.diff-meta input.restore-revision {
margin-top: 0;
}
}

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,427 @@
.site-health #wpcontent,
.site-health.auto-fold #wpcontent {
padding-right: 0;
}
/* Emulates .wrap h1 styling */
.health-check-header h1 {
display: inline-block;
font-weight: 600;
margin: 1rem 0.8rem;
font-size: 23px;
padding: 9px 0 4px 0;
line-height: 1.3;
}
.health-check-body h2 {
padding: 1rem 0;
line-height: 1.4;
}
.health-check-body h3 {
padding: 0;
font-weight: 400;
}
.health-check-header {
text-align: center;
margin: 0 0 1rem;
background: #fff;
border-bottom: 1px solid #e2e4e7;
}
.health-check-title-section {
display: flex;
align-items: center;
justify-content: center;
clear: both;
}
.site-health-progress {
display: inline-block;
height: 40px;
width: 40px;
margin: 0;
border-radius: 100%;
position: relative;
font-weight: 600;
font-size: 0.4rem;
}
.site-health-progress-count {
position: absolute;
display: block;
height: 80px;
width: 80px;
right: 50%;
top: 50%;
margin-top: -40px;
margin-right: -40px;
border-radius: 100%;
line-height: 6.3;
font-size: 2em;
}
.site-health-progress-count::after {
content: "";
}
.site-health-progress.loading .site-health-progress-count::after {
content: "···";
}
.site-health-progress.loading svg #bar {
stroke-dashoffset: 0;
stroke: #adc5d2;
animation: loadingPulse 3s infinite ease-in-out;
}
.site-health-progress svg circle {
stroke-dashoffset: 0;
transition: stroke-dashoffset 1s linear;
stroke: #ccc;
stroke-width: 2em;
}
.site-health-progress svg #bar {
stroke-dashoffset: 565;
stroke: #dc3232;
}
.site-health-progress svg #bar.green {
stroke: #46b450;
}
.site-health-progress svg #bar.orange {
stroke: #ffb900;
}
@keyframes loadingPulse {
0% {
stroke: #adc5d2;
}
50% {
stroke: #00a0d2;
}
100% {
stroke: #adc5d2;
}
}
.health-check-tab {
display: inline-block;
text-decoration: none;
color: inherit;
padding: 0.5rem 1rem 1rem;
margin: 0 1rem;
transition: box-shadow 0.5s ease-in-out;
}
.health-check-tab:focus {
color: #191e23;
outline: 1px solid #6c7781;
box-shadow: none;
}
.health-check-tab.active {
box-shadow: inset 0 -3px #007cba;
font-weight: 600;
}
.health-check-body {
max-width: 800px;
margin: 0 auto;
}
.health-check-table td:first-child {
width: 30%;
}
.health-check-table td {
width: 70%;
}
.health-check-table ul,
.health-check-table ol {
margin: 0;
}
.health-check-body li {
line-height: 1.5;
}
.health-check-body .pass::before,
.health-check-body .good::before {
content: "\f147";
display: inline-block;
color: #46b450;
font-family: dashicons;
vertical-align: top;
}
.health-check-body .warning::before {
content: "\f460";
display: inline-block;
color: #ffb900;
font-family: dashicons;
}
.health-check-body .info::before {
content: "\f348";
display: inline-block;
color: #00a0d2;
font-family: dashicons;
}
.health-check-body .fail::before,
.health-check-body .error::before {
content: "\f335";
display: inline-block;
color: #dc3232;
font-family: dashicons;
}
.site-health-copy-buttons {
margin: 1rem 0;
}
.site-health-copy-buttons .copy-button-wrapper {
margin: 0.5rem 0 1rem;
}
.site-health-copy-buttons .success {
display: none;
color: #40860a;
line-height: 1.8;
margin-right: 0.5rem;
}
.site-health-copy-buttons .success.visible {
display: inline-block;
height: 28px;
line-height: 2.2;
}
.site-status-has-issues.hide {
display: none;
}
.site-health-view-more {
text-align: center;
}
.site-health-issues-wrapper:first-of-type {
margin-top: 3rem;
}
.site-health-issues-wrapper {
margin-bottom: 3rem;
margin-top: 2rem;
}
.site-status-all-clear {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
height: 100%;
width: 100%;
margin-top: 0;
}
@media all and (min-width: 784px) {
.site-status-all-clear {
margin: 5rem 0;
}
}
.site-status-all-clear.hide {
display: none;
}
.site-status-all-clear .dashicons {
font-size: 150px;
height: 130px;
width: 150px;
}
.site-status-all-clear .encouragement {
font-size: 1.5rem;
font-weight: 600;
}
.site-status-all-clear p {
margin: 0;
}
.health-check-accordion {
border: 1px solid #e2e4e7;
}
.health-check-accordion-heading {
margin: 0;
border-top: 1px solid #e2e4e7;
font-size: inherit;
line-height: inherit;
font-weight: 600;
color: inherit;
}
.health-check-accordion-heading:first-child {
border-top: none;
}
.health-check-accordion-trigger {
background: #fff;
border: 0;
color: #32373c;
cursor: pointer;
display: block;
font-weight: 400;
margin: 0;
padding: 1em 1.5em 1em 3.5em;
position: relative;
text-align: right;
width: 100%;
}
.wp-core-ui .button.site-health-view-passed {
position: relative;
padding-left: 40px;
padding-right: 20px;
}
.health-check-accordion-trigger:hover,
.health-check-accordion-trigger:active {
background: #f8f9f9;
}
.health-check-accordion-trigger:focus {
color: #191e23;
border: none;
box-shadow: none;
outline-offset: -2px;
outline: 1px dotted #555d66;
}
.health-check-accordion-trigger .title {
display: inline-block;
pointer-events: none;
font-weight: 600;
}
.health-check-accordion-trigger .icon,
.site-health-view-passed .icon {
border: solid #555d66;
border-width: 0 0 2px 2px;
height: 0.5rem;
pointer-events: none;
position: absolute;
left: 1.5em;
top: 50%;
transform: translateY(-70%) rotate(-45deg);
width: 0.5rem;
}
.health-check-accordion-trigger .badge {
float: left;
padding: 0.1rem 0.5rem 0.15rem;
color: #32373c;
font-weight: 600;
margin-right: 0.5rem;
}
.health-check-accordion-trigger .badge.blue {
border: 1px solid #bfe7f3;
}
.health-check-accordion-trigger .badge.orange {
border: 1px solid #ffb900;
}
.health-check-accordion-trigger .badge.red {
border: 1px solid #dc3232;
}
.health-check-accordion-trigger .badge.green {
border: 1px solid #46b450;
}
.health-check-accordion-trigger .badge.purple {
border: 1px solid #826eb4;
}
.health-check-accordion-trigger .badge.gray {
border: 1px solid #ccd0d4;
}
.health-check-accordion-trigger[aria-expanded="true"] .icon,
.site-health-view-passed[aria-expanded="true"] .icon {
transform: translateY(-30%) rotate(135deg)
}
.health-check-accordion-panel {
margin: 0;
padding: 1em 1.5em;
background: #fff;
}
.health-check-accordion-panel[hidden] {
display: none;
}
.health-check-accordion-panel a .dashicons {
text-decoration: none;
}
/* Better position for the WordPress admin notices and update nag. */
.site-health .notice {
margin: 5px 22px 15px 20px;
}
.site-health .update-nag {
margin-bottom: 20px;
margin-right: 22px;
}
.health-check-wp-paths-sizes.spinner {
position: absolute;
visibility: visible;
float: none;
margin: 0 4px;
}
@media screen and (max-width: 782px) {
.health-check-body {
margin: 0 12px;
width: auto;
}
.site-health .notice {
margin: 5px 10px 15px;
}
.site-health .update-nag {
margin-left: 10px;
margin-right: 10px;
}
.health-check-accordion-trigger .title {
display: block;
margin-bottom: 1em;
}
.health-check-accordion-trigger .badge {
float: right;
margin: 0;
}
}
/* The breakpoint is usually at 960px, the additional space is to allow for the margin. */
@media only screen and (max-width: 1004px) {
.health-check-body {
margin: 0 22px;
width: auto;
}
}

2
wp-admin/css/site-health-rtl.min.css vendored Normal file

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,427 @@
.site-health #wpcontent,
.site-health.auto-fold #wpcontent {
padding-left: 0;
}
/* Emulates .wrap h1 styling */
.health-check-header h1 {
display: inline-block;
font-weight: 600;
margin: 1rem 0.8rem;
font-size: 23px;
padding: 9px 0 4px 0;
line-height: 1.3;
}
.health-check-body h2 {
padding: 1rem 0;
line-height: 1.4;
}
.health-check-body h3 {
padding: 0;
font-weight: 400;
}
.health-check-header {
text-align: center;
margin: 0 0 1rem;
background: #fff;
border-bottom: 1px solid #e2e4e7;
}
.health-check-title-section {
display: flex;
align-items: center;
justify-content: center;
clear: both;
}
.site-health-progress {
display: inline-block;
height: 40px;
width: 40px;
margin: 0;
border-radius: 100%;
position: relative;
font-weight: 600;
font-size: 0.4rem;
}
.site-health-progress-count {
position: absolute;
display: block;
height: 80px;
width: 80px;
left: 50%;
top: 50%;
margin-top: -40px;
margin-left: -40px;
border-radius: 100%;
line-height: 6.3;
font-size: 2em;
}
.site-health-progress-count::after {
content: "";
}
.site-health-progress.loading .site-health-progress-count::after {
content: "···";
}
.site-health-progress.loading svg #bar {
stroke-dashoffset: 0;
stroke: #adc5d2;
animation: loadingPulse 3s infinite ease-in-out;
}
.site-health-progress svg circle {
stroke-dashoffset: 0;
transition: stroke-dashoffset 1s linear;
stroke: #ccc;
stroke-width: 2em;
}
.site-health-progress svg #bar {
stroke-dashoffset: 565;
stroke: #dc3232;
}
.site-health-progress svg #bar.green {
stroke: #46b450;
}
.site-health-progress svg #bar.orange {
stroke: #ffb900;
}
@keyframes loadingPulse {
0% {
stroke: #adc5d2;
}
50% {
stroke: #00a0d2;
}
100% {
stroke: #adc5d2;
}
}
.health-check-tab {
display: inline-block;
text-decoration: none;
color: inherit;
padding: 0.5rem 1rem 1rem;
margin: 0 1rem;
transition: box-shadow 0.5s ease-in-out;
}
.health-check-tab:focus {
color: #191e23;
outline: 1px solid #6c7781;
box-shadow: none;
}
.health-check-tab.active {
box-shadow: inset 0 -3px #007cba;
font-weight: 600;
}
.health-check-body {
max-width: 800px;
margin: 0 auto;
}
.health-check-table td:first-child {
width: 30%;
}
.health-check-table td {
width: 70%;
}
.health-check-table ul,
.health-check-table ol {
margin: 0;
}
.health-check-body li {
line-height: 1.5;
}
.health-check-body .pass::before,
.health-check-body .good::before {
content: "\f147";
display: inline-block;
color: #46b450;
font-family: dashicons;
vertical-align: top;
}
.health-check-body .warning::before {
content: "\f460";
display: inline-block;
color: #ffb900;
font-family: dashicons;
}
.health-check-body .info::before {
content: "\f348";
display: inline-block;
color: #00a0d2;
font-family: dashicons;
}
.health-check-body .fail::before,
.health-check-body .error::before {
content: "\f335";
display: inline-block;
color: #dc3232;
font-family: dashicons;
}
.site-health-copy-buttons {
margin: 1rem 0;
}
.site-health-copy-buttons .copy-button-wrapper {
margin: 0.5rem 0 1rem;
}
.site-health-copy-buttons .success {
display: none;
color: #40860a;
line-height: 1.8;
margin-left: 0.5rem;
}
.site-health-copy-buttons .success.visible {
display: inline-block;
height: 28px;
line-height: 2.2;
}
.site-status-has-issues.hide {
display: none;
}
.site-health-view-more {
text-align: center;
}
.site-health-issues-wrapper:first-of-type {
margin-top: 3rem;
}
.site-health-issues-wrapper {
margin-bottom: 3rem;
margin-top: 2rem;
}
.site-status-all-clear {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
height: 100%;
width: 100%;
margin-top: 0;
}
@media all and (min-width: 784px) {
.site-status-all-clear {
margin: 5rem 0;
}
}
.site-status-all-clear.hide {
display: none;
}
.site-status-all-clear .dashicons {
font-size: 150px;
height: 130px;
width: 150px;
}
.site-status-all-clear .encouragement {
font-size: 1.5rem;
font-weight: 600;
}
.site-status-all-clear p {
margin: 0;
}
.health-check-accordion {
border: 1px solid #e2e4e7;
}
.health-check-accordion-heading {
margin: 0;
border-top: 1px solid #e2e4e7;
font-size: inherit;
line-height: inherit;
font-weight: 600;
color: inherit;
}
.health-check-accordion-heading:first-child {
border-top: none;
}
.health-check-accordion-trigger {
background: #fff;
border: 0;
color: #32373c;
cursor: pointer;
display: block;
font-weight: 400;
margin: 0;
padding: 1em 3.5em 1em 1.5em;
position: relative;
text-align: left;
width: 100%;
}
.wp-core-ui .button.site-health-view-passed {
position: relative;
padding-right: 40px;
padding-left: 20px;
}
.health-check-accordion-trigger:hover,
.health-check-accordion-trigger:active {
background: #f8f9f9;
}
.health-check-accordion-trigger:focus {
color: #191e23;
border: none;
box-shadow: none;
outline-offset: -2px;
outline: 1px dotted #555d66;
}
.health-check-accordion-trigger .title {
display: inline-block;
pointer-events: none;
font-weight: 600;
}
.health-check-accordion-trigger .icon,
.site-health-view-passed .icon {
border: solid #555d66;
border-width: 0 2px 2px 0;
height: 0.5rem;
pointer-events: none;
position: absolute;
right: 1.5em;
top: 50%;
transform: translateY(-70%) rotate(45deg);
width: 0.5rem;
}
.health-check-accordion-trigger .badge {
float: right;
padding: 0.1rem 0.5rem 0.15rem;
color: #32373c;
font-weight: 600;
margin-left: 0.5rem;
}
.health-check-accordion-trigger .badge.blue {
border: 1px solid #bfe7f3;
}
.health-check-accordion-trigger .badge.orange {
border: 1px solid #ffb900;
}
.health-check-accordion-trigger .badge.red {
border: 1px solid #dc3232;
}
.health-check-accordion-trigger .badge.green {
border: 1px solid #46b450;
}
.health-check-accordion-trigger .badge.purple {
border: 1px solid #826eb4;
}
.health-check-accordion-trigger .badge.gray {
border: 1px solid #ccd0d4;
}
.health-check-accordion-trigger[aria-expanded="true"] .icon,
.site-health-view-passed[aria-expanded="true"] .icon {
transform: translateY(-30%) rotate(-135deg)
}
.health-check-accordion-panel {
margin: 0;
padding: 1em 1.5em;
background: #fff;
}
.health-check-accordion-panel[hidden] {
display: none;
}
.health-check-accordion-panel a .dashicons {
text-decoration: none;
}
/* Better position for the WordPress admin notices and update nag. */
.site-health .notice {
margin: 5px 20px 15px 22px;
}
.site-health .update-nag {
margin-bottom: 20px;
margin-left: 22px;
}
.health-check-wp-paths-sizes.spinner {
position: absolute;
visibility: visible;
float: none;
margin: 0 4px;
}
@media screen and (max-width: 782px) {
.health-check-body {
margin: 0 12px;
width: auto;
}
.site-health .notice {
margin: 5px 10px 15px;
}
.site-health .update-nag {
margin-right: 10px;
margin-left: 10px;
}
.health-check-accordion-trigger .title {
display: block;
margin-bottom: 1em;
}
.health-check-accordion-trigger .badge {
float: left;
margin: 0;
}
}
/* The breakpoint is usually at 960px, the additional space is to allow for the margin. */
@media only screen and (max-width: 1004px) {
.health-check-body {
margin: 0 22px;
width: auto;
}
}

2
wp-admin/css/site-health.min.css vendored Normal file

File diff suppressed because one or more lines are too long

Some files were not shown because too many files have changed in this diff Show more