2014-02-19 22:43:14 +01:00
|
|
|
#wpbody-content #dashboard-widgets.columns-1 .postbox-container {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wpbody-content #dashboard-widgets.columns-2 .postbox-container {
|
|
|
|
width: 49.5%;
|
|
|
|
}
|
|
|
|
|
2020-03-03 01:37:06 +01:00
|
|
|
#wpbody-content #dashboard-widgets.columns-2 #postbox-container-2,
|
2014-02-19 22:43:14 +01:00
|
|
|
#wpbody-content #dashboard-widgets.columns-2 #postbox-container-3,
|
|
|
|
#wpbody-content #dashboard-widgets.columns-2 #postbox-container-4 {
|
|
|
|
float: right;
|
|
|
|
width: 50.5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wpbody-content #dashboard-widgets.columns-3 .postbox-container {
|
|
|
|
width: 33.5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wpbody-content #dashboard-widgets.columns-3 #postbox-container-1 {
|
|
|
|
width: 33%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wpbody-content #dashboard-widgets.columns-3 #postbox-container-3,
|
|
|
|
#wpbody-content #dashboard-widgets.columns-3 #postbox-container-4 {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wpbody-content #dashboard-widgets.columns-4 .postbox-container {
|
|
|
|
width: 25%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard-widgets .postbox-container {
|
|
|
|
width: 25%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard-widgets-wrap .columns-3 #postbox-container-4 .empty-container {
|
|
|
|
border: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard-widgets-wrap {
|
|
|
|
overflow: hidden;
|
|
|
|
margin: 0 -8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard-widgets .postbox .inside {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard-widgets .meta-box-sortables {
|
Accessibility: Allow post boxes on the Dashboard and Classic Editor pages to be reordered by using the keyboard.
So far, it has been possible to rearrange into a new order the post boxes (also known as "widgets" on the Dashboard and "meta boxes" on the Edit post page) only by using a pointing device, for example a mouse.
This change adds new controls and functionality to allow the boxes to be rearranged also with the keyboard. Additionally, audible messages are sent to the admin ARIA live region to notify screen reader users of the reorder action result.
Props joedolson, anevins, antpb, audrasjb, xkon, MarcoZ, karmatosed, afercia.
Fixes #39074.
Built from https://develop.svn.wordpress.org/trunk@48373
git-svn-id: http://core.svn.wordpress.org/trunk@48142 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-07-07 15:00:02 +02:00
|
|
|
display: flow-root; /* avoid margin collapsing between parent and first/last child elements */
|
2020-10-27 11:47:12 +01:00
|
|
|
/* Required min-height to make the jQuery UI Sortable drop zone work. */
|
|
|
|
min-height: 100px;
|
2020-07-06 20:03:02 +02:00
|
|
|
margin: 0 8px 20px;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2020-10-27 11:47:12 +01:00
|
|
|
#dashboard-widgets .postbox-container .empty-container {
|
Administration: Standardize colors used in CSS to a single palette.
This is part of a larger project in cleaning up core's admin CSS. This collapses all colors used in the CSS to one of 12 blues, greens, reds, and yellows, 13 grays, pure black, and pure white. The colors are perceptually uniform from light to dark, half of each range has a 4.5 or higher contrast against white, the other half has a 4.5 or higher contrast against black.
Standardizing on this set of colors will help contributors make consistent, accessible design decisions. The full color palette can be seen here: https://codepen.io/ryelle/full/WNGVEjw
Props notlaura, danfarrow, kburgoine, drw158, audrasjb, Joen, hedgefield, ibdz, melchoyce.
See #49999.
Built from https://develop.svn.wordpress.org/trunk@50025
git-svn-id: http://core.svn.wordpress.org/trunk@49726 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-01-26 19:54:59 +01:00
|
|
|
outline: 3px dashed #c3c4c7;
|
2020-10-27 11:47:12 +01:00
|
|
|
height: 250px;
|
2020-08-04 15:17:02 +02:00
|
|
|
}
|
|
|
|
|
2020-10-27 11:47:12 +01:00
|
|
|
/* Only highlight drop zones when dragging and only in the 2 columns layout. */
|
|
|
|
.is-dragging-metaboxes #dashboard-widgets .meta-box-sortables {
|
Administration: Standardize colors used in CSS to a single palette.
This is part of a larger project in cleaning up core's admin CSS. This collapses all colors used in the CSS to one of 12 blues, greens, reds, and yellows, 13 grays, pure black, and pure white. The colors are perceptually uniform from light to dark, half of each range has a 4.5 or higher contrast against white, the other half has a 4.5 or higher contrast against black.
Standardizing on this set of colors will help contributors make consistent, accessible design decisions. The full color palette can be seen here: https://codepen.io/ryelle/full/WNGVEjw
Props notlaura, danfarrow, kburgoine, drw158, audrasjb, Joen, hedgefield, ibdz, melchoyce.
See #49999.
Built from https://develop.svn.wordpress.org/trunk@50025
git-svn-id: http://core.svn.wordpress.org/trunk@49726 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-01-26 19:54:59 +01:00
|
|
|
outline: 3px dashed #646970;
|
2020-10-27 11:47:12 +01:00
|
|
|
/* Prevent margin on the child from collapsing with margin on the parent. */
|
|
|
|
display: flow-root;
|
2020-07-06 20:03:02 +02:00
|
|
|
}
|
|
|
|
|
2020-10-27 11:47:12 +01:00
|
|
|
#dashboard-widgets .postbox-container .empty-container:after {
|
2020-07-06 20:03:02 +02:00
|
|
|
content: attr(data-emptystring);
|
|
|
|
margin: auto;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
transform: translateY( -50% );
|
|
|
|
padding: 0 2em;
|
|
|
|
text-align: center;
|
Administration: Standardize colors used in CSS to a single palette.
This is part of a larger project in cleaning up core's admin CSS. This collapses all colors used in the CSS to one of 12 blues, greens, reds, and yellows, 13 grays, pure black, and pure white. The colors are perceptually uniform from light to dark, half of each range has a 4.5 or higher contrast against white, the other half has a 4.5 or higher contrast against black.
Standardizing on this set of colors will help contributors make consistent, accessible design decisions. The full color palette can be seen here: https://codepen.io/ryelle/full/WNGVEjw
Props notlaura, danfarrow, kburgoine, drw158, audrasjb, Joen, hedgefield, ibdz, melchoyce.
See #49999.
Built from https://develop.svn.wordpress.org/trunk@50025
git-svn-id: http://core.svn.wordpress.org/trunk@49726 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-01-26 19:54:59 +01:00
|
|
|
color: #646970;
|
2020-07-06 20:03:02 +02:00
|
|
|
font-size: 16px;
|
|
|
|
line-height: 1.5;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
/* @todo: this was originally in this section, but likely belongs elsewhere */
|
|
|
|
#the-comment-list td.comment p.comment-author {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#the-comment-list p.comment-author img {
|
|
|
|
float: left;
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#the-comment-list p.comment-author strong a {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#the-comment-list td {
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
|
|
|
#the-comment-list td.comment {
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
2014-02-25 02:22:14 +01:00
|
|
|
#the-comment-list td.comment img {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
/* Welcome Panel */
|
2017-10-23 22:48:47 +02:00
|
|
|
.welcome-panel {
|
2014-02-19 22:43:14 +01:00
|
|
|
position: relative;
|
|
|
|
overflow: auto;
|
|
|
|
margin: 16px 0;
|
|
|
|
padding: 23px 10px 0;
|
Administration: Standardize colors used in CSS to a single palette.
This is part of a larger project in cleaning up core's admin CSS. This collapses all colors used in the CSS to one of 12 blues, greens, reds, and yellows, 13 grays, pure black, and pure white. The colors are perceptually uniform from light to dark, half of each range has a 4.5 or higher contrast against white, the other half has a 4.5 or higher contrast against black.
Standardizing on this set of colors will help contributors make consistent, accessible design decisions. The full color palette can be seen here: https://codepen.io/ryelle/full/WNGVEjw
Props notlaura, danfarrow, kburgoine, drw158, audrasjb, Joen, hedgefield, ibdz, melchoyce.
See #49999.
Built from https://develop.svn.wordpress.org/trunk@50025
git-svn-id: http://core.svn.wordpress.org/trunk@49726 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-01-26 19:54:59 +01:00
|
|
|
border: 1px solid #c3c4c7;
|
2019-03-04 23:02:52 +01:00
|
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
|
2014-02-19 22:43:14 +01:00
|
|
|
background: #fff;
|
|
|
|
font-size: 13px;
|
2019-05-29 18:03:52 +02:00
|
|
|
line-height: 1.7;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2017-10-23 22:48:47 +02:00
|
|
|
.welcome-panel h2 {
|
2014-02-19 22:43:14 +01:00
|
|
|
margin: 0;
|
|
|
|
font-size: 21px;
|
2016-06-17 20:37:28 +02:00
|
|
|
font-weight: 400;
|
2014-02-19 22:43:14 +01:00
|
|
|
line-height: 1.2;
|
|
|
|
}
|
|
|
|
|
2017-10-23 22:48:47 +02:00
|
|
|
.welcome-panel h3 {
|
2014-02-19 22:43:14 +01:00
|
|
|
margin: 1.33em 0 0;
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
2017-10-23 22:48:47 +02:00
|
|
|
.welcome-panel li {
|
2014-02-19 22:43:14 +01:00
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
2017-10-23 22:48:47 +02:00
|
|
|
.welcome-panel p {
|
2021-03-24 17:41:07 +01:00
|
|
|
color: #646970;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2019-11-24 20:57:05 +01:00
|
|
|
.welcome-panel li a {
|
2014-02-19 22:43:14 +01:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.welcome-panel .about-description {
|
|
|
|
font-size: 16px;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2017-10-23 22:48:47 +02:00
|
|
|
.welcome-panel .welcome-panel-close {
|
2014-02-19 22:43:14 +01:00
|
|
|
position: absolute;
|
2015-05-09 22:35:27 +02:00
|
|
|
top: 10px;
|
2014-02-19 22:43:14 +01:00
|
|
|
right: 10px;
|
2015-05-09 22:35:27 +02:00
|
|
|
padding: 10px 15px 10px 21px;
|
2014-02-19 22:43:14 +01:00
|
|
|
font-size: 13px;
|
2015-05-09 22:35:27 +02:00
|
|
|
line-height: 1.23076923; /* Chrome rounding, needs to be 16px equivalent */
|
2014-02-19 22:43:14 +01:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2017-10-23 22:48:47 +02:00
|
|
|
.welcome-panel .welcome-panel-close:before {
|
2014-02-19 22:43:14 +01:00
|
|
|
position: absolute;
|
2015-06-27 17:07:24 +02:00
|
|
|
top: 8px;
|
2015-05-09 22:35:27 +02:00
|
|
|
left: 0;
|
2014-02-19 22:43:14 +01:00
|
|
|
transition: all .1s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-core-ui .welcome-panel .button.button-hero {
|
2014-09-29 15:57:16 +02:00
|
|
|
margin: 15px 13px 3px 0;
|
|
|
|
padding: 12px 36px;
|
|
|
|
height: auto;
|
2014-10-03 11:42:16 +02:00
|
|
|
line-height: 1.4285714;
|
2014-09-29 15:57:16 +02:00
|
|
|
white-space: normal;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2017-10-23 22:48:47 +02:00
|
|
|
.welcome-panel-content {
|
|
|
|
margin-left: 13px;
|
2014-02-19 22:43:14 +01:00
|
|
|
max-width: 1500px;
|
|
|
|
}
|
|
|
|
|
2017-10-23 22:48:47 +02:00
|
|
|
.welcome-panel .welcome-panel-column-container {
|
2014-02-19 22:43:14 +01:00
|
|
|
clear: both;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2017-10-23 22:48:47 +02:00
|
|
|
.welcome-panel .welcome-panel-column {
|
2014-02-19 22:43:14 +01:00
|
|
|
width: 32%;
|
|
|
|
min-width: 200px;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
2017-10-23 22:48:47 +02:00
|
|
|
.welcome-panel .welcome-panel-column:first-child {
|
2014-02-19 22:43:14 +01:00
|
|
|
width: 36%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.welcome-panel-column p.hide-if-no-customize {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
2017-10-23 22:48:47 +02:00
|
|
|
.welcome-panel-column p {
|
2014-02-19 22:43:14 +01:00
|
|
|
margin-top: 7px;
|
Administration: Standardize colors used in CSS to a single palette.
This is part of a larger project in cleaning up core's admin CSS. This collapses all colors used in the CSS to one of 12 blues, greens, reds, and yellows, 13 grays, pure black, and pure white. The colors are perceptually uniform from light to dark, half of each range has a 4.5 or higher contrast against white, the other half has a 4.5 or higher contrast against black.
Standardizing on this set of colors will help contributors make consistent, accessible design decisions. The full color palette can be seen here: https://codepen.io/ryelle/full/WNGVEjw
Props notlaura, danfarrow, kburgoine, drw158, audrasjb, Joen, hedgefield, ibdz, melchoyce.
See #49999.
Built from https://develop.svn.wordpress.org/trunk@50025
git-svn-id: http://core.svn.wordpress.org/trunk@49726 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-01-26 19:54:59 +01:00
|
|
|
color: #3c434a;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2015-12-13 13:01:30 +01:00
|
|
|
.welcome-panel .welcome-widgets-menus {
|
2019-05-29 18:03:52 +02:00
|
|
|
line-height: 1.14285714;
|
2015-12-13 13:01:30 +01:00
|
|
|
}
|
|
|
|
|
2017-10-23 22:48:47 +02:00
|
|
|
.welcome-panel .welcome-panel-column ul {
|
|
|
|
margin: 0.8em 1em 1em 0;
|
2015-12-13 13:01:30 +01:00
|
|
|
}
|
|
|
|
|
2017-10-23 22:48:47 +02:00
|
|
|
.welcome-panel .welcome-panel-column li {
|
2019-05-29 18:03:52 +02:00
|
|
|
line-height: 1.14285714;
|
2015-12-13 13:01:30 +01:00
|
|
|
list-style-type: none;
|
|
|
|
padding: 0 0 8px;
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
.welcome-panel .welcome-icon {
|
|
|
|
background: transparent !important;
|
|
|
|
}
|
|
|
|
|
2015-12-13 13:01:30 +01:00
|
|
|
/* Welcome Panel and Right Now common Icons style */
|
|
|
|
|
|
|
|
.welcome-panel .welcome-icon:before,
|
|
|
|
#dashboard_right_now li a:before,
|
2020-05-27 16:33:11 +02:00
|
|
|
#dashboard_right_now li span:before,
|
|
|
|
#dashboard_right_now .search-engines-info:before {
|
Administration: Standardize colors used in CSS to a single palette.
This is part of a larger project in cleaning up core's admin CSS. This collapses all colors used in the CSS to one of 12 blues, greens, reds, and yellows, 13 grays, pure black, and pure white. The colors are perceptually uniform from light to dark, half of each range has a 4.5 or higher contrast against white, the other half has a 4.5 or higher contrast against black.
Standardizing on this set of colors will help contributors make consistent, accessible design decisions. The full color palette can be seen here: https://codepen.io/ryelle/full/WNGVEjw
Props notlaura, danfarrow, kburgoine, drw158, audrasjb, Joen, hedgefield, ibdz, melchoyce.
See #49999.
Built from https://develop.svn.wordpress.org/trunk@50025
git-svn-id: http://core.svn.wordpress.org/trunk@49726 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-01-26 19:54:59 +01:00
|
|
|
color: #646970;
|
2015-09-05 21:57:25 +02:00
|
|
|
font: normal 20px/1 dashicons;
|
2020-10-26 03:25:09 +01:00
|
|
|
speak: never;
|
2014-02-19 22:43:14 +01:00
|
|
|
display: inline-block;
|
|
|
|
padding: 0 10px 0 0;
|
|
|
|
position: relative;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
text-decoration: none !important;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
2015-12-13 13:01:30 +01:00
|
|
|
/* Welcome Panel specific Icons styles */
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
.welcome-panel .welcome-write-blog:before,
|
|
|
|
.welcome-panel .welcome-edit-page:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f119";
|
2014-02-19 22:43:14 +01:00
|
|
|
top: -3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.welcome-panel .welcome-add-page:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f132";
|
2015-12-13 13:01:30 +01:00
|
|
|
top: -1px;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2019-01-09 01:12:49 +01:00
|
|
|
.welcome-panel .welcome-setup-home:before {
|
|
|
|
content: "\f102";
|
|
|
|
top: -1px;
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
.welcome-panel .welcome-view-site:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f115";
|
2014-02-19 22:43:14 +01:00
|
|
|
top: -2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.welcome-panel .welcome-widgets-menus:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f116";
|
2014-02-19 22:43:14 +01:00
|
|
|
top: -2px;
|
|
|
|
}
|
|
|
|
|
2019-11-24 20:57:05 +01:00
|
|
|
.welcome-panel .welcome-widgets:before {
|
|
|
|
content: "\f538";
|
|
|
|
top: -2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.welcome-panel .welcome-menus:before {
|
|
|
|
content: "\f163";
|
|
|
|
top: -2px;
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
.welcome-panel .welcome-comments:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f117";
|
2014-02-19 22:43:14 +01:00
|
|
|
top: -1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.welcome-panel .welcome-learn-more:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f118";
|
2014-02-19 22:43:14 +01:00
|
|
|
top: -1px;
|
|
|
|
}
|
|
|
|
|
2015-12-13 13:01:30 +01:00
|
|
|
/* Right Now specific Icons styles */
|
|
|
|
|
2020-05-27 16:33:11 +02:00
|
|
|
#dashboard_right_now .search-engines-info:before,
|
2015-12-13 13:01:30 +01:00
|
|
|
#dashboard_right_now li a:before,
|
2016-01-05 15:19:28 +01:00
|
|
|
#dashboard_right_now li > span:before { /* get only the first level span to exclude screen-reader-text in mu-storage */
|
2015-12-13 13:01:30 +01:00
|
|
|
content: "\f159"; /* generic icon for items added by CPTs ? */
|
|
|
|
padding: 0 5px 0 0;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2015-12-13 13:01:30 +01:00
|
|
|
#dashboard_right_now .page-count a:before,
|
|
|
|
#dashboard_right_now .page-count span:before {
|
|
|
|
content: "\f105";
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2015-12-13 13:01:30 +01:00
|
|
|
#dashboard_right_now .post-count a:before,
|
|
|
|
#dashboard_right_now .post-count span:before {
|
|
|
|
content: "\f109";
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_right_now .comment-count a:before {
|
|
|
|
content: "\f101";
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_right_now .comment-mod-count a:before {
|
|
|
|
content: "\f125";
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_right_now .storage-count a:before {
|
|
|
|
content: "\f104";
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_right_now .storage-count.warning a:before {
|
|
|
|
content: "\f153";
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2020-05-27 16:33:11 +02:00
|
|
|
#dashboard_right_now .search-engines-info:before {
|
|
|
|
content: "\f348";
|
|
|
|
}
|
|
|
|
|
Dashboard: Update the existing WordPress News dashboard widget to also include upcoming meetup events and WordCamps near the current user’s location.
Props @afercia, @andreamiddleton, @azaozz, @camikaos, @coreymckrill, @chanthaboune, @courtneypk, @dd32, @iandunn, @iseulde, @mapk, @mayukojpn, @melchoyce, @nao, @obenland, @pento, @samuelsidler, @stephdau, @tellyworth.
See #40702.
Built from https://develop.svn.wordpress.org/trunk@40607
git-svn-id: http://core.svn.wordpress.org/trunk@40477 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-10 22:04:42 +02:00
|
|
|
/* Dashboard WordPress events */
|
|
|
|
|
|
|
|
.community-events-errors {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.community-events-loading {
|
|
|
|
padding: 10px 12px 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.community-events {
|
|
|
|
margin-bottom: 6px;
|
|
|
|
padding: 0 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.community-events .spinner {
|
|
|
|
float: none;
|
2017-05-19 16:44:41 +02:00
|
|
|
margin: 5px 2px 0;
|
|
|
|
vertical-align: top;
|
Dashboard: Update the existing WordPress News dashboard widget to also include upcoming meetup events and WordCamps near the current user’s location.
Props @afercia, @andreamiddleton, @azaozz, @camikaos, @coreymckrill, @chanthaboune, @courtneypk, @dd32, @iandunn, @iseulde, @mapk, @mayukojpn, @melchoyce, @nao, @obenland, @pento, @samuelsidler, @stephdau, @tellyworth.
See #40702.
Built from https://develop.svn.wordpress.org/trunk@40607
git-svn-id: http://core.svn.wordpress.org/trunk@40477 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-10 22:04:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.community-events-errors[aria-hidden="true"],
|
2017-05-19 06:01:41 +02:00
|
|
|
.community-events-errors [aria-hidden="true"],
|
Dashboard: Update the existing WordPress News dashboard widget to also include upcoming meetup events and WordCamps near the current user’s location.
Props @afercia, @andreamiddleton, @azaozz, @camikaos, @coreymckrill, @chanthaboune, @courtneypk, @dd32, @iandunn, @iseulde, @mapk, @mayukojpn, @melchoyce, @nao, @obenland, @pento, @samuelsidler, @stephdau, @tellyworth.
See #40702.
Built from https://develop.svn.wordpress.org/trunk@40607
git-svn-id: http://core.svn.wordpress.org/trunk@40477 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-10 22:04:42 +02:00
|
|
|
.community-events-loading[aria-hidden="true"],
|
|
|
|
.community-events[aria-hidden="true"],
|
2017-05-19 06:01:41 +02:00
|
|
|
.community-events [aria-hidden="true"] {
|
Dashboard: Update the existing WordPress News dashboard widget to also include upcoming meetup events and WordCamps near the current user’s location.
Props @afercia, @andreamiddleton, @azaozz, @camikaos, @coreymckrill, @chanthaboune, @courtneypk, @dd32, @iandunn, @iseulde, @mapk, @mayukojpn, @melchoyce, @nao, @obenland, @pento, @samuelsidler, @stephdau, @tellyworth.
See #40702.
Built from https://develop.svn.wordpress.org/trunk@40607
git-svn-id: http://core.svn.wordpress.org/trunk@40477 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-10 22:04:42 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.community-events .activity-block:first-child,
|
|
|
|
.community-events h2 {
|
|
|
|
padding-top: 12px;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.community-events-form {
|
|
|
|
margin: 15px 0 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.community-events-form .regular-text {
|
|
|
|
width: 40%;
|
2017-05-19 06:01:41 +02:00
|
|
|
height: 29px;
|
|
|
|
margin: 0;
|
|
|
|
vertical-align: top;
|
Dashboard: Update the existing WordPress News dashboard widget to also include upcoming meetup events and WordCamps near the current user’s location.
Props @afercia, @andreamiddleton, @azaozz, @camikaos, @coreymckrill, @chanthaboune, @courtneypk, @dd32, @iandunn, @iseulde, @mapk, @mayukojpn, @melchoyce, @nao, @obenland, @pento, @samuelsidler, @stephdau, @tellyworth.
See #40702.
Built from https://develop.svn.wordpress.org/trunk@40607
git-svn-id: http://core.svn.wordpress.org/trunk@40477 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-10 22:04:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.community-events li.event-none {
|
Administration: Standardize colors used in CSS to a single palette.
This is part of a larger project in cleaning up core's admin CSS. This collapses all colors used in the CSS to one of 12 blues, greens, reds, and yellows, 13 grays, pure black, and pure white. The colors are perceptually uniform from light to dark, half of each range has a 4.5 or higher contrast against white, the other half has a 4.5 or higher contrast against black.
Standardizing on this set of colors will help contributors make consistent, accessible design decisions. The full color palette can be seen here: https://codepen.io/ryelle/full/WNGVEjw
Props notlaura, danfarrow, kburgoine, drw158, audrasjb, Joen, hedgefield, ibdz, melchoyce.
See #49999.
Built from https://develop.svn.wordpress.org/trunk@50025
git-svn-id: http://core.svn.wordpress.org/trunk@49726 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-01-26 19:54:59 +01:00
|
|
|
border-left: 4px solid #72aee6;
|
Dashboard: Update the existing WordPress News dashboard widget to also include upcoming meetup events and WordCamps near the current user’s location.
Props @afercia, @andreamiddleton, @azaozz, @camikaos, @coreymckrill, @chanthaboune, @courtneypk, @dd32, @iandunn, @iseulde, @mapk, @mayukojpn, @melchoyce, @nao, @obenland, @pento, @samuelsidler, @stephdau, @tellyworth.
See #40702.
Built from https://develop.svn.wordpress.org/trunk@40607
git-svn-id: http://core.svn.wordpress.org/trunk@40477 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-10 22:04:42 +02:00
|
|
|
}
|
|
|
|
|
2020-06-23 23:53:09 +02:00
|
|
|
#dashboard-widgets .community-events li.event-none a {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
Dashboard: Update the existing WordPress News dashboard widget to also include upcoming meetup events and WordCamps near the current user’s location.
Props @afercia, @andreamiddleton, @azaozz, @camikaos, @coreymckrill, @chanthaboune, @courtneypk, @dd32, @iandunn, @iseulde, @mapk, @mayukojpn, @melchoyce, @nao, @obenland, @pento, @samuelsidler, @stephdau, @tellyworth.
See #40702.
Built from https://develop.svn.wordpress.org/trunk@40607
git-svn-id: http://core.svn.wordpress.org/trunk@40477 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-10 22:04:42 +02:00
|
|
|
.community-events-form label {
|
|
|
|
display: inline-block;
|
2017-05-19 06:01:41 +02:00
|
|
|
vertical-align: top;
|
2019-05-29 18:03:52 +02:00
|
|
|
line-height: 2.15384615;
|
2017-05-19 06:01:41 +02:00
|
|
|
height: 28px;
|
Dashboard: Update the existing WordPress News dashboard widget to also include upcoming meetup events and WordCamps near the current user’s location.
Props @afercia, @andreamiddleton, @azaozz, @camikaos, @coreymckrill, @chanthaboune, @courtneypk, @dd32, @iandunn, @iseulde, @mapk, @mayukojpn, @melchoyce, @nao, @obenland, @pento, @samuelsidler, @stephdau, @tellyworth.
See #40702.
Built from https://develop.svn.wordpress.org/trunk@40607
git-svn-id: http://core.svn.wordpress.org/trunk@40477 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-10 22:04:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.community-events .activity-block > p {
|
|
|
|
margin-bottom: 0;
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2017-05-19 06:01:41 +02:00
|
|
|
.community-events-toggle-location {
|
|
|
|
vertical-align: middle;
|
Dashboard: Update the existing WordPress News dashboard widget to also include upcoming meetup events and WordCamps near the current user’s location.
Props @afercia, @andreamiddleton, @azaozz, @camikaos, @coreymckrill, @chanthaboune, @courtneypk, @dd32, @iandunn, @iseulde, @mapk, @mayukojpn, @melchoyce, @nao, @obenland, @pento, @samuelsidler, @stephdau, @tellyworth.
See #40702.
Built from https://develop.svn.wordpress.org/trunk@40607
git-svn-id: http://core.svn.wordpress.org/trunk@40477 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-10 22:04:42 +02:00
|
|
|
}
|
|
|
|
|
2017-05-19 06:01:41 +02:00
|
|
|
#community-events-submit {
|
|
|
|
margin-left: 3px;
|
|
|
|
margin-right: 3px;
|
Dashboard: Update the existing WordPress News dashboard widget to also include upcoming meetup events and WordCamps near the current user’s location.
Props @afercia, @andreamiddleton, @azaozz, @camikaos, @coreymckrill, @chanthaboune, @courtneypk, @dd32, @iandunn, @iseulde, @mapk, @mayukojpn, @melchoyce, @nao, @obenland, @pento, @samuelsidler, @stephdau, @tellyworth.
See #40702.
Built from https://develop.svn.wordpress.org/trunk@40607
git-svn-id: http://core.svn.wordpress.org/trunk@40477 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-10 22:04:42 +02:00
|
|
|
}
|
|
|
|
|
2017-05-19 06:01:41 +02:00
|
|
|
/* Needs higher specificity than #dashboard-widgets .button-link */
|
|
|
|
#dashboard-widgets .community-events-cancel.button-link {
|
|
|
|
vertical-align: top;
|
|
|
|
/* Same properties as the submit button for cross-browsers alignment. */
|
2019-05-29 18:03:52 +02:00
|
|
|
line-height: 2;
|
2017-05-19 06:01:41 +02:00
|
|
|
height: 28px;
|
Dashboard: Update the existing WordPress News dashboard widget to also include upcoming meetup events and WordCamps near the current user’s location.
Props @afercia, @andreamiddleton, @azaozz, @camikaos, @coreymckrill, @chanthaboune, @courtneypk, @dd32, @iandunn, @iseulde, @mapk, @mayukojpn, @melchoyce, @nao, @obenland, @pento, @samuelsidler, @stephdau, @tellyworth.
See #40702.
Built from https://develop.svn.wordpress.org/trunk@40607
git-svn-id: http://core.svn.wordpress.org/trunk@40477 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-10 22:04:42 +02:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.community-events ul {
|
Administration: Standardize colors used in CSS to a single palette.
This is part of a larger project in cleaning up core's admin CSS. This collapses all colors used in the CSS to one of 12 blues, greens, reds, and yellows, 13 grays, pure black, and pure white. The colors are perceptually uniform from light to dark, half of each range has a 4.5 or higher contrast against white, the other half has a 4.5 or higher contrast against black.
Standardizing on this set of colors will help contributors make consistent, accessible design decisions. The full color palette can be seen here: https://codepen.io/ryelle/full/WNGVEjw
Props notlaura, danfarrow, kburgoine, drw158, audrasjb, Joen, hedgefield, ibdz, melchoyce.
See #49999.
Built from https://develop.svn.wordpress.org/trunk@50025
git-svn-id: http://core.svn.wordpress.org/trunk@49726 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-01-26 19:54:59 +01:00
|
|
|
background-color: #f6f7f7;
|
Dashboard: Update the existing WordPress News dashboard widget to also include upcoming meetup events and WordCamps near the current user’s location.
Props @afercia, @andreamiddleton, @azaozz, @camikaos, @coreymckrill, @chanthaboune, @courtneypk, @dd32, @iandunn, @iseulde, @mapk, @mayukojpn, @melchoyce, @nao, @obenland, @pento, @samuelsidler, @stephdau, @tellyworth.
See #40702.
Built from https://develop.svn.wordpress.org/trunk@40607
git-svn-id: http://core.svn.wordpress.org/trunk@40477 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-10 22:04:42 +02:00
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 0;
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.community-events li {
|
|
|
|
margin: 0;
|
|
|
|
padding: 8px 12px;
|
Administration: Standardize colors used in CSS to a single palette.
This is part of a larger project in cleaning up core's admin CSS. This collapses all colors used in the CSS to one of 12 blues, greens, reds, and yellows, 13 grays, pure black, and pure white. The colors are perceptually uniform from light to dark, half of each range has a 4.5 or higher contrast against white, the other half has a 4.5 or higher contrast against black.
Standardizing on this set of colors will help contributors make consistent, accessible design decisions. The full color palette can be seen here: https://codepen.io/ryelle/full/WNGVEjw
Props notlaura, danfarrow, kburgoine, drw158, audrasjb, Joen, hedgefield, ibdz, melchoyce.
See #49999.
Built from https://develop.svn.wordpress.org/trunk@50025
git-svn-id: http://core.svn.wordpress.org/trunk@49726 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-01-26 19:54:59 +01:00
|
|
|
color: #2c3338;
|
Dashboard: Update the existing WordPress News dashboard widget to also include upcoming meetup events and WordCamps near the current user’s location.
Props @afercia, @andreamiddleton, @azaozz, @camikaos, @coreymckrill, @chanthaboune, @courtneypk, @dd32, @iandunn, @iseulde, @mapk, @mayukojpn, @melchoyce, @nao, @obenland, @pento, @samuelsidler, @stephdau, @tellyworth.
See #40702.
Built from https://develop.svn.wordpress.org/trunk@40607
git-svn-id: http://core.svn.wordpress.org/trunk@40477 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-10 22:04:42 +02:00
|
|
|
}
|
|
|
|
.community-events li:first-child {
|
Administration: Standardize colors used in CSS to a single palette.
This is part of a larger project in cleaning up core's admin CSS. This collapses all colors used in the CSS to one of 12 blues, greens, reds, and yellows, 13 grays, pure black, and pure white. The colors are perceptually uniform from light to dark, half of each range has a 4.5 or higher contrast against white, the other half has a 4.5 or higher contrast against black.
Standardizing on this set of colors will help contributors make consistent, accessible design decisions. The full color palette can be seen here: https://codepen.io/ryelle/full/WNGVEjw
Props notlaura, danfarrow, kburgoine, drw158, audrasjb, Joen, hedgefield, ibdz, melchoyce.
See #49999.
Built from https://develop.svn.wordpress.org/trunk@50025
git-svn-id: http://core.svn.wordpress.org/trunk@49726 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-01-26 19:54:59 +01:00
|
|
|
border-top: 1px solid #f0f0f1;
|
Dashboard: Update the existing WordPress News dashboard widget to also include upcoming meetup events and WordCamps near the current user’s location.
Props @afercia, @andreamiddleton, @azaozz, @camikaos, @coreymckrill, @chanthaboune, @courtneypk, @dd32, @iandunn, @iseulde, @mapk, @mayukojpn, @melchoyce, @nao, @obenland, @pento, @samuelsidler, @stephdau, @tellyworth.
See #40702.
Built from https://develop.svn.wordpress.org/trunk@40607
git-svn-id: http://core.svn.wordpress.org/trunk@40477 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-10 22:04:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.community-events li ~ li {
|
Administration: Standardize colors used in CSS to a single palette.
This is part of a larger project in cleaning up core's admin CSS. This collapses all colors used in the CSS to one of 12 blues, greens, reds, and yellows, 13 grays, pure black, and pure white. The colors are perceptually uniform from light to dark, half of each range has a 4.5 or higher contrast against white, the other half has a 4.5 or higher contrast against black.
Standardizing on this set of colors will help contributors make consistent, accessible design decisions. The full color palette can be seen here: https://codepen.io/ryelle/full/WNGVEjw
Props notlaura, danfarrow, kburgoine, drw158, audrasjb, Joen, hedgefield, ibdz, melchoyce.
See #49999.
Built from https://develop.svn.wordpress.org/trunk@50025
git-svn-id: http://core.svn.wordpress.org/trunk@49726 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-01-26 19:54:59 +01:00
|
|
|
border-top: 1px solid #f0f0f1;
|
Dashboard: Update the existing WordPress News dashboard widget to also include upcoming meetup events and WordCamps near the current user’s location.
Props @afercia, @andreamiddleton, @azaozz, @camikaos, @coreymckrill, @chanthaboune, @courtneypk, @dd32, @iandunn, @iseulde, @mapk, @mayukojpn, @melchoyce, @nao, @obenland, @pento, @samuelsidler, @stephdau, @tellyworth.
See #40702.
Built from https://develop.svn.wordpress.org/trunk@40607
git-svn-id: http://core.svn.wordpress.org/trunk@40477 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-10 22:04:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.community-events .activity-block.last {
|
Administration: Standardize colors used in CSS to a single palette.
This is part of a larger project in cleaning up core's admin CSS. This collapses all colors used in the CSS to one of 12 blues, greens, reds, and yellows, 13 grays, pure black, and pure white. The colors are perceptually uniform from light to dark, half of each range has a 4.5 or higher contrast against white, the other half has a 4.5 or higher contrast against black.
Standardizing on this set of colors will help contributors make consistent, accessible design decisions. The full color palette can be seen here: https://codepen.io/ryelle/full/WNGVEjw
Props notlaura, danfarrow, kburgoine, drw158, audrasjb, Joen, hedgefield, ibdz, melchoyce.
See #49999.
Built from https://develop.svn.wordpress.org/trunk@50025
git-svn-id: http://core.svn.wordpress.org/trunk@49726 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-01-26 19:54:59 +01:00
|
|
|
border-bottom: 1px solid #f0f0f1;
|
Dashboard: Update the existing WordPress News dashboard widget to also include upcoming meetup events and WordCamps near the current user’s location.
Props @afercia, @andreamiddleton, @azaozz, @camikaos, @coreymckrill, @chanthaboune, @courtneypk, @dd32, @iandunn, @iseulde, @mapk, @mayukojpn, @melchoyce, @nao, @obenland, @pento, @samuelsidler, @stephdau, @tellyworth.
See #40702.
Built from https://develop.svn.wordpress.org/trunk@40607
git-svn-id: http://core.svn.wordpress.org/trunk@40477 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-10 22:04:42 +02:00
|
|
|
padding-top: 0;
|
|
|
|
margin-top: -1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.community-events .event-info {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.event-icon {
|
|
|
|
height: 18px;
|
|
|
|
padding-right: 10px;
|
|
|
|
width: 18px;
|
|
|
|
display: none; /* Hide on smaller screens */
|
|
|
|
}
|
|
|
|
|
|
|
|
.event-icon:before {
|
Administration: Standardize colors used in CSS to a single palette.
This is part of a larger project in cleaning up core's admin CSS. This collapses all colors used in the CSS to one of 12 blues, greens, reds, and yellows, 13 grays, pure black, and pure white. The colors are perceptually uniform from light to dark, half of each range has a 4.5 or higher contrast against white, the other half has a 4.5 or higher contrast against black.
Standardizing on this set of colors will help contributors make consistent, accessible design decisions. The full color palette can be seen here: https://codepen.io/ryelle/full/WNGVEjw
Props notlaura, danfarrow, kburgoine, drw158, audrasjb, Joen, hedgefield, ibdz, melchoyce.
See #49999.
Built from https://develop.svn.wordpress.org/trunk@50025
git-svn-id: http://core.svn.wordpress.org/trunk@49726 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-01-26 19:54:59 +01:00
|
|
|
color: #646970;
|
Dashboard: Update the existing WordPress News dashboard widget to also include upcoming meetup events and WordCamps near the current user’s location.
Props @afercia, @andreamiddleton, @azaozz, @camikaos, @coreymckrill, @chanthaboune, @courtneypk, @dd32, @iandunn, @iseulde, @mapk, @mayukojpn, @melchoyce, @nao, @obenland, @pento, @samuelsidler, @stephdau, @tellyworth.
See #40702.
Built from https://develop.svn.wordpress.org/trunk@40607
git-svn-id: http://core.svn.wordpress.org/trunk@40477 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-10 22:04:42 +02:00
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
.event-meetup .event-icon:before {
|
|
|
|
content: "\f484";
|
|
|
|
}
|
|
|
|
.event-wordcamp .event-icon:before {
|
|
|
|
content: "\f486";
|
|
|
|
}
|
|
|
|
|
|
|
|
.community-events .event-title {
|
|
|
|
font-weight: 600;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.community-events .event-date,
|
|
|
|
.community-events .event-time {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.community-events-footer {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
padding: 12px;
|
Administration: Standardize colors used in CSS to a single palette.
This is part of a larger project in cleaning up core's admin CSS. This collapses all colors used in the CSS to one of 12 blues, greens, reds, and yellows, 13 grays, pure black, and pure white. The colors are perceptually uniform from light to dark, half of each range has a 4.5 or higher contrast against white, the other half has a 4.5 or higher contrast against black.
Standardizing on this set of colors will help contributors make consistent, accessible design decisions. The full color palette can be seen here: https://codepen.io/ryelle/full/WNGVEjw
Props notlaura, danfarrow, kburgoine, drw158, audrasjb, Joen, hedgefield, ibdz, melchoyce.
See #49999.
Built from https://develop.svn.wordpress.org/trunk@50025
git-svn-id: http://core.svn.wordpress.org/trunk@49726 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-01-26 19:54:59 +01:00
|
|
|
border-top: 1px solid #f0f0f1;
|
|
|
|
color: #dcdcde;
|
Dashboard: Update the existing WordPress News dashboard widget to also include upcoming meetup events and WordCamps near the current user’s location.
Props @afercia, @andreamiddleton, @azaozz, @camikaos, @coreymckrill, @chanthaboune, @courtneypk, @dd32, @iandunn, @iseulde, @mapk, @mayukojpn, @melchoyce, @nao, @obenland, @pento, @samuelsidler, @stephdau, @tellyworth.
See #40702.
Built from https://develop.svn.wordpress.org/trunk@40607
git-svn-id: http://core.svn.wordpress.org/trunk@40477 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-10 22:04:42 +02:00
|
|
|
}
|
|
|
|
|
2017-05-12 00:47:41 +02:00
|
|
|
/* Safari 10 + VoiceOver specific: without this, the hidden text gets read out before the link. */
|
|
|
|
.community-events-footer .screen-reader-text {
|
|
|
|
height: inherit;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
/* Dashboard WordPress news */
|
|
|
|
|
|
|
|
#dashboard_primary .inside {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2017-04-25 18:42:44 +02:00
|
|
|
#dashboard_primary .widget-loading {
|
2014-02-19 22:43:14 +01:00
|
|
|
padding: 12px 12px 0;
|
2017-04-25 18:42:44 +02:00
|
|
|
margin-bottom: 1em !important; /* Needs to override `.postbox .inside > p:last-child` in common.css */
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2017-04-25 18:42:44 +02:00
|
|
|
/* Notice when JS is off. */
|
|
|
|
#dashboard_primary .inside .notice {
|
2014-02-19 22:43:14 +01:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2017-04-25 18:42:44 +02:00
|
|
|
body #dashboard-widgets .postbox form .submit {
|
|
|
|
margin: 0;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2017-04-25 18:42:44 +02:00
|
|
|
/* Used only for configurable widgets. */
|
2014-02-19 22:43:14 +01:00
|
|
|
.dashboard-widget-control-form p {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rssSummary {
|
2021-03-24 17:41:07 +01:00
|
|
|
color: #646970;
|
2014-02-19 22:43:14 +01:00
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_primary .rss-widget {
|
|
|
|
font-size: 13px;
|
Dashboard: Update the existing WordPress News dashboard widget to also include upcoming meetup events and WordCamps near the current user’s location.
Props @afercia, @andreamiddleton, @azaozz, @camikaos, @coreymckrill, @chanthaboune, @courtneypk, @dd32, @iandunn, @iseulde, @mapk, @mayukojpn, @melchoyce, @nao, @obenland, @pento, @samuelsidler, @stephdau, @tellyworth.
See #40702.
Built from https://develop.svn.wordpress.org/trunk@40607
git-svn-id: http://core.svn.wordpress.org/trunk@40477 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-10 22:04:42 +02:00
|
|
|
padding: 0 12px 0;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_primary .rss-widget:last-child {
|
|
|
|
border-bottom: none;
|
|
|
|
padding-bottom: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_primary .rss-widget a {
|
2016-06-17 20:37:28 +02:00
|
|
|
font-weight: 400;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_primary .rss-widget span,
|
|
|
|
#dashboard_primary .rss-widget span.rss-date {
|
2021-03-24 17:41:07 +01:00
|
|
|
color: #646970;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_primary .rss-widget span.rss-date {
|
|
|
|
margin-left: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_primary .rss-widget ul li {
|
Dashboard: Update the existing WordPress News dashboard widget to also include upcoming meetup events and WordCamps near the current user’s location.
Props @afercia, @andreamiddleton, @azaozz, @camikaos, @coreymckrill, @chanthaboune, @courtneypk, @dd32, @iandunn, @iseulde, @mapk, @mayukojpn, @melchoyce, @nao, @obenland, @pento, @samuelsidler, @stephdau, @tellyworth.
See #40702.
Built from https://develop.svn.wordpress.org/trunk@40607
git-svn-id: http://core.svn.wordpress.org/trunk@40477 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-10 22:04:42 +02:00
|
|
|
padding: 4px 0;
|
|
|
|
margin: 0;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Dashboard right now */
|
|
|
|
|
|
|
|
#dashboard_right_now ul {
|
|
|
|
margin: 0;
|
2015-05-09 22:35:27 +02:00
|
|
|
/* contain floats but don't use overflow: hidden */
|
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_right_now li {
|
|
|
|
width: 50%;
|
|
|
|
float: left;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_right_now .inside {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_right_now .main {
|
|
|
|
padding: 0 12px 11px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_right_now .main p {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2014-03-25 15:36:15 +01:00
|
|
|
#dashboard_right_now #wp-version-message .button {
|
|
|
|
float: right;
|
|
|
|
position: relative;
|
|
|
|
top: -5px;
|
2015-03-30 14:50:29 +02:00
|
|
|
margin-left: 5px;
|
2014-03-25 15:36:15 +01:00
|
|
|
}
|
|
|
|
|
2020-05-27 16:33:11 +02:00
|
|
|
#dashboard_right_now p.search-engines-info {
|
|
|
|
margin: 1em 0;
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
.mu-storage {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2015-10-28 18:57:25 +01:00
|
|
|
#dashboard-widgets h3.mu-storage {
|
|
|
|
margin: 0 0 10px;
|
|
|
|
padding: 0;
|
|
|
|
font-size: 14px;
|
2016-06-17 20:37:28 +02:00
|
|
|
font-weight: 400;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Dashboard right now - Colors */
|
|
|
|
|
|
|
|
#dashboard_right_now .sub {
|
Administration: Standardize colors used in CSS to a single palette.
This is part of a larger project in cleaning up core's admin CSS. This collapses all colors used in the CSS to one of 12 blues, greens, reds, and yellows, 13 grays, pure black, and pure white. The colors are perceptually uniform from light to dark, half of each range has a 4.5 or higher contrast against white, the other half has a 4.5 or higher contrast against black.
Standardizing on this set of colors will help contributors make consistent, accessible design decisions. The full color palette can be seen here: https://codepen.io/ryelle/full/WNGVEjw
Props notlaura, danfarrow, kburgoine, drw158, audrasjb, Joen, hedgefield, ibdz, melchoyce.
See #49999.
Built from https://develop.svn.wordpress.org/trunk@50025
git-svn-id: http://core.svn.wordpress.org/trunk@49726 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-01-26 19:54:59 +01:00
|
|
|
color: #50575e;
|
|
|
|
background: #f6f7f7;
|
|
|
|
border-top: 1px solid #f0f0f1;
|
2014-02-19 22:43:14 +01:00
|
|
|
padding: 10px 12px 6px 12px;
|
|
|
|
}
|
|
|
|
|
2015-10-28 18:57:25 +01:00
|
|
|
#dashboard_right_now .sub h3 {
|
Administration: Standardize colors used in CSS to a single palette.
This is part of a larger project in cleaning up core's admin CSS. This collapses all colors used in the CSS to one of 12 blues, greens, reds, and yellows, 13 grays, pure black, and pure white. The colors are perceptually uniform from light to dark, half of each range has a 4.5 or higher contrast against white, the other half has a 4.5 or higher contrast against black.
Standardizing on this set of colors will help contributors make consistent, accessible design decisions. The full color palette can be seen here: https://codepen.io/ryelle/full/WNGVEjw
Props notlaura, danfarrow, kburgoine, drw158, audrasjb, Joen, hedgefield, ibdz, melchoyce.
See #49999.
Built from https://develop.svn.wordpress.org/trunk@50025
git-svn-id: http://core.svn.wordpress.org/trunk@49726 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-01-26 19:54:59 +01:00
|
|
|
color: #50575e;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_right_now .sub p {
|
|
|
|
margin: 0 0 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_right_now .warning a:before,
|
|
|
|
#dashboard_right_now .warning span:before {
|
Administration: Standardize colors used in CSS to a single palette.
This is part of a larger project in cleaning up core's admin CSS. This collapses all colors used in the CSS to one of 12 blues, greens, reds, and yellows, 13 grays, pure black, and pure white. The colors are perceptually uniform from light to dark, half of each range has a 4.5 or higher contrast against white, the other half has a 4.5 or higher contrast against black.
Standardizing on this set of colors will help contributors make consistent, accessible design decisions. The full color palette can be seen here: https://codepen.io/ryelle/full/WNGVEjw
Props notlaura, danfarrow, kburgoine, drw158, audrasjb, Joen, hedgefield, ibdz, melchoyce.
See #49999.
Built from https://develop.svn.wordpress.org/trunk@50025
git-svn-id: http://core.svn.wordpress.org/trunk@49726 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-01-26 19:54:59 +01:00
|
|
|
color: #d63638;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Dashboard Quick Draft */
|
|
|
|
|
|
|
|
#dashboard_quick_press .inside {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_quick_press div.updated {
|
|
|
|
margin-bottom: 10px;
|
Administration: Standardize colors used in CSS to a single palette.
This is part of a larger project in cleaning up core's admin CSS. This collapses all colors used in the CSS to one of 12 blues, greens, reds, and yellows, 13 grays, pure black, and pure white. The colors are perceptually uniform from light to dark, half of each range has a 4.5 or higher contrast against white, the other half has a 4.5 or higher contrast against black.
Standardizing on this set of colors will help contributors make consistent, accessible design decisions. The full color palette can be seen here: https://codepen.io/ryelle/full/WNGVEjw
Props notlaura, danfarrow, kburgoine, drw158, audrasjb, Joen, hedgefield, ibdz, melchoyce.
See #49999.
Built from https://develop.svn.wordpress.org/trunk@50025
git-svn-id: http://core.svn.wordpress.org/trunk@49726 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-01-26 19:54:59 +01:00
|
|
|
border: 1px solid #f0f0f1;
|
2014-02-19 22:43:14 +01:00
|
|
|
border-width: 1px 1px 1px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_quick_press form {
|
|
|
|
margin: 12px;
|
|
|
|
}
|
|
|
|
|
2019-03-14 18:39:53 +01:00
|
|
|
#dashboard_quick_press .drafts {
|
2014-02-19 22:43:14 +01:00
|
|
|
padding: 10px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Dashboard Quick Draft - Form styling */
|
|
|
|
|
2019-03-14 18:39:53 +01:00
|
|
|
#dashboard_quick_press label {
|
|
|
|
display: inline-block;
|
|
|
|
margin-bottom: 4px;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_quick_press input,
|
|
|
|
#dashboard_quick_press textarea {
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard-widgets .postbox form .submit {
|
|
|
|
margin: -39px 0;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
#description-wrap {
|
|
|
|
margin-top: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#quick-press textarea#content {
|
|
|
|
min-height: 90px;
|
|
|
|
max-height: 1300px;
|
2019-03-14 18:39:53 +01:00
|
|
|
margin: 0 0 8px;
|
|
|
|
padding: 6px 7px;
|
2014-02-19 22:43:14 +01:00
|
|
|
resize: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Dashboard Quick Draft - Drafts list */
|
|
|
|
|
|
|
|
.js #dashboard_quick_press .drafts {
|
Administration: Standardize colors used in CSS to a single palette.
This is part of a larger project in cleaning up core's admin CSS. This collapses all colors used in the CSS to one of 12 blues, greens, reds, and yellows, 13 grays, pure black, and pure white. The colors are perceptually uniform from light to dark, half of each range has a 4.5 or higher contrast against white, the other half has a 4.5 or higher contrast against black.
Standardizing on this set of colors will help contributors make consistent, accessible design decisions. The full color palette can be seen here: https://codepen.io/ryelle/full/WNGVEjw
Props notlaura, danfarrow, kburgoine, drw158, audrasjb, Joen, hedgefield, ibdz, melchoyce.
See #49999.
Built from https://develop.svn.wordpress.org/trunk@50025
git-svn-id: http://core.svn.wordpress.org/trunk@49726 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-01-26 19:54:59 +01:00
|
|
|
border-top: 1px solid #f0f0f1;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_quick_press .drafts abbr {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_quick_press .drafts .view-all {
|
|
|
|
float: right;
|
|
|
|
margin: 0 12px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_primary a.rsswidget {
|
2016-06-17 20:37:28 +02:00
|
|
|
font-weight: 400;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_quick_press .drafts ul {
|
|
|
|
margin: 0 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_quick_press .drafts li {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
#dashboard_quick_press .drafts li time {
|
2021-03-12 13:06:13 +01:00
|
|
|
color: #646970;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_quick_press .drafts p {
|
|
|
|
margin: 0;
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_quick_press .draft-title {
|
2015-05-09 23:05:25 +02:00
|
|
|
word-wrap: break-word;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_quick_press .draft-title a,
|
|
|
|
#dashboard_quick_press .draft-title time {
|
|
|
|
margin: 0 5px 0 0;
|
|
|
|
}
|
|
|
|
|
2015-10-28 18:57:25 +01:00
|
|
|
/* Dashboard common styles */
|
2014-02-19 22:43:14 +01:00
|
|
|
|
2015-10-28 18:57:25 +01:00
|
|
|
#dashboard-widgets h4, /* Back-compat for pre-4.4 */
|
|
|
|
#dashboard-widgets h3,
|
|
|
|
#dashboard_quick_press .drafts h2 {
|
|
|
|
margin: 0 12px 8px;
|
|
|
|
padding: 0;
|
|
|
|
font-size: 14px;
|
2016-06-17 20:37:28 +02:00
|
|
|
font-weight: 400;
|
Administration: Standardize colors used in CSS to a single palette.
This is part of a larger project in cleaning up core's admin CSS. This collapses all colors used in the CSS to one of 12 blues, greens, reds, and yellows, 13 grays, pure black, and pure white. The colors are perceptually uniform from light to dark, half of each range has a 4.5 or higher contrast against white, the other half has a 4.5 or higher contrast against black.
Standardizing on this set of colors will help contributors make consistent, accessible design decisions. The full color palette can be seen here: https://codepen.io/ryelle/full/WNGVEjw
Props notlaura, danfarrow, kburgoine, drw158, audrasjb, Joen, hedgefield, ibdz, melchoyce.
See #49999.
Built from https://develop.svn.wordpress.org/trunk@50025
git-svn-id: http://core.svn.wordpress.org/trunk@49726 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-01-26 19:54:59 +01:00
|
|
|
color: #1d2327;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2015-10-28 21:08:25 +01:00
|
|
|
#dashboard_quick_press .drafts h2 {
|
|
|
|
line-height: inherit;
|
|
|
|
}
|
|
|
|
|
2015-10-28 18:57:25 +01:00
|
|
|
#dashboard-widgets .inside h4, /* Back-compat for pre-4.4 */
|
|
|
|
#dashboard-widgets .inside h3 {
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 0;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2015-10-28 18:57:25 +01:00
|
|
|
/* Dashboard activity widget */
|
2014-02-19 22:43:14 +01:00
|
|
|
|
|
|
|
#dashboard_activity .comment-meta span.approve:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f227";
|
2015-09-05 21:57:25 +02:00
|
|
|
font: 20px/.5 dashicons;
|
2016-02-24 17:07:26 +01:00
|
|
|
margin-left: 5px;
|
2014-02-19 22:43:14 +01:00
|
|
|
vertical-align: middle;
|
|
|
|
position: relative;
|
|
|
|
top: -1px;
|
|
|
|
margin-right: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_activity .inside {
|
|
|
|
margin: 0;
|
2015-10-31 14:49:25 +01:00
|
|
|
padding-bottom: 0;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_activity .no-activity {
|
|
|
|
overflow: hidden;
|
2020-04-17 09:57:10 +02:00
|
|
|
padding: 12px 0;
|
2014-02-19 22:43:14 +01:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_activity .no-activity p {
|
2021-03-24 17:41:07 +01:00
|
|
|
color: #646970;
|
2014-02-19 22:43:14 +01:00
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_activity .subsubsub {
|
|
|
|
float: none;
|
Administration: Standardize colors used in CSS to a single palette.
This is part of a larger project in cleaning up core's admin CSS. This collapses all colors used in the CSS to one of 12 blues, greens, reds, and yellows, 13 grays, pure black, and pure white. The colors are perceptually uniform from light to dark, half of each range has a 4.5 or higher contrast against white, the other half has a 4.5 or higher contrast against black.
Standardizing on this set of colors will help contributors make consistent, accessible design decisions. The full color palette can be seen here: https://codepen.io/ryelle/full/WNGVEjw
Props notlaura, danfarrow, kburgoine, drw158, audrasjb, Joen, hedgefield, ibdz, melchoyce.
See #49999.
Built from https://develop.svn.wordpress.org/trunk@50025
git-svn-id: http://core.svn.wordpress.org/trunk@49726 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-01-26 19:54:59 +01:00
|
|
|
border-top: 1px solid #f0f0f1;
|
2015-10-31 14:49:25 +01:00
|
|
|
margin: 0 -12px;
|
|
|
|
padding: 8px 12px 4px;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2016-02-19 19:44:27 +01:00
|
|
|
#dashboard_activity .subsubsub a .count,
|
|
|
|
#dashboard_activity .subsubsub a.current .count {
|
2021-03-24 17:41:07 +01:00
|
|
|
color: #646970; /* white background on the dashboard but #f0f0f1 on list tables */
|
2016-02-19 19:44:27 +01:00
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
#future-posts ul,
|
|
|
|
#published-posts ul {
|
|
|
|
clear: both;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#future-posts li,
|
|
|
|
#published-posts li {
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#future-posts ul span,
|
|
|
|
#published-posts ul span {
|
2015-05-09 22:35:27 +02:00
|
|
|
display: inline-block;
|
|
|
|
margin-right: 5px;
|
2014-02-19 22:43:14 +01:00
|
|
|
min-width: 150px;
|
2021-03-12 13:06:13 +01:00
|
|
|
color: #646970;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.activity-block {
|
Administration: Standardize colors used in CSS to a single palette.
This is part of a larger project in cleaning up core's admin CSS. This collapses all colors used in the CSS to one of 12 blues, greens, reds, and yellows, 13 grays, pure black, and pure white. The colors are perceptually uniform from light to dark, half of each range has a 4.5 or higher contrast against white, the other half has a 4.5 or higher contrast against black.
Standardizing on this set of colors will help contributors make consistent, accessible design decisions. The full color palette can be seen here: https://codepen.io/ryelle/full/WNGVEjw
Props notlaura, danfarrow, kburgoine, drw158, audrasjb, Joen, hedgefield, ibdz, melchoyce.
See #49999.
Built from https://develop.svn.wordpress.org/trunk@50025
git-svn-id: http://core.svn.wordpress.org/trunk@49726 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-01-26 19:54:59 +01:00
|
|
|
border-bottom: 1px solid #f0f0f1;
|
2015-10-31 14:49:25 +01:00
|
|
|
margin: 0 -12px;
|
|
|
|
padding: 8px 12px 4px;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.activity-block:last-child {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.activity-block .subsubsub li {
|
Administration: Standardize colors used in CSS to a single palette.
This is part of a larger project in cleaning up core's admin CSS. This collapses all colors used in the CSS to one of 12 blues, greens, reds, and yellows, 13 grays, pure black, and pure white. The colors are perceptually uniform from light to dark, half of each range has a 4.5 or higher contrast against white, the other half has a 4.5 or higher contrast against black.
Standardizing on this set of colors will help contributors make consistent, accessible design decisions. The full color palette can be seen here: https://codepen.io/ryelle/full/WNGVEjw
Props notlaura, danfarrow, kburgoine, drw158, audrasjb, Joen, hedgefield, ibdz, melchoyce.
See #49999.
Built from https://develop.svn.wordpress.org/trunk@50025
git-svn-id: http://core.svn.wordpress.org/trunk@49726 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-01-26 19:54:59 +01:00
|
|
|
color: #dcdcde;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Dashboard activity widget - Comments */
|
|
|
|
/* @todo: needs serious de-duplication */
|
|
|
|
|
|
|
|
#activity-widget #the-comment-list tr.undo,
|
|
|
|
#activity-widget #the-comment-list div.undo {
|
|
|
|
background: none;
|
|
|
|
padding: 6px 0;
|
2014-06-24 02:03:16 +02:00
|
|
|
margin-left: 12px;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2014-03-17 20:54:16 +01:00
|
|
|
#activity-widget #the-comment-list .comment-item {
|
Administration: Standardize colors used in CSS to a single palette.
This is part of a larger project in cleaning up core's admin CSS. This collapses all colors used in the CSS to one of 12 blues, greens, reds, and yellows, 13 grays, pure black, and pure white. The colors are perceptually uniform from light to dark, half of each range has a 4.5 or higher contrast against white, the other half has a 4.5 or higher contrast against black.
Standardizing on this set of colors will help contributors make consistent, accessible design decisions. The full color palette can be seen here: https://codepen.io/ryelle/full/WNGVEjw
Props notlaura, danfarrow, kburgoine, drw158, audrasjb, Joen, hedgefield, ibdz, melchoyce.
See #49999.
Built from https://develop.svn.wordpress.org/trunk@50025
git-svn-id: http://core.svn.wordpress.org/trunk@49726 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-01-26 19:54:59 +01:00
|
|
|
background: #f6f7f7;
|
2014-02-19 22:43:14 +01:00
|
|
|
padding: 12px;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2015-04-08 18:49:26 +02:00
|
|
|
#activity-widget #the-comment-list .avatar {
|
2014-02-19 22:43:14 +01:00
|
|
|
position: absolute;
|
2016-02-24 17:07:26 +01:00
|
|
|
top: 12px;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2020-02-11 02:17:06 +01:00
|
|
|
#activity-widget #the-comment-list .dashboard-comment-wrap.has-avatar {
|
2014-02-19 22:43:14 +01:00
|
|
|
padding-left: 63px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#activity-widget #the-comment-list .dashboard-comment-wrap blockquote {
|
|
|
|
margin: 1em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#activity-widget #the-comment-list .comment-item p.row-actions {
|
|
|
|
margin: 4px 0 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#activity-widget #the-comment-list .comment-item:first-child {
|
Administration: Standardize colors used in CSS to a single palette.
This is part of a larger project in cleaning up core's admin CSS. This collapses all colors used in the CSS to one of 12 blues, greens, reds, and yellows, 13 grays, pure black, and pure white. The colors are perceptually uniform from light to dark, half of each range has a 4.5 or higher contrast against white, the other half has a 4.5 or higher contrast against black.
Standardizing on this set of colors will help contributors make consistent, accessible design decisions. The full color palette can be seen here: https://codepen.io/ryelle/full/WNGVEjw
Props notlaura, danfarrow, kburgoine, drw158, audrasjb, Joen, hedgefield, ibdz, melchoyce.
See #49999.
Built from https://develop.svn.wordpress.org/trunk@50025
git-svn-id: http://core.svn.wordpress.org/trunk@49726 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-01-26 19:54:59 +01:00
|
|
|
border-top: 1px solid #f0f0f1;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#activity-widget #the-comment-list .unapproved {
|
Administration: Standardize colors used in CSS to a single palette.
This is part of a larger project in cleaning up core's admin CSS. This collapses all colors used in the CSS to one of 12 blues, greens, reds, and yellows, 13 grays, pure black, and pure white. The colors are perceptually uniform from light to dark, half of each range has a 4.5 or higher contrast against white, the other half has a 4.5 or higher contrast against black.
Standardizing on this set of colors will help contributors make consistent, accessible design decisions. The full color palette can be seen here: https://codepen.io/ryelle/full/WNGVEjw
Props notlaura, danfarrow, kburgoine, drw158, audrasjb, Joen, hedgefield, ibdz, melchoyce.
See #49999.
Built from https://develop.svn.wordpress.org/trunk@50025
git-svn-id: http://core.svn.wordpress.org/trunk@49726 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-01-26 19:54:59 +01:00
|
|
|
background-color: #fcf9e8;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#activity-widget #the-comment-list .unapproved:before {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
Administration: Standardize colors used in CSS to a single palette.
This is part of a larger project in cleaning up core's admin CSS. This collapses all colors used in the CSS to one of 12 blues, greens, reds, and yellows, 13 grays, pure black, and pure white. The colors are perceptually uniform from light to dark, half of each range has a 4.5 or higher contrast against white, the other half has a 4.5 or higher contrast against black.
Standardizing on this set of colors will help contributors make consistent, accessible design decisions. The full color palette can be seen here: https://codepen.io/ryelle/full/WNGVEjw
Props notlaura, danfarrow, kburgoine, drw158, audrasjb, Joen, hedgefield, ibdz, melchoyce.
See #49999.
Built from https://develop.svn.wordpress.org/trunk@50025
git-svn-id: http://core.svn.wordpress.org/trunk@49726 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-01-26 19:54:59 +01:00
|
|
|
background: #d63638;
|
2014-02-19 22:43:14 +01:00
|
|
|
width: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#activity-widget #the-comment-list .spam-undo-inside .avatar,
|
|
|
|
#activity-widget #the-comment-list .trash-undo-inside .avatar {
|
|
|
|
position: relative;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Browse happy box */
|
|
|
|
|
|
|
|
#dashboard-widgets #dashboard_browser_nag.postbox .inside {
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
|
2015-12-13 14:57:26 +01:00
|
|
|
.postbox .button-link .edit-box {
|
2014-02-19 22:43:14 +01:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2015-12-13 14:57:26 +01:00
|
|
|
.edit-box {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hndle:hover .edit-box,
|
|
|
|
.edit-box:focus {
|
|
|
|
opacity: 1;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard-widgets form .input-text-wrap input {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard-widgets form .textarea-wrap textarea {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard-widgets .postbox form .submit {
|
|
|
|
float: none;
|
|
|
|
margin: .5em 0 0;
|
|
|
|
padding: 0;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish {
|
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
|
2019-11-24 20:57:05 +01:00
|
|
|
#dashboard-widgets li a,
|
|
|
|
#dashboard-widgets .button-link,
|
|
|
|
.community-events-footer a {
|
2014-02-19 22:43:14 +01:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2015-12-13 14:57:26 +01:00
|
|
|
#dashboard-widgets h2 a {
|
2014-02-19 22:43:14 +01:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2015-12-13 14:57:26 +01:00
|
|
|
#dashboard-widgets .hndle .postbox-title-action {
|
|
|
|
float: right;
|
|
|
|
line-height: 1.2;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_plugins h5 {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Recent Comments */
|
|
|
|
|
|
|
|
#latest-comments #the-comment-list {
|
|
|
|
position: relative;
|
2015-10-28 21:08:25 +01:00
|
|
|
margin: 0 -12px;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2014-08-21 04:37:16 +02:00
|
|
|
#activity-widget #the-comment-list .comment,
|
|
|
|
#activity-widget #the-comment-list .pingback {
|
2014-02-19 22:43:14 +01:00
|
|
|
box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.06);
|
|
|
|
}
|
|
|
|
|
|
|
|
#activity-widget .comments #the-comment-list .alt {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
#activity-widget #latest-comments #the-comment-list .comment-item {
|
2016-02-24 17:07:26 +01:00
|
|
|
/* the row-actions paragraph is output only for users with 'edit_comment' capabilities,
|
|
|
|
for other users this needs a min height equal to the gravatar image */
|
|
|
|
min-height: 50px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 12px;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#latest-comments #the-comment-list .pingback {
|
|
|
|
padding-left: 12px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#latest-comments #the-comment-list .comment-item:first-child {
|
|
|
|
border-top: none;
|
|
|
|
}
|
|
|
|
|
2015-10-28 18:57:25 +01:00
|
|
|
#latest-comments #the-comment-list .comment-meta {
|
2019-05-29 18:03:52 +02:00
|
|
|
line-height: 1.5;
|
2015-10-28 18:57:25 +01:00
|
|
|
margin: 0;
|
Administration: Standardize colors used in CSS to a single palette.
This is part of a larger project in cleaning up core's admin CSS. This collapses all colors used in the CSS to one of 12 blues, greens, reds, and yellows, 13 grays, pure black, and pure white. The colors are perceptually uniform from light to dark, half of each range has a 4.5 or higher contrast against white, the other half has a 4.5 or higher contrast against black.
Standardizing on this set of colors will help contributors make consistent, accessible design decisions. The full color palette can be seen here: https://codepen.io/ryelle/full/WNGVEjw
Props notlaura, danfarrow, kburgoine, drw158, audrasjb, Joen, hedgefield, ibdz, melchoyce.
See #49999.
Built from https://develop.svn.wordpress.org/trunk@50025
git-svn-id: http://core.svn.wordpress.org/trunk@49726 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-01-26 19:54:59 +01:00
|
|
|
color: #646970;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2015-10-28 18:57:25 +01:00
|
|
|
#latest-comments #the-comment-list .comment-meta cite {
|
2014-02-19 22:43:14 +01:00
|
|
|
font-style: normal;
|
2016-06-17 20:37:28 +02:00
|
|
|
font-weight: 400;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#latest-comments #the-comment-list .comment-item blockquote,
|
|
|
|
#latest-comments #the-comment-list .comment-item blockquote p {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
#latest-comments #the-comment-list .comment-item p.row-actions {
|
|
|
|
margin: 3px 0 0;
|
|
|
|
padding: 0;
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Feeds */
|
|
|
|
.rss-widget ul {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.rsswidget {
|
Dashboard: Update the existing WordPress News dashboard widget to also include upcoming meetup events and WordCamps near the current user’s location.
Props @afercia, @andreamiddleton, @azaozz, @camikaos, @coreymckrill, @chanthaboune, @courtneypk, @dd32, @iandunn, @iseulde, @mapk, @mayukojpn, @melchoyce, @nao, @obenland, @pento, @samuelsidler, @stephdau, @tellyworth.
See #40702.
Built from https://develop.svn.wordpress.org/trunk@40607
git-svn-id: http://core.svn.wordpress.org/trunk@40477 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-10 22:04:42 +02:00
|
|
|
font-size: 13px;
|
2014-02-19 22:43:14 +01:00
|
|
|
font-weight: 600;
|
2019-05-29 18:03:52 +02:00
|
|
|
line-height: 1.4;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.rss-widget ul li {
|
2019-05-29 18:03:52 +02:00
|
|
|
line-height: 1.5;
|
2014-02-19 22:43:14 +01:00
|
|
|
margin-bottom: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rss-widget span.rss-date {
|
2021-03-24 17:41:07 +01:00
|
|
|
color: #646970;
|
2014-02-19 22:43:14 +01:00
|
|
|
font-size: 13px;
|
|
|
|
margin-left: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rss-widget cite {
|
|
|
|
display: block;
|
|
|
|
text-align: right;
|
|
|
|
margin: 0 0 1em;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rss-widget cite:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\2014";
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.dashboard-comment-wrap {
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Browser Nag */
|
|
|
|
#dashboard_browser_nag a.update-browser-link {
|
|
|
|
font-size: 1.2em;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_browser_nag a {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_browser_nag p.browser-update-nag.has-browser-icon {
|
2021-06-09 00:47:58 +02:00
|
|
|
padding-right: 128px;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_browser_nag .browser-icon {
|
2021-06-09 00:47:58 +02:00
|
|
|
margin-top: -32px;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_browser_nag.postbox {
|
2021-06-09 00:47:58 +02:00
|
|
|
background-color: #b32d2e;
|
2014-02-19 22:43:14 +01:00
|
|
|
background-image: none;
|
2021-06-09 00:47:58 +02:00
|
|
|
border-color: #b32d2e;
|
2014-02-19 22:43:14 +01:00
|
|
|
color: #fff;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
2015-10-13 08:57:24 +02:00
|
|
|
#dashboard_browser_nag.postbox h2 {
|
2021-06-09 00:47:58 +02:00
|
|
|
border-bottom-color: transparent;
|
2014-02-19 22:43:14 +01:00
|
|
|
background: transparent none;
|
|
|
|
color: #fff;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_browser_nag a {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
2021-06-09 00:47:58 +02:00
|
|
|
#dashboard_browser_nag.postbox .postbox-header {
|
|
|
|
border-color: transparent;
|
|
|
|
}
|
|
|
|
|
2015-10-13 08:57:24 +02:00
|
|
|
#dashboard_browser_nag h2.hndle {
|
2014-02-19 22:43:14 +01:00
|
|
|
border: none;
|
|
|
|
font-weight: 600;
|
|
|
|
font-size: 20px;
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.postbox#dashboard_browser_nag p a.dismiss {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.postbox#dashboard_browser_nag p,
|
|
|
|
.postbox#dashboard_browser_nag a,
|
|
|
|
.postbox#dashboard_browser_nag p.browser-update-nag {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
2018-03-12 17:43:31 +01:00
|
|
|
/* PHP Nag */
|
General: Implement editorial, design and accessibility feedback for the PHP version nag.
The updated version of the nag is shorter, more on point and less aggressive than the previous one. It integrates better with the other dashboard widgets and fixes several accessibility concerns. A yellow warning color is used when the current PHP version is outdated, a red error color is used when it is also insecure.
Props afercia, birgire, danieltj, flixos90, johnjamesjacoby, karmatosed, Luciano Croce, nerrad, pento, schlessera, SergeyBiryukov, sonjaleix.
Fixes #41191.
Built from https://develop.svn.wordpress.org/trunk@43006
git-svn-id: http://core.svn.wordpress.org/trunk@42835 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-04-26 16:31:24 +02:00
|
|
|
#dashboard_php_nag .dashicons-warning {
|
Administration: Standardize colors used in CSS to a single palette.
This is part of a larger project in cleaning up core's admin CSS. This collapses all colors used in the CSS to one of 12 blues, greens, reds, and yellows, 13 grays, pure black, and pure white. The colors are perceptually uniform from light to dark, half of each range has a 4.5 or higher contrast against white, the other half has a 4.5 or higher contrast against black.
Standardizing on this set of colors will help contributors make consistent, accessible design decisions. The full color palette can be seen here: https://codepen.io/ryelle/full/WNGVEjw
Props notlaura, danfarrow, kburgoine, drw158, audrasjb, Joen, hedgefield, ibdz, melchoyce.
See #49999.
Built from https://develop.svn.wordpress.org/trunk@50025
git-svn-id: http://core.svn.wordpress.org/trunk@49726 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-01-26 19:54:59 +01:00
|
|
|
color: #dba617;
|
General: Implement editorial, design and accessibility feedback for the PHP version nag.
The updated version of the nag is shorter, more on point and less aggressive than the previous one. It integrates better with the other dashboard widgets and fixes several accessibility concerns. A yellow warning color is used when the current PHP version is outdated, a red error color is used when it is also insecure.
Props afercia, birgire, danieltj, flixos90, johnjamesjacoby, karmatosed, Luciano Croce, nerrad, pento, schlessera, SergeyBiryukov, sonjaleix.
Fixes #41191.
Built from https://develop.svn.wordpress.org/trunk@43006
git-svn-id: http://core.svn.wordpress.org/trunk@42835 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-04-26 16:31:24 +02:00
|
|
|
padding-right: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_php_nag.php-insecure .dashicons-warning {
|
Administration: Standardize colors used in CSS to a single palette.
This is part of a larger project in cleaning up core's admin CSS. This collapses all colors used in the CSS to one of 12 blues, greens, reds, and yellows, 13 grays, pure black, and pure white. The colors are perceptually uniform from light to dark, half of each range has a 4.5 or higher contrast against white, the other half has a 4.5 or higher contrast against black.
Standardizing on this set of colors will help contributors make consistent, accessible design decisions. The full color palette can be seen here: https://codepen.io/ryelle/full/WNGVEjw
Props notlaura, danfarrow, kburgoine, drw158, audrasjb, Joen, hedgefield, ibdz, melchoyce.
See #49999.
Built from https://develop.svn.wordpress.org/trunk@50025
git-svn-id: http://core.svn.wordpress.org/trunk@49726 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-01-26 19:54:59 +01:00
|
|
|
color: #d63638;
|
General: Implement editorial, design and accessibility feedback for the PHP version nag.
The updated version of the nag is shorter, more on point and less aggressive than the previous one. It integrates better with the other dashboard widgets and fixes several accessibility concerns. A yellow warning color is used when the current PHP version is outdated, a red error color is used when it is also insecure.
Props afercia, birgire, danieltj, flixos90, johnjamesjacoby, karmatosed, Luciano Croce, nerrad, pento, schlessera, SergeyBiryukov, sonjaleix.
Fixes #41191.
Built from https://develop.svn.wordpress.org/trunk@43006
git-svn-id: http://core.svn.wordpress.org/trunk@42835 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-04-26 16:31:24 +02:00
|
|
|
}
|
|
|
|
|
2020-07-28 19:08:03 +02:00
|
|
|
#dashboard_php_nag h2 {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
General: Implement editorial, design and accessibility feedback for the PHP version nag.
The updated version of the nag is shorter, more on point and less aggressive than the previous one. It integrates better with the other dashboard widgets and fixes several accessibility concerns. A yellow warning color is used when the current PHP version is outdated, a red error color is used when it is also insecure.
Props afercia, birgire, danieltj, flixos90, johnjamesjacoby, karmatosed, Luciano Croce, nerrad, pento, schlessera, SergeyBiryukov, sonjaleix.
Fixes #41191.
Built from https://develop.svn.wordpress.org/trunk@43006
git-svn-id: http://core.svn.wordpress.org/trunk@42835 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-04-26 16:31:24 +02:00
|
|
|
#dashboard_php_nag p {
|
|
|
|
margin: 12px 0;
|
2018-03-12 17:43:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard_php_nag h3 {
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
General: Implement editorial, design and accessibility feedback for the PHP version nag.
The updated version of the nag is shorter, more on point and less aggressive than the previous one. It integrates better with the other dashboard widgets and fixes several accessibility concerns. A yellow warning color is used when the current PHP version is outdated, a red error color is used when it is also insecure.
Props afercia, birgire, danieltj, flixos90, johnjamesjacoby, karmatosed, Luciano Croce, nerrad, pento, schlessera, SergeyBiryukov, sonjaleix.
Fixes #41191.
Built from https://develop.svn.wordpress.org/trunk@43006
git-svn-id: http://core.svn.wordpress.org/trunk@42835 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-04-26 16:31:24 +02:00
|
|
|
#dashboard_php_nag .button .dashicons-external {
|
|
|
|
line-height: 25px;
|
2018-03-12 17:43:31 +01:00
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
/* =Media Queries
|
|
|
|
-------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/* one column on the dash */
|
|
|
|
@media only screen and (max-width: 799px) {
|
|
|
|
#wpbody-content #dashboard-widgets .postbox-container {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2020-07-06 20:03:02 +02:00
|
|
|
|
|
|
|
#dashboard-widgets .meta-box-sortables {
|
|
|
|
min-height: 0;
|
|
|
|
}
|
|
|
|
|
2020-10-27 11:47:12 +01:00
|
|
|
.is-dragging-metaboxes #dashboard-widgets .meta-box-sortables {
|
2020-07-06 20:03:02 +02:00
|
|
|
min-height: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard-widgets .meta-box-sortables.empty-container {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* two columns on the dash, but keep the setting if one is selected */
|
|
|
|
@media only screen and (min-width: 800px) and (max-width: 1499px) {
|
|
|
|
#wpbody-content #dashboard-widgets .postbox-container {
|
|
|
|
width: 49.5%;
|
|
|
|
}
|
|
|
|
|
2020-03-03 01:37:06 +01:00
|
|
|
#wpbody-content #dashboard-widgets #postbox-container-2,
|
2014-02-19 22:43:14 +01:00
|
|
|
#wpbody-content #dashboard-widgets #postbox-container-3,
|
|
|
|
#wpbody-content #dashboard-widgets #postbox-container-4 {
|
|
|
|
float: right;
|
|
|
|
width: 50.5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard-widgets #postbox-container-3 .empty-container,
|
|
|
|
#dashboard-widgets #postbox-container-4 .empty-container {
|
2020-07-06 20:03:02 +02:00
|
|
|
outline: none;
|
2014-02-19 22:43:14 +01:00
|
|
|
height: 0;
|
|
|
|
min-height: 0;
|
2020-07-06 20:03:02 +02:00
|
|
|
margin-bottom: 0;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2016-01-26 01:04:26 +01:00
|
|
|
#dashboard-widgets #postbox-container-3 .empty-container:after,
|
|
|
|
#dashboard-widgets #postbox-container-4 .empty-container:after {
|
|
|
|
display: none;
|
2016-01-14 05:13:26 +01:00
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
#wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2020-07-06 20:03:02 +02:00
|
|
|
#wpbody #dashboard-widgets .metabox-holder.columns-1 .postbox-container .empty-container {
|
|
|
|
outline: none;
|
2014-02-19 22:43:14 +01:00
|
|
|
height: 0;
|
|
|
|
min-height: 0;
|
2020-07-06 20:03:02 +02:00
|
|
|
margin-bottom: 0;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* show the radio buttons for column prefs only for one or two columns */
|
|
|
|
.index-php .screen-layout,
|
|
|
|
.index-php .columns-prefs {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.columns-prefs .columns-prefs-3,
|
|
|
|
.columns-prefs .columns-prefs-4 {
|
|
|
|
display: none;
|
|
|
|
}
|
2020-10-27 11:47:12 +01:00
|
|
|
|
2020-07-06 20:03:02 +02:00
|
|
|
#dashboard-widgets .postbox-container .empty-container:after {
|
2016-01-14 05:13:26 +01:00
|
|
|
display: block;
|
|
|
|
}
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* three columns on the dash */
|
|
|
|
@media only screen and (min-width: 1500px) and (max-width: 1800px) {
|
|
|
|
#wpbody-content #dashboard-widgets .postbox-container {
|
|
|
|
width: 33.5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wpbody-content #dashboard-widgets #postbox-container-1 {
|
|
|
|
width: 33%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wpbody-content #dashboard-widgets #postbox-container-3,
|
|
|
|
#wpbody-content #dashboard-widgets #postbox-container-4 {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashboard-widgets #postbox-container-4 .empty-container {
|
2020-07-06 20:03:02 +02:00
|
|
|
outline: none;
|
2014-02-19 22:43:14 +01:00
|
|
|
height: 0;
|
|
|
|
min-height: 0;
|
2020-07-06 20:03:02 +02:00
|
|
|
margin-bottom: 0;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
2016-01-14 05:13:26 +01:00
|
|
|
|
|
|
|
#dashboard-widgets #postbox-container-4 .empty-container:after {
|
|
|
|
display: none;
|
|
|
|
}
|
2020-10-27 11:47:12 +01:00
|
|
|
|
2020-07-06 20:03:02 +02:00
|
|
|
#dashboard-widgets .postbox-container .empty-container:after {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-27 11:47:12 +01:00
|
|
|
/* Always show the "Drag boxes here" CSS generated content on large screens. */
|
2020-07-06 20:03:02 +02:00
|
|
|
@media only screen and (min-width: 1801px) {
|
|
|
|
#dashboard-widgets .postbox-container .empty-container:after {
|
2016-01-14 05:13:26 +01:00
|
|
|
display: block;
|
|
|
|
}
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
2020-10-27 11:47:12 +01:00
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
@media screen and (max-width: 870px) {
|
|
|
|
.welcome-panel .welcome-panel-column,
|
|
|
|
.welcome-panel .welcome-panel-column:first-child {
|
|
|
|
display: block;
|
|
|
|
float: none;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.welcome-panel .welcome-panel-column li {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 13px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.welcome-panel .welcome-panel-column ul {
|
|
|
|
margin: 0.4em 0 0;
|
|
|
|
}
|
2017-10-23 22:48:47 +02:00
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2019-01-17 08:41:52 +01:00
|
|
|
@media screen and (max-width: 782px) {
|
2020-03-31 04:52:07 +02:00
|
|
|
#dashboard-widgets h2 {
|
|
|
|
padding: 12px;
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
#dashboard_recent_comments #the-comment-list .comment-item .avatar {
|
|
|
|
height: 30px;
|
|
|
|
width: 30px;
|
|
|
|
margin: 4px 10px 5px 0;
|
|
|
|
}
|
Dashboard: Update the existing WordPress News dashboard widget to also include upcoming meetup events and WordCamps near the current user’s location.
Props @afercia, @andreamiddleton, @azaozz, @camikaos, @coreymckrill, @chanthaboune, @courtneypk, @dd32, @iandunn, @iseulde, @mapk, @mayukojpn, @melchoyce, @nao, @obenland, @pento, @samuelsidler, @stephdau, @tellyworth.
See #40702.
Built from https://develop.svn.wordpress.org/trunk@40607
git-svn-id: http://core.svn.wordpress.org/trunk@40477 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-10 22:04:42 +02:00
|
|
|
|
|
|
|
.community-events-toggle-location {
|
|
|
|
height: 38px;
|
2017-05-19 06:01:41 +02:00
|
|
|
vertical-align: baseline;
|
Dashboard: Update the existing WordPress News dashboard widget to also include upcoming meetup events and WordCamps near the current user’s location.
Props @afercia, @andreamiddleton, @azaozz, @camikaos, @coreymckrill, @chanthaboune, @courtneypk, @dd32, @iandunn, @iseulde, @mapk, @mayukojpn, @melchoyce, @nao, @obenland, @pento, @samuelsidler, @stephdau, @tellyworth.
See #40702.
Built from https://develop.svn.wordpress.org/trunk@40607
git-svn-id: http://core.svn.wordpress.org/trunk@40477 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-10 22:04:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.community-events-form .regular-text {
|
2017-05-19 06:01:41 +02:00
|
|
|
height: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#community-events-submit {
|
|
|
|
margin-bottom: 0;
|
2017-05-19 16:44:41 +02:00
|
|
|
/* Override .wp-core-ui .button */
|
|
|
|
vertical-align: top;
|
2017-05-19 06:01:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.community-events-form label,
|
|
|
|
#dashboard-widgets .community-events-cancel.button-link {
|
|
|
|
/* Same properties as the submit button for cross-browsers alignment. */
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: normal;
|
|
|
|
height: auto;
|
|
|
|
padding: 6px 0;
|
|
|
|
border: 1px solid transparent;
|
Dashboard: Update the existing WordPress News dashboard widget to also include upcoming meetup events and WordCamps near the current user’s location.
Props @afercia, @andreamiddleton, @azaozz, @camikaos, @coreymckrill, @chanthaboune, @courtneypk, @dd32, @iandunn, @iseulde, @mapk, @mayukojpn, @melchoyce, @nao, @obenland, @pento, @samuelsidler, @stephdau, @tellyworth.
See #40702.
Built from https://develop.svn.wordpress.org/trunk@40607
git-svn-id: http://core.svn.wordpress.org/trunk@40477 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-10 22:04:42 +02:00
|
|
|
}
|
2017-05-19 16:44:41 +02:00
|
|
|
|
|
|
|
.community-events .spinner {
|
|
|
|
margin-top: 7px;
|
|
|
|
}
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Smartphone */
|
|
|
|
@media screen and (max-width: 600px) {
|
|
|
|
/* Keep the close icon from overlapping the Welcome text. */
|
2017-10-23 22:48:47 +02:00
|
|
|
.welcome-panel .welcome-panel-close {
|
2014-02-19 22:43:14 +01:00
|
|
|
overflow: hidden;
|
2015-05-09 22:35:27 +02:00
|
|
|
text-indent: 40px;
|
2014-02-19 22:43:14 +01:00
|
|
|
white-space: nowrap;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
padding: 5px;
|
2015-05-09 22:35:27 +02:00
|
|
|
top: 5px;
|
|
|
|
right: 5px;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Make the close icon larger for tappability. */
|
2017-10-23 22:48:47 +02:00
|
|
|
.welcome-panel .welcome-panel-close:before {
|
2014-02-19 22:43:14 +01:00
|
|
|
font-size: 20px;
|
2015-05-09 22:35:27 +02:00
|
|
|
top: 5px;
|
|
|
|
left: -35px;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
2014-03-27 06:08:14 +01:00
|
|
|
}
|
Dashboard: Update the existing WordPress News dashboard widget to also include upcoming meetup events and WordCamps near the current user’s location.
Props @afercia, @andreamiddleton, @azaozz, @camikaos, @coreymckrill, @chanthaboune, @courtneypk, @dd32, @iandunn, @iseulde, @mapk, @mayukojpn, @melchoyce, @nao, @obenland, @pento, @samuelsidler, @stephdau, @tellyworth.
See #40702.
Built from https://develop.svn.wordpress.org/trunk@40607
git-svn-id: http://core.svn.wordpress.org/trunk@40477 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-10 22:04:42 +02:00
|
|
|
|
|
|
|
@media screen and (min-width: 355px) {
|
|
|
|
.community-events .event-info {
|
|
|
|
display: table-row;
|
|
|
|
float: left;
|
|
|
|
max-width: 59%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.event-icon,
|
|
|
|
.event-icon[aria-hidden="true"] {
|
|
|
|
display: table-cell;
|
|
|
|
}
|
|
|
|
|
|
|
|
.event-info-inner {
|
|
|
|
display: table-cell;
|
|
|
|
}
|
|
|
|
|
|
|
|
.community-events .event-date-time {
|
|
|
|
float: right;
|
|
|
|
max-width: 39%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.community-events .event-date,
|
|
|
|
.community-events .event-time {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
}
|