2015-07-10 23:44:25 +02:00
|
|
|
.response-links {
|
2014-02-19 22:43:14 +01:00
|
|
|
display: block;
|
2015-07-10 23:44:25 +02:00
|
|
|
margin-bottom: 1em;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2015-07-10 23:44:25 +02:00
|
|
|
.response-links a {
|
2014-02-19 22:43:14 +01:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2015-07-10 23:44:25 +02:00
|
|
|
.response-links a.comments-edit-item-link {
|
2014-02-19 22:43:14 +01:00
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
2015-07-10 23:44:25 +02:00
|
|
|
.response-links a.comments-view-item-link {
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post-com-count-wrapper strong {
|
|
|
|
font-weight: 400;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2015-07-10 23:44:25 +02:00
|
|
|
.comments-view-item-link {
|
|
|
|
display: inline-block;
|
|
|
|
clear: both;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2015-07-29 20:08:25 +02:00
|
|
|
.column-response .post-com-count-wrapper,
|
2015-07-10 23:44:25 +02:00
|
|
|
.column-comments .post-com-count-wrapper {
|
|
|
|
white-space: nowrap;
|
|
|
|
word-wrap: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* comments bubble common */
|
2015-07-29 20:08:25 +02:00
|
|
|
.column-response .post-com-count,
|
2015-07-10 23:44:25 +02:00
|
|
|
.column-comments .post-com-count {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2015-07-10 23:44:25 +02:00
|
|
|
/* comments bubble approved */
|
2015-07-29 20:08:25 +02:00
|
|
|
.column-response .post-com-count-no-comments,
|
|
|
|
.column-response .post-com-count-approved,
|
2015-07-10 23:44:25 +02:00
|
|
|
.column-comments .post-com-count-no-comments,
|
|
|
|
.column-comments .post-com-count-approved {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
2015-07-29 20:08:25 +02:00
|
|
|
.column-response .comment-count-no-comments,
|
|
|
|
.column-response .comment-count-approved,
|
2015-07-10 23:44:25 +02:00
|
|
|
.column-comments .comment-count-no-comments,
|
|
|
|
.column-comments .comment-count-approved {
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: block;
|
|
|
|
padding: 0 8px;
|
|
|
|
min-width: 24px;
|
|
|
|
height: 2em;
|
|
|
|
border-radius: 5px;
|
2021-03-24 17:41:07 +01:00
|
|
|
background-color: #646970;
|
2015-07-10 23:44:25 +02:00
|
|
|
color: #fff;
|
|
|
|
font-size: 11px;
|
2019-05-30 14:15:52 +02:00
|
|
|
line-height: 1.90909090;
|
2014-02-19 22:43:14 +01:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2015-07-29 20:08:25 +02:00
|
|
|
.column-response .post-com-count-no-comments:after,
|
|
|
|
.column-response .post-com-count-approved:after,
|
2015-07-10 23:44:25 +02:00
|
|
|
.column-comments .post-com-count-no-comments:after,
|
|
|
|
.column-comments .post-com-count-approved:after {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
margin-left: 8px;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
2021-03-24 17:41:07 +01:00
|
|
|
border-top: 5px solid #646970;
|
2015-07-10 23:44:25 +02:00
|
|
|
border-right: 5px solid transparent;
|
|
|
|
}
|
|
|
|
|
Comments: Don't display edit links to trashed post comments.
If a post is in the trash, the comments bubble won't link to the comments list.
Fixes: #37826.
Props: swissspidy, helen, FolioVision, DrewAPicture, stevenlinx, donmhico, birgire, garrett-eclipse, andraganescu, johnbillion.
Built from https://develop.svn.wordpress.org/trunk@48050
git-svn-id: http://core.svn.wordpress.org/trunk@47817 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-06-16 01:06:08 +02:00
|
|
|
.column-response a.post-com-count-approved:hover .comment-count-approved,
|
|
|
|
.column-response a.post-com-count-approved:focus .comment-count-approved,
|
|
|
|
.column-comments a.post-com-count-approved:hover .comment-count-approved,
|
|
|
|
.column-comments a.post-com-count-approved:focus .comment-count-approved {
|
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: #2271b1;
|
2015-07-10 23:44:25 +02:00
|
|
|
}
|
|
|
|
|
Comments: Don't display edit links to trashed post comments.
If a post is in the trash, the comments bubble won't link to the comments list.
Fixes: #37826.
Props: swissspidy, helen, FolioVision, DrewAPicture, stevenlinx, donmhico, birgire, garrett-eclipse, andraganescu, johnbillion.
Built from https://develop.svn.wordpress.org/trunk@48050
git-svn-id: http://core.svn.wordpress.org/trunk@47817 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-06-16 01:06:08 +02:00
|
|
|
.column-response a.post-com-count-approved:hover:after,
|
|
|
|
.column-response a.post-com-count-approved:focus:after,
|
|
|
|
.column-comments a.post-com-count-approved:hover:after,
|
|
|
|
.column-comments a.post-com-count-approved:focus:after {
|
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-color: #2271b1;
|
2015-07-10 23:44:25 +02:00
|
|
|
}
|
|
|
|
|
2017-09-10 15:40:46 +02:00
|
|
|
/* @todo: consider to use a single rule for these counters and the admin menu counters. */
|
2015-07-29 20:08:25 +02:00
|
|
|
.column-response .post-com-count-pending,
|
2015-07-10 23:44:25 +02:00
|
|
|
.column-comments .post-com-count-pending {
|
|
|
|
position: relative;
|
|
|
|
left: -3px;
|
|
|
|
padding: 0 5px;
|
|
|
|
min-width: 7px;
|
|
|
|
height: 17px;
|
|
|
|
border: 2px solid #fff;
|
|
|
|
border-radius: 11px;
|
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;
|
2015-07-10 23:44:25 +02:00
|
|
|
color: #fff;
|
|
|
|
font-size: 9px;
|
2019-05-30 14:15:52 +02:00
|
|
|
line-height: 1.88888888;
|
2015-07-10 23:44:25 +02:00
|
|
|
text-align: center;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2015-08-21 19:26:26 +02:00
|
|
|
.column-response .post-com-count-no-pending,
|
|
|
|
.column-comments .post-com-count-no-pending {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
/* comments */
|
|
|
|
|
|
|
|
.commentlist li {
|
|
|
|
padding: 1em 1em .2em;
|
|
|
|
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
|
|
|
border-bottom: 1px solid #c3c4c7;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.commentlist li li {
|
|
|
|
border-bottom: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.commentlist p {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0 0 .8em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#submitted-on,
|
|
|
|
.submitted-on {
|
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
|
|
|
}
|
|
|
|
|
|
|
|
/* reply to comments */
|
|
|
|
#replyrow td {
|
|
|
|
padding: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#replysubmit {
|
|
|
|
margin: 0;
|
2015-10-01 16:52:25 +02:00
|
|
|
padding: 5px 7px 10px;
|
|
|
|
overflow: hidden;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2019-02-20 23:09:50 +01:00
|
|
|
#replysubmit .reply-submit-buttons {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
#replysubmit .button {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
2019-02-20 23:09:50 +01:00
|
|
|
#replysubmit .spinner {
|
|
|
|
float: none;
|
|
|
|
margin: -4px 0 0;
|
|
|
|
}
|
|
|
|
|
2015-10-01 16:52:25 +02:00
|
|
|
#replyrow.inline-edit-row fieldset.comment-reply {
|
|
|
|
font-size: inherit;
|
|
|
|
line-height: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
#replyrow legend {
|
|
|
|
margin: 0;
|
|
|
|
padding: .2em 5px 0;
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: 1.4;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
#replyrow.inline-edit-row label {
|
|
|
|
display: inline;
|
|
|
|
vertical-align: baseline;
|
|
|
|
line-height: inherit;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2015-05-12 03:22:25 +02:00
|
|
|
#edithead .inside,
|
|
|
|
#commentsdiv #edithead .inside {
|
2014-02-19 22:43:14 +01:00
|
|
|
float: left;
|
|
|
|
padding: 3px 0 2px 5px;
|
|
|
|
margin: 0;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#edithead .inside input {
|
|
|
|
width: 180px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#edithead label {
|
|
|
|
padding: 2px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#replycontainer {
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#replycontent {
|
|
|
|
height: 120px;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#replyerror {
|
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-color: #dcdcde;
|
|
|
|
background-color: #f6f7f7;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* @todo: is this used? */
|
|
|
|
.commentlist .avatar {
|
|
|
|
vertical-align: text-top;
|
|
|
|
}
|
|
|
|
|
|
|
|
#the-comment-list tr.undo,
|
|
|
|
#the-comment-list div.undo {
|
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;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#the-comment-list .unapproved th,
|
|
|
|
#the-comment-list .unapproved td {
|
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
|
|
|
}
|
|
|
|
|
|
|
|
#the-comment-list .unapproved th.check-column {
|
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 #d63638;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#the-comment-list .unapproved th.check-column input {
|
|
|
|
margin-left: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#the-comment-list .approve a {
|
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: #007017;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#the-comment-list .unapprove a {
|
2021-02-09 20:47:03 +01:00
|
|
|
color: #996800;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#the-comment-list th,
|
|
|
|
#the-comment-list td {
|
|
|
|
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
|
|
|
}
|
|
|
|
|
|
|
|
#the-comment-list tr:last-child th,
|
|
|
|
#the-comment-list tr:last-child td {
|
2019-01-17 08:41:52 +01:00
|
|
|
box-shadow: none;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#the-comment-list tr.unapproved + tr.approved th,
|
|
|
|
#the-comment-list tr.unapproved + tr.approved td {
|
2019-01-17 08:41:52 +01:00
|
|
|
border-top: 1px solid rgba(0, 0, 0, 0.03);
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* table vim shortcuts */
|
|
|
|
.vim-current,
|
|
|
|
.vim-current th,
|
|
|
|
.vim-current td {
|
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: #f0f6fc !important;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
th .comment-grey-bubble {
|
|
|
|
height: 16px;
|
|
|
|
width: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
th .comment-grey-bubble:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f101";
|
2015-09-05 21:57:25 +02:00
|
|
|
font: normal 20px/.5 dashicons;
|
2020-10-26 03:25:09 +01:00
|
|
|
speak: never;
|
2014-02-19 22:43:14 +01:00
|
|
|
display: inline-block;
|
|
|
|
padding: 0;
|
|
|
|
top: 4px;
|
|
|
|
left: -4px;
|
|
|
|
position: relative;
|
|
|
|
vertical-align: top;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
text-decoration: none !important;
|
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
|
|
|
}
|
|
|
|
|
|
|
|
/*------------------------------------------------------------------------------
|
|
|
|
10.0 - List Posts (/Pages/etc)
|
|
|
|
------------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
table.fixed {
|
2015-09-30 03:19:24 +02:00
|
|
|
table-layout: fixed;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.fixed .column-rating,
|
|
|
|
.fixed .column-visible {
|
|
|
|
width: 8%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fixed .column-posts,
|
|
|
|
.fixed .column-parent,
|
|
|
|
.fixed .column-links,
|
|
|
|
.fixed .column-author,
|
|
|
|
.fixed .column-format {
|
|
|
|
width: 10%;
|
|
|
|
}
|
|
|
|
|
2020-06-01 21:15:08 +02:00
|
|
|
.fixed .column-date {
|
|
|
|
width: 14%;
|
|
|
|
}
|
|
|
|
|
2019-09-02 23:44:58 +02:00
|
|
|
.column-date span[title] {
|
|
|
|
-webkit-text-decoration: dotted underline;
|
|
|
|
text-decoration: dotted underline;
|
|
|
|
}
|
|
|
|
|
2014-08-01 20:32:15 +02:00
|
|
|
.fixed .column-posts {
|
2015-06-10 08:50:25 +02:00
|
|
|
width: 74px;
|
2021-01-31 17:53:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.fixed .column-role,
|
|
|
|
.fixed .column-posts {
|
2020-10-27 00:16:05 +01:00
|
|
|
-webkit-hyphens: auto;
|
|
|
|
hyphens: auto;
|
2014-08-01 20:32:15 +02:00
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
.fixed .column-comment .comment-author {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fixed .column-response,
|
|
|
|
.fixed .column-categories,
|
|
|
|
.fixed .column-tags,
|
|
|
|
.fixed .column-rel,
|
|
|
|
.fixed .column-role {
|
|
|
|
width: 15%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fixed .column-slug {
|
|
|
|
width: 25%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fixed .column-locations {
|
|
|
|
width: 35%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fixed .column-comments {
|
2015-07-10 23:44:25 +02:00
|
|
|
width: 5.5em;
|
2014-02-19 22:43:14 +01:00
|
|
|
padding: 8px 0;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fixed .column-comments .vers {
|
|
|
|
padding-left: 3px;
|
|
|
|
}
|
|
|
|
|
2015-07-07 17:21:25 +02:00
|
|
|
td.column-title strong,
|
|
|
|
td.plugin-title strong {
|
|
|
|
display: block;
|
|
|
|
margin-bottom: .2em;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
td.column-title p,
|
|
|
|
td.plugin-title p {
|
|
|
|
margin: 6px 0;
|
|
|
|
}
|
|
|
|
|
2015-06-03 17:13:25 +02:00
|
|
|
/* Media file column */
|
|
|
|
table.media .column-title .media-icon {
|
2015-07-14 19:24:26 +02:00
|
|
|
float: left;
|
|
|
|
min-height: 60px;
|
2019-01-17 08:41:52 +01:00
|
|
|
margin: 0 9px 0 0;
|
2015-06-03 17:13:25 +02:00
|
|
|
}
|
|
|
|
|
2015-06-03 17:23:25 +02:00
|
|
|
table.media .column-title .media-icon img {
|
|
|
|
max-width: 60px;
|
|
|
|
height: auto;
|
2015-07-14 19:24:26 +02:00
|
|
|
vertical-align: top; /* Remove descender white-space. */
|
2015-06-03 17:23:25 +02:00
|
|
|
}
|
|
|
|
|
2015-07-14 19:46:24 +02:00
|
|
|
table.media .column-title .has-media-icon ~ .row-actions {
|
2015-06-03 17:13:25 +02:00
|
|
|
margin-left: 70px; /* 60px image + margin */
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2015-07-14 19:24:26 +02:00
|
|
|
table.media .column-title .filename {
|
2015-06-25 21:30:25 +02:00
|
|
|
margin-bottom: 0.2em;
|
2015-06-16 23:33:25 +02:00
|
|
|
}
|
|
|
|
|
2022-03-10 19:24:03 +01:00
|
|
|
/* Media Copy to clipboard row action */
|
|
|
|
.media .row-actions .copy-to-clipboard-container {
|
|
|
|
display: inline;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media .row-actions .copy-to-clipboard-container .success {
|
|
|
|
position: absolute;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -100%);
|
|
|
|
background: #000;
|
|
|
|
color: #fff;
|
|
|
|
border-radius: 5px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 2px 5px;
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
/* @todo: pick a consistent list table selector */
|
|
|
|
.wp-list-table a {
|
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#the-list tr:last-child td,
|
|
|
|
#the-list tr:last-child th {
|
|
|
|
border-bottom: none !important;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#comments-form .fixed .column-author {
|
|
|
|
width: 20%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#commentsdiv.postbox .inside {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#commentsdiv .inside .row-actions {
|
2019-05-30 14:15:52 +02:00
|
|
|
line-height: 1.38461538;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#commentsdiv .inside .column-author {
|
|
|
|
width: 25%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#commentsdiv .column-comment p {
|
|
|
|
margin: 0.6em 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#commentsdiv #replyrow td {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#commentsdiv p {
|
|
|
|
padding: 8px 10px;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#commentsdiv .comments-box {
|
|
|
|
border: 0 none;
|
|
|
|
}
|
|
|
|
|
2015-06-28 07:46:25 +02:00
|
|
|
#commentsdiv .comments-box thead th,
|
|
|
|
#commentsdiv .comments-box thead td {
|
2014-02-19 22:43:14 +01:00
|
|
|
background: transparent;
|
|
|
|
padding: 0 7px 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#commentsdiv .comments-box tr:last-child td {
|
|
|
|
border-bottom: 0 none;
|
|
|
|
}
|
|
|
|
|
2015-05-12 03:22:25 +02:00
|
|
|
#commentsdiv #edithead .inside input {
|
|
|
|
width: 160px;
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
.sorting-indicator {
|
2015-09-19 18:15:24 +02:00
|
|
|
display: block;
|
|
|
|
visibility: hidden;
|
2014-02-19 22:43:14 +01:00
|
|
|
width: 10px;
|
|
|
|
height: 4px;
|
|
|
|
margin-top: 8px;
|
|
|
|
margin-left: 7px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sorting-indicator:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f142";
|
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;
|
|
|
|
top: -4px;
|
|
|
|
left: -8px;
|
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;
|
2019-05-30 14:15:52 +02:00
|
|
|
line-height: 0.5;
|
2014-02-19 22:43:14 +01:00
|
|
|
position: relative;
|
|
|
|
vertical-align: top;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
text-decoration: none !important;
|
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
|
|
|
}
|
|
|
|
|
|
|
|
.column-comments .sorting-indicator:before {
|
|
|
|
top: 0;
|
|
|
|
left: -10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
th.sorted.asc .sorting-indicator:before,
|
2015-05-21 20:05:26 +02:00
|
|
|
th.desc:hover span.sorting-indicator:before,
|
|
|
|
th.desc a:focus span.sorting-indicator:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f142";
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
th.sorted.desc .sorting-indicator:before,
|
2015-05-21 20:05:26 +02:00
|
|
|
th.asc:hover span.sorting-indicator:before,
|
|
|
|
th.asc a:focus span.sorting-indicator:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f140";
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
List tables: A better responsive view.
Instead of truncating columns, the data that's already in the markup can now be toggled into view. Only seems appropriate to celebrate four years of contributing by finally doing the first thing I ever mocked up.
Known issues / concerns:
* Custom list tables that don't define a primary column will show nothing at all. These are not extremely common, as `WP_List_Table` isn't really recommended for plugin consumption, but it happens. We need to come up with some kind of fallback.
* Some visual elements, particularly whitespace, could use refining.
* Needs a11y review.
* Touch performance on iOS feels sluggish - is there anything we can do about that?
* Would this be better accordion-style (only one expanded at a time)?
* Is `wp_strip_all_tags()` good enough for column titles that have HTML in them? It's essentially a workaround for the fact that core's comments column does that for the icon, which maybe it shouldn't. Perhaps worth another ticket, as a markup change would be fairly independent.
* Visual hierarchy is not great when expanded (also worthy of another ticket).
* Quick edit now becomes noticeably more annoying to cancel out of, as you have to scroll all the way down and you lose your position from before it was opened. Again, worthy of another ticket.
props Michael Arestad, helen.
see #32395.
Built from https://develop.svn.wordpress.org/trunk@33016
git-svn-id: http://core.svn.wordpress.org/trunk@32987 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-07-01 03:31:25 +02:00
|
|
|
.wp-list-table .toggle-row {
|
|
|
|
position: absolute;
|
|
|
|
right: 8px;
|
|
|
|
top: 10px;
|
|
|
|
display: none;
|
|
|
|
padding: 0;
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
border: none;
|
|
|
|
outline: none;
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-list-table .toggle-row:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2015-07-09 21:12:25 +02:00
|
|
|
.wp-list-table .toggle-row:focus:before {
|
2019-01-17 08:41:52 +01:00
|
|
|
box-shadow:
|
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
|
|
|
0 0 0 1px #4f94d4,
|
|
|
|
0 0 2px 1px rgba(79, 148, 212, 0.8);
|
List tables: A better responsive view.
Instead of truncating columns, the data that's already in the markup can now be toggled into view. Only seems appropriate to celebrate four years of contributing by finally doing the first thing I ever mocked up.
Known issues / concerns:
* Custom list tables that don't define a primary column will show nothing at all. These are not extremely common, as `WP_List_Table` isn't really recommended for plugin consumption, but it happens. We need to come up with some kind of fallback.
* Some visual elements, particularly whitespace, could use refining.
* Needs a11y review.
* Touch performance on iOS feels sluggish - is there anything we can do about that?
* Would this be better accordion-style (only one expanded at a time)?
* Is `wp_strip_all_tags()` good enough for column titles that have HTML in them? It's essentially a workaround for the fact that core's comments column does that for the icon, which maybe it shouldn't. Perhaps worth another ticket, as a markup change would be fairly independent.
* Visual hierarchy is not great when expanded (also worthy of another ticket).
* Quick edit now becomes noticeably more annoying to cancel out of, as you have to scroll all the way down and you lose your position from before it was opened. Again, worthy of another ticket.
props Michael Arestad, helen.
see #32395.
Built from https://develop.svn.wordpress.org/trunk@33016
git-svn-id: http://core.svn.wordpress.org/trunk@32987 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-07-01 03:31:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.wp-list-table .toggle-row:active {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-list-table .toggle-row:before {
|
|
|
|
position: absolute;
|
2015-07-09 21:12:25 +02:00
|
|
|
top: -5px;
|
List tables: A better responsive view.
Instead of truncating columns, the data that's already in the markup can now be toggled into view. Only seems appropriate to celebrate four years of contributing by finally doing the first thing I ever mocked up.
Known issues / concerns:
* Custom list tables that don't define a primary column will show nothing at all. These are not extremely common, as `WP_List_Table` isn't really recommended for plugin consumption, but it happens. We need to come up with some kind of fallback.
* Some visual elements, particularly whitespace, could use refining.
* Needs a11y review.
* Touch performance on iOS feels sluggish - is there anything we can do about that?
* Would this be better accordion-style (only one expanded at a time)?
* Is `wp_strip_all_tags()` good enough for column titles that have HTML in them? It's essentially a workaround for the fact that core's comments column does that for the icon, which maybe it shouldn't. Perhaps worth another ticket, as a markup change would be fairly independent.
* Visual hierarchy is not great when expanded (also worthy of another ticket).
* Quick edit now becomes noticeably more annoying to cancel out of, as you have to scroll all the way down and you lose your position from before it was opened. Again, worthy of another ticket.
props Michael Arestad, helen.
see #32395.
Built from https://develop.svn.wordpress.org/trunk@33016
git-svn-id: http://core.svn.wordpress.org/trunk@32987 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-07-01 03:31:25 +02:00
|
|
|
left: 10px;
|
2015-07-09 21:12:25 +02:00
|
|
|
border-radius: 50%;
|
List tables: A better responsive view.
Instead of truncating columns, the data that's already in the markup can now be toggled into view. Only seems appropriate to celebrate four years of contributing by finally doing the first thing I ever mocked up.
Known issues / concerns:
* Custom list tables that don't define a primary column will show nothing at all. These are not extremely common, as `WP_List_Table` isn't really recommended for plugin consumption, but it happens. We need to come up with some kind of fallback.
* Some visual elements, particularly whitespace, could use refining.
* Needs a11y review.
* Touch performance on iOS feels sluggish - is there anything we can do about that?
* Would this be better accordion-style (only one expanded at a time)?
* Is `wp_strip_all_tags()` good enough for column titles that have HTML in them? It's essentially a workaround for the fact that core's comments column does that for the icon, which maybe it shouldn't. Perhaps worth another ticket, as a markup change would be fairly independent.
* Visual hierarchy is not great when expanded (also worthy of another ticket).
* Quick edit now becomes noticeably more annoying to cancel out of, as you have to scroll all the way down and you lose your position from before it was opened. Again, worthy of another ticket.
props Michael Arestad, helen.
see #32395.
Built from https://develop.svn.wordpress.org/trunk@33016
git-svn-id: http://core.svn.wordpress.org/trunk@32987 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-07-01 03:31:25 +02:00
|
|
|
display: block;
|
2015-07-09 21:12:25 +02:00
|
|
|
padding: 1px 2px 1px 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: #3c434a; /* same as table headers sort arrows */
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f140";
|
2015-09-05 21:57:25 +02:00
|
|
|
font: normal 20px/1 dashicons;
|
2015-07-09 21:12:25 +02:00
|
|
|
line-height: 1;
|
List tables: A better responsive view.
Instead of truncating columns, the data that's already in the markup can now be toggled into view. Only seems appropriate to celebrate four years of contributing by finally doing the first thing I ever mocked up.
Known issues / concerns:
* Custom list tables that don't define a primary column will show nothing at all. These are not extremely common, as `WP_List_Table` isn't really recommended for plugin consumption, but it happens. We need to come up with some kind of fallback.
* Some visual elements, particularly whitespace, could use refining.
* Needs a11y review.
* Touch performance on iOS feels sluggish - is there anything we can do about that?
* Would this be better accordion-style (only one expanded at a time)?
* Is `wp_strip_all_tags()` good enough for column titles that have HTML in them? It's essentially a workaround for the fact that core's comments column does that for the icon, which maybe it shouldn't. Perhaps worth another ticket, as a markup change would be fairly independent.
* Visual hierarchy is not great when expanded (also worthy of another ticket).
* Quick edit now becomes noticeably more annoying to cancel out of, as you have to scroll all the way down and you lose your position from before it was opened. Again, worthy of another ticket.
props Michael Arestad, helen.
see #32395.
Built from https://develop.svn.wordpress.org/trunk@33016
git-svn-id: http://core.svn.wordpress.org/trunk@32987 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-07-01 03:31:25 +02:00
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
2020-10-26 03:25:09 +01:00
|
|
|
speak: never;
|
List tables: A better responsive view.
Instead of truncating columns, the data that's already in the markup can now be toggled into view. Only seems appropriate to celebrate four years of contributing by finally doing the first thing I ever mocked up.
Known issues / concerns:
* Custom list tables that don't define a primary column will show nothing at all. These are not extremely common, as `WP_List_Table` isn't really recommended for plugin consumption, but it happens. We need to come up with some kind of fallback.
* Some visual elements, particularly whitespace, could use refining.
* Needs a11y review.
* Touch performance on iOS feels sluggish - is there anything we can do about that?
* Would this be better accordion-style (only one expanded at a time)?
* Is `wp_strip_all_tags()` good enough for column titles that have HTML in them? It's essentially a workaround for the fact that core's comments column does that for the icon, which maybe it shouldn't. Perhaps worth another ticket, as a markup change would be fairly independent.
* Visual hierarchy is not great when expanded (also worthy of another ticket).
* Quick edit now becomes noticeably more annoying to cancel out of, as you have to scroll all the way down and you lose your position from before it was opened. Again, worthy of another ticket.
props Michael Arestad, helen.
see #32395.
Built from https://develop.svn.wordpress.org/trunk@33016
git-svn-id: http://core.svn.wordpress.org/trunk@32987 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-07-01 03:31:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.wp-list-table .is-expanded .toggle-row:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f142";
|
List tables: A better responsive view.
Instead of truncating columns, the data that's already in the markup can now be toggled into view. Only seems appropriate to celebrate four years of contributing by finally doing the first thing I ever mocked up.
Known issues / concerns:
* Custom list tables that don't define a primary column will show nothing at all. These are not extremely common, as `WP_List_Table` isn't really recommended for plugin consumption, but it happens. We need to come up with some kind of fallback.
* Some visual elements, particularly whitespace, could use refining.
* Needs a11y review.
* Touch performance on iOS feels sluggish - is there anything we can do about that?
* Would this be better accordion-style (only one expanded at a time)?
* Is `wp_strip_all_tags()` good enough for column titles that have HTML in them? It's essentially a workaround for the fact that core's comments column does that for the icon, which maybe it shouldn't. Perhaps worth another ticket, as a markup change would be fairly independent.
* Visual hierarchy is not great when expanded (also worthy of another ticket).
* Quick edit now becomes noticeably more annoying to cancel out of, as you have to scroll all the way down and you lose your position from before it was opened. Again, worthy of another ticket.
props Michael Arestad, helen.
see #32395.
Built from https://develop.svn.wordpress.org/trunk@33016
git-svn-id: http://core.svn.wordpress.org/trunk@32987 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-07-01 03:31:25 +02:00
|
|
|
}
|
|
|
|
|
2019-05-25 19:15:52 +02:00
|
|
|
.locked-indicator {
|
|
|
|
display: none;
|
2014-03-04 07:53:14 +01:00
|
|
|
margin-left: 6px;
|
2014-02-19 22:43:14 +01:00
|
|
|
height: 20px;
|
|
|
|
width: 16px;
|
|
|
|
}
|
|
|
|
|
2019-05-25 19:15:52 +02:00
|
|
|
.locked-indicator-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: #8c8f94;
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f160";
|
2014-03-04 07:53:14 +01:00
|
|
|
display: inline-block;
|
2015-09-05 21:57:25 +02:00
|
|
|
font: normal 20px/1 dashicons;
|
2020-10-26 03:25:09 +01:00
|
|
|
speak: never;
|
2014-03-04 07:53:14 +01:00
|
|
|
vertical-align: middle;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
}
|
|
|
|
|
2019-05-25 19:15:52 +02:00
|
|
|
.locked-info {
|
2014-02-19 22:43:14 +01:00
|
|
|
display: none;
|
2016-10-26 19:59:29 +02:00
|
|
|
margin-top: 4px;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.locked-text {
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
2019-05-25 19:15:52 +02:00
|
|
|
.wp-locked .locked-indicator,
|
|
|
|
.wp-locked .locked-info {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr.wp-locked .check-column label,
|
|
|
|
tr.wp-locked .check-column input[type="checkbox"],
|
|
|
|
tr.wp-locked .row-actions .inline,
|
|
|
|
tr.wp-locked .row-actions .trash {
|
|
|
|
display: none;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.fixed .column-comments .sorting-indicator {
|
|
|
|
margin-top: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#menu-locations-wrap .widefat {
|
|
|
|
width: 60%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widefat th.sortable,
|
|
|
|
.widefat th.sorted {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
th.sortable a,
|
|
|
|
th.sorted a {
|
|
|
|
display: block;
|
|
|
|
overflow: hidden;
|
2015-10-07 03:40:24 +02:00
|
|
|
padding: 8px;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.fixed .column-comments.sortable a,
|
|
|
|
.fixed .column-comments.sorted a {
|
|
|
|
padding: 8px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
th.sortable a span,
|
|
|
|
th.sorted a span {
|
|
|
|
float: left;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2015-05-21 20:05:26 +02:00
|
|
|
th.sorted .sorting-indicator,
|
|
|
|
th.desc:hover span.sorting-indicator,
|
|
|
|
th.desc a:focus span.sorting-indicator,
|
|
|
|
th.asc:hover span.sorting-indicator,
|
|
|
|
th.asc a:focus span.sorting-indicator {
|
2015-09-19 18:15:24 +02:00
|
|
|
visibility: visible;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.tablenav-pages .current-page {
|
2015-06-25 22:32:26 +02:00
|
|
|
margin: 0 2px 0 0;
|
|
|
|
font-size: 13px;
|
2014-02-19 22:43:14 +01:00
|
|
|
text-align: center;
|
|
|
|
}
|
2015-06-25 22:32:26 +02:00
|
|
|
|
|
|
|
.tablenav .total-pages {
|
|
|
|
margin-right: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tablenav #table-paging {
|
2014-02-19 22:43:14 +01:00
|
|
|
margin-left: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tablenav {
|
|
|
|
clear: both;
|
|
|
|
height: 30px;
|
|
|
|
margin: 6px 0 4px;
|
Administration: Standardize form control height and alignment across the admin.
This improves the appearance of various form controls in the admin and addresses some visual inconsistencies in WordPress 5.3.
Props afercia, audrasjb, jameskoster, GDragoN, azaozz, michaelarestad, murgroland, SamuelFernandez, chetan200891, veminom, dlh.
Fixes #48420.
Built from https://develop.svn.wordpress.org/trunk@46866
git-svn-id: http://core.svn.wordpress.org/trunk@46666 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-12-09 21:26:03 +01:00
|
|
|
padding-top: 5px;
|
2014-02-19 22:43:14 +01:00
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tablenav.themes {
|
|
|
|
max-width: 98%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tablenav .tablenav-pages {
|
|
|
|
float: right;
|
Administration: Standardize form control height and alignment across the admin.
This improves the appearance of various form controls in the admin and addresses some visual inconsistencies in WordPress 5.3.
Props afercia, audrasjb, jameskoster, GDragoN, azaozz, michaelarestad, murgroland, SamuelFernandez, chetan200891, veminom, dlh.
Fixes #48420.
Built from https://develop.svn.wordpress.org/trunk@46866
git-svn-id: http://core.svn.wordpress.org/trunk@46666 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-12-09 21:26:03 +01:00
|
|
|
margin: 0 0 9px;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.tablenav .no-pages,
|
|
|
|
.tablenav .one-page .pagination-links {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2018-04-29 18:25:21 +02:00
|
|
|
.tablenav .tablenav-pages .button,
|
|
|
|
.tablenav .tablenav-pages .tablenav-pages-navspan {
|
2015-06-05 07:01:25 +02:00
|
|
|
display: inline-block;
|
2018-04-29 18:25:21 +02:00
|
|
|
vertical-align: baseline;
|
Administration: Standardize form control height and alignment across the admin.
This improves the appearance of various form controls in the admin and addresses some visual inconsistencies in WordPress 5.3.
Props afercia, audrasjb, jameskoster, GDragoN, azaozz, michaelarestad, murgroland, SamuelFernandez, chetan200891, veminom, dlh.
Fixes #48420.
Built from https://develop.svn.wordpress.org/trunk@46866
git-svn-id: http://core.svn.wordpress.org/trunk@46666 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-12-09 21:26:03 +01:00
|
|
|
min-width: 30px;
|
|
|
|
min-height: 30px;
|
2018-04-29 18:25:21 +02:00
|
|
|
margin: 0;
|
|
|
|
padding: 0 4px;
|
2014-02-19 22:43:14 +01:00
|
|
|
font-size: 16px;
|
Administration: Standardize form control height and alignment across the admin.
This improves the appearance of various form controls in the admin and addresses some visual inconsistencies in WordPress 5.3.
Props afercia, audrasjb, jameskoster, GDragoN, azaozz, michaelarestad, murgroland, SamuelFernandez, chetan200891, veminom, dlh.
Fixes #48420.
Built from https://develop.svn.wordpress.org/trunk@46866
git-svn-id: http://core.svn.wordpress.org/trunk@46666 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-12-09 21:26:03 +01:00
|
|
|
line-height: 1.625; /* 26px */
|
2015-06-25 22:32:26 +02:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
.tablenav .displaying-num {
|
2015-05-11 21:34:27 +02:00
|
|
|
margin-right: 7px;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2015-05-11 21:34:27 +02:00
|
|
|
.tablenav .one-page .displaying-num {
|
|
|
|
display: inline-block;
|
2018-04-29 18:25:21 +02:00
|
|
|
margin: 5px 0;
|
2015-05-11 21:34:27 +02:00
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
.tablenav .actions {
|
Administration: Standardize form control height and alignment across the admin.
This improves the appearance of various form controls in the admin and addresses some visual inconsistencies in WordPress 5.3.
Props afercia, audrasjb, jameskoster, GDragoN, azaozz, michaelarestad, murgroland, SamuelFernandez, chetan200891, veminom, dlh.
Fixes #48420.
Built from https://develop.svn.wordpress.org/trunk@46866
git-svn-id: http://core.svn.wordpress.org/trunk@46666 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-12-09 21:26:03 +01:00
|
|
|
padding: 0 8px 0 0;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2014-08-26 17:58:15 +02:00
|
|
|
.wp-filter .actions {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
.tablenav .delete {
|
|
|
|
margin-right: 20px;
|
|
|
|
}
|
|
|
|
|
2018-04-29 18:25:21 +02:00
|
|
|
/* This view-switcher is still used on multisite. */
|
2014-08-26 19:04:15 +02:00
|
|
|
.tablenav .view-switch {
|
2014-02-19 22:43:14 +01:00
|
|
|
float: right;
|
2015-05-11 21:34:27 +02:00
|
|
|
margin: 0 5px;
|
|
|
|
padding-top: 3px;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2014-08-26 17:58:15 +02:00
|
|
|
.wp-filter .view-switch {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
2015-05-11 21:34:27 +02:00
|
|
|
padding: 12px 0;
|
|
|
|
margin: 0 8px 0 2px;
|
2014-08-26 17:58:15 +02:00
|
|
|
}
|
|
|
|
|
2015-05-11 21:34:27 +02:00
|
|
|
.media-toolbar.wp-filter .view-switch {
|
|
|
|
margin: 0 12px 0 2px;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2015-05-11 21:34:27 +02:00
|
|
|
.view-switch a {
|
|
|
|
float: left;
|
|
|
|
width: 28px;
|
|
|
|
height: 28px;
|
|
|
|
text-align: center;
|
2019-05-30 14:15:52 +02:00
|
|
|
line-height: 1.84615384;
|
2015-06-25 22:32:26 +02:00
|
|
|
text-decoration: none;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2015-05-11 21:34:27 +02:00
|
|
|
.view-switch a: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: #c3c4c7;
|
2014-02-19 22:43:14 +01:00
|
|
|
display: inline-block;
|
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
|
|
|
vertical-align: middle;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
}
|
|
|
|
|
2015-05-11 21:34:27 +02:00
|
|
|
.view-switch a:hover:before,
|
|
|
|
.view-switch a:focus: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: #787c82;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.view-switch a.current: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: #2271b1;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2015-05-11 21:34:27 +02:00
|
|
|
.view-switch .view-list:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f163";
|
2014-06-06 00:01:18 +02:00
|
|
|
}
|
|
|
|
|
2015-05-11 21:34:27 +02:00
|
|
|
.view-switch .view-excerpt:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f164";
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2015-05-11 21:34:27 +02:00
|
|
|
.view-switch .view-grid:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f509";
|
2014-06-06 00:01:18 +02:00
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
.filter {
|
|
|
|
float: left;
|
|
|
|
margin: -5px 0 0 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter .subsubsub {
|
|
|
|
margin-left: -10px;
|
|
|
|
margin-top: 13px;
|
|
|
|
}
|
|
|
|
.screen-per-page {
|
|
|
|
width: 4em;
|
|
|
|
}
|
|
|
|
|
2014-08-26 17:58:15 +02:00
|
|
|
#posts-filter .wp-filter {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
#posts-filter fieldset {
|
|
|
|
float: left;
|
|
|
|
margin: 0 1.5ex 1em 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#posts-filter fieldset legend {
|
|
|
|
padding: 0 0 .2em 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
p.pagenav {
|
|
|
|
margin: 0;
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pagenav span {
|
|
|
|
font-weight: 600;
|
|
|
|
margin: 0 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.row-title {
|
|
|
|
font-size: 14px !important;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
.column-comment .comment-author {
|
|
|
|
margin-bottom: 0.6em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.column-author img,
|
|
|
|
.column-username img,
|
|
|
|
.column-comment .comment-author img {
|
|
|
|
float: left;
|
|
|
|
margin-right: 10px;
|
|
|
|
margin-top: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.row-actions {
|
Plugins: Display a message on Plugins list table if a plugin requires a higher version of PHP or WordPress.
Installation and activation of incompatible plugins was previously disallowed in [43436] and [44978], but if such a plugin was installed manually, there was nothing on the Plugins screen that would show its compatibility status.
Showing an appropriate notice with a documentation link makes the UI more consistent and improves user experience.
Follow-up to [43436], [44937], [44939], [44978], [45043], [45165], [45546], [47573], [47816], [47819], [48172], [48636], [48637], [48638], [48640], [48652], [48653], [48654], [48660].
Props TacoVerdo, SergeyBiryukov.
Fixes #53990.
Built from https://develop.svn.wordpress.org/trunk@51678
git-svn-id: http://core.svn.wordpress.org/trunk@51284 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-08-27 17:43:57 +02:00
|
|
|
color: #a7aaad;
|
2014-02-19 22:43:14 +01:00
|
|
|
font-size: 13px;
|
|
|
|
padding: 2px 0 0;
|
2015-12-05 00:13:24 +01:00
|
|
|
position: relative;
|
|
|
|
left: -9999em;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2015-11-07 17:05:25 +01:00
|
|
|
/* ticket #34150 */
|
|
|
|
.rtl .row-actions a {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2015-10-14 00:12:25 +02:00
|
|
|
.row-actions .network_only,
|
|
|
|
.row-actions .network_active {
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
2015-12-05 00:13:24 +01:00
|
|
|
.no-js .row-actions,
|
2014-02-19 22:43:14 +01:00
|
|
|
tr:hover .row-actions,
|
|
|
|
.mobile .row-actions,
|
|
|
|
.row-actions.visible,
|
2016-02-24 17:07:26 +01:00
|
|
|
.comment-item:hover .row-actions {
|
2015-12-05 00:13:24 +01:00
|
|
|
position: static;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* deprecated */
|
|
|
|
.row-actions-visible {
|
|
|
|
padding: 2px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*------------------------------------------------------------------------------
|
|
|
|
10.1 - Inline Editing
|
|
|
|
------------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
.quick-edit* is for Quick Edit
|
|
|
|
.bulk-edit* is for Bulk Edit
|
|
|
|
.inline-edit* is for everything
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Layout */
|
|
|
|
|
|
|
|
#wpbody-content .inline-edit-row fieldset {
|
|
|
|
float: left;
|
|
|
|
margin: 0;
|
2022-04-07 18:44:05 +02:00
|
|
|
padding: 0 12px 0 0;
|
2014-02-19 22:43:14 +01:00
|
|
|
width: 100%;
|
2022-04-07 18:44:05 +02:00
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wpbody-content .inline-edit-row td fieldset:last-of-type {
|
|
|
|
padding-right: 0;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2022-04-07 18:44:05 +02:00
|
|
|
tr.inline-edit-row td {
|
|
|
|
padding: 0;
|
|
|
|
/* Prevents the focus style on .inline-edit-wrapper from being cutted-off */
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inline-edit-wrapper {
|
|
|
|
display: flow-root;
|
|
|
|
padding: 0 12px;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inline-edit-wrapper:focus {
|
|
|
|
border-color: #2271b1;
|
|
|
|
box-shadow: 0 0 0 1px #2271b1;
|
|
|
|
/* Only visible in Windows High Contrast mode */
|
|
|
|
outline: 2px solid transparent;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#wpbody-content .quick-edit-row-post .inline-edit-col-left {
|
|
|
|
width: 40%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wpbody-content .quick-edit-row-post .inline-edit-col-right {
|
|
|
|
width: 39%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wpbody-content .inline-edit-row-post .inline-edit-col-center {
|
|
|
|
width: 20%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wpbody-content .quick-edit-row-page .inline-edit-col-left {
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wpbody-content .quick-edit-row-page .inline-edit-col-right,
|
|
|
|
#wpbody-content .bulk-edit-row-post .inline-edit-col-right {
|
2022-04-07 18:44:05 +02:00
|
|
|
width: 50%;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#wpbody-content .bulk-edit-row .inline-edit-col-left {
|
|
|
|
width: 30%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wpbody-content .bulk-edit-row-page .inline-edit-col-right {
|
|
|
|
width: 69%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wpbody-content .bulk-edit-row .inline-edit-col-bottom {
|
|
|
|
float: right;
|
|
|
|
width: 69%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wpbody-content .inline-edit-row-page .inline-edit-col-right {
|
|
|
|
margin-top: 27px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inline-edit-row fieldset .inline-edit-group {
|
|
|
|
clear: both;
|
2015-03-25 23:25:26 +01:00
|
|
|
line-height: 2.5;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2017-10-02 23:52:52 +02:00
|
|
|
.inline-edit-row .submit {
|
2022-03-29 21:08:19 +02:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
align-items: center;
|
2014-02-19 22:43:14 +01:00
|
|
|
clear: both;
|
2022-04-07 18:44:05 +02:00
|
|
|
margin: 0;
|
|
|
|
padding: 0.5em 0 1em;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2022-03-29 21:08:19 +02:00
|
|
|
.inline-edit-save.submit .button {
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inline-edit-save .spinner {
|
|
|
|
float: none;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2017-10-02 23:52:52 +02:00
|
|
|
.inline-edit-row .notice-error {
|
2022-03-29 21:08:19 +02:00
|
|
|
box-sizing: border-box;
|
|
|
|
min-width: 100%;
|
2017-10-02 23:52:52 +02:00
|
|
|
margin-top: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inline-edit-row .notice-error .error {
|
|
|
|
margin: 0.5em 0;
|
|
|
|
padding: 2px;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Positioning */
|
2015-10-17 02:45:25 +02:00
|
|
|
|
|
|
|
/* Needs higher specificity for the padding */
|
|
|
|
#the-list .inline-edit-row .inline-edit-legend {
|
|
|
|
margin: 0;
|
2022-04-07 18:44:05 +02:00
|
|
|
padding: 0.2em 0;
|
2015-03-25 23:25:26 +01:00
|
|
|
line-height: 2.5;
|
2015-10-17 02:45:25 +02:00
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
.inline-edit-row fieldset span.title,
|
|
|
|
.inline-edit-row fieldset span.checkbox-title {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inline-edit-row fieldset label,
|
|
|
|
.inline-edit-row fieldset span.inline-edit-categories-label {
|
|
|
|
display: block;
|
|
|
|
margin: .2em 0;
|
2015-03-25 23:25:26 +01:00
|
|
|
line-height: 2.5;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2015-06-25 21:30:25 +02:00
|
|
|
.inline-edit-row fieldset.inline-edit-date label {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0;
|
|
|
|
vertical-align: baseline;
|
2019-09-30 19:24:59 +02:00
|
|
|
line-height: 2;
|
2015-06-25 21:30:25 +02:00
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
.inline-edit-row fieldset label.inline-edit-tags {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inline-edit-row fieldset label.inline-edit-tags span.title {
|
|
|
|
margin: .2em 0;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
2015-06-25 21:30:25 +02:00
|
|
|
.inline-edit-row fieldset label span.title,
|
|
|
|
.inline-edit-row fieldset.inline-edit-date legend {
|
2014-02-19 22:43:14 +01:00
|
|
|
display: block;
|
|
|
|
float: left;
|
2015-08-09 20:55:25 +02:00
|
|
|
width: 6em;
|
2015-03-25 23:25:26 +01:00
|
|
|
line-height: 2.5;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2015-06-25 21:30:25 +02:00
|
|
|
#posts-filter fieldset.inline-edit-date legend {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2015-08-09 20:55:25 +02:00
|
|
|
.inline-edit-row fieldset label span.input-text-wrap,
|
|
|
|
.inline-edit-row fieldset .timestamp-wrap {
|
2014-02-19 22:43:14 +01:00
|
|
|
display: block;
|
2015-08-09 20:55:25 +02:00
|
|
|
margin-left: 6em;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.quick-edit-row-post fieldset.inline-edit-col-right label span.title {
|
|
|
|
width: auto;
|
|
|
|
padding-right: 0.5em;
|
|
|
|
}
|
|
|
|
|
2015-03-25 23:25:26 +01:00
|
|
|
.inline-edit-row .inline-edit-or {
|
|
|
|
margin: .2em 6px .2em 0;
|
|
|
|
line-height: 2.5;
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
.inline-edit-row .input-text-wrap input[type=text] {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inline-edit-row fieldset label input[type=checkbox] {
|
2015-03-25 23:25:26 +01:00
|
|
|
vertical-align: middle;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.inline-edit-row fieldset label textarea {
|
|
|
|
width: 100%;
|
|
|
|
height: 4em;
|
2015-03-25 23:25:26 +01:00
|
|
|
vertical-align: top;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#wpbody-content .bulk-edit-row fieldset .inline-edit-group label {
|
|
|
|
max-width: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child {
|
|
|
|
margin-right: 0.5em
|
|
|
|
}
|
|
|
|
|
|
|
|
.inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input {
|
|
|
|
width: 6em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Styling */
|
2015-10-17 02:45:25 +02:00
|
|
|
.inline-edit-row .inline-edit-legend {
|
2014-02-19 22:43:14 +01:00
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Specific Elements */
|
|
|
|
.inline-edit-row fieldset .inline-edit-date {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inline-edit-row fieldset input[name=jj],
|
|
|
|
.inline-edit-row fieldset input[name=hh],
|
2019-09-30 19:24:59 +02:00
|
|
|
.inline-edit-row fieldset input[name=mn],
|
2014-02-19 22:43:14 +01:00
|
|
|
.inline-edit-row fieldset input[name=aa] {
|
2019-09-30 19:24:59 +02:00
|
|
|
vertical-align: middle;
|
|
|
|
text-align: center;
|
Administration: Standardize form control height and alignment across the admin.
This improves the appearance of various form controls in the admin and addresses some visual inconsistencies in WordPress 5.3.
Props afercia, audrasjb, jameskoster, GDragoN, azaozz, michaelarestad, murgroland, SamuelFernandez, chetan200891, veminom, dlh.
Fixes #48420.
Built from https://develop.svn.wordpress.org/trunk@46866
git-svn-id: http://core.svn.wordpress.org/trunk@46666 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-12-09 21:26:03 +01:00
|
|
|
padding: 0 4px;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.inline-edit-row fieldset label input.inline-edit-password-input {
|
|
|
|
width: 8em;
|
|
|
|
}
|
|
|
|
|
2022-04-07 18:44:05 +02:00
|
|
|
#bulk-titles-list,
|
|
|
|
#bulk-titles-list li,
|
2014-02-19 22:43:14 +01:00
|
|
|
.inline-edit-row fieldset ul.cat-checklist li,
|
|
|
|
.inline-edit-row fieldset ul.cat-checklist input {
|
|
|
|
margin: 0;
|
2014-04-05 20:14:15 +02:00
|
|
|
position: relative; /* RTL fix, #WP27629 */
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2022-04-07 18:44:05 +02:00
|
|
|
.inline-edit-row fieldset ul.cat-checklist input {
|
|
|
|
margin-top: -1px;
|
|
|
|
margin-left: 3px;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.inline-edit-row fieldset label input.inline-edit-menu-order-input {
|
|
|
|
width: 3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inline-edit-row fieldset label input.inline-edit-slug-input {
|
|
|
|
width: 75%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inline-edit-row #post_parent,
|
|
|
|
.inline-edit-row select[name="page_template"] {
|
|
|
|
max-width: 80%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.quick-edit-row-post fieldset label.inline-edit-status {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
2022-04-07 18:44:05 +02:00
|
|
|
#bulk-titles,
|
|
|
|
ul.cat-checklist {
|
|
|
|
height: 14em;
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
margin: 0 0 5px;
|
|
|
|
padding: 0.2em 5px;
|
|
|
|
overflow-y: scroll;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
2022-04-07 18:44:05 +02:00
|
|
|
|
|
|
|
#bulk-titles .ntdelbutton,
|
|
|
|
#bulk-titles .ntdeltitle,
|
|
|
|
.inline-edit-row fieldset ul.cat-checklist label {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0;
|
|
|
|
padding: 3px 0;
|
|
|
|
line-height: 20px;
|
|
|
|
vertical-align: top;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2022-04-07 18:44:05 +02:00
|
|
|
#bulk-titles .ntdelitem {
|
|
|
|
padding-left: 23px;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2022-04-07 18:44:05 +02:00
|
|
|
#bulk-titles .ntdelbutton {
|
|
|
|
width: 26px;
|
|
|
|
height: 26px;
|
|
|
|
margin: 0 0 0 -26px;
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#bulk-titles .ntdelbutton:before {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
|
|
|
#bulk-titles .ntdelbutton:focus {
|
|
|
|
box-shadow: 0 0 0 2px #3582c4;
|
|
|
|
/* Only visible in Windows High Contrast mode */
|
|
|
|
outline: 2px solid transparent;
|
|
|
|
/* Reset inherited offset from Gutenberg */
|
|
|
|
outline-offset: 0;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*------------------------------------------------------------------------------
|
|
|
|
17.0 - Plugins
|
|
|
|
------------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
.plugins tbody th.check-column,
|
|
|
|
.plugins tbody {
|
|
|
|
padding: 8px 0 0 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugins tbody th.check-column input[type=checkbox] {
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
|
2016-02-04 20:19:27 +01:00
|
|
|
.updates-table .plugin-title p {
|
2014-02-19 22:43:14 +01:00
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
2015-06-28 07:46:25 +02:00
|
|
|
.plugins thead td.check-column,
|
|
|
|
.plugins tfoot td.check-column,
|
2014-02-19 22:43:14 +01:00
|
|
|
.plugins .inactive th.check-column {
|
|
|
|
padding-left: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugins,
|
|
|
|
.plugins th,
|
|
|
|
.plugins td {
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugins tr {
|
|
|
|
background: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugins p {
|
|
|
|
margin: 0 4px;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugins .desc p {
|
|
|
|
margin: 0 0 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugins td.desc {
|
2019-05-30 14:15:52 +02:00
|
|
|
line-height: 1.5;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.plugins .desc ul,
|
|
|
|
.plugins .desc ol {
|
|
|
|
margin: 0 0 0 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugins .desc ul {
|
|
|
|
list-style-type: disc;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugins .row-actions {
|
|
|
|
font-size: 13px;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugins .inactive td,
|
|
|
|
.plugins .inactive th,
|
|
|
|
.plugins .active td,
|
|
|
|
.plugins .active th {
|
|
|
|
padding: 10px 9px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugins .active td,
|
|
|
|
.plugins .active th {
|
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: #f0f6fc;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.plugins .update th,
|
|
|
|
.plugins .update td {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugins .inactive td,
|
|
|
|
.plugins .inactive th,
|
|
|
|
.plugins .active td,
|
|
|
|
.plugins .active th,
|
|
|
|
.plugin-install #the-list td,
|
|
|
|
.upgrade .plugins td,
|
|
|
|
.upgrade .plugins th {
|
2019-03-04 23:02:52 +01:00
|
|
|
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.plugins tr.active.plugin-update-tr + tr.inactive th,
|
|
|
|
.plugins tr.active.plugin-update-tr + tr.inactive td,
|
|
|
|
.plugins tr.active + tr.inactive th,
|
|
|
|
.plugins tr.active + tr.inactive td {
|
2019-03-04 23:02:52 +01:00
|
|
|
border-top: 1px solid rgba(0, 0, 0, 0.03);
|
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
|
|
|
box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.02), inset 0 -1px 0 #dcdcde;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.plugins .update td,
|
|
|
|
.plugins .update th,
|
|
|
|
.upgrade .plugins tr:last-of-type td,
|
|
|
|
.upgrade .plugins tr:last-of-type th,
|
|
|
|
.plugins tr.active + tr.inactive.update th,
|
2015-02-05 05:19:23 +01:00
|
|
|
.plugins tr.active + tr.inactive.update td,
|
|
|
|
.plugins .updated td,
|
|
|
|
.plugins .updated th,
|
|
|
|
.plugins tr.active + tr.inactive.updated th,
|
|
|
|
.plugins tr.active + tr.inactive.updated td {
|
2014-02-19 22:43:14 +01:00
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
2015-02-05 05:19:23 +01:00
|
|
|
.plugins .active th.check-column,
|
|
|
|
.plugin-update-tr.active td {
|
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;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2017-10-03 02:25:46 +02:00
|
|
|
.wp-list-table.plugins .plugin-title,
|
|
|
|
.wp-list-table.plugins .theme-title {
|
2014-02-19 22:43:14 +01:00
|
|
|
padding-right: 12px;
|
Plugins: Tweak the plugin icons added in [41695].
- Remove plugins icons from the plugin list table, as there were performance issues loading the icons when the site had lots of plugins.
- Depending on which icons the plugin has uploaded, prefer them in this order: `svg`, `128x128`, `256x256`.
- Improve the style of the fallback icon for plugins that don't have an icon defined.
Props Travel_girl, danieltj, afercia, karmatosed,hugobaeta, empireoflight, brentjett, melchoyce, pento.
Fixes #30186.
Built from https://develop.svn.wordpress.org/trunk@41755
git-svn-id: http://core.svn.wordpress.org/trunk@41589 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-10-05 01:43:46 +02:00
|
|
|
white-space: nowrap;
|
2017-10-03 02:25:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.plugins .plugin-title img,
|
|
|
|
.plugins .plugin-title .dashicons {
|
|
|
|
float: left;
|
|
|
|
padding: 0 10px 0 0;
|
|
|
|
width: 64px;
|
|
|
|
height: 64px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugins .plugin-title .dashicons:before {
|
Plugins: Tweak the plugin icons added in [41695].
- Remove plugins icons from the plugin list table, as there were performance issues loading the icons when the site had lots of plugins.
- Depending on which icons the plugin has uploaded, prefer them in this order: `svg`, `128x128`, `256x256`.
- Improve the style of the fallback icon for plugins that don't have an icon defined.
Props Travel_girl, danieltj, afercia, karmatosed,hugobaeta, empireoflight, brentjett, melchoyce, pento.
Fixes #30186.
Built from https://develop.svn.wordpress.org/trunk@41755
git-svn-id: http://core.svn.wordpress.org/trunk@41589 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-10-05 01:43:46 +02:00
|
|
|
padding: 2px;
|
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: #f0f0f1;
|
|
|
|
box-shadow: inset 0 0 10px rgba(167, 170, 173, 0.15);
|
Plugins: Tweak the plugin icons added in [41695].
- Remove plugins icons from the plugin list table, as there were performance issues loading the icons when the site had lots of plugins.
- Depending on which icons the plugin has uploaded, prefer them in this order: `svg`, `128x128`, `256x256`.
- Improve the style of the fallback icon for plugins that don't have an icon defined.
Props Travel_girl, danieltj, afercia, karmatosed,hugobaeta, empireoflight, brentjett, melchoyce, pento.
Fixes #30186.
Built from https://develop.svn.wordpress.org/trunk@41755
git-svn-id: http://core.svn.wordpress.org/trunk@41589 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-10-05 01:43:46 +02:00
|
|
|
font-size: 60px;
|
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: #c3c4c7;
|
2017-10-03 02:25:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#update-themes-table .plugin-title img,
|
|
|
|
#update-themes-table .plugin-title .dashicons {
|
|
|
|
width: 85px;
|
2016-02-04 20:19:27 +01:00
|
|
|
}
|
|
|
|
|
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
|
|
|
.plugins .column-auto-updates {
|
|
|
|
width: 14.2em;
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
.plugins .inactive .plugin-title strong {
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugins .second,
|
|
|
|
.plugins .row-actions {
|
|
|
|
padding: 0 0 5px;
|
|
|
|
}
|
|
|
|
|
2021-10-05 17:07:05 +02:00
|
|
|
.plugins .row-actions {
|
|
|
|
white-space: normal;
|
|
|
|
min-width: 12em;
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
.plugins .update .second,
|
2015-04-21 22:41:28 +02:00
|
|
|
.plugins .update .row-actions,
|
|
|
|
.plugins .updated .second,
|
|
|
|
.plugins .updated .row-actions {
|
2014-02-19 22:43:14 +01:00
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugins-php .widefat tfoot th,
|
|
|
|
.plugins-php .widefat tfoot td {
|
|
|
|
border-top-style: solid;
|
|
|
|
border-top-width: 1px;
|
|
|
|
}
|
|
|
|
|
Update/Install: Shiny Updates v2.
Gone are the days of isolation and feelings of "meh", brought on by The Bleak Screen of Sadness. For a shiny knight has arrived to usher our plugins and themes along their arduous journey of installation, updates, and the inevitable fate of ultimate deletion.
Props swissspidy, adamsilverstein, mapk, afragen, ocean90, ryelle, j-falk, michael-arestad, melchoyce, DrewAPicture, AdamSoucie, ethitter, pento, dd32, kraftbj, Ipstenu, jorbin, afercia, stephdau, paulwilde, jipmoors, khag7, svovaf, jipmoors, obenland.
Fixes #22029, #25828, #31002, #31529, #31530, #31773, #33637, #35032.
Built from https://develop.svn.wordpress.org/trunk@37714
git-svn-id: http://core.svn.wordpress.org/trunk@37680 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-06-15 18:37:29 +02:00
|
|
|
.plugins .plugin-update-tr .plugin-update {
|
2019-03-04 23:02:52 +01:00
|
|
|
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
Update/Install: Shiny Updates v2.
Gone are the days of isolation and feelings of "meh", brought on by The Bleak Screen of Sadness. For a shiny knight has arrived to usher our plugins and themes along their arduous journey of installation, updates, and the inevitable fate of ultimate deletion.
Props swissspidy, adamsilverstein, mapk, afragen, ocean90, ryelle, j-falk, michael-arestad, melchoyce, DrewAPicture, AdamSoucie, ethitter, pento, dd32, kraftbj, Ipstenu, jorbin, afercia, stephdau, paulwilde, jipmoors, khag7, svovaf, jipmoors, obenland.
Fixes #22029, #25828, #31002, #31529, #31530, #31773, #33637, #35032.
Built from https://develop.svn.wordpress.org/trunk@37714
git-svn-id: http://core.svn.wordpress.org/trunk@37680 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-06-15 18:37:29 +02:00
|
|
|
overflow: hidden; /* clearfix */
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2016-08-10 00:45:40 +02:00
|
|
|
.plugins .plugin-update-tr .notice,
|
|
|
|
.plugins .plugin-update-tr div[class="update-message"] { /* back-compat for pre-4.6 */
|
Update/Install: Shiny Updates v2.
Gone are the days of isolation and feelings of "meh", brought on by The Bleak Screen of Sadness. For a shiny knight has arrived to usher our plugins and themes along their arduous journey of installation, updates, and the inevitable fate of ultimate deletion.
Props swissspidy, adamsilverstein, mapk, afragen, ocean90, ryelle, j-falk, michael-arestad, melchoyce, DrewAPicture, AdamSoucie, ethitter, pento, dd32, kraftbj, Ipstenu, jorbin, afercia, stephdau, paulwilde, jipmoors, khag7, svovaf, jipmoors, obenland.
Fixes #22029, #25828, #31002, #31529, #31530, #31773, #33637, #35032.
Built from https://develop.svn.wordpress.org/trunk@37714
git-svn-id: http://core.svn.wordpress.org/trunk@37680 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-06-15 18:37:29 +02:00
|
|
|
margin: 5px 20px 15px 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugins .notice p {
|
|
|
|
margin: 0.5em 0;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2018-03-09 00:20:30 +01:00
|
|
|
.plugins .plugin-description a,
|
|
|
|
.plugins .plugin-update a,
|
|
|
|
.updates-table .plugin-title a {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
Bootstrap/Load: Introduce a recovery mode for fixing fatal errors.
Using the new fatal handler introduced in [44962], an email is sent to the admin when a fatal error occurs. This email includes a secret link to enter recovery mode. When clicked, the link will be validated and on success a cookie will be placed on the client, enabling recovery mode for that user. This functionality is executed early before plugins and themes are loaded, in order to be unaffected by potential fatal errors these might be causing.
When in recovery mode, broken plugins and themes will be paused for that client, so that they are able to access the admin backend despite of these errors. They are notified about the broken extensions and the errors caused, and can then decide whether they would like to temporarily deactivate the extension or fix the problem and resume the extension.
A link in the admin bar allows the client to exit recovery mode.
Props timothyblynjacobs, afragen, flixos90, nerrad, miss_jwo, schlessera, spacedmonkey, swissspidy.
Fixes #46130, #44458.
Built from https://develop.svn.wordpress.org/trunk@44973
git-svn-id: http://core.svn.wordpress.org/trunk@44804 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-03-21 22:53:51 +01:00
|
|
|
.plugins tr.paused th.check-column {
|
2022-07-20 13:37:15 +02:00
|
|
|
border-left: 4px solid #b32d2e;
|
Bootstrap/Load: Introduce a recovery mode for fixing fatal errors.
Using the new fatal handler introduced in [44962], an email is sent to the admin when a fatal error occurs. This email includes a secret link to enter recovery mode. When clicked, the link will be validated and on success a cookie will be placed on the client, enabling recovery mode for that user. This functionality is executed early before plugins and themes are loaded, in order to be unaffected by potential fatal errors these might be causing.
When in recovery mode, broken plugins and themes will be paused for that client, so that they are able to access the admin backend despite of these errors. They are notified about the broken extensions and the errors caused, and can then decide whether they would like to temporarily deactivate the extension or fix the problem and resume the extension.
A link in the admin bar allows the client to exit recovery mode.
Props timothyblynjacobs, afragen, flixos90, nerrad, miss_jwo, schlessera, spacedmonkey, swissspidy.
Fixes #46130, #44458.
Built from https://develop.svn.wordpress.org/trunk@44973
git-svn-id: http://core.svn.wordpress.org/trunk@44804 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-03-21 22:53:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.plugins tr.paused th,
|
|
|
|
.plugins tr.paused td {
|
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;
|
Bootstrap/Load: Introduce a recovery mode for fixing fatal errors.
Using the new fatal handler introduced in [44962], an email is sent to the admin when a fatal error occurs. This email includes a secret link to enter recovery mode. When clicked, the link will be validated and on success a cookie will be placed on the client, enabling recovery mode for that user. This functionality is executed early before plugins and themes are loaded, in order to be unaffected by potential fatal errors these might be causing.
When in recovery mode, broken plugins and themes will be paused for that client, so that they are able to access the admin backend despite of these errors. They are notified about the broken extensions and the errors caused, and can then decide whether they would like to temporarily deactivate the extension or fix the problem and resume the extension.
A link in the admin bar allows the client to exit recovery mode.
Props timothyblynjacobs, afragen, flixos90, nerrad, miss_jwo, schlessera, spacedmonkey, swissspidy.
Fixes #46130, #44458.
Built from https://develop.svn.wordpress.org/trunk@44973
git-svn-id: http://core.svn.wordpress.org/trunk@44804 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-03-21 22:53:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.plugins tr.paused .plugin-title,
|
|
|
|
.plugins .paused .dashicons-warning {
|
2022-07-20 13:37:15 +02:00
|
|
|
color: #b32d2e;
|
Bootstrap/Load: Introduce a recovery mode for fixing fatal errors.
Using the new fatal handler introduced in [44962], an email is sent to the admin when a fatal error occurs. This email includes a secret link to enter recovery mode. When clicked, the link will be validated and on success a cookie will be placed on the client, enabling recovery mode for that user. This functionality is executed early before plugins and themes are loaded, in order to be unaffected by potential fatal errors these might be causing.
When in recovery mode, broken plugins and themes will be paused for that client, so that they are able to access the admin backend despite of these errors. They are notified about the broken extensions and the errors caused, and can then decide whether they would like to temporarily deactivate the extension or fix the problem and resume the extension.
A link in the admin bar allows the client to exit recovery mode.
Props timothyblynjacobs, afragen, flixos90, nerrad, miss_jwo, schlessera, spacedmonkey, swissspidy.
Fixes #46130, #44458.
Built from https://develop.svn.wordpress.org/trunk@44973
git-svn-id: http://core.svn.wordpress.org/trunk@44804 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-03-21 22:53:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.plugins .paused .error-display p,
|
|
|
|
.plugins .paused .error-display code {
|
|
|
|
font-size: 90%;
|
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: rgba(0, 0, 0, 0.7);
|
Bootstrap/Load: Introduce a recovery mode for fixing fatal errors.
Using the new fatal handler introduced in [44962], an email is sent to the admin when a fatal error occurs. This email includes a secret link to enter recovery mode. When clicked, the link will be validated and on success a cookie will be placed on the client, enabling recovery mode for that user. This functionality is executed early before plugins and themes are loaded, in order to be unaffected by potential fatal errors these might be causing.
When in recovery mode, broken plugins and themes will be paused for that client, so that they are able to access the admin backend despite of these errors. They are notified about the broken extensions and the errors caused, and can then decide whether they would like to temporarily deactivate the extension or fix the problem and resume the extension.
A link in the admin bar allows the client to exit recovery mode.
Props timothyblynjacobs, afragen, flixos90, nerrad, miss_jwo, schlessera, spacedmonkey, swissspidy.
Fixes #46130, #44458.
Built from https://develop.svn.wordpress.org/trunk@44973
git-svn-id: http://core.svn.wordpress.org/trunk@44804 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-03-21 22:53:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.plugins .resume-link {
|
2022-07-20 13:37:15 +02:00
|
|
|
color: #b32d2e;
|
Bootstrap/Load: Introduce a recovery mode for fixing fatal errors.
Using the new fatal handler introduced in [44962], an email is sent to the admin when a fatal error occurs. This email includes a secret link to enter recovery mode. When clicked, the link will be validated and on success a cookie will be placed on the client, enabling recovery mode for that user. This functionality is executed early before plugins and themes are loaded, in order to be unaffected by potential fatal errors these might be causing.
When in recovery mode, broken plugins and themes will be paused for that client, so that they are able to access the admin backend despite of these errors. They are notified about the broken extensions and the errors caused, and can then decide whether they would like to temporarily deactivate the extension or fix the problem and resume the extension.
A link in the admin bar allows the client to exit recovery mode.
Props timothyblynjacobs, afragen, flixos90, nerrad, miss_jwo, schlessera, spacedmonkey, swissspidy.
Fixes #46130, #44458.
Built from https://develop.svn.wordpress.org/trunk@44973
git-svn-id: http://core.svn.wordpress.org/trunk@44804 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-03-21 22:53:51 +01:00
|
|
|
}
|
|
|
|
|
Update/Install: Shiny Updates v2.
Gone are the days of isolation and feelings of "meh", brought on by The Bleak Screen of Sadness. For a shiny knight has arrived to usher our plugins and themes along their arduous journey of installation, updates, and the inevitable fate of ultimate deletion.
Props swissspidy, adamsilverstein, mapk, afragen, ocean90, ryelle, j-falk, michael-arestad, melchoyce, DrewAPicture, AdamSoucie, ethitter, pento, dd32, kraftbj, Ipstenu, jorbin, afercia, stephdau, paulwilde, jipmoors, khag7, svovaf, jipmoors, obenland.
Fixes #22029, #25828, #31002, #31529, #31530, #31773, #33637, #35032.
Built from https://develop.svn.wordpress.org/trunk@37714
git-svn-id: http://core.svn.wordpress.org/trunk@37680 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-06-15 18:37:29 +02:00
|
|
|
.plugin-card .update-now: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;
|
Update/Install: Shiny Updates v2.
Gone are the days of isolation and feelings of "meh", brought on by The Bleak Screen of Sadness. For a shiny knight has arrived to usher our plugins and themes along their arduous journey of installation, updates, and the inevitable fate of ultimate deletion.
Props swissspidy, adamsilverstein, mapk, afragen, ocean90, ryelle, j-falk, michael-arestad, melchoyce, DrewAPicture, AdamSoucie, ethitter, pento, dd32, kraftbj, Ipstenu, jorbin, afercia, stephdau, paulwilde, jipmoors, khag7, svovaf, jipmoors, obenland.
Fixes #22029, #25828, #31002, #31529, #31530, #31773, #33637, #35032.
Built from https://develop.svn.wordpress.org/trunk@37714
git-svn-id: http://core.svn.wordpress.org/trunk@37680 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-06-15 18:37:29 +02:00
|
|
|
content: "\f463";
|
2014-02-19 22:43:14 +01:00
|
|
|
display: inline-block;
|
2015-09-05 21:57:25 +02:00
|
|
|
font: normal 20px/1 dashicons;
|
2022-09-29 22:03:10 +02:00
|
|
|
margin: -3px 5px 0 -2px;
|
2020-10-26 03:25:09 +01:00
|
|
|
speak: never;
|
2014-02-19 22:43:14 +01:00
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
2022-09-29 22:03:10 +02:00
|
|
|
vertical-align: middle;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2015-02-05 05:19:23 +01:00
|
|
|
.plugin-card .updating-message:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f463";
|
2015-02-15 13:18:25 +01:00
|
|
|
animation: rotation 2s infinite linear;
|
2015-02-05 05:19:23 +01:00
|
|
|
}
|
|
|
|
|
2015-02-15 13:18:25 +01:00
|
|
|
@keyframes rotation {
|
|
|
|
0% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: rotate(359deg);
|
|
|
|
}
|
2015-02-05 05:19:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.plugin-card .updated-message: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: #68de7c;
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f147";
|
2015-02-05 05:19:23 +01:00
|
|
|
}
|
|
|
|
|
2022-09-13 23:51:12 +02:00
|
|
|
.plugin-install-php #the-list {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugin-install-php .plugin-card {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
2015-10-10 17:17:26 +02:00
|
|
|
.plugin-install-php h2 {
|
2014-09-02 20:29:16 +02:00
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
2015-10-10 17:17:26 +02:00
|
|
|
.plugin-install-php h3 {
|
2014-02-19 22:43:14 +01:00
|
|
|
margin: 2.5em 0 8px;
|
|
|
|
}
|
|
|
|
|
2014-07-18 08:08:15 +02:00
|
|
|
.plugin-install-php .wp-filter {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2014-07-09 22:02:14 +02:00
|
|
|
/* Plugin card table view */
|
2014-07-18 21:35:14 +02:00
|
|
|
.plugin-group {
|
|
|
|
overflow: hidden; /* clearfix */
|
|
|
|
margin-top: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugin-group h3 {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
2014-07-09 22:02:14 +02:00
|
|
|
.plugin-card {
|
|
|
|
float: left;
|
|
|
|
margin: 0 8px 16px;
|
|
|
|
width: 48.5%;
|
|
|
|
width: calc( 50% - 8px );
|
|
|
|
background-color: #fff;
|
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 #dcdcde;
|
2014-07-09 22:02:14 +02:00
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugin-card:nth-child(odd) {
|
|
|
|
clear: both;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugin-card:nth-child(even) {
|
2014-07-18 08:08:15 +02:00
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
2019-01-18 05:03:52 +01:00
|
|
|
@media screen and (min-width: 1600px) and ( max-width: 2299px ) {
|
2014-07-18 08:08:15 +02:00
|
|
|
.plugin-card {
|
|
|
|
width: 30%;
|
|
|
|
width: calc( 33.1% - 8px );
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugin-card:nth-child(odd) {
|
|
|
|
clear: none;
|
|
|
|
margin-left: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugin-card:nth-child(even) {
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugin-card:nth-child(3n+1) {
|
|
|
|
clear: both;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugin-card:nth-child(3n) {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-17 08:41:52 +01:00
|
|
|
@media screen and (min-width: 2300px) {
|
2018-10-02 22:07:24 +02:00
|
|
|
.plugin-card {
|
|
|
|
width: 25%;
|
|
|
|
width: calc( 25% - 12px );
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugin-card:nth-child(odd) {
|
|
|
|
clear: none;
|
|
|
|
margin-left: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugin-card:nth-child(even) {
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugin-card:nth-child(4n+1) {
|
|
|
|
clear: both;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugin-card:nth-child(4n) {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-09 22:02:14 +02:00
|
|
|
.plugin-card-top {
|
2014-09-02 21:47:16 +02:00
|
|
|
position: relative;
|
2014-07-09 22:02:14 +02:00
|
|
|
padding: 20px 20px 10px;
|
2014-09-02 21:47:16 +02:00
|
|
|
min-height: 135px;
|
2014-07-09 22:02:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
div.action-links,
|
|
|
|
.plugin-action-buttons {
|
|
|
|
margin: 0; /* Override existing margins */
|
|
|
|
}
|
|
|
|
|
2015-10-10 17:17:26 +02:00
|
|
|
.plugin-card h3 {
|
2019-08-17 16:33:56 +02:00
|
|
|
margin: 0 12px 12px 0;
|
2014-07-09 22:02:14 +02:00
|
|
|
font-size: 18px;
|
2014-09-02 21:47:16 +02:00
|
|
|
line-height: 1.3;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugin-card .name,
|
|
|
|
.plugin-card .desc {
|
|
|
|
margin-left: 148px; /* icon + margin */
|
2020-06-22 17:30:18 +02:00
|
|
|
margin-right: 128px; /* action links + margin */
|
2014-09-02 21:47:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.plugin-card .action-links {
|
|
|
|
position: absolute;
|
|
|
|
top: 20px;
|
|
|
|
right: 20px;
|
|
|
|
width: 120px;
|
2014-07-09 22:02:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.plugin-action-buttons {
|
2014-08-21 21:11:17 +02:00
|
|
|
clear: right;
|
2014-07-09 22:02:14 +02:00
|
|
|
float: right;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugin-action-buttons li {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugin-card-bottom {
|
|
|
|
clear: both;
|
|
|
|
padding: 12px 20px;
|
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;
|
|
|
|
border-top: 1px solid #dcdcde;
|
2014-07-09 22:02:14 +02:00
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugin-card-bottom .star-rating {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2015-11-18 21:10:26 +01:00
|
|
|
.plugin-card-update-failed .update-now {
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugin-card-update-failed .notice-error {
|
|
|
|
margin: 0;
|
|
|
|
padding-left: 16px;
|
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
|
|
|
box-shadow: 0 -1px 0 #dcdcde;
|
2015-11-18 21:10:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.plugin-card-update-failed .plugin-card-bottom {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2014-07-09 22:02:14 +02:00
|
|
|
.plugin-card .column-rating {
|
2019-05-30 14:15:52 +02:00
|
|
|
line-height: 1.76923076;
|
2014-07-09 22:02:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.plugin-card .column-rating,
|
|
|
|
.plugin-card .column-updated {
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugin-card .column-rating,
|
|
|
|
.plugin-card .column-downloaded {
|
|
|
|
float: left;
|
|
|
|
clear: left;
|
2014-08-24 19:26:15 +02:00
|
|
|
max-width: 180px;
|
2014-07-09 22:02:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.plugin-card .column-updated,
|
|
|
|
.plugin-card .column-compatibility {
|
2014-08-24 19:26:15 +02:00
|
|
|
text-align: right;
|
2014-07-09 22:02:14 +02:00
|
|
|
float: right;
|
|
|
|
clear: right;
|
2014-08-24 19:26:15 +02:00
|
|
|
width: 65%;
|
|
|
|
width: calc( 100% - 180px );
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugin-card .column-compatibility span:before {
|
2015-09-05 21:57:25 +02:00
|
|
|
font: normal 20px/.5 dashicons;
|
2020-10-26 03:25:09 +01:00
|
|
|
speak: never;
|
2014-08-24 19:26:15 +02:00
|
|
|
display: inline-block;
|
|
|
|
padding: 0;
|
|
|
|
top: 4px;
|
|
|
|
left: -2px;
|
|
|
|
position: relative;
|
|
|
|
vertical-align: top;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
text-decoration: none !important;
|
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-08-24 19:26:15 +02:00
|
|
|
}
|
2014-09-02 21:47:16 +02:00
|
|
|
|
2018-12-20 19:15:47 +01:00
|
|
|
.plugin-card .column-compatibility .compatibility-incompatible:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f158";
|
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-08-24 19:26:15 +02:00
|
|
|
}
|
|
|
|
|
2018-12-20 19:15:47 +01:00
|
|
|
.plugin-card .column-compatibility .compatibility-compatible:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f147";
|
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: #007017;
|
2014-08-24 19:26:15 +02:00
|
|
|
}
|
|
|
|
|
Plugins: Disable "Install Now" button for plugins that require a higher version of PHP or WordPress.
Display a notice with an explanation and the steps required to resolve the issue.
Props afragen, schlessera, flixos90, nerrad, melchoyce, boemedia, hedgefield, joyously, johnalarcon, lakenh, afercia, acirujano, ibantxillo, SergeyBiryukov.
Fixes #43986.
Built from https://develop.svn.wordpress.org/trunk@43436
git-svn-id: http://core.svn.wordpress.org/trunk@43263 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-07-09 15:45:25 +02:00
|
|
|
.plugin-card .notice {
|
2021-09-03 00:18:00 +02:00
|
|
|
margin: 20px 20px 0;
|
Plugins: Disable "Install Now" button for plugins that require a higher version of PHP or WordPress.
Display a notice with an explanation and the steps required to resolve the issue.
Props afragen, schlessera, flixos90, nerrad, melchoyce, boemedia, hedgefield, joyously, johnalarcon, lakenh, afercia, acirujano, ibantxillo, SergeyBiryukov.
Fixes #43986.
Built from https://develop.svn.wordpress.org/trunk@43436
git-svn-id: http://core.svn.wordpress.org/trunk@43263 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-07-09 15:45:25 +02:00
|
|
|
}
|
|
|
|
|
2014-08-21 21:11:17 +02:00
|
|
|
.plugin-icon {
|
2014-09-02 21:47:16 +02:00
|
|
|
position: absolute;
|
|
|
|
top: 20px;
|
|
|
|
left: 20px;
|
2014-08-21 21:11:17 +02:00
|
|
|
width: 128px;
|
|
|
|
height: 128px;
|
2014-08-24 19:56:15 +02:00
|
|
|
margin: 0 20px 20px 0;
|
2014-08-21 21:11:17 +02:00
|
|
|
}
|
|
|
|
|
2014-08-25 18:03:16 +02:00
|
|
|
.no-plugin-results {
|
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; /* same as no themes and no media */
|
2014-08-25 18:03:16 +02:00
|
|
|
font-size: 18px;
|
|
|
|
font-style: normal;
|
|
|
|
margin: 0;
|
|
|
|
padding: 100px 0 0;
|
2022-11-24 16:38:15 +01:00
|
|
|
width: 100%;
|
2014-08-25 18:03:16 +02:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
/* ms */
|
|
|
|
/* Background Color for Site Status */
|
2015-11-18 22:59:26 +01:00
|
|
|
.wp-list-table .site-deleted,
|
2021-04-07 18:38:09 +02:00
|
|
|
.wp-list-table tr.site-deleted,
|
2015-11-18 22:59:26 +01:00
|
|
|
.wp-list-table .site-archived,
|
|
|
|
.wp-list-table tr.site-archived {
|
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: #fcf0f1;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
2021-04-07 18:38:09 +02:00
|
|
|
.wp-list-table .site-spammed,
|
|
|
|
.wp-list-table tr.site-spammed,
|
2015-11-18 22:59:26 +01:00
|
|
|
.wp-list-table .site-mature,
|
|
|
|
.wp-list-table tr.site-mature {
|
2021-04-07 18:38:09 +02:00
|
|
|
background: #fcf9e8;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2015-06-10 08:50:25 +02:00
|
|
|
.sites.fixed .column-lastupdated,
|
|
|
|
.sites.fixed .column-registered {
|
|
|
|
width: 20%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sites.fixed .column-users {
|
|
|
|
width: 80px;
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
/* =Media Queries
|
|
|
|
-------------------------------------------------------------- */
|
|
|
|
|
2019-01-17 08:41:52 +01:00
|
|
|
@media screen and (max-width: 1100px) and (min-width: 782px), (max-width: 480px) {
|
2014-09-02 21:47:16 +02:00
|
|
|
.plugin-card .action-links {
|
|
|
|
position: static;
|
|
|
|
margin-left: 148px;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugin-action-buttons {
|
|
|
|
float: none;
|
|
|
|
margin: 1em 0 0;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugin-action-buttons li {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugin-action-buttons li .button {
|
|
|
|
margin-right: 20px;
|
|
|
|
}
|
|
|
|
|
2019-08-17 16:33:56 +02:00
|
|
|
.plugin-card h3 {
|
|
|
|
margin-right: 24px;
|
|
|
|
}
|
|
|
|
|
2014-09-02 21:47:16 +02:00
|
|
|
.plugin-card .name,
|
|
|
|
.plugin-card .desc {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugin-card .desc p:first-of-type {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-17 08:41:52 +01:00
|
|
|
@media screen and (max-width: 782px) {
|
2014-02-19 22:43:14 +01:00
|
|
|
/* WP List Table Options & Filters */
|
|
|
|
.tablenav {
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tablenav.top {
|
2021-09-03 00:18:00 +02:00
|
|
|
margin: 20px 0 5px;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.tablenav.bottom {
|
|
|
|
position: relative;
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tablenav br {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tablenav br.clear {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2014-08-26 17:58:15 +02:00
|
|
|
.tablenav.top .actions,
|
|
|
|
.tablenav .view-switch {
|
2014-02-19 22:43:14 +01:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2015-05-11 21:34:27 +02:00
|
|
|
.view-switch a {
|
|
|
|
width: 36px;
|
|
|
|
height: 36px;
|
2019-05-30 14:15:52 +02:00
|
|
|
line-height: 2.53846153;
|
2015-05-11 21:34:27 +02:00
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
/* Pagination */
|
|
|
|
.tablenav.top .displaying-num {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tablenav.bottom .displaying-num {
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
2015-06-25 22:32:26 +02:00
|
|
|
top: 11px;
|
|
|
|
margin: 0;
|
2014-02-19 22:43:14 +01:00
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
2015-06-25 22:32:26 +02:00
|
|
|
.tablenav .tablenav-pages {
|
2014-02-19 22:43:14 +01:00
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
margin: 0 0 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tablenav.bottom .tablenav-pages {
|
|
|
|
margin-top: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tablenav.top .tablenav-pages.one-page {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-10-10 01:02:31 +02:00
|
|
|
.tablenav.bottom .actions select {
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tablenav.bottom .actions.alignleft + .actions.alignleft {
|
|
|
|
clear: left;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
.tablenav.bottom .tablenav-pages.one-page {
|
Administration: Wrap the list table items count to a new line on small screens.
This avoids overlapping with action buttons and brings some consistency to bottom paddings across various screens.
Props passoniate, afercia, anuj2, rolfsiebers, uxkai, ireneyoast, thijsvanloef, hellofromTonya, audrasjb, helen, SergeyBiryukov.
Fixes #49246.
Built from https://develop.svn.wordpress.org/trunk@49178
git-svn-id: http://core.svn.wordpress.org/trunk@48940 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-10-17 03:13:06 +02:00
|
|
|
margin-top: 15px;
|
2014-02-19 22:43:14 +01:00
|
|
|
height: 0;
|
|
|
|
}
|
|
|
|
|
2015-06-25 22:32:26 +02:00
|
|
|
.tablenav-pages .pagination-links {
|
|
|
|
font-size: 16px;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2018-04-29 18:25:21 +02:00
|
|
|
.tablenav .tablenav-pages .button,
|
|
|
|
.tablenav .tablenav-pages .tablenav-pages-navspan {
|
|
|
|
min-width: 44px;
|
|
|
|
padding: 12px 8px;
|
2014-02-19 22:43:14 +01:00
|
|
|
font-size: 18px;
|
2018-04-29 18:25:21 +02:00
|
|
|
line-height: 1;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.tablenav-pages .pagination-links .current-page {
|
2018-04-29 18:25:21 +02:00
|
|
|
min-width: 44px;
|
|
|
|
padding: 12px 6px;
|
2015-06-25 22:32:26 +02:00
|
|
|
font-size: 16px;
|
2019-05-30 14:15:52 +02:00
|
|
|
line-height: 1.125;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* WP List Table Adjustments: General */
|
|
|
|
.form-wrap > p {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2015-08-17 17:38:25 +02:00
|
|
|
.wp-list-table th.column-primary ~ th,
|
|
|
|
.wp-list-table tr:not(.inline-edit-row):not(.no-items) td.column-primary ~ td:not(.check-column) {
|
2014-02-19 22:43:14 +01:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2015-07-07 01:30:24 +02:00
|
|
|
.wp-list-table thead th.column-primary {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
List tables: A better responsive view.
Instead of truncating columns, the data that's already in the markup can now be toggled into view. Only seems appropriate to celebrate four years of contributing by finally doing the first thing I ever mocked up.
Known issues / concerns:
* Custom list tables that don't define a primary column will show nothing at all. These are not extremely common, as `WP_List_Table` isn't really recommended for plugin consumption, but it happens. We need to come up with some kind of fallback.
* Some visual elements, particularly whitespace, could use refining.
* Needs a11y review.
* Touch performance on iOS feels sluggish - is there anything we can do about that?
* Would this be better accordion-style (only one expanded at a time)?
* Is `wp_strip_all_tags()` good enough for column titles that have HTML in them? It's essentially a workaround for the fact that core's comments column does that for the icon, which maybe it shouldn't. Perhaps worth another ticket, as a markup change would be fairly independent.
* Visual hierarchy is not great when expanded (also worthy of another ticket).
* Quick edit now becomes noticeably more annoying to cancel out of, as you have to scroll all the way down and you lose your position from before it was opened. Again, worthy of another ticket.
props Michael Arestad, helen.
see #32395.
Built from https://develop.svn.wordpress.org/trunk@33016
git-svn-id: http://core.svn.wordpress.org/trunk@32987 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-07-01 03:31:25 +02:00
|
|
|
/* Checkboxes need to show */
|
|
|
|
.wp-list-table tr th.check-column {
|
|
|
|
display: table-cell;
|
2019-12-09 15:26:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.wp-list-table .check-column {
|
|
|
|
width: 2.5em;
|
List tables: A better responsive view.
Instead of truncating columns, the data that's already in the markup can now be toggled into view. Only seems appropriate to celebrate four years of contributing by finally doing the first thing I ever mocked up.
Known issues / concerns:
* Custom list tables that don't define a primary column will show nothing at all. These are not extremely common, as `WP_List_Table` isn't really recommended for plugin consumption, but it happens. We need to come up with some kind of fallback.
* Some visual elements, particularly whitespace, could use refining.
* Needs a11y review.
* Touch performance on iOS feels sluggish - is there anything we can do about that?
* Would this be better accordion-style (only one expanded at a time)?
* Is `wp_strip_all_tags()` good enough for column titles that have HTML in them? It's essentially a workaround for the fact that core's comments column does that for the icon, which maybe it shouldn't. Perhaps worth another ticket, as a markup change would be fairly independent.
* Visual hierarchy is not great when expanded (also worthy of another ticket).
* Quick edit now becomes noticeably more annoying to cancel out of, as you have to scroll all the way down and you lose your position from before it was opened. Again, worthy of another ticket.
props Michael Arestad, helen.
see #32395.
Built from https://develop.svn.wordpress.org/trunk@33016
git-svn-id: http://core.svn.wordpress.org/trunk@32987 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-07-01 03:31:25 +02:00
|
|
|
}
|
|
|
|
|
2015-08-17 17:38:25 +02:00
|
|
|
.wp-list-table .column-primary .toggle-row {
|
List tables: A better responsive view.
Instead of truncating columns, the data that's already in the markup can now be toggled into view. Only seems appropriate to celebrate four years of contributing by finally doing the first thing I ever mocked up.
Known issues / concerns:
* Custom list tables that don't define a primary column will show nothing at all. These are not extremely common, as `WP_List_Table` isn't really recommended for plugin consumption, but it happens. We need to come up with some kind of fallback.
* Some visual elements, particularly whitespace, could use refining.
* Needs a11y review.
* Touch performance on iOS feels sluggish - is there anything we can do about that?
* Would this be better accordion-style (only one expanded at a time)?
* Is `wp_strip_all_tags()` good enough for column titles that have HTML in them? It's essentially a workaround for the fact that core's comments column does that for the icon, which maybe it shouldn't. Perhaps worth another ticket, as a markup change would be fairly independent.
* Visual hierarchy is not great when expanded (also worthy of another ticket).
* Quick edit now becomes noticeably more annoying to cancel out of, as you have to scroll all the way down and you lose your position from before it was opened. Again, worthy of another ticket.
props Michael Arestad, helen.
see #32395.
Built from https://develop.svn.wordpress.org/trunk@33016
git-svn-id: http://core.svn.wordpress.org/trunk@32987 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-07-01 03:31:25 +02:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2015-07-07 01:30:24 +02:00
|
|
|
.wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.check-column) {
|
List tables: A better responsive view.
Instead of truncating columns, the data that's already in the markup can now be toggled into view. Only seems appropriate to celebrate four years of contributing by finally doing the first thing I ever mocked up.
Known issues / concerns:
* Custom list tables that don't define a primary column will show nothing at all. These are not extremely common, as `WP_List_Table` isn't really recommended for plugin consumption, but it happens. We need to come up with some kind of fallback.
* Some visual elements, particularly whitespace, could use refining.
* Needs a11y review.
* Touch performance on iOS feels sluggish - is there anything we can do about that?
* Would this be better accordion-style (only one expanded at a time)?
* Is `wp_strip_all_tags()` good enough for column titles that have HTML in them? It's essentially a workaround for the fact that core's comments column does that for the icon, which maybe it shouldn't. Perhaps worth another ticket, as a markup change would be fairly independent.
* Visual hierarchy is not great when expanded (also worthy of another ticket).
* Quick edit now becomes noticeably more annoying to cancel out of, as you have to scroll all the way down and you lose your position from before it was opened. Again, worthy of another ticket.
props Michael Arestad, helen.
see #32395.
Built from https://develop.svn.wordpress.org/trunk@33016
git-svn-id: http://core.svn.wordpress.org/trunk@32987 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-07-01 03:31:25 +02:00
|
|
|
position: relative;
|
|
|
|
clear: both;
|
|
|
|
width: auto !important; /* needs to override some columns that are more specifically targeted */
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-list-table td.column-primary {
|
|
|
|
padding-right: 50px; /* space for toggle button */
|
|
|
|
}
|
|
|
|
|
2015-08-17 17:38:25 +02:00
|
|
|
.wp-list-table tr:not(.inline-edit-row):not(.no-items) td.column-primary ~ td:not(.check-column) {
|
List tables: A better responsive view.
Instead of truncating columns, the data that's already in the markup can now be toggled into view. Only seems appropriate to celebrate four years of contributing by finally doing the first thing I ever mocked up.
Known issues / concerns:
* Custom list tables that don't define a primary column will show nothing at all. These are not extremely common, as `WP_List_Table` isn't really recommended for plugin consumption, but it happens. We need to come up with some kind of fallback.
* Some visual elements, particularly whitespace, could use refining.
* Needs a11y review.
* Touch performance on iOS feels sluggish - is there anything we can do about that?
* Would this be better accordion-style (only one expanded at a time)?
* Is `wp_strip_all_tags()` good enough for column titles that have HTML in them? It's essentially a workaround for the fact that core's comments column does that for the icon, which maybe it shouldn't. Perhaps worth another ticket, as a markup change would be fairly independent.
* Visual hierarchy is not great when expanded (also worthy of another ticket).
* Quick edit now becomes noticeably more annoying to cancel out of, as you have to scroll all the way down and you lose your position from before it was opened. Again, worthy of another ticket.
props Michael Arestad, helen.
see #32395.
Built from https://develop.svn.wordpress.org/trunk@33016
git-svn-id: http://core.svn.wordpress.org/trunk@32987 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-07-01 03:31:25 +02:00
|
|
|
padding: 3px 8px 3px 35%;
|
|
|
|
}
|
|
|
|
|
2015-07-07 01:30:24 +02:00
|
|
|
.wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary)::before {
|
List tables: A better responsive view.
Instead of truncating columns, the data that's already in the markup can now be toggled into view. Only seems appropriate to celebrate four years of contributing by finally doing the first thing I ever mocked up.
Known issues / concerns:
* Custom list tables that don't define a primary column will show nothing at all. These are not extremely common, as `WP_List_Table` isn't really recommended for plugin consumption, but it happens. We need to come up with some kind of fallback.
* Some visual elements, particularly whitespace, could use refining.
* Needs a11y review.
* Touch performance on iOS feels sluggish - is there anything we can do about that?
* Would this be better accordion-style (only one expanded at a time)?
* Is `wp_strip_all_tags()` good enough for column titles that have HTML in them? It's essentially a workaround for the fact that core's comments column does that for the icon, which maybe it shouldn't. Perhaps worth another ticket, as a markup change would be fairly independent.
* Visual hierarchy is not great when expanded (also worthy of another ticket).
* Quick edit now becomes noticeably more annoying to cancel out of, as you have to scroll all the way down and you lose your position from before it was opened. Again, worthy of another ticket.
props Michael Arestad, helen.
see #32395.
Built from https://develop.svn.wordpress.org/trunk@33016
git-svn-id: http://core.svn.wordpress.org/trunk@32987 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-07-01 03:31:25 +02:00
|
|
|
position: absolute;
|
|
|
|
left: 10px; /* match padding of regular table cell */
|
|
|
|
display: block;
|
|
|
|
overflow: hidden;
|
|
|
|
width: 32%; /* leave a little space for a gutter */
|
|
|
|
content: attr(data-colname);
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-list-table .is-expanded td:not(.hidden) {
|
|
|
|
display: block !important;
|
|
|
|
overflow: hidden; /* clearfix */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Special cases */
|
|
|
|
.widefat .num,
|
|
|
|
.column-posts {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2015-09-13 14:47:27 +02:00
|
|
|
#comments-form .fixed .column-author,
|
|
|
|
#commentsdiv .fixed .column-author {
|
List tables: A better responsive view.
Instead of truncating columns, the data that's already in the markup can now be toggled into view. Only seems appropriate to celebrate four years of contributing by finally doing the first thing I ever mocked up.
Known issues / concerns:
* Custom list tables that don't define a primary column will show nothing at all. These are not extremely common, as `WP_List_Table` isn't really recommended for plugin consumption, but it happens. We need to come up with some kind of fallback.
* Some visual elements, particularly whitespace, could use refining.
* Needs a11y review.
* Touch performance on iOS feels sluggish - is there anything we can do about that?
* Would this be better accordion-style (only one expanded at a time)?
* Is `wp_strip_all_tags()` good enough for column titles that have HTML in them? It's essentially a workaround for the fact that core's comments column does that for the icon, which maybe it shouldn't. Perhaps worth another ticket, as a markup change would be fairly independent.
* Visual hierarchy is not great when expanded (also worthy of another ticket).
* Quick edit now becomes noticeably more annoying to cancel out of, as you have to scroll all the way down and you lose your position from before it was opened. Again, worthy of another ticket.
props Michael Arestad, helen.
see #32395.
Built from https://develop.svn.wordpress.org/trunk@33016
git-svn-id: http://core.svn.wordpress.org/trunk@32987 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-07-01 03:31:25 +02:00
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
.fixed .column-comment .comment-author {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2019-02-01 03:14:51 +01:00
|
|
|
/* Comment author hidden via Screen Options */
|
|
|
|
.fixed .column-author.hidden ~ .column-comment .comment-author {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
List tables: A better responsive view.
Instead of truncating columns, the data that's already in the markup can now be toggled into view. Only seems appropriate to celebrate four years of contributing by finally doing the first thing I ever mocked up.
Known issues / concerns:
* Custom list tables that don't define a primary column will show nothing at all. These are not extremely common, as `WP_List_Table` isn't really recommended for plugin consumption, but it happens. We need to come up with some kind of fallback.
* Some visual elements, particularly whitespace, could use refining.
* Needs a11y review.
* Touch performance on iOS feels sluggish - is there anything we can do about that?
* Would this be better accordion-style (only one expanded at a time)?
* Is `wp_strip_all_tags()` good enough for column titles that have HTML in them? It's essentially a workaround for the fact that core's comments column does that for the icon, which maybe it shouldn't. Perhaps worth another ticket, as a markup change would be fairly independent.
* Visual hierarchy is not great when expanded (also worthy of another ticket).
* Quick edit now becomes noticeably more annoying to cancel out of, as you have to scroll all the way down and you lose your position from before it was opened. Again, worthy of another ticket.
props Michael Arestad, helen.
see #32395.
Built from https://develop.svn.wordpress.org/trunk@33016
git-svn-id: http://core.svn.wordpress.org/trunk@32987 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-07-01 03:31:25 +02:00
|
|
|
#the-comment-list .is-expanded td {
|
|
|
|
box-shadow: none;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
List tables: A better responsive view.
Instead of truncating columns, the data that's already in the markup can now be toggled into view. Only seems appropriate to celebrate four years of contributing by finally doing the first thing I ever mocked up.
Known issues / concerns:
* Custom list tables that don't define a primary column will show nothing at all. These are not extremely common, as `WP_List_Table` isn't really recommended for plugin consumption, but it happens. We need to come up with some kind of fallback.
* Some visual elements, particularly whitespace, could use refining.
* Needs a11y review.
* Touch performance on iOS feels sluggish - is there anything we can do about that?
* Would this be better accordion-style (only one expanded at a time)?
* Is `wp_strip_all_tags()` good enough for column titles that have HTML in them? It's essentially a workaround for the fact that core's comments column does that for the icon, which maybe it shouldn't. Perhaps worth another ticket, as a markup change would be fairly independent.
* Visual hierarchy is not great when expanded (also worthy of another ticket).
* Quick edit now becomes noticeably more annoying to cancel out of, as you have to scroll all the way down and you lose your position from before it was opened. Again, worthy of another ticket.
props Michael Arestad, helen.
see #32395.
Built from https://develop.svn.wordpress.org/trunk@33016
git-svn-id: http://core.svn.wordpress.org/trunk@32987 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-07-01 03:31:25 +02:00
|
|
|
#the-comment-list .is-expanded td:last-child {
|
|
|
|
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2015-07-10 23:44:25 +02:00
|
|
|
/* Show comment bubble as text instead */
|
|
|
|
.post-com-count .screen-reader-text {
|
|
|
|
position: static;
|
Customize: Introduce a new experience for discovering, installing, and previewing themes within the customizer.
Unify the theme-browsing and theme-customization experiences by introducing a comprehensive theme browser and installer directly accessible in the customizer. Replaces the customizer theme switcher with a full-screen panel for discovering/browsing and installing themes available on WordPress.org. Themes can now be installed and previewed directly in the customizer without entering the wp-admin context. Also includes an extensible framework for browsing and installing themes from other sources.
Also includes CSS auto-prefixing added via `grunt precommit:css`.
For details, see: https://make.wordpress.org/core/2016/10/03/feature-proposal-a-new-experience-for-discovering-installing-and-previewing-themes-in-the-customizer/
Previously [38813] but reverted in [39140].
Fixes #37661, #34843, #38666.
Props celloexpressions, folletto, westonruter, karmatosed, melchoyce, afercia.
Built from https://develop.svn.wordpress.org/trunk@41648
git-svn-id: http://core.svn.wordpress.org/trunk@41482 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-09-29 22:13:50 +02:00
|
|
|
-webkit-clip-path: none;
|
2017-09-27 19:27:45 +02:00
|
|
|
clip-path: none;
|
2015-07-10 23:44:25 +02:00
|
|
|
width: auto;
|
|
|
|
height: auto;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2015-07-29 20:08:25 +02:00
|
|
|
.column-response .post-com-count-no-comments:after,
|
|
|
|
.column-response .post-com-count-approved:after,
|
2015-07-10 23:44:25 +02:00
|
|
|
.column-comments .post-com-count-no-comments:after,
|
|
|
|
.column-comments .post-com-count-approved:after {
|
|
|
|
content: none;
|
|
|
|
}
|
|
|
|
|
2015-07-29 20:08:25 +02:00
|
|
|
.column-response .post-com-count [aria-hidden="true"],
|
2015-07-10 23:44:25 +02:00
|
|
|
.column-comments .post-com-count [aria-hidden="true"] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2015-07-29 20:08:25 +02:00
|
|
|
.column-response .post-com-count-wrapper,
|
2015-07-10 23:44:25 +02:00
|
|
|
.column-comments .post-com-count-wrapper {
|
|
|
|
white-space: normal;
|
|
|
|
}
|
|
|
|
|
2015-07-29 20:08:25 +02:00
|
|
|
.column-response .post-com-count-wrapper > a,
|
2015-07-10 23:44:25 +02:00
|
|
|
.column-comments .post-com-count-wrapper > a {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2015-07-29 20:08:25 +02:00
|
|
|
.column-response .post-com-count-no-comments,
|
|
|
|
.column-response .post-com-count-approved,
|
2015-07-10 23:44:25 +02:00
|
|
|
.column-comments .post-com-count-no-comments,
|
|
|
|
.column-comments .post-com-count-approved {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-right: 0.5em;
|
|
|
|
}
|
|
|
|
|
2015-07-29 20:08:25 +02:00
|
|
|
.column-response .post-com-count-pending,
|
2015-07-10 23:44:25 +02:00
|
|
|
.column-comments .post-com-count-pending {
|
|
|
|
position: static;
|
|
|
|
height: auto;
|
|
|
|
min-width: 0;
|
|
|
|
padding: 0;
|
|
|
|
border: none;
|
|
|
|
border-radius: 0;
|
|
|
|
background: 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
|
|
|
color: #b32d2e;
|
2015-07-10 23:44:25 +02:00
|
|
|
font-size: inherit;
|
|
|
|
line-height: inherit;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2015-07-29 20:08:25 +02:00
|
|
|
.column-response .post-com-count-pending:hover,
|
2015-07-10 23:44:25 +02:00
|
|
|
.column-comments .post-com-count-pending:hover {
|
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;
|
2015-07-10 23:44:25 +02:00
|
|
|
}
|
|
|
|
|
2015-09-06 01:16:23 +02:00
|
|
|
.widefat thead td.check-column,
|
|
|
|
.widefat tfoot td.check-column {
|
|
|
|
padding-top: 10px;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2021-06-04 20:14:56 +02:00
|
|
|
.row-actions {
|
|
|
|
margin-left: -8px;
|
|
|
|
margin-right: -8px;
|
|
|
|
padding-top: 4px;
|
|
|
|
}
|
|
|
|
|
2018-10-03 20:56:24 +02:00
|
|
|
/* Make row actions more easy to select on mobile */
|
|
|
|
body:not(.plugins-php) .row-actions {
|
2021-06-04 20:14:56 +02:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
gap: 8px;
|
2018-10-03 20:56:24 +02:00
|
|
|
color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.row-actions span a,
|
|
|
|
.row-actions span .button-link {
|
|
|
|
display: inline-block;
|
2021-06-04 20:14:56 +02:00
|
|
|
padding: 4px 8px;
|
2019-08-06 00:20:58 +02:00
|
|
|
line-height: 1.5;
|
2018-10-03 20:56:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.row-actions span.approve:before,
|
|
|
|
.row-actions span.unapprove:before {
|
|
|
|
content: "| ";
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
/* Quick Edit and Bulk Edit */
|
|
|
|
#wpbody-content .quick-edit-row-post .inline-edit-col-left,
|
|
|
|
#wpbody-content .quick-edit-row-post .inline-edit-col-right,
|
|
|
|
#wpbody-content .inline-edit-row-post .inline-edit-col-center,
|
|
|
|
#wpbody-content .quick-edit-row-page .inline-edit-col-left,
|
|
|
|
#wpbody-content .quick-edit-row-page .inline-edit-col-right,
|
|
|
|
#wpbody-content .bulk-edit-row-post .inline-edit-col-right,
|
|
|
|
#wpbody-content .bulk-edit-row .inline-edit-col-left,
|
|
|
|
#wpbody-content .bulk-edit-row-page .inline-edit-col-right,
|
|
|
|
#wpbody-content .bulk-edit-row .inline-edit-col-bottom {
|
|
|
|
float: none;
|
|
|
|
width: 100%;
|
2022-04-07 18:44:05 +02:00
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#the-list .inline-edit-row .inline-edit-legend,
|
|
|
|
.inline-edit-row span.title {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inline-edit-row p.howto {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wpbody-content .inline-edit-row-page .inline-edit-col-right {
|
|
|
|
margin-top: 0;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#wpbody-content .quick-edit-row fieldset .inline-edit-col label,
|
|
|
|
#wpbody-content .quick-edit-row fieldset .inline-edit-group label,
|
|
|
|
#wpbody-content .bulk-edit-row fieldset .inline-edit-col label,
|
|
|
|
#wpbody-content .bulk-edit-row fieldset .inline-edit-group label {
|
|
|
|
max-width: none;
|
|
|
|
float: none;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wpbody .bulk-edit-row fieldset select {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
max-width: none;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
Administration: Standardize form control height and alignment across the admin.
This improves the appearance of various form controls in the admin and addresses some visual inconsistencies in WordPress 5.3.
Props afercia, audrasjb, jameskoster, GDragoN, azaozz, michaelarestad, murgroland, SamuelFernandez, chetan200891, veminom, dlh.
Fixes #48420.
Built from https://develop.svn.wordpress.org/trunk@46866
git-svn-id: http://core.svn.wordpress.org/trunk@46666 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-12-09 21:26:03 +01:00
|
|
|
.inline-edit-row fieldset input[name=jj],
|
|
|
|
.inline-edit-row fieldset input[name=hh],
|
|
|
|
.inline-edit-row fieldset input[name=mn],
|
|
|
|
.inline-edit-row fieldset input[name=aa] {
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 2;
|
|
|
|
padding: 3px 4px;
|
|
|
|
}
|
|
|
|
|
2022-04-07 18:44:05 +02:00
|
|
|
#bulk-titles .ntdelbutton,
|
|
|
|
#bulk-titles .ntdeltitle,
|
|
|
|
.inline-edit-row fieldset ul.cat-checklist label {
|
|
|
|
padding: 6px 0;
|
2014-02-19 22:43:14 +01:00
|
|
|
font-size: 16px;
|
2022-04-07 18:44:05 +02:00
|
|
|
line-height: 28px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#bulk-titles .ntdelitem {
|
|
|
|
padding-left: 37px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#bulk-titles .ntdelbutton {
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
margin: 0 0 0 -40px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
#bulk-titles .ntdelbutton:before {
|
|
|
|
font-size: 20px;
|
|
|
|
line-height: 28px;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2015-08-09 20:55:25 +02:00
|
|
|
.inline-edit-row fieldset label span.title,
|
|
|
|
.inline-edit-row fieldset.inline-edit-date legend {
|
2014-02-19 22:43:14 +01:00
|
|
|
float: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inline-edit-row fieldset .inline-edit-col label.inline-edit-tags {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2015-08-09 20:55:25 +02:00
|
|
|
.inline-edit-row fieldset label span.input-text-wrap,
|
|
|
|
.inline-edit-row fieldset .timestamp-wrap {
|
2014-02-19 22:43:14 +01:00
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
|
2015-03-25 23:25:26 +01:00
|
|
|
.inline-edit-row .inline-edit-or {
|
|
|
|
margin: 0 6px 0 0;
|
|
|
|
}
|
|
|
|
|
2015-09-13 14:47:27 +02:00
|
|
|
#edithead .inside,
|
|
|
|
#commentsdiv #edithead .inside {
|
|
|
|
float: none;
|
|
|
|
text-align: left;
|
|
|
|
padding: 3px 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#commentsdiv #edithead .inside input,
|
|
|
|
#edithead .inside input {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#edithead label {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
/* Updates */
|
2016-02-04 20:19:27 +01:00
|
|
|
#wpbody-content .updates-table .plugin-title {
|
2014-02-19 22:43:14 +01:00
|
|
|
width: auto;
|
2015-09-19 20:43:24 +02:00
|
|
|
white-space: normal;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Links */
|
|
|
|
.link-manager-php #posts-filter {
|
|
|
|
margin-top: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.link-manager-php .tablenav.bottom {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2015-07-07 02:09:24 +02:00
|
|
|
/* List tables that don't toggle rows */
|
|
|
|
.comments-box .toggle-row,
|
List tables: A better responsive view.
Instead of truncating columns, the data that's already in the markup can now be toggled into view. Only seems appropriate to celebrate four years of contributing by finally doing the first thing I ever mocked up.
Known issues / concerns:
* Custom list tables that don't define a primary column will show nothing at all. These are not extremely common, as `WP_List_Table` isn't really recommended for plugin consumption, but it happens. We need to come up with some kind of fallback.
* Some visual elements, particularly whitespace, could use refining.
* Needs a11y review.
* Touch performance on iOS feels sluggish - is there anything we can do about that?
* Would this be better accordion-style (only one expanded at a time)?
* Is `wp_strip_all_tags()` good enough for column titles that have HTML in them? It's essentially a workaround for the fact that core's comments column does that for the icon, which maybe it shouldn't. Perhaps worth another ticket, as a markup change would be fairly independent.
* Visual hierarchy is not great when expanded (also worthy of another ticket).
* Quick edit now becomes noticeably more annoying to cancel out of, as you have to scroll all the way down and you lose your position from before it was opened. Again, worthy of another ticket.
props Michael Arestad, helen.
see #32395.
Built from https://develop.svn.wordpress.org/trunk@33016
git-svn-id: http://core.svn.wordpress.org/trunk@32987 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-07-01 03:31:25 +02:00
|
|
|
.wp-list-table.plugins .toggle-row {
|
2014-02-19 22:43:14 +01:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2015-07-07 02:09:24 +02:00
|
|
|
/* Plugin/Theme Management */
|
List tables: A better responsive view.
Instead of truncating columns, the data that's already in the markup can now be toggled into view. Only seems appropriate to celebrate four years of contributing by finally doing the first thing I ever mocked up.
Known issues / concerns:
* Custom list tables that don't define a primary column will show nothing at all. These are not extremely common, as `WP_List_Table` isn't really recommended for plugin consumption, but it happens. We need to come up with some kind of fallback.
* Some visual elements, particularly whitespace, could use refining.
* Needs a11y review.
* Touch performance on iOS feels sluggish - is there anything we can do about that?
* Would this be better accordion-style (only one expanded at a time)?
* Is `wp_strip_all_tags()` good enough for column titles that have HTML in them? It's essentially a workaround for the fact that core's comments column does that for the icon, which maybe it shouldn't. Perhaps worth another ticket, as a markup change would be fairly independent.
* Visual hierarchy is not great when expanded (also worthy of another ticket).
* Quick edit now becomes noticeably more annoying to cancel out of, as you have to scroll all the way down and you lose your position from before it was opened. Again, worthy of another ticket.
props Michael Arestad, helen.
see #32395.
Built from https://develop.svn.wordpress.org/trunk@33016
git-svn-id: http://core.svn.wordpress.org/trunk@32987 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-07-01 03:31:25 +02:00
|
|
|
#wpbody-content .wp-list-table.plugins td {
|
2014-02-19 22:43:14 +01:00
|
|
|
display: block;
|
|
|
|
width: auto;
|
List tables: A better responsive view.
Instead of truncating columns, the data that's already in the markup can now be toggled into view. Only seems appropriate to celebrate four years of contributing by finally doing the first thing I ever mocked up.
Known issues / concerns:
* Custom list tables that don't define a primary column will show nothing at all. These are not extremely common, as `WP_List_Table` isn't really recommended for plugin consumption, but it happens. We need to come up with some kind of fallback.
* Some visual elements, particularly whitespace, could use refining.
* Needs a11y review.
* Touch performance on iOS feels sluggish - is there anything we can do about that?
* Would this be better accordion-style (only one expanded at a time)?
* Is `wp_strip_all_tags()` good enough for column titles that have HTML in them? It's essentially a workaround for the fact that core's comments column does that for the icon, which maybe it shouldn't. Perhaps worth another ticket, as a markup change would be fairly independent.
* Visual hierarchy is not great when expanded (also worthy of another ticket).
* Quick edit now becomes noticeably more annoying to cancel out of, as you have to scroll all the way down and you lose your position from before it was opened. Again, worthy of another ticket.
props Michael Arestad, helen.
see #32395.
Built from https://develop.svn.wordpress.org/trunk@33016
git-svn-id: http://core.svn.wordpress.org/trunk@32987 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-07-01 03:31:25 +02:00
|
|
|
padding: 10px 9px; /* reset from other list tables that have a label at this width */
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2019-02-01 03:14:51 +01:00
|
|
|
/* Plugin description hidden via Screen Options */
|
|
|
|
#wpbody-content .wp-list-table.plugins .desc.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
List tables: A better responsive view.
Instead of truncating columns, the data that's already in the markup can now be toggled into view. Only seems appropriate to celebrate four years of contributing by finally doing the first thing I ever mocked up.
Known issues / concerns:
* Custom list tables that don't define a primary column will show nothing at all. These are not extremely common, as `WP_List_Table` isn't really recommended for plugin consumption, but it happens. We need to come up with some kind of fallback.
* Some visual elements, particularly whitespace, could use refining.
* Needs a11y review.
* Touch performance on iOS feels sluggish - is there anything we can do about that?
* Would this be better accordion-style (only one expanded at a time)?
* Is `wp_strip_all_tags()` good enough for column titles that have HTML in them? It's essentially a workaround for the fact that core's comments column does that for the icon, which maybe it shouldn't. Perhaps worth another ticket, as a markup change would be fairly independent.
* Visual hierarchy is not great when expanded (also worthy of another ticket).
* Quick edit now becomes noticeably more annoying to cancel out of, as you have to scroll all the way down and you lose your position from before it was opened. Again, worthy of another ticket.
props Michael Arestad, helen.
see #32395.
Built from https://develop.svn.wordpress.org/trunk@33016
git-svn-id: http://core.svn.wordpress.org/trunk@32987 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-07-01 03:31:25 +02:00
|
|
|
#wpbody-content .wp-list-table.plugins .column-description {
|
|
|
|
padding-top: 2px;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2015-12-06 20:58:24 +01:00
|
|
|
#wpbody-content .wp-list-table.plugins .plugin-title,
|
|
|
|
#wpbody-content .wp-list-table.plugins .theme-title {
|
|
|
|
padding-right: 12px;
|
|
|
|
white-space: normal;
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
.wp-list-table.plugins .plugin-title,
|
|
|
|
.wp-list-table.plugins .theme-title {
|
|
|
|
padding-top: 13px;
|
|
|
|
padding-bottom: 4px;
|
|
|
|
}
|
|
|
|
|
2015-07-07 01:49:24 +02:00
|
|
|
.plugins #the-list tr > td:not(:last-child),
|
|
|
|
.plugins #the-list .update th,
|
|
|
|
.plugins #the-list .update td,
|
|
|
|
.wp-list-table.plugins #the-list .theme-title {
|
2014-02-19 22:43:14 +01:00
|
|
|
box-shadow: none;
|
2015-07-07 01:49:24 +02:00
|
|
|
border-top: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugins #the-list tr td {
|
|
|
|
border-top: none;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.plugins tbody {
|
|
|
|
padding: 1px 0 0;
|
|
|
|
}
|
|
|
|
|
List tables: A better responsive view.
Instead of truncating columns, the data that's already in the markup can now be toggled into view. Only seems appropriate to celebrate four years of contributing by finally doing the first thing I ever mocked up.
Known issues / concerns:
* Custom list tables that don't define a primary column will show nothing at all. These are not extremely common, as `WP_List_Table` isn't really recommended for plugin consumption, but it happens. We need to come up with some kind of fallback.
* Some visual elements, particularly whitespace, could use refining.
* Needs a11y review.
* Touch performance on iOS feels sluggish - is there anything we can do about that?
* Would this be better accordion-style (only one expanded at a time)?
* Is `wp_strip_all_tags()` good enough for column titles that have HTML in them? It's essentially a workaround for the fact that core's comments column does that for the icon, which maybe it shouldn't. Perhaps worth another ticket, as a markup change would be fairly independent.
* Visual hierarchy is not great when expanded (also worthy of another ticket).
* Quick edit now becomes noticeably more annoying to cancel out of, as you have to scroll all the way down and you lose your position from before it was opened. Again, worthy of another ticket.
props Michael Arestad, helen.
see #32395.
Built from https://develop.svn.wordpress.org/trunk@33016
git-svn-id: http://core.svn.wordpress.org/trunk@32987 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-07-01 03:31:25 +02:00
|
|
|
.plugins tr.active + tr.inactive th.check-column,
|
|
|
|
.plugins tr.active + tr.inactive td.column-description,
|
|
|
|
.plugins .plugin-update-tr:before {
|
2014-02-19 22:43:14 +01:00
|
|
|
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugins tr.active + tr.inactive th.check-column,
|
|
|
|
.plugins tr.active + tr.inactive td {
|
|
|
|
border-top: none;
|
|
|
|
}
|
|
|
|
|
List tables: A better responsive view.
Instead of truncating columns, the data that's already in the markup can now be toggled into view. Only seems appropriate to celebrate four years of contributing by finally doing the first thing I ever mocked up.
Known issues / concerns:
* Custom list tables that don't define a primary column will show nothing at all. These are not extremely common, as `WP_List_Table` isn't really recommended for plugin consumption, but it happens. We need to come up with some kind of fallback.
* Some visual elements, particularly whitespace, could use refining.
* Needs a11y review.
* Touch performance on iOS feels sluggish - is there anything we can do about that?
* Would this be better accordion-style (only one expanded at a time)?
* Is `wp_strip_all_tags()` good enough for column titles that have HTML in them? It's essentially a workaround for the fact that core's comments column does that for the icon, which maybe it shouldn't. Perhaps worth another ticket, as a markup change would be fairly independent.
* Visual hierarchy is not great when expanded (also worthy of another ticket).
* Quick edit now becomes noticeably more annoying to cancel out of, as you have to scroll all the way down and you lose your position from before it was opened. Again, worthy of another ticket.
props Michael Arestad, helen.
see #32395.
Built from https://develop.svn.wordpress.org/trunk@33016
git-svn-id: http://core.svn.wordpress.org/trunk@32987 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-07-01 03:31:25 +02:00
|
|
|
/* mimic the checkbox th */
|
|
|
|
.plugins .plugin-update-tr:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "";
|
List tables: A better responsive view.
Instead of truncating columns, the data that's already in the markup can now be toggled into view. Only seems appropriate to celebrate four years of contributing by finally doing the first thing I ever mocked up.
Known issues / concerns:
* Custom list tables that don't define a primary column will show nothing at all. These are not extremely common, as `WP_List_Table` isn't really recommended for plugin consumption, but it happens. We need to come up with some kind of fallback.
* Some visual elements, particularly whitespace, could use refining.
* Needs a11y review.
* Touch performance on iOS feels sluggish - is there anything we can do about that?
* Would this be better accordion-style (only one expanded at a time)?
* Is `wp_strip_all_tags()` good enough for column titles that have HTML in them? It's essentially a workaround for the fact that core's comments column does that for the icon, which maybe it shouldn't. Perhaps worth another ticket, as a markup change would be fairly independent.
* Visual hierarchy is not great when expanded (also worthy of another ticket).
* Quick edit now becomes noticeably more annoying to cancel out of, as you have to scroll all the way down and you lose your position from before it was opened. Again, worthy of another ticket.
props Michael Arestad, helen.
see #32395.
Built from https://develop.svn.wordpress.org/trunk@33016
git-svn-id: http://core.svn.wordpress.org/trunk@32987 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-07-01 03:31:25 +02:00
|
|
|
display: table-cell;
|
2015-06-28 07:46:25 +02:00
|
|
|
}
|
|
|
|
|
2015-07-07 01:49:24 +02:00
|
|
|
.plugins #the-list .plugin-update-tr .plugin-update {
|
List tables: A better responsive view.
Instead of truncating columns, the data that's already in the markup can now be toggled into view. Only seems appropriate to celebrate four years of contributing by finally doing the first thing I ever mocked up.
Known issues / concerns:
* Custom list tables that don't define a primary column will show nothing at all. These are not extremely common, as `WP_List_Table` isn't really recommended for plugin consumption, but it happens. We need to come up with some kind of fallback.
* Some visual elements, particularly whitespace, could use refining.
* Needs a11y review.
* Touch performance on iOS feels sluggish - is there anything we can do about that?
* Would this be better accordion-style (only one expanded at a time)?
* Is `wp_strip_all_tags()` good enough for column titles that have HTML in them? It's essentially a workaround for the fact that core's comments column does that for the icon, which maybe it shouldn't. Perhaps worth another ticket, as a markup change would be fairly independent.
* Visual hierarchy is not great when expanded (also worthy of another ticket).
* Quick edit now becomes noticeably more annoying to cancel out of, as you have to scroll all the way down and you lose your position from before it was opened. Again, worthy of another ticket.
props Michael Arestad, helen.
see #32395.
Built from https://develop.svn.wordpress.org/trunk@33016
git-svn-id: http://core.svn.wordpress.org/trunk@32987 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-07-01 03:31:25 +02:00
|
|
|
border-left: none;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
List tables: A better responsive view.
Instead of truncating columns, the data that's already in the markup can now be toggled into view. Only seems appropriate to celebrate four years of contributing by finally doing the first thing I ever mocked up.
Known issues / concerns:
* Custom list tables that don't define a primary column will show nothing at all. These are not extremely common, as `WP_List_Table` isn't really recommended for plugin consumption, but it happens. We need to come up with some kind of fallback.
* Some visual elements, particularly whitespace, could use refining.
* Needs a11y review.
* Touch performance on iOS feels sluggish - is there anything we can do about that?
* Would this be better accordion-style (only one expanded at a time)?
* Is `wp_strip_all_tags()` good enough for column titles that have HTML in them? It's essentially a workaround for the fact that core's comments column does that for the icon, which maybe it shouldn't. Perhaps worth another ticket, as a markup change would be fairly independent.
* Visual hierarchy is not great when expanded (also worthy of another ticket).
* Quick edit now becomes noticeably more annoying to cancel out of, as you have to scroll all the way down and you lose your position from before it was opened. Again, worthy of another ticket.
props Michael Arestad, helen.
see #32395.
Built from https://develop.svn.wordpress.org/trunk@33016
git-svn-id: http://core.svn.wordpress.org/trunk@32987 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-07-01 03:31:25 +02:00
|
|
|
.plugin-update-tr .update-message {
|
|
|
|
margin-left: 0;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2021-02-18 16:16:03 +01:00
|
|
|
.plugins .active.update + .plugin-update-tr:before,
|
|
|
|
.plugins .active.updated + .plugin-update-tr:before {
|
2021-02-08 17:13:07 +01:00
|
|
|
background-color: #f0f6fc;
|
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;
|
Update/Install: Shiny Updates v2.
Gone are the days of isolation and feelings of "meh", brought on by The Bleak Screen of Sadness. For a shiny knight has arrived to usher our plugins and themes along their arduous journey of installation, updates, and the inevitable fate of ultimate deletion.
Props swissspidy, adamsilverstein, mapk, afragen, ocean90, ryelle, j-falk, michael-arestad, melchoyce, DrewAPicture, AdamSoucie, ethitter, pento, dd32, kraftbj, Ipstenu, jorbin, afercia, stephdau, paulwilde, jipmoors, khag7, svovaf, jipmoors, obenland.
Fixes #22029, #25828, #31002, #31529, #31530, #31773, #33637, #35032.
Built from https://develop.svn.wordpress.org/trunk@37714
git-svn-id: http://core.svn.wordpress.org/trunk@37680 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-06-15 18:37:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.plugins .plugin-update-tr .update-message {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
.wp-list-table.plugins .plugin-title strong,
|
|
|
|
.wp-list-table.plugins .theme-title strong {
|
|
|
|
font-size: 1.4em;
|
2015-12-06 20:58:24 +01:00
|
|
|
line-height: 1.5;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2020-07-03 10:51:05 +02:00
|
|
|
.plugins tbody th.check-column {
|
|
|
|
padding: 8px 0 0 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plugins thead td.check-column,
|
|
|
|
.plugins tfoot td.check-column,
|
|
|
|
.plugins .inactive th.check-column {
|
|
|
|
padding-left: 9px;
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
/* Add New plugins page */
|
|
|
|
table.plugin-install .column-name,
|
|
|
|
table.plugin-install .column-version,
|
|
|
|
table.plugin-install .column-rating,
|
|
|
|
table.plugin-install .column-description {
|
|
|
|
display: block;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.plugin-install th.column-name,
|
|
|
|
table.plugin-install th.column-version,
|
|
|
|
table.plugin-install th.column-rating,
|
|
|
|
table.plugin-install th.column-description {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.plugin-install td.column-name strong {
|
|
|
|
font-size: 1.4em;
|
|
|
|
line-height: 1.6em;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.plugin-install #the-list td {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.plugin-install #the-list tr {
|
|
|
|
display: block;
|
2019-03-04 23:02:52 +01:00
|
|
|
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
2015-07-10 23:44:25 +02:00
|
|
|
|
|
|
|
.plugin-card {
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2021-06-04 20:14:56 +02:00
|
|
|
|
|
|
|
table.media .column-title .has-media-icon ~ .row-actions {
|
|
|
|
margin-left: 0;
|
|
|
|
clear: both;
|
|
|
|
}
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
2016-06-29 15:30:28 +02:00
|
|
|
|
2019-01-17 08:41:52 +01:00
|
|
|
@media screen and (max-width: 480px) {
|
2016-06-29 15:30:28 +02:00
|
|
|
.tablenav-pages .current-page {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
Administration: Wrap the list table items count to a new line on small screens.
This avoids overlapping with action buttons and brings some consistency to bottom paddings across various screens.
Props passoniate, afercia, anuj2, rolfsiebers, uxkai, ireneyoast, thijsvanloef, hellofromTonya, audrasjb, helen, SergeyBiryukov.
Fixes #49246.
Built from https://develop.svn.wordpress.org/trunk@49178
git-svn-id: http://core.svn.wordpress.org/trunk@48940 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-10-17 03:13:06 +02:00
|
|
|
.tablenav.bottom .displaying-num {
|
|
|
|
position: relative;
|
|
|
|
top: 0;
|
|
|
|
display: block;
|
|
|
|
text-align: right;
|
|
|
|
padding-bottom: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tablenav.bottom .tablenav-pages.one-page {
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
2016-06-29 15:30:28 +02:00
|
|
|
.tablenav-pages .tablenav-paging-text {
|
|
|
|
float: left;
|
|
|
|
width: 100%;
|
|
|
|
padding-top: 0.5em;
|
|
|
|
}
|
|
|
|
}
|