Twenty Fourteen: update editor stylesheet to reflect recent changes made in the main stylesheet. Props iamtakashi, see #25946.
git-svn-id: https://develop.svn.wordpress.org/trunk@26561 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
76088dd24f
commit
2d377cde67
@ -32,8 +32,8 @@ html .mceContentBody {
|
|||||||
body {
|
body {
|
||||||
color: #2b2b2b;
|
color: #2b2b2b;
|
||||||
font-family: Lato, sans-serif;
|
font-family: Lato, sans-serif;
|
||||||
|
font-weight: 400;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
text-rendering: optimizeLegibility;
|
|
||||||
vertical-align: baseline;
|
vertical-align: baseline;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -51,29 +51,29 @@ h5,
|
|||||||
h6 {
|
h6 {
|
||||||
clear: both;
|
clear: both;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
margin: 0 0 12px;
|
margin: 36px 0 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 33px;
|
|
||||||
line-height: 1.0909090909;
|
|
||||||
}
|
|
||||||
|
|
||||||
h2 {
|
|
||||||
font-size: 30px;
|
|
||||||
line-height: 1.2;
|
|
||||||
}
|
|
||||||
|
|
||||||
h3 {
|
|
||||||
font-size: 26px;
|
font-size: 26px;
|
||||||
line-height: 1.3846153846;
|
line-height: 1.3846153846;
|
||||||
}
|
}
|
||||||
|
|
||||||
h4 {
|
h2 {
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
font-size: 22px;
|
font-size: 22px;
|
||||||
line-height: 1.0909090909;
|
line-height: 1.0909090909;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h4 {
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 1.2;
|
||||||
|
}
|
||||||
|
|
||||||
h5 {
|
h5 {
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
line-height: 1.3333333333;
|
line-height: 1.3333333333;
|
||||||
@ -84,11 +84,13 @@ h6 {
|
|||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
hr {
|
h1:first-child,
|
||||||
background-color: rgba(0, 0, 0, 0.1);
|
h2:first-child,
|
||||||
border: 0;
|
h3:first-child,
|
||||||
height: 1px;
|
h4:first-child,
|
||||||
margin-bottom: 23px;
|
h5:first-child,
|
||||||
|
h6:first-child {
|
||||||
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -97,63 +99,62 @@ hr {
|
|||||||
* ----------------------------------------------------------------------------
|
* ----------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
address {
|
||||||
|
font-style: italic;
|
||||||
|
margin-bottom: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
abbr[title] {
|
||||||
|
border-bottom: 1px dotted #2b2b2b;
|
||||||
|
cursor: help;
|
||||||
|
}
|
||||||
|
|
||||||
|
b,
|
||||||
|
strong {
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
|
|
||||||
|
cite {
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
cite,
|
||||||
|
dfn,
|
||||||
|
em,
|
||||||
|
i {
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
mark,
|
||||||
|
ins {
|
||||||
|
background: #fff9c0;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
margin: 0 0 24px;
|
margin: 0 0 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
ol,
|
|
||||||
ul {
|
|
||||||
margin: 0 0 24px 22px;
|
|
||||||
padding-left: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul {
|
|
||||||
list-style-type: disc;
|
|
||||||
}
|
|
||||||
|
|
||||||
ol {
|
|
||||||
list-style: decimal;
|
|
||||||
}
|
|
||||||
|
|
||||||
li > ul,
|
|
||||||
li > ol {
|
|
||||||
margin-bottom: 0;
|
|
||||||
margin-left: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
dl {
|
|
||||||
margin: 0 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
dt {
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
dd {
|
|
||||||
margin: 0 0 24px;
|
|
||||||
}
|
|
||||||
|
|
||||||
strong {
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
code,
|
code,
|
||||||
kbd,
|
kbd,
|
||||||
tt,
|
tt,
|
||||||
var,
|
var,
|
||||||
samp {
|
samp,
|
||||||
font: 15px/1.6 Monaco, Consolas, 'Andale Mono', 'DejaVu Sans Mono', monospace;
|
pre {
|
||||||
|
font-family: monospace, serif;
|
||||||
|
font-size: 15px;
|
||||||
|
line-height: 1.6;
|
||||||
}
|
}
|
||||||
|
|
||||||
pre {
|
pre {
|
||||||
background: #eee;
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
||||||
font-family: 'Courier 10 Pitch', Courier, monospace;
|
|
||||||
font-size: 15px;
|
|
||||||
line-height: 1.6;
|
|
||||||
margin-bottom: 24px;
|
margin-bottom: 24px;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
padding: 12px;
|
padding: 12px;
|
||||||
|
white-space: pre;
|
||||||
|
white-space: pre-wrap;
|
||||||
|
word-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
blockquote,
|
blockquote,
|
||||||
@ -170,19 +171,12 @@ q:after {
|
|||||||
}
|
}
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
font-style: italic;
|
|
||||||
font-weight: 300;
|
|
||||||
margin: 0 0 24px;
|
|
||||||
}
|
|
||||||
|
|
||||||
blockquote em, blockquote i, blockquote cite {
|
|
||||||
font-style: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
blockquote p {
|
|
||||||
color: #767676;
|
color: #767676;
|
||||||
font-size: 19px;
|
font-size: 19px;
|
||||||
|
font-style: italic;
|
||||||
|
font-weight: 300;
|
||||||
line-height: 1.2631578947;
|
line-height: 1.2631578947;
|
||||||
|
margin: 0 0 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
blockquote cite,
|
blockquote cite,
|
||||||
@ -193,57 +187,29 @@ blockquote small {
|
|||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
blockquote.pull p {
|
blockquote em,
|
||||||
margin-bottom: 17px;
|
blockquote i,
|
||||||
}
|
blockquote cite {
|
||||||
|
|
||||||
blockquote.pull.alignleft,
|
|
||||||
blockquote.pull.alignright {
|
|
||||||
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
|
||||||
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
|
||||||
padding-top: 17px;
|
|
||||||
width: 50%;
|
|
||||||
}
|
|
||||||
|
|
||||||
blockquote.pull.alignleft {
|
|
||||||
margin: 7px 24px 7px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
blockquote.pull.alignright {
|
|
||||||
margin: 7px 0 7px 24px;
|
|
||||||
}
|
|
||||||
|
|
||||||
blockquote blockquote {
|
|
||||||
margin-right: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
cite {
|
|
||||||
border-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
abbr[title] {
|
|
||||||
border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
|
|
||||||
}
|
|
||||||
|
|
||||||
address {
|
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
margin: 0 0 24px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
del {
|
blockquote strong,
|
||||||
color: #333;
|
blockquote b {
|
||||||
|
font-weight: 400;
|
||||||
}
|
}
|
||||||
|
|
||||||
ins {
|
small {
|
||||||
background: #fff9c0;
|
font-size: smaller;
|
||||||
border: none;
|
|
||||||
color: #333;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
sub,
|
big {
|
||||||
sup {
|
font-size: 125%;
|
||||||
|
}
|
||||||
|
|
||||||
|
sup,
|
||||||
|
sub {
|
||||||
font-size: 75%;
|
font-size: 75%;
|
||||||
|
height: 0;
|
||||||
line-height: 0;
|
line-height: 0;
|
||||||
position: relative;
|
position: relative;
|
||||||
vertical-align: baseline;
|
vertical-align: baseline;
|
||||||
@ -257,6 +223,49 @@ sub {
|
|||||||
top: .5ex;
|
top: .5ex;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
dl {
|
||||||
|
margin: 0 0 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
dt {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
dd {
|
||||||
|
margin: 0 0 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul,
|
||||||
|
ol {
|
||||||
|
list-style: none;
|
||||||
|
margin: 0 0 24px 20px;
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul {
|
||||||
|
list-style: disc;
|
||||||
|
}
|
||||||
|
|
||||||
|
ol {
|
||||||
|
list-style: decimal;
|
||||||
|
}
|
||||||
|
|
||||||
|
li > ul,
|
||||||
|
li > ol {
|
||||||
|
margin: 0 0 0 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
del {
|
||||||
|
color: #767676;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
background-color: rgba(0, 0, 0, 0.1);
|
||||||
|
border: 0;
|
||||||
|
height: 1px;
|
||||||
|
margin-bottom: 23px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 4.0 Links
|
* 4.0 Links
|
||||||
@ -278,10 +287,11 @@ a:focus {
|
|||||||
|
|
||||||
a:active,
|
a:active,
|
||||||
a:hover {
|
a:hover {
|
||||||
color: #55d737;
|
color: #41a62a;
|
||||||
outline: 0;
|
outline: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 5.0 Alignment
|
* 5.0 Alignment
|
||||||
* ----------------------------------------------------------------------------
|
* ----------------------------------------------------------------------------
|
||||||
@ -289,22 +299,31 @@ a:hover {
|
|||||||
|
|
||||||
.alignleft {
|
.alignleft {
|
||||||
float: left;
|
float: left;
|
||||||
margin-right: 24px;
|
margin: 7px 24px 7px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.alignright {
|
.alignright {
|
||||||
float: right;
|
float: right;
|
||||||
margin-left: 24px;
|
margin: 7px 0 7px 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.aligncenter {
|
.aligncenter {
|
||||||
clear: both;
|
clear: both;
|
||||||
display: block;
|
display: block;
|
||||||
margin: 0 auto;
|
margin: 7px auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
img.alignnone {
|
blockquote.alignleft,
|
||||||
margin: 5px 0;
|
blockquote.alignright {
|
||||||
|
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
||||||
|
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
||||||
|
padding-top: 17px;
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote.alignleft p,
|
||||||
|
blockquote.alignright p {
|
||||||
|
margin-bottom: 17px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -313,9 +332,10 @@ img.alignnone {
|
|||||||
* ----------------------------------------------------------------------------
|
* ----------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
table {
|
.mceItemTable {
|
||||||
border: 1px solid rgba(0, 0, 0, 0.1);
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
||||||
border-collapse: collapse;
|
border-width: 1px 0 0 1px;
|
||||||
|
border-collapse: separate;
|
||||||
border-spacing: 0;
|
border-spacing: 0;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 1.2857142857;
|
line-height: 1.2857142857;
|
||||||
@ -323,20 +343,27 @@ table {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
caption,
|
.mceItemTable th,
|
||||||
th {
|
.mceItemTable caption {
|
||||||
border-right: 1px solid rgba(0, 0, 0, 0.1);
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
||||||
|
border-width: 0 1px 1px 0;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
|
text-align: left;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
vertical-align: baseline;
|
||||||
}
|
}
|
||||||
|
|
||||||
td {
|
.mceItemTable td {
|
||||||
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
||||||
border-right: 1px solid rgba(0, 0, 0, 0.1);
|
border-width: 0 1px 1px 0;
|
||||||
|
font-family: Lato, sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
|
vertical-align: baseline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 7.0 Images
|
* 7.0 Images
|
||||||
* ----------------------------------------------------------------------------
|
* ----------------------------------------------------------------------------
|
||||||
@ -351,18 +378,19 @@ img {
|
|||||||
.wp-caption {
|
.wp-caption {
|
||||||
background: transparent;
|
background: transparent;
|
||||||
border: none;
|
border: none;
|
||||||
|
color: #767676;
|
||||||
margin: 0 0 24px 0;
|
margin: 0 0 24px 0;
|
||||||
|
max-width: 474px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
max-width: 474px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-caption.alignleft {
|
.wp-caption.alignleft {
|
||||||
margin: 7px 24px 7px 0;
|
margin: 7px 14px 7px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-caption.alignright {
|
.wp-caption.alignright {
|
||||||
margin: 7px 0 7px 24px;
|
margin: 7px 0 7px 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-caption.aligncenter {
|
.wp-caption.aligncenter {
|
||||||
@ -375,12 +403,13 @@ img {
|
|||||||
|
|
||||||
.wp-caption .wp-caption-text,
|
.wp-caption .wp-caption-text,
|
||||||
.wp-caption-dd {
|
.wp-caption-dd {
|
||||||
|
-webkit-box-sizing: border-box;
|
||||||
-moz-box-sizing: border-box;
|
-moz-box-sizing: border-box;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
line-height: 1.6666666666;
|
line-height: 1.5;
|
||||||
margin: 4px 0;
|
margin: 9px 0;
|
||||||
padding: 0 10px 0 0; /* Avoid the caption to overflow the width of the image because wp-caption has 10px wider width */
|
padding: 0 10px 0 0; /* Avoid the caption to overflow the width of the image because wp-caption has 10px wider width */
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
@ -390,6 +419,7 @@ img {
|
|||||||
list-style-position: inside;
|
list-style-position: inside;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 8.0 RTL
|
* 8.0 RTL
|
||||||
* ----------------------------------------------------------------------------
|
* ----------------------------------------------------------------------------
|
||||||
@ -406,16 +436,6 @@ html .mceContentBody.rtl {
|
|||||||
margin-right: 24px;
|
margin-right: 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.rtl blockquote.pull.alignleft {
|
|
||||||
margin-left: 24px;
|
|
||||||
margin-right: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.rtl blockquote.pull.alignright {
|
|
||||||
margin-left: 0;
|
|
||||||
margin-right: 24px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.rtl .wp-caption,
|
.rtl .wp-caption,
|
||||||
.rtl tr th {
|
.rtl tr th {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
|
Loading…
Reference in New Issue
Block a user