Twenty Seventeen: Make table styles more consistent
* Removes the left padding on the first cell in a row, and the right padding on the last cell in each row - the padding is still there between cells, so the contents don't meet. * Does the opposite for RTL, and fixes some spacing issues. * Updates the editor styles to match. Props laurelfulford, snacking. Fixes #38447. Built from https://develop.svn.wordpress.org/trunk@38963 git-svn-id: http://core.svn.wordpress.org/trunk@38906 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
24ab3657cb
commit
3103b1ac78
|
@ -264,10 +264,39 @@ dd {
|
||||||
}
|
}
|
||||||
|
|
||||||
table {
|
table {
|
||||||
|
border-collapse: collapse;
|
||||||
margin: 0 0 1.5em;
|
margin: 0 0 1.5em;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
thead th {
|
||||||
|
border-bottom: 2px solid #bbb;
|
||||||
|
padding-bottom: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
th {
|
||||||
|
padding: 0.4em;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr {
|
||||||
|
border-bottom: 1px solid #eee;
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
padding: 0.4em;
|
||||||
|
}
|
||||||
|
|
||||||
|
th:first-child,
|
||||||
|
td:first-child {
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
th:last-child,
|
||||||
|
td:last-child {
|
||||||
|
padding-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
-webkit-box-shadow: inset 0 -1px 0 rgba(15, 15, 15, 1);
|
-webkit-box-shadow: inset 0 -1px 0 rgba(15, 15, 15, 1);
|
||||||
box-shadow: inset 0 -1px 0 rgba(15, 15, 15, 1);
|
box-shadow: inset 0 -1px 0 rgba(15, 15, 15, 1);
|
||||||
|
|
|
@ -48,6 +48,18 @@ li > ol {
|
||||||
margin-right: 1.5em;
|
margin-right: 1.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
th:first-child,
|
||||||
|
td:first-child {
|
||||||
|
padding-left: 0.4em;
|
||||||
|
padding-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
th:last-child,
|
||||||
|
td:last-child {
|
||||||
|
padding-left: 0;
|
||||||
|
padding-right: 0.4em;
|
||||||
|
}
|
||||||
|
|
||||||
/* Forms */
|
/* Forms */
|
||||||
|
|
||||||
input[type="radio"],
|
input[type="radio"],
|
||||||
|
@ -496,7 +508,7 @@ input[type="checkbox"] {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and ( min-width: 67em ) {
|
@media screen and (min-width: 67em) {
|
||||||
|
|
||||||
/* Sticky posts */
|
/* Sticky posts */
|
||||||
|
|
||||||
|
@ -506,7 +518,7 @@ input[type="checkbox"] {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and ( min-width: 79em ) {
|
@media screen and (min-width: 79em) {
|
||||||
|
|
||||||
.has-sidebar #primary .entry-content blockquote.alignright,
|
.has-sidebar #primary .entry-content blockquote.alignright,
|
||||||
.has-sidebar #primary .entry-content blockquote.alignright.below-entry-meta {
|
.has-sidebar #primary .entry-content blockquote.alignright.below-entry-meta {
|
||||||
|
|
|
@ -1114,7 +1114,7 @@ thead th {
|
||||||
}
|
}
|
||||||
|
|
||||||
th {
|
th {
|
||||||
padding: 0.4em 0;
|
padding: 0.4em;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1126,6 +1126,16 @@ td {
|
||||||
padding: 0.4em;
|
padding: 0.4em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
th:first-child,
|
||||||
|
td:first-child {
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
th:last-child,
|
||||||
|
td:last-child {
|
||||||
|
padding-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
/*--------------------------------------------------------------
|
/*--------------------------------------------------------------
|
||||||
# Links
|
# Links
|
||||||
--------------------------------------------------------------*/
|
--------------------------------------------------------------*/
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.7-alpha-38962';
|
$wp_version = '4.7-alpha-38963';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue