Merged in feature/81-dev-dev01 (pull request #5)
auto-patch 81-dev-dev01-2023-12-05T22_45_26 * auto-patch 81-dev-dev01-2023-12-05T22_45_26
This commit is contained in:
@@ -22,17 +22,18 @@
|
||||
|
||||
.about__container {
|
||||
/* Section backgrounds */
|
||||
--background: #151515;
|
||||
--subtle-background: #eff2ff;
|
||||
--background: #EAE9E7;
|
||||
--subtle-background: #EAE9E7;
|
||||
|
||||
/* Main text color */
|
||||
--text: #1e1e1e;
|
||||
--text-light: #fff;
|
||||
|
||||
/* Accent colors: used in header, on special classes. */
|
||||
--accent-1: #3858e9; /* Link color */
|
||||
--accent-2: #c7b9f2; /* Accent background */
|
||||
--accent-1: #C94C26; /* Link color */
|
||||
--accent-2: #CFCABE; /* Accent background */
|
||||
--accent-3: #f0f0f1; /* hr background */
|
||||
--accent-4: #B1C5A4; /* Light green */
|
||||
|
||||
/* Navigation colors. */
|
||||
--nav-background: #fff;
|
||||
@@ -113,6 +114,10 @@
|
||||
background-color: var(--accent-2);
|
||||
}
|
||||
|
||||
.about__container .has-accent-4-background-color {
|
||||
background-color: var(--accent-4);
|
||||
}
|
||||
|
||||
.about__container .has-transparent-background-color {
|
||||
background-color: transparent;
|
||||
}
|
||||
@@ -370,7 +375,6 @@
|
||||
|
||||
.about__container h1 {
|
||||
padding: 0;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.about__container h1,
|
||||
@@ -413,14 +417,14 @@
|
||||
}
|
||||
|
||||
.about__section a {
|
||||
color: var(--accent-1);
|
||||
color: var(--text);
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.about__section a:hover,
|
||||
.about__section a:active,
|
||||
.about__section a:focus {
|
||||
color: var(--accent-1);
|
||||
color: var(--text);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
@@ -531,32 +535,34 @@
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
align-items: start;
|
||||
justify-content: end;
|
||||
box-sizing: border-box;
|
||||
padding: calc(var(--gap) * 2) 0;
|
||||
min-height: 420px;
|
||||
padding: var(--gap) 0;
|
||||
height: clamp(12.5rem, -1.25rem + 36.67vw, 26.25rem);
|
||||
color: var(--text-light);
|
||||
background: var(--background) url('../images/about-header-about.svg?ver=6.3') no-repeat;
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
background-image: url('../images/about-header-about.svg?ver=6.4'), url('../images/about-header-background.svg?ver=6.4');
|
||||
background-size: auto 70%, cover;
|
||||
border-radius: 5px;
|
||||
background-repeat: no-repeat;
|
||||
background-position: left 7% center, top right;
|
||||
background-color: var(--background);
|
||||
}
|
||||
|
||||
.credits-php .about__header {
|
||||
background-image: url('../images/about-header-credits.svg?ver=6.3');
|
||||
background-image: url('../images/about-header-credits.svg?ver=6.4'), url('../images/about-header-background.svg?ver=6.4');
|
||||
}
|
||||
|
||||
.freedoms-php .about__header {
|
||||
background-image: url('../images/about-header-freedoms.svg?ver=6.3');
|
||||
background-image: url('../images/about-header-freedoms.svg?ver=6.4'), url('../images/about-header-background.svg?ver=6.4');
|
||||
}
|
||||
|
||||
.privacy-php .about__header {
|
||||
background-image: url('../images/about-header-privacy.svg?ver=6.3');
|
||||
background-image: url('../images/about-header-privacy.svg?ver=6.4'), url('../images/about-header-background.svg?ver=6.4');
|
||||
}
|
||||
|
||||
.contribute-php .about__header {
|
||||
background-image: url('../images/about-header-contribute.svg?ver=6.3');
|
||||
background-image: url('../images/about-header-contribute.svg?ver=6.4'), url('../images/about-header-background.svg?ver=6.4');
|
||||
}
|
||||
|
||||
.about__header-image {
|
||||
@@ -565,26 +571,27 @@
|
||||
|
||||
.about__header-title {
|
||||
box-sizing: border-box;
|
||||
margin: 0 var(--gap);
|
||||
margin: 0 calc(var(--gap) + 2rem);
|
||||
padding: 0;
|
||||
text-align: center;
|
||||
max-width: 55%;
|
||||
}
|
||||
|
||||
.about__header-title h1 {
|
||||
margin: 0 0 1rem;
|
||||
padding: 0;
|
||||
/* Fluid font size scales on browser size 960px - 1200px. */
|
||||
font-size: clamp(3rem, 20vw - 9rem, 6rem);
|
||||
font-size: clamp(2rem, 20vw - 9rem, 4rem);
|
||||
line-height: 1;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.about-php .about__header-title h1,
|
||||
.credits-php .about__header-title h1,
|
||||
.freedoms-php .about__header-title h1,
|
||||
.privacy-php .about__header-title h1,
|
||||
.contribute-php .about__header-title h1 {
|
||||
/* Fluid font size scales on browser size 960px - 1200px. */
|
||||
font-size: clamp(3rem, 10vw - 3rem, 4.5rem);
|
||||
font-size: clamp(2rem, 10vw - 3rem, 4rem);
|
||||
}
|
||||
|
||||
.about__header-text {
|
||||
@@ -643,11 +650,8 @@
|
||||
}
|
||||
|
||||
@media screen and (max-width: 960px) {
|
||||
.about__header-title h1 {
|
||||
/* Fluid font size scales on browser size 600px - 960px. */
|
||||
font-size: clamp(3rem, 13.33vw - 2rem, 6rem);
|
||||
}
|
||||
|
||||
.about-php .about__header-title h1,
|
||||
.credits-php .about__header-title h1,
|
||||
.freedoms-php .about__header-title h1,
|
||||
.privacy-php .about__header-title h1,
|
||||
@@ -734,7 +738,7 @@
|
||||
------------------------------------------------------------------------------*/
|
||||
|
||||
.about__section .wp-people-group-title {
|
||||
margin-bottom: calc(var(--gap) * 2);
|
||||
margin-bottom: calc(var(--gap) * 2 - 10px);
|
||||
text-align: center;
|
||||
|
||||
}
|
||||
@@ -749,7 +753,7 @@
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
box-sizing: border-box;
|
||||
margin-bottom: var(--gap);
|
||||
margin-bottom: calc(var(--gap) - 10px);
|
||||
width: 25%;
|
||||
text-align: center;
|
||||
}
|
||||
@@ -781,8 +785,10 @@
|
||||
}
|
||||
|
||||
.about__section .wp-person .web {
|
||||
display: block;
|
||||
font-size: 1.4em;
|
||||
font-weight: 600;
|
||||
padding: 10px 10px 0;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
+34
-28
@@ -21,17 +21,18 @@
|
||||
|
||||
.about__container {
|
||||
/* Section backgrounds */
|
||||
--background: #151515;
|
||||
--subtle-background: #eff2ff;
|
||||
--background: #EAE9E7;
|
||||
--subtle-background: #EAE9E7;
|
||||
|
||||
/* Main text color */
|
||||
--text: #1e1e1e;
|
||||
--text-light: #fff;
|
||||
|
||||
/* Accent colors: used in header, on special classes. */
|
||||
--accent-1: #3858e9; /* Link color */
|
||||
--accent-2: #c7b9f2; /* Accent background */
|
||||
--accent-1: #C94C26; /* Link color */
|
||||
--accent-2: #CFCABE; /* Accent background */
|
||||
--accent-3: #f0f0f1; /* hr background */
|
||||
--accent-4: #B1C5A4; /* Light green */
|
||||
|
||||
/* Navigation colors. */
|
||||
--nav-background: #fff;
|
||||
@@ -112,6 +113,10 @@
|
||||
background-color: var(--accent-2);
|
||||
}
|
||||
|
||||
.about__container .has-accent-4-background-color {
|
||||
background-color: var(--accent-4);
|
||||
}
|
||||
|
||||
.about__container .has-transparent-background-color {
|
||||
background-color: transparent;
|
||||
}
|
||||
@@ -369,7 +374,6 @@
|
||||
|
||||
.about__container h1 {
|
||||
padding: 0;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.about__container h1,
|
||||
@@ -412,14 +416,14 @@
|
||||
}
|
||||
|
||||
.about__section a {
|
||||
color: var(--accent-1);
|
||||
color: var(--text);
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.about__section a:hover,
|
||||
.about__section a:active,
|
||||
.about__section a:focus {
|
||||
color: var(--accent-1);
|
||||
color: var(--text);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
@@ -530,32 +534,34 @@
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
align-items: start;
|
||||
justify-content: end;
|
||||
box-sizing: border-box;
|
||||
padding: calc(var(--gap) * 2) 0;
|
||||
min-height: 420px;
|
||||
padding: var(--gap) 0;
|
||||
height: clamp(12.5rem, -1.25rem + 36.67vw, 26.25rem);
|
||||
color: var(--text-light);
|
||||
background: var(--background) url('../images/about-header-about.svg?ver=6.3') no-repeat;
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
background-image: url('../images/about-header-about.svg?ver=6.4'), url('../images/about-header-background.svg?ver=6.4');
|
||||
background-size: auto 70%, cover;
|
||||
border-radius: 5px;
|
||||
background-repeat: no-repeat;
|
||||
background-position: right 7% center, top left;
|
||||
background-color: var(--background);
|
||||
}
|
||||
|
||||
.credits-php .about__header {
|
||||
background-image: url('../images/about-header-credits.svg?ver=6.3');
|
||||
background-image: url('../images/about-header-credits.svg?ver=6.4'), url('../images/about-header-background.svg?ver=6.4');
|
||||
}
|
||||
|
||||
.freedoms-php .about__header {
|
||||
background-image: url('../images/about-header-freedoms.svg?ver=6.3');
|
||||
background-image: url('../images/about-header-freedoms.svg?ver=6.4'), url('../images/about-header-background.svg?ver=6.4');
|
||||
}
|
||||
|
||||
.privacy-php .about__header {
|
||||
background-image: url('../images/about-header-privacy.svg?ver=6.3');
|
||||
background-image: url('../images/about-header-privacy.svg?ver=6.4'), url('../images/about-header-background.svg?ver=6.4');
|
||||
}
|
||||
|
||||
.contribute-php .about__header {
|
||||
background-image: url('../images/about-header-contribute.svg?ver=6.3');
|
||||
background-image: url('../images/about-header-contribute.svg?ver=6.4'), url('../images/about-header-background.svg?ver=6.4');
|
||||
}
|
||||
|
||||
.about__header-image {
|
||||
@@ -564,26 +570,27 @@
|
||||
|
||||
.about__header-title {
|
||||
box-sizing: border-box;
|
||||
margin: 0 var(--gap);
|
||||
margin: 0 calc(var(--gap) + 2rem);
|
||||
padding: 0;
|
||||
text-align: center;
|
||||
max-width: 55%;
|
||||
}
|
||||
|
||||
.about__header-title h1 {
|
||||
margin: 0 0 1rem;
|
||||
padding: 0;
|
||||
/* Fluid font size scales on browser size 960px - 1200px. */
|
||||
font-size: clamp(3rem, 20vw - 9rem, 6rem);
|
||||
font-size: clamp(2rem, 20vw - 9rem, 4rem);
|
||||
line-height: 1;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.about-php .about__header-title h1,
|
||||
.credits-php .about__header-title h1,
|
||||
.freedoms-php .about__header-title h1,
|
||||
.privacy-php .about__header-title h1,
|
||||
.contribute-php .about__header-title h1 {
|
||||
/* Fluid font size scales on browser size 960px - 1200px. */
|
||||
font-size: clamp(3rem, 10vw - 3rem, 4.5rem);
|
||||
font-size: clamp(2rem, 10vw - 3rem, 4rem);
|
||||
}
|
||||
|
||||
.about__header-text {
|
||||
@@ -642,11 +649,8 @@
|
||||
}
|
||||
|
||||
@media screen and (max-width: 960px) {
|
||||
.about__header-title h1 {
|
||||
/* Fluid font size scales on browser size 600px - 960px. */
|
||||
font-size: clamp(3rem, 13.33vw - 2rem, 6rem);
|
||||
}
|
||||
|
||||
.about-php .about__header-title h1,
|
||||
.credits-php .about__header-title h1,
|
||||
.freedoms-php .about__header-title h1,
|
||||
.privacy-php .about__header-title h1,
|
||||
@@ -733,7 +737,7 @@
|
||||
------------------------------------------------------------------------------*/
|
||||
|
||||
.about__section .wp-people-group-title {
|
||||
margin-bottom: calc(var(--gap) * 2);
|
||||
margin-bottom: calc(var(--gap) * 2 - 10px);
|
||||
text-align: center;
|
||||
|
||||
}
|
||||
@@ -748,7 +752,7 @@
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
box-sizing: border-box;
|
||||
margin-bottom: var(--gap);
|
||||
margin-bottom: calc(var(--gap) - 10px);
|
||||
width: 25%;
|
||||
text-align: center;
|
||||
}
|
||||
@@ -780,8 +784,10 @@
|
||||
}
|
||||
|
||||
.about__section .wp-person .web {
|
||||
display: block;
|
||||
font-size: 1.4em;
|
||||
font-weight: 600;
|
||||
padding: 10px 10px 0;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -625,20 +625,26 @@ code {
|
||||
.wrap .add-new-h2:active, /* deprecated */
|
||||
.wrap .page-title-action,
|
||||
.wrap .page-title-action:active {
|
||||
margin-right: 4px;
|
||||
padding: 4px 8px;
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
top: -3px;
|
||||
text-decoration: none;
|
||||
border: 1px solid #2271b1;
|
||||
border-radius: 2px;
|
||||
text-shadow: none;
|
||||
font-weight: 600;
|
||||
font-size: 13px;
|
||||
line-height: normal; /* IE8-IE11 need this for buttons */
|
||||
color: #2271b1; /* use the standard color used for buttons */
|
||||
background: #f6f7f7;
|
||||
box-sizing: border-box;
|
||||
cursor: pointer;
|
||||
white-space: nowrap;
|
||||
text-decoration: none;
|
||||
text-shadow: none;
|
||||
top: -3px;
|
||||
margin-right: 4px;
|
||||
border: 1px solid #2271b1;
|
||||
border-radius: 3px;
|
||||
background: #f6f7f7;
|
||||
font-size: 13px;
|
||||
font-weight: 400;
|
||||
line-height: 2.15384615;
|
||||
color: #2271b1; /* use the standard color used for buttons */
|
||||
padding: 0 10px;
|
||||
min-height: 30px;
|
||||
-webkit-appearance: none;
|
||||
|
||||
}
|
||||
|
||||
.wrap .wp-heading-inline + .page-title-action {
|
||||
@@ -3015,6 +3021,7 @@ div.action-links {
|
||||
}
|
||||
|
||||
@media print,
|
||||
(-webkit-min-device-pixel-ratio: 1.25),
|
||||
(min-resolution: 120dpi) {
|
||||
|
||||
#TB_window.plugin-details-modal.thickbox-loading:before {
|
||||
@@ -3169,6 +3176,7 @@ img {
|
||||
font-family: Consolas, Monaco, monospace;
|
||||
font-size: 13px;
|
||||
background: #f6f7f7;
|
||||
-o-tab-size: 4;
|
||||
tab-size: 4;
|
||||
}
|
||||
|
||||
@@ -3757,6 +3765,7 @@ img {
|
||||
* HiDPI Displays
|
||||
*/
|
||||
@media print,
|
||||
(-webkit-min-device-pixel-ratio: 1.25),
|
||||
(min-resolution: 120dpi) {
|
||||
/* Back-compat for pre-3.8 */
|
||||
div.star-holder,
|
||||
|
||||
Vendored
+2
-2
File diff suppressed because one or more lines are too long
+21
-12
@@ -624,20 +624,26 @@ code {
|
||||
.wrap .add-new-h2:active, /* deprecated */
|
||||
.wrap .page-title-action,
|
||||
.wrap .page-title-action:active {
|
||||
margin-left: 4px;
|
||||
padding: 4px 8px;
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
top: -3px;
|
||||
text-decoration: none;
|
||||
border: 1px solid #2271b1;
|
||||
border-radius: 2px;
|
||||
text-shadow: none;
|
||||
font-weight: 600;
|
||||
font-size: 13px;
|
||||
line-height: normal; /* IE8-IE11 need this for buttons */
|
||||
color: #2271b1; /* use the standard color used for buttons */
|
||||
background: #f6f7f7;
|
||||
box-sizing: border-box;
|
||||
cursor: pointer;
|
||||
white-space: nowrap;
|
||||
text-decoration: none;
|
||||
text-shadow: none;
|
||||
top: -3px;
|
||||
margin-left: 4px;
|
||||
border: 1px solid #2271b1;
|
||||
border-radius: 3px;
|
||||
background: #f6f7f7;
|
||||
font-size: 13px;
|
||||
font-weight: 400;
|
||||
line-height: 2.15384615;
|
||||
color: #2271b1; /* use the standard color used for buttons */
|
||||
padding: 0 10px;
|
||||
min-height: 30px;
|
||||
-webkit-appearance: none;
|
||||
|
||||
}
|
||||
|
||||
.wrap .wp-heading-inline + .page-title-action {
|
||||
@@ -3014,6 +3020,7 @@ div.action-links {
|
||||
}
|
||||
|
||||
@media print,
|
||||
(-webkit-min-device-pixel-ratio: 1.25),
|
||||
(min-resolution: 120dpi) {
|
||||
|
||||
#TB_window.plugin-details-modal.thickbox-loading:before {
|
||||
@@ -3168,6 +3175,7 @@ img {
|
||||
font-family: Consolas, Monaco, monospace;
|
||||
font-size: 13px;
|
||||
background: #f6f7f7;
|
||||
-o-tab-size: 4;
|
||||
tab-size: 4;
|
||||
}
|
||||
|
||||
@@ -3756,6 +3764,7 @@ img {
|
||||
* HiDPI Displays
|
||||
*/
|
||||
@media print,
|
||||
(-webkit-min-device-pixel-ratio: 1.25),
|
||||
(min-resolution: 120dpi) {
|
||||
/* Back-compat for pre-3.8 */
|
||||
div.star-holder,
|
||||
|
||||
Vendored
+2
-2
File diff suppressed because one or more lines are too long
@@ -1605,6 +1605,7 @@ p.customize-section-description {
|
||||
font-family: Consolas, Monaco, monospace;
|
||||
font-size: 12px;
|
||||
padding: 6px 8px;
|
||||
-o-tab-size: 2;
|
||||
tab-size: 2;
|
||||
}
|
||||
.customize-control-code_editor textarea,
|
||||
@@ -2318,7 +2319,7 @@ p.customize-section-description {
|
||||
|
||||
.wp-customizer .theme-overlay .theme-actions {
|
||||
text-align: left; /* Because there're only one or two actions, match the UI pattern of media modals and right-align the action. */
|
||||
padding: 10px 25px;
|
||||
padding: 10px 25px 5px;
|
||||
background: #f0f0f1;
|
||||
border-top: 1px solid #dcdcde;
|
||||
}
|
||||
@@ -2327,13 +2328,6 @@ p.customize-section-description {
|
||||
margin-right: 8px;
|
||||
}
|
||||
|
||||
.control-panel-themes .theme-actions .delete-theme {
|
||||
right: 15px; /* these override themes.css on mobile */
|
||||
left: auto;
|
||||
bottom: auto;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.modal-open .in-themes-panel #customize-controls .wp-full-overlay-sidebar-content {
|
||||
overflow: visible; /* Prevent the top-level Customizer controls from becoming visible when elements on the right of the details modal are focused. */
|
||||
}
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
@@ -1604,6 +1604,7 @@ p.customize-section-description {
|
||||
font-family: Consolas, Monaco, monospace;
|
||||
font-size: 12px;
|
||||
padding: 6px 8px;
|
||||
-o-tab-size: 2;
|
||||
tab-size: 2;
|
||||
}
|
||||
.customize-control-code_editor textarea,
|
||||
@@ -2317,7 +2318,7 @@ p.customize-section-description {
|
||||
|
||||
.wp-customizer .theme-overlay .theme-actions {
|
||||
text-align: right; /* Because there're only one or two actions, match the UI pattern of media modals and right-align the action. */
|
||||
padding: 10px 25px;
|
||||
padding: 10px 25px 5px;
|
||||
background: #f0f0f1;
|
||||
border-top: 1px solid #dcdcde;
|
||||
}
|
||||
@@ -2326,13 +2327,6 @@ p.customize-section-description {
|
||||
margin-left: 8px;
|
||||
}
|
||||
|
||||
.control-panel-themes .theme-actions .delete-theme {
|
||||
left: 15px; /* these override themes.css on mobile */
|
||||
right: auto;
|
||||
bottom: auto;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.modal-open .in-themes-panel #customize-controls .wp-full-overlay-sidebar-content {
|
||||
overflow: visible; /* Prevent the top-level Customizer controls from becoming visible when elements on the right of the details modal are focused. */
|
||||
}
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
@@ -559,6 +559,10 @@
|
||||
display: block;
|
||||
}
|
||||
|
||||
.community-events .ce-separator::before {
|
||||
content: "\2022";
|
||||
}
|
||||
|
||||
.event-icon {
|
||||
height: 18px;
|
||||
padding-left: 10px;
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
@@ -558,6 +558,10 @@
|
||||
display: block;
|
||||
}
|
||||
|
||||
.community-events .ce-separator::before {
|
||||
content: "\2022";
|
||||
}
|
||||
|
||||
.event-icon {
|
||||
height: 18px;
|
||||
padding-right: 10px;
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -405,6 +405,7 @@ table.not-image tr.image-only {
|
||||
* HiDPI Displays
|
||||
*/
|
||||
@media print,
|
||||
(-webkit-min-device-pixel-ratio: 1.25),
|
||||
(min-resolution: 120dpi) {
|
||||
|
||||
.image-align-none-label {
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
@@ -404,6 +404,7 @@ table.not-image tr.image-only {
|
||||
* HiDPI Displays
|
||||
*/
|
||||
@media print,
|
||||
(-webkit-min-device-pixel-ratio: 1.25),
|
||||
(min-resolution: 120dpi) {
|
||||
|
||||
.image-align-none-label {
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
@@ -1689,6 +1689,7 @@ table.links-table {
|
||||
* HiDPI Displays
|
||||
*/
|
||||
@media print,
|
||||
(-webkit-min-device-pixel-ratio: 1.25),
|
||||
(min-resolution: 120dpi) {
|
||||
#content-resize-handle,
|
||||
#post-body .wp_themeSkin .mceStatusbar a.mceResize {
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -1688,6 +1688,7 @@ table.links-table {
|
||||
* HiDPI Displays
|
||||
*/
|
||||
@media print,
|
||||
(-webkit-min-device-pixel-ratio: 1.25),
|
||||
(min-resolution: 120dpi) {
|
||||
#content-resize-handle,
|
||||
#post-body .wp_themeSkin .mceStatusbar a.mceResize {
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -1709,6 +1709,11 @@ table.form-table td .updated p {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.form-table td > label:first-child {
|
||||
display: inline-block;
|
||||
margin-top: 0.35em;
|
||||
}
|
||||
|
||||
.background-position-control .button-group > label {
|
||||
font-size: 0;
|
||||
}
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -1708,6 +1708,11 @@ table.form-table td .updated p {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.form-table td > label:first-child {
|
||||
display: inline-block;
|
||||
margin-top: 0.35em;
|
||||
}
|
||||
|
||||
.background-position-control .button-group > label {
|
||||
font-size: 0;
|
||||
}
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -392,6 +392,7 @@ body.language-chooser {
|
||||
* HiDPI Displays
|
||||
*/
|
||||
@media print,
|
||||
(-webkit-min-device-pixel-ratio: 1.25),
|
||||
(min-resolution: 120dpi) {
|
||||
|
||||
.spinner {
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -391,6 +391,7 @@ body.language-chooser {
|
||||
* HiDPI Displays
|
||||
*/
|
||||
@media print,
|
||||
(-webkit-min-device-pixel-ratio: 1.25),
|
||||
(min-resolution: 120dpi) {
|
||||
|
||||
.spinner {
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -571,7 +571,8 @@ th.sorted.desc:hover .sorting-indicator.asc:before {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.check-column .label-covers-full-cell {
|
||||
.check-column label {
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: block;
|
||||
@@ -580,15 +581,21 @@ th.sorted.desc:hover .sorting-indicator.asc:before {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.check-column .label-covers-full-cell + input {
|
||||
.check-column input {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.check-column .label-covers-full-cell:hover + input {
|
||||
.check-column input:where(:not(:disabled)):hover,
|
||||
.check-column:hover input:where(:not(:disabled)) {
|
||||
box-shadow: 0 0 0 1px #2271b1;
|
||||
}
|
||||
|
||||
.check-column label:hover,
|
||||
.check-column input:hover + label {
|
||||
background: rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
|
||||
.locked-indicator {
|
||||
display: none;
|
||||
margin-right: 6px;
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
@@ -570,7 +570,8 @@ th.sorted.desc:hover .sorting-indicator.asc:before {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.check-column .label-covers-full-cell {
|
||||
.check-column label {
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: block;
|
||||
@@ -579,15 +580,21 @@ th.sorted.desc:hover .sorting-indicator.asc:before {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.check-column .label-covers-full-cell + input {
|
||||
.check-column input {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.check-column .label-covers-full-cell:hover + input {
|
||||
.check-column input:where(:not(:disabled)):hover,
|
||||
.check-column:hover input:where(:not(:disabled)) {
|
||||
box-shadow: 0 0 0 1px #2271b1;
|
||||
}
|
||||
|
||||
.check-column label:hover,
|
||||
.check-column input:hover + label {
|
||||
background: rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
|
||||
.locked-indicator {
|
||||
display: none;
|
||||
margin-left: 6px;
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -43,8 +43,8 @@ p {
|
||||
}
|
||||
|
||||
.login .message,
|
||||
.login .success,
|
||||
.login #login_error {
|
||||
.login .notice,
|
||||
.login .success {
|
||||
border-right: 4px solid #72aee6;
|
||||
padding: 12px;
|
||||
margin-right: 0;
|
||||
@@ -58,10 +58,19 @@ p {
|
||||
border-right-color: #00a32a;
|
||||
}
|
||||
|
||||
.login #login_error {
|
||||
/* Match border color from common.css */
|
||||
.login .notice-error {
|
||||
border-right-color: #d63638;
|
||||
}
|
||||
|
||||
.login .login-error-list {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.login .login-error-list li + li {
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
#loginform p.submit,
|
||||
.login-action-lostpassword p.submit {
|
||||
border: none;
|
||||
@@ -238,6 +247,11 @@ p {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#login form .indicator-hint,
|
||||
#login #reg_passmail {
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
#login form p.submit {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
@@ -343,9 +357,7 @@ p {
|
||||
font-family: Consolas, Monaco, monospace;
|
||||
}
|
||||
|
||||
.js.login input.password-input,
|
||||
.js.login-action-rp form .input,
|
||||
.js.login-action-rp input[type="text"] {
|
||||
.js.login input.password-input {
|
||||
padding-left: 2.5rem;
|
||||
}
|
||||
|
||||
@@ -355,6 +367,8 @@ p {
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.js.login-action-resetpass input[type="text"],
|
||||
.js.login-action-resetpass input[type="password"],
|
||||
.js.login-action-rp input[type="text"],
|
||||
.js.login-action-rp input[type="password"] {
|
||||
margin-bottom: 0;
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -42,8 +42,8 @@ p {
|
||||
}
|
||||
|
||||
.login .message,
|
||||
.login .success,
|
||||
.login #login_error {
|
||||
.login .notice,
|
||||
.login .success {
|
||||
border-left: 4px solid #72aee6;
|
||||
padding: 12px;
|
||||
margin-left: 0;
|
||||
@@ -57,10 +57,19 @@ p {
|
||||
border-left-color: #00a32a;
|
||||
}
|
||||
|
||||
.login #login_error {
|
||||
/* Match border color from common.css */
|
||||
.login .notice-error {
|
||||
border-left-color: #d63638;
|
||||
}
|
||||
|
||||
.login .login-error-list {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.login .login-error-list li + li {
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
#loginform p.submit,
|
||||
.login-action-lostpassword p.submit {
|
||||
border: none;
|
||||
@@ -237,6 +246,11 @@ p {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#login form .indicator-hint,
|
||||
#login #reg_passmail {
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
#login form p.submit {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
@@ -342,9 +356,7 @@ p {
|
||||
font-family: Consolas, Monaco, monospace;
|
||||
}
|
||||
|
||||
.js.login input.password-input,
|
||||
.js.login-action-rp form .input,
|
||||
.js.login-action-rp input[type="text"] {
|
||||
.js.login input.password-input {
|
||||
padding-right: 2.5rem;
|
||||
}
|
||||
|
||||
@@ -354,6 +366,8 @@ p {
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.js.login-action-resetpass input[type="text"],
|
||||
.js.login-action-resetpass input[type="password"],
|
||||
.js.login-action-rp input[type="text"],
|
||||
.js.login-action-rp input[type="password"] {
|
||||
margin-bottom: 0;
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -131,6 +131,7 @@
|
||||
}
|
||||
|
||||
.media-item .edit-attachment.copy-to-clipboard-container {
|
||||
display: flex;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
@@ -1272,6 +1273,7 @@ audio, video {
|
||||
* HiDPI Displays
|
||||
*/
|
||||
@media print,
|
||||
(-webkit-min-device-pixel-ratio: 1.25),
|
||||
(min-resolution: 120dpi) {
|
||||
.imgedit-wait:before {
|
||||
background-image: url(../images/spinner-2x.gif);
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -130,6 +130,7 @@
|
||||
}
|
||||
|
||||
.media-item .edit-attachment.copy-to-clipboard-container {
|
||||
display: flex;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
@@ -1271,6 +1272,7 @@ audio, video {
|
||||
* HiDPI Displays
|
||||
*/
|
||||
@media print,
|
||||
(-webkit-min-device-pixel-ratio: 1.25),
|
||||
(min-resolution: 120dpi) {
|
||||
.imgedit-wait:before {
|
||||
background-image: url(../images/spinner-2x.gif);
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -838,20 +838,13 @@ body.menu-max-depth-11 { min-width: 1280px !important; }
|
||||
|
||||
/* Major/minor publishing actions (classes) */
|
||||
.nav-menus-php .major-publishing-actions {
|
||||
clear: both;
|
||||
padding: 10px 0;
|
||||
line-height: 2.15384615;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.nav-menus-php .major-publishing-actions .publishing-action {
|
||||
text-align: left;
|
||||
float: left;
|
||||
}
|
||||
|
||||
/* Same as the Publish Meta Box #delete-action */
|
||||
.nav-menus-php .delete-action {
|
||||
float: right;
|
||||
line-height: 2.1;
|
||||
.nav-menus-php .major-publishing-actions > * {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.nav-menus-php .major-publishing-actions .form-invalid {
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
@@ -837,20 +837,13 @@ body.menu-max-depth-11 { min-width: 1280px !important; }
|
||||
|
||||
/* Major/minor publishing actions (classes) */
|
||||
.nav-menus-php .major-publishing-actions {
|
||||
clear: both;
|
||||
padding: 10px 0;
|
||||
line-height: 2.15384615;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.nav-menus-php .major-publishing-actions .publishing-action {
|
||||
text-align: right;
|
||||
float: right;
|
||||
}
|
||||
|
||||
/* Same as the Publish Meta Box #delete-action */
|
||||
.nav-menus-php .delete-action {
|
||||
float: left;
|
||||
line-height: 2.1;
|
||||
.nav-menus-php .major-publishing-actions > * {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.nav-menus-php .major-publishing-actions .form-invalid {
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -559,6 +559,7 @@ div.revisions-controls > .wp-slider > .ui-slider-handle {
|
||||
* HiDPI Displays
|
||||
*/
|
||||
@media print,
|
||||
(-webkit-min-device-pixel-ratio: 1.25),
|
||||
(min-resolution: 120dpi) {
|
||||
.revision-tick.completed-false {
|
||||
background-image: url(../images/spinner-2x.gif);
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
@@ -558,6 +558,7 @@ div.revisions-controls > .wp-slider > .ui-slider-handle {
|
||||
* HiDPI Displays
|
||||
*/
|
||||
@media print,
|
||||
(-webkit-min-device-pixel-ratio: 1.25),
|
||||
(min-resolution: 120dpi) {
|
||||
.revision-tick.completed-false {
|
||||
background-image: url(../images/spinner-2x.gif);
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -507,10 +507,12 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap {
|
||||
z-index: 30;
|
||||
box-sizing: border-box;
|
||||
border-top: 1px solid #f0f0f1;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 5px;
|
||||
}
|
||||
|
||||
.theme-overlay .theme-actions a {
|
||||
margin-left: 5px;
|
||||
.theme-overlay .theme-actions .button {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
@@ -522,26 +524,21 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap {
|
||||
|
||||
.broken-themes a.delete-theme,
|
||||
.theme-overlay .theme-actions .delete-theme {
|
||||
color: #d63638;
|
||||
color: #b32d2e;
|
||||
text-decoration: none;
|
||||
border-color: transparent;
|
||||
box-shadow: none;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.theme-overlay .theme-actions .delete-theme {
|
||||
position: absolute;
|
||||
left: 10px;
|
||||
bottom: 5px;
|
||||
}
|
||||
|
||||
.broken-themes a.delete-theme:hover,
|
||||
.broken-themes a.delete-theme:focus,
|
||||
.theme-overlay .theme-actions .delete-theme:hover,
|
||||
.theme-overlay .theme-actions .delete-theme:focus {
|
||||
background: #d63638;
|
||||
background: #b32d2e;
|
||||
color: #fff;
|
||||
border-color: #d63638;
|
||||
border-color: #b32d2e;
|
||||
box-shadow: 0 0 0 1px #b32d2e;
|
||||
}
|
||||
|
||||
.theme-overlay .theme-actions .active-theme,
|
||||
@@ -1942,6 +1939,7 @@ body.full-overlay-active {
|
||||
* HiDPI Displays
|
||||
*/
|
||||
@media print,
|
||||
(-webkit-min-device-pixel-ratio: 1.25),
|
||||
(min-resolution: 120dpi) {
|
||||
.wp-full-overlay .collapse-sidebar-arrow {
|
||||
background-image: url(../images/arrows-2x.png);
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -506,10 +506,12 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap {
|
||||
z-index: 30;
|
||||
box-sizing: border-box;
|
||||
border-top: 1px solid #f0f0f1;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 5px;
|
||||
}
|
||||
|
||||
.theme-overlay .theme-actions a {
|
||||
margin-right: 5px;
|
||||
.theme-overlay .theme-actions .button {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
@@ -521,26 +523,21 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap {
|
||||
|
||||
.broken-themes a.delete-theme,
|
||||
.theme-overlay .theme-actions .delete-theme {
|
||||
color: #d63638;
|
||||
color: #b32d2e;
|
||||
text-decoration: none;
|
||||
border-color: transparent;
|
||||
box-shadow: none;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.theme-overlay .theme-actions .delete-theme {
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
bottom: 5px;
|
||||
}
|
||||
|
||||
.broken-themes a.delete-theme:hover,
|
||||
.broken-themes a.delete-theme:focus,
|
||||
.theme-overlay .theme-actions .delete-theme:hover,
|
||||
.theme-overlay .theme-actions .delete-theme:focus {
|
||||
background: #d63638;
|
||||
background: #b32d2e;
|
||||
color: #fff;
|
||||
border-color: #d63638;
|
||||
border-color: #b32d2e;
|
||||
box-shadow: 0 0 0 1px #b32d2e;
|
||||
}
|
||||
|
||||
.theme-overlay .theme-actions .active-theme,
|
||||
@@ -1941,6 +1938,7 @@ body.full-overlay-active {
|
||||
* HiDPI Displays
|
||||
*/
|
||||
@media print,
|
||||
(-webkit-min-device-pixel-ratio: 1.25),
|
||||
(min-resolution: 120dpi) {
|
||||
.wp-full-overlay .collapse-sidebar-arrow {
|
||||
background-image: url(../images/arrows-2x.png);
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user