TinyMCE 4.0.12, first run.
- Removes wp-tinymce-schema.js and mark-loaded.js, no longer needed.
- Removes the inlinepopups and most of the wpdialogs plugins; wpdialog.js is moved to wp-includes/js.
- Adds charmap, compat3x, image, link and textcolor plugins, previously contained in /themes/advanced.
- Updates the wordpress, wpeditimage, wpfullscreen, wpgallery and wplink plugins.
- Updates DFW, wp-admin/js/wp-fullscreen.js.
See #24067.
Built from https://develop.svn.wordpress.org/trunk@26876
git-svn-id: http://core.svn.wordpress.org/trunk@26759 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-29 00:53:15 +01:00
|
|
|
/* Additional default styles for the editor */
|
2014-05-30 04:38:16 +02:00
|
|
|
|
2014-11-15 02:21:22 +01:00
|
|
|
html {
|
|
|
|
cursor: text;
|
|
|
|
}
|
|
|
|
|
TinyMCE 4.0.12, first run.
- Removes wp-tinymce-schema.js and mark-loaded.js, no longer needed.
- Removes the inlinepopups and most of the wpdialogs plugins; wpdialog.js is moved to wp-includes/js.
- Adds charmap, compat3x, image, link and textcolor plugins, previously contained in /themes/advanced.
- Updates the wordpress, wpeditimage, wpfullscreen, wpgallery and wplink plugins.
- Updates DFW, wp-admin/js/wp-fullscreen.js.
See #24067.
Built from https://develop.svn.wordpress.org/trunk@26876
git-svn-id: http://core.svn.wordpress.org/trunk@26759 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-29 00:53:15 +01:00
|
|
|
body {
|
|
|
|
font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
|
2014-11-20 23:23:24 +01:00
|
|
|
font-size: 16px;
|
2014-10-22 01:06:18 +02:00
|
|
|
line-height: 1.5;
|
TinyMCE 4.0.12, first run.
- Removes wp-tinymce-schema.js and mark-loaded.js, no longer needed.
- Removes the inlinepopups and most of the wpdialogs plugins; wpdialog.js is moved to wp-includes/js.
- Adds charmap, compat3x, image, link and textcolor plugins, previously contained in /themes/advanced.
- Updates the wordpress, wpeditimage, wpfullscreen, wpgallery and wplink plugins.
- Updates DFW, wp-admin/js/wp-fullscreen.js.
See #24067.
Built from https://develop.svn.wordpress.org/trunk@26876
git-svn-id: http://core.svn.wordpress.org/trunk@26759 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-29 00:53:15 +01:00
|
|
|
color: #333;
|
2014-07-10 00:06:15 +02:00
|
|
|
margin: 9px 10px;
|
2014-10-22 01:06:18 +02:00
|
|
|
max-width: 100%;
|
2014-11-13 23:31:22 +01:00
|
|
|
-webkit-font-smoothing: antialiased !important;
|
2015-07-28 22:32:25 +02:00
|
|
|
overflow-wrap: break-word;
|
|
|
|
word-wrap: break-word; /* Old syntax */
|
2014-07-10 00:06:15 +02:00
|
|
|
}
|
|
|
|
|
2014-09-27 13:10:16 +02:00
|
|
|
body.rtl {
|
|
|
|
font-family: Tahoma, "Times New Roman", "Bitstream Charter", Times, serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
body.locale-he-il {
|
|
|
|
font-family: Arial, "Times New Roman", "Bitstream Charter", Times, serif;
|
|
|
|
}
|
|
|
|
|
2014-07-10 00:06:15 +02:00
|
|
|
body.wp-autoresize {
|
|
|
|
overflow: visible !important;
|
|
|
|
/* The padding ensures margins of the children are contained in the body. */
|
|
|
|
padding-top: 1px !important;
|
|
|
|
padding-bottom: 1px !important;
|
|
|
|
padding-left: 0 !important;
|
|
|
|
padding-right: 0 !important;
|
TinyMCE 4.0.12, first run.
- Removes wp-tinymce-schema.js and mark-loaded.js, no longer needed.
- Removes the inlinepopups and most of the wpdialogs plugins; wpdialog.js is moved to wp-includes/js.
- Adds charmap, compat3x, image, link and textcolor plugins, previously contained in /themes/advanced.
- Updates the wordpress, wpeditimage, wpfullscreen, wpgallery and wplink plugins.
- Updates DFW, wp-admin/js/wp-fullscreen.js.
See #24067.
Built from https://develop.svn.wordpress.org/trunk@26876
git-svn-id: http://core.svn.wordpress.org/trunk@26759 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-29 00:53:15 +01:00
|
|
|
}
|
|
|
|
|
2014-06-27 05:00:15 +02:00
|
|
|
/* When font-weight is different than the default browser style,
|
|
|
|
Chrome and Safari replace <strong> and <b> with spans with inline styles on pasting?! */
|
|
|
|
body.webkit strong,
|
|
|
|
body.webkit b {
|
|
|
|
font-weight: bold !important;
|
|
|
|
}
|
|
|
|
|
2014-10-22 01:06:18 +02:00
|
|
|
pre {
|
|
|
|
font-family: Consolas, Monaco, monospace;
|
|
|
|
}
|
|
|
|
|
|
|
|
td,
|
|
|
|
th {
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: inherit;
|
|
|
|
}
|
|
|
|
|
2015-03-15 00:49:30 +01:00
|
|
|
/* For emoji replacement images */
|
2015-03-16 00:16:29 +01:00
|
|
|
img.emoji {
|
|
|
|
display: inline !important;
|
|
|
|
border: none !important;
|
2015-03-15 00:49:30 +01:00
|
|
|
height: 1em !important;
|
|
|
|
width: 1em !important;
|
2015-03-16 00:16:29 +01:00
|
|
|
margin: 0 .07em !important;
|
2015-03-15 00:49:30 +01:00
|
|
|
vertical-align: -0.1em !important;
|
2015-03-16 00:16:29 +01:00
|
|
|
background: none !important;
|
2015-03-15 00:49:30 +01:00
|
|
|
padding: 0 !important;
|
|
|
|
-webkit-box-shadow: none !important;
|
|
|
|
box-shadow: none !important;
|
|
|
|
}
|
|
|
|
|
2015-07-25 15:12:25 +02:00
|
|
|
.mceIEcenter {
|
TinyMCE 4.0.12, first run.
- Removes wp-tinymce-schema.js and mark-loaded.js, no longer needed.
- Removes the inlinepopups and most of the wpdialogs plugins; wpdialog.js is moved to wp-includes/js.
- Adds charmap, compat3x, image, link and textcolor plugins, previously contained in /themes/advanced.
- Updates the wordpress, wpeditimage, wpfullscreen, wpgallery and wplink plugins.
- Updates DFW, wp-admin/js/wp-fullscreen.js.
See #24067.
Built from https://develop.svn.wordpress.org/trunk@26876
git-svn-id: http://core.svn.wordpress.org/trunk@26759 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-29 00:53:15 +01:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2015-07-26 00:44:24 +02:00
|
|
|
img {
|
|
|
|
height: auto;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
2015-07-25 15:12:25 +02:00
|
|
|
.wp-caption {
|
2015-07-26 00:44:24 +02:00
|
|
|
margin: 0; /* browser reset */
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* iOS does not obey max-width if width is set. */
|
|
|
|
.ios .wp-caption {
|
|
|
|
width: auto !important;
|
TinyMCE 4.0.12, first run.
- Removes wp-tinymce-schema.js and mark-loaded.js, no longer needed.
- Removes the inlinepopups and most of the wpdialogs plugins; wpdialog.js is moved to wp-includes/js.
- Adds charmap, compat3x, image, link and textcolor plugins, previously contained in /themes/advanced.
- Updates the wordpress, wpeditimage, wpfullscreen, wpgallery and wplink plugins.
- Updates DFW, wp-admin/js/wp-fullscreen.js.
See #24067.
Built from https://develop.svn.wordpress.org/trunk@26876
git-svn-id: http://core.svn.wordpress.org/trunk@26759 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-29 00:53:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.wp-caption img {
|
2015-07-25 15:12:25 +02:00
|
|
|
display: block;
|
TinyMCE 4.0.12, first run.
- Removes wp-tinymce-schema.js and mark-loaded.js, no longer needed.
- Removes the inlinepopups and most of the wpdialogs plugins; wpdialog.js is moved to wp-includes/js.
- Adds charmap, compat3x, image, link and textcolor plugins, previously contained in /themes/advanced.
- Updates the wordpress, wpeditimage, wpfullscreen, wpgallery and wplink plugins.
- Updates DFW, wp-admin/js/wp-fullscreen.js.
See #24067.
Built from https://develop.svn.wordpress.org/trunk@26876
git-svn-id: http://core.svn.wordpress.org/trunk@26759 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-29 00:53:15 +01:00
|
|
|
}
|
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
div.mceTemp {
|
|
|
|
-ms-user-select: element;
|
|
|
|
}
|
|
|
|
|
|
|
|
dl.wp-caption,
|
|
|
|
dl.wp-caption * {
|
TinyMCE 4.0.12, first run.
- Removes wp-tinymce-schema.js and mark-loaded.js, no longer needed.
- Removes the inlinepopups and most of the wpdialogs plugins; wpdialog.js is moved to wp-includes/js.
- Adds charmap, compat3x, image, link and textcolor plugins, previously contained in /themes/advanced.
- Updates the wordpress, wpeditimage, wpfullscreen, wpgallery and wplink plugins.
- Updates DFW, wp-admin/js/wp-fullscreen.js.
See #24067.
Built from https://develop.svn.wordpress.org/trunk@26876
git-svn-id: http://core.svn.wordpress.org/trunk@26759 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-29 00:53:15 +01:00
|
|
|
-webkit-user-drag: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-caption-dd {
|
2015-07-25 15:12:25 +02:00
|
|
|
font-size: 14px;
|
|
|
|
padding-top: 0.5em;
|
|
|
|
margin: 0; /* browser reset */
|
|
|
|
}
|
|
|
|
|
|
|
|
.aligncenter {
|
|
|
|
display: block;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.alignleft {
|
|
|
|
float: left;
|
|
|
|
margin: 0.5em 1em 0.5em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.alignright {
|
|
|
|
float: right;
|
|
|
|
margin: 0.5em 0 0.5em 1em;
|
TinyMCE 4.0.12, first run.
- Removes wp-tinymce-schema.js and mark-loaded.js, no longer needed.
- Removes the inlinepopups and most of the wpdialogs plugins; wpdialog.js is moved to wp-includes/js.
- Adds charmap, compat3x, image, link and textcolor plugins, previously contained in /themes/advanced.
- Updates the wordpress, wpeditimage, wpfullscreen, wpgallery and wplink plugins.
- Updates DFW, wp-admin/js/wp-fullscreen.js.
See #24067.
Built from https://develop.svn.wordpress.org/trunk@26876
git-svn-id: http://core.svn.wordpress.org/trunk@26759 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-29 00:53:15 +01:00
|
|
|
}
|
|
|
|
|
2014-04-04 07:23:14 +02:00
|
|
|
/* Remove blue highlighting of selected images in WebKit */
|
2015-03-18 22:54:26 +01:00
|
|
|
img[data-mce-selected]::selection {
|
2014-04-04 07:23:14 +02:00
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
TinyMCE 4.0.12, first run.
- Removes wp-tinymce-schema.js and mark-loaded.js, no longer needed.
- Removes the inlinepopups and most of the wpdialogs plugins; wpdialog.js is moved to wp-includes/js.
- Adds charmap, compat3x, image, link and textcolor plugins, previously contained in /themes/advanced.
- Updates the wordpress, wpeditimage, wpfullscreen, wpgallery and wplink plugins.
- Updates DFW, wp-admin/js/wp-fullscreen.js.
See #24067.
Built from https://develop.svn.wordpress.org/trunk@26876
git-svn-id: http://core.svn.wordpress.org/trunk@26759 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-29 00:53:15 +01:00
|
|
|
/* Styles for the WordPress plugins */
|
2014-03-06 01:29:15 +01:00
|
|
|
.mce-content-body img[data-mce-placeholder] {
|
|
|
|
border-radius: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2014-07-29 01:45:18 +02:00
|
|
|
.mce-content-body img[data-wp-more] {
|
TinyMCE 4.0.12, first run.
- Removes wp-tinymce-schema.js and mark-loaded.js, no longer needed.
- Removes the inlinepopups and most of the wpdialogs plugins; wpdialog.js is moved to wp-includes/js.
- Adds charmap, compat3x, image, link and textcolor plugins, previously contained in /themes/advanced.
- Updates the wordpress, wpeditimage, wpfullscreen, wpgallery and wplink plugins.
- Updates DFW, wp-admin/js/wp-fullscreen.js.
See #24067.
Built from https://develop.svn.wordpress.org/trunk@26876
git-svn-id: http://core.svn.wordpress.org/trunk@26759 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-29 00:53:15 +01:00
|
|
|
border: 0;
|
2014-03-01 23:36:14 +01:00
|
|
|
-webkit-box-shadow: none;
|
|
|
|
box-shadow: none;
|
2014-04-04 07:23:14 +02:00
|
|
|
width: 96%;
|
|
|
|
height: 16px;
|
TinyMCE 4.0.12, first run.
- Removes wp-tinymce-schema.js and mark-loaded.js, no longer needed.
- Removes the inlinepopups and most of the wpdialogs plugins; wpdialog.js is moved to wp-includes/js.
- Adds charmap, compat3x, image, link and textcolor plugins, previously contained in /themes/advanced.
- Updates the wordpress, wpeditimage, wpfullscreen, wpgallery and wplink plugins.
- Updates DFW, wp-admin/js/wp-fullscreen.js.
See #24067.
Built from https://develop.svn.wordpress.org/trunk@26876
git-svn-id: http://core.svn.wordpress.org/trunk@26759 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-29 00:53:15 +01:00
|
|
|
display: block;
|
|
|
|
margin: 15px auto 0;
|
|
|
|
outline: 0;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
2015-03-18 22:54:26 +01:00
|
|
|
.mce-content-body img[data-mce-placeholder][data-mce-selected] {
|
TinyMCE 4.0.12, first run.
- Removes wp-tinymce-schema.js and mark-loaded.js, no longer needed.
- Removes the inlinepopups and most of the wpdialogs plugins; wpdialog.js is moved to wp-includes/js.
- Adds charmap, compat3x, image, link and textcolor plugins, previously contained in /themes/advanced.
- Updates the wordpress, wpeditimage, wpfullscreen, wpgallery and wplink plugins.
- Updates DFW, wp-admin/js/wp-fullscreen.js.
See #24067.
Built from https://develop.svn.wordpress.org/trunk@26876
git-svn-id: http://core.svn.wordpress.org/trunk@26759 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-29 00:53:15 +01:00
|
|
|
outline: 1px dotted #888;
|
|
|
|
}
|
|
|
|
|
2014-07-29 01:45:18 +02:00
|
|
|
.mce-content-body img[data-wp-more="more"] {
|
2014-04-04 07:23:14 +02:00
|
|
|
background: transparent url( images/more.png ) repeat-y scroll center center;
|
TinyMCE 4.0.12, first run.
- Removes wp-tinymce-schema.js and mark-loaded.js, no longer needed.
- Removes the inlinepopups and most of the wpdialogs plugins; wpdialog.js is moved to wp-includes/js.
- Adds charmap, compat3x, image, link and textcolor plugins, previously contained in /themes/advanced.
- Updates the wordpress, wpeditimage, wpfullscreen, wpgallery and wplink plugins.
- Updates DFW, wp-admin/js/wp-fullscreen.js.
See #24067.
Built from https://develop.svn.wordpress.org/trunk@26876
git-svn-id: http://core.svn.wordpress.org/trunk@26759 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-29 00:53:15 +01:00
|
|
|
}
|
|
|
|
|
2014-07-29 01:45:18 +02:00
|
|
|
.mce-content-body img[data-wp-more="nextpage"] {
|
2014-04-04 07:23:14 +02:00
|
|
|
background: transparent url( images/pagebreak.png ) repeat-y scroll center center;
|
TinyMCE 4.0.12, first run.
- Removes wp-tinymce-schema.js and mark-loaded.js, no longer needed.
- Removes the inlinepopups and most of the wpdialogs plugins; wpdialog.js is moved to wp-includes/js.
- Adds charmap, compat3x, image, link and textcolor plugins, previously contained in /themes/advanced.
- Updates the wordpress, wpeditimage, wpfullscreen, wpgallery and wplink plugins.
- Updates DFW, wp-admin/js/wp-fullscreen.js.
See #24067.
Built from https://develop.svn.wordpress.org/trunk@26876
git-svn-id: http://core.svn.wordpress.org/trunk@26759 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-29 00:53:15 +01:00
|
|
|
}
|
|
|
|
|
2014-03-20 01:48:15 +01:00
|
|
|
/* Gallery, audio, video placeholders */
|
2014-02-13 06:10:11 +01:00
|
|
|
.mce-content-body img.wp-media {
|
|
|
|
border: 1px solid #aaa;
|
|
|
|
background-color: #f2f2f2;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center center;
|
TinyMCE 4.0.12, first run.
- Removes wp-tinymce-schema.js and mark-loaded.js, no longer needed.
- Removes the inlinepopups and most of the wpdialogs plugins; wpdialog.js is moved to wp-includes/js.
- Adds charmap, compat3x, image, link and textcolor plugins, previously contained in /themes/advanced.
- Updates the wordpress, wpeditimage, wpfullscreen, wpgallery and wplink plugins.
- Updates DFW, wp-admin/js/wp-fullscreen.js.
See #24067.
Built from https://develop.svn.wordpress.org/trunk@26876
git-svn-id: http://core.svn.wordpress.org/trunk@26759 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-29 00:53:15 +01:00
|
|
|
width: 99%;
|
|
|
|
height: 250px;
|
|
|
|
outline: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2014-02-13 06:10:11 +01:00
|
|
|
.mce-content-body img.wp-media:hover {
|
|
|
|
background-color: #ededed;
|
2016-01-26 01:04:26 +01:00
|
|
|
border-color: #72777c;
|
2014-02-13 06:10:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mce-content-body img.wp-media.wp-media-selected {
|
|
|
|
background-color: #d8d8d8;
|
2016-01-26 01:04:26 +01:00
|
|
|
border-color: #72777c;
|
2014-02-13 06:10:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mce-content-body img.wp-media.wp-gallery {
|
2014-02-26 18:23:13 +01:00
|
|
|
background-image: url(images/gallery.png);
|
2014-02-13 06:10:11 +01:00
|
|
|
}
|
|
|
|
|
2014-02-11 00:48:12 +01:00
|
|
|
/* Image resize handles */
|
|
|
|
.mce-content-body div.mce-resizehandle {
|
2016-01-26 01:04:26 +01:00
|
|
|
border-color: #72777c;
|
2014-02-11 00:48:12 +01:00
|
|
|
width: 7px;
|
|
|
|
height: 7px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-content-body img[data-mce-selected] {
|
2016-01-26 01:04:26 +01:00
|
|
|
outline: 1px solid #72777c;
|
2014-02-11 00:48:12 +01:00
|
|
|
}
|
|
|
|
|
2014-02-13 21:13:13 +01:00
|
|
|
.mce-content-body img[data-mce-resize="false"] {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
2014-03-14 13:34:16 +01:00
|
|
|
audio,
|
|
|
|
video,
|
|
|
|
embed {
|
|
|
|
display: -moz-inline-stack;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2014-03-05 08:01:14 +01:00
|
|
|
|
2014-03-23 00:26:17 +01:00
|
|
|
audio {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
2014-03-05 08:01:14 +01:00
|
|
|
/**
|
|
|
|
* WP Views
|
|
|
|
*/
|
|
|
|
|
2016-05-17 20:49:30 +02:00
|
|
|
.wpview {
|
2014-03-19 02:16:15 +01:00
|
|
|
width: 99.99%; /* All IE need hasLayout, incl. 11 (ugh, not again!!) */
|
2014-03-05 08:01:14 +01:00
|
|
|
position: relative;
|
2014-03-19 02:16:15 +01:00
|
|
|
clear: both;
|
2016-05-17 20:49:30 +02:00
|
|
|
margin-bottom: 16px;
|
2014-03-18 03:30:15 +01:00
|
|
|
border: 1px solid transparent;
|
2014-03-05 08:01:14 +01:00
|
|
|
}
|
|
|
|
|
2016-05-17 20:49:30 +02:00
|
|
|
.mce-shim {
|
2014-03-27 08:02:16 +01:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
2014-03-19 08:02:15 +01:00
|
|
|
}
|
|
|
|
|
2016-05-17 20:49:30 +02:00
|
|
|
.wpview[data-mce-selected="2"] .mce-shim {
|
2014-03-27 08:02:16 +01:00
|
|
|
display: none;
|
2014-03-05 08:01:14 +01:00
|
|
|
}
|
|
|
|
|
2016-05-17 20:49:30 +02:00
|
|
|
.wpview .loading-placeholder {
|
2014-07-08 00:41:15 +02:00
|
|
|
border: 1px dashed #ccc;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
2016-05-17 20:49:30 +02:00
|
|
|
.wpview[data-mce-selected] .loading-placeholder {
|
2014-07-08 00:41:15 +02:00
|
|
|
border-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* A little "loading" animation, not showing in IE < 10 */
|
2016-05-17 20:49:30 +02:00
|
|
|
.wpview .wpview-loading {
|
2014-07-08 00:41:15 +02:00
|
|
|
width: 60px;
|
|
|
|
height: 5px;
|
|
|
|
overflow: hidden;
|
|
|
|
background-color: transparent;
|
|
|
|
margin: 10px auto 0;
|
|
|
|
}
|
|
|
|
|
2016-05-17 20:49:30 +02:00
|
|
|
.wpview .wpview-loading ins {
|
2014-07-08 00:41:15 +02:00
|
|
|
background-color: #333;
|
|
|
|
margin: 0 0 0 -60px;
|
2016-03-13 18:02:26 +01:00
|
|
|
width: 36px;
|
2014-07-08 00:41:15 +02:00
|
|
|
height: 5px;
|
|
|
|
display: block;
|
2016-03-13 18:02:26 +01:00
|
|
|
-webkit-animation: wpview-loading 1.3s infinite 1s steps(36);
|
|
|
|
animation: wpview-loading 1.3s infinite 1s steps(36);
|
2014-07-08 00:41:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes wpview-loading {
|
|
|
|
0% {
|
|
|
|
margin-left: -60px;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
margin-left: 60px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes wpview-loading {
|
|
|
|
0% {
|
|
|
|
margin-left: -60px;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
margin-left: 60px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-17 20:49:30 +02:00
|
|
|
.wpview .wpview-content > iframe {
|
2014-08-20 00:43:16 +02:00
|
|
|
max-width: 100%;
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
2014-04-16 02:23:15 +02:00
|
|
|
.wpview-error {
|
2016-03-09 20:51:26 +01:00
|
|
|
border: 1px solid #ddd;
|
2014-06-16 00:53:16 +02:00
|
|
|
padding: 1em 0;
|
2014-04-16 02:23:15 +02:00
|
|
|
margin: 0;
|
2014-06-16 00:53:16 +02:00
|
|
|
word-wrap: break-word;
|
2014-04-16 02:23:15 +02:00
|
|
|
}
|
|
|
|
|
2016-05-17 20:49:30 +02:00
|
|
|
.wpview[data-mce-selected] .wpview-error {
|
2014-04-16 02:23:15 +02:00
|
|
|
border-color: transparent;
|
|
|
|
}
|
|
|
|
|
2014-07-08 00:41:15 +02:00
|
|
|
.wpview-error .dashicons,
|
|
|
|
.loading-placeholder .dashicons {
|
2014-04-16 02:23:15 +02:00
|
|
|
display: block;
|
|
|
|
margin: 0 auto;
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
font-size: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wpview-error p {
|
|
|
|
margin: 0;
|
|
|
|
text-align: center;
|
Drop Open Sans in the admin in favor of system fonts.
Rejoice, for your admins will feel more native to your surrounding computing environment and likely load faster, especially when offline, as they no longer have to talk to The Google Overlord.
At the time of introduction in 3.8, there were not good system fonts common to all platforms at the time. In the years since, Windows, Android, OS X, iOS, Firefox OS, and various flavors of Linux have all gotten their own (good) system UI fonts.
There will definitely be visual bugs, mainly around alignment and spacing; these should be documented and reported on the ticket and fixed more atomically so that our current and future selves have a better understanding of what happened and why.
The style remains registered, as it is almost certainly in use by themes and plugins.
props mattmiklic.
see #36753.
Built from https://develop.svn.wordpress.org/trunk@37361
git-svn-id: http://core.svn.wordpress.org/trunk@37327 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-05-05 00:07:37 +02:00
|
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
|
2014-04-16 02:23:15 +02:00
|
|
|
}
|
|
|
|
|
2014-03-27 08:02:16 +01:00
|
|
|
.wpview-type-gallery:after {
|
|
|
|
content: '';
|
|
|
|
display: table;
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
2014-03-05 08:01:14 +01:00
|
|
|
.gallery img[data-mce-selected]:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gallery a {
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gallery {
|
2014-03-18 03:30:15 +01:00
|
|
|
margin: auto -6px;
|
|
|
|
padding: 6px 0;
|
2014-03-18 01:20:15 +01:00
|
|
|
line-height: 1;
|
|
|
|
overflow-x: hidden;
|
2014-03-05 08:01:14 +01:00
|
|
|
}
|
|
|
|
|
2014-04-09 02:58:15 +02:00
|
|
|
.ie7 .gallery,
|
|
|
|
.ie8 .gallery {
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
2014-03-05 08:01:14 +01:00
|
|
|
.gallery .gallery-item {
|
|
|
|
float: left;
|
2014-03-18 01:20:15 +01:00
|
|
|
margin: 0;
|
2014-03-05 08:01:14 +01:00
|
|
|
text-align: center;
|
2014-03-18 03:30:15 +01:00
|
|
|
padding: 6px;
|
2014-03-18 01:20:15 +01:00
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
2014-03-05 08:01:14 +01:00
|
|
|
}
|
|
|
|
|
2014-04-09 02:58:15 +02:00
|
|
|
.ie7 .gallery .gallery-item,
|
|
|
|
.ie8 .gallery .gallery-item {
|
|
|
|
padding: 6px 0;
|
|
|
|
}
|
|
|
|
|
2014-03-05 08:01:14 +01:00
|
|
|
.gallery .gallery-caption,
|
|
|
|
.gallery .gallery-icon {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2014-03-18 01:20:15 +01:00
|
|
|
.gallery .gallery-caption {
|
|
|
|
font-size: 13px;
|
|
|
|
margin: 4px 0;
|
|
|
|
}
|
|
|
|
|
2014-03-05 08:01:14 +01:00
|
|
|
.gallery-columns-1 .gallery-item {
|
2014-03-18 01:20:15 +01:00
|
|
|
width: 100%;
|
2014-03-05 08:01:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.gallery-columns-2 .gallery-item {
|
2014-03-18 01:20:15 +01:00
|
|
|
width: 50%;
|
2014-03-05 08:01:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.gallery-columns-3 .gallery-item {
|
2014-03-18 01:20:15 +01:00
|
|
|
width: 33.333%;
|
2014-03-05 08:01:14 +01:00
|
|
|
}
|
|
|
|
|
2014-04-09 02:58:15 +02:00
|
|
|
.ie8 .gallery-columns-3 .gallery-item,
|
|
|
|
.ie7 .gallery-columns-3 .gallery-item {
|
|
|
|
width: 33%;
|
|
|
|
}
|
|
|
|
|
2014-03-05 08:01:14 +01:00
|
|
|
.gallery-columns-4 .gallery-item {
|
2014-03-18 01:20:15 +01:00
|
|
|
width: 25%;
|
2014-03-05 08:01:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.gallery-columns-5 .gallery-item {
|
2014-03-18 01:20:15 +01:00
|
|
|
width: 20%;
|
2014-03-05 08:01:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.gallery-columns-6 .gallery-item {
|
2014-04-09 02:58:15 +02:00
|
|
|
width: 16.665%;
|
2014-03-05 08:01:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.gallery-columns-7 .gallery-item {
|
2014-03-18 01:20:15 +01:00
|
|
|
width: 14.285%;
|
2014-03-05 08:01:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.gallery-columns-8 .gallery-item {
|
2014-03-18 01:20:15 +01:00
|
|
|
width: 12.5%;
|
2014-03-05 08:01:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.gallery-columns-9 .gallery-item {
|
2014-03-18 01:20:15 +01:00
|
|
|
width: 11.111%;
|
2014-03-05 08:01:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.gallery img {
|
2014-03-18 01:20:15 +01:00
|
|
|
max-width: 100%;
|
|
|
|
height: auto;
|
2014-04-16 02:23:15 +02:00
|
|
|
border: none;
|
|
|
|
padding: 0;
|
2014-03-05 08:01:14 +01:00
|
|
|
}
|
|
|
|
|
TinyMCE 4.0.12, first run.
- Removes wp-tinymce-schema.js and mark-loaded.js, no longer needed.
- Removes the inlinepopups and most of the wpdialogs plugins; wpdialog.js is moved to wp-includes/js.
- Adds charmap, compat3x, image, link and textcolor plugins, previously contained in /themes/advanced.
- Updates the wordpress, wpeditimage, wpfullscreen, wpgallery and wplink plugins.
- Updates DFW, wp-admin/js/wp-fullscreen.js.
See #24067.
Built from https://develop.svn.wordpress.org/trunk@26876
git-svn-id: http://core.svn.wordpress.org/trunk@26759 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-29 00:53:15 +01:00
|
|
|
img.wp-oembed {
|
|
|
|
border: 1px dashed #888;
|
2014-02-26 18:23:13 +01:00
|
|
|
background: #f7f5f2 url(images/embedded.png) no-repeat scroll center center;
|
TinyMCE 4.0.12, first run.
- Removes wp-tinymce-schema.js and mark-loaded.js, no longer needed.
- Removes the inlinepopups and most of the wpdialogs plugins; wpdialog.js is moved to wp-includes/js.
- Adds charmap, compat3x, image, link and textcolor plugins, previously contained in /themes/advanced.
- Updates the wordpress, wpeditimage, wpfullscreen, wpgallery and wplink plugins.
- Updates DFW, wp-admin/js/wp-fullscreen.js.
See #24067.
Built from https://develop.svn.wordpress.org/trunk@26876
git-svn-id: http://core.svn.wordpress.org/trunk@26759 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-29 00:53:15 +01:00
|
|
|
width: 300px;
|
|
|
|
height: 250px;
|
|
|
|
outline: 0;
|
|
|
|
}
|
2014-04-04 07:23:14 +02:00
|
|
|
|
2014-04-13 02:23:15 +02:00
|
|
|
/* rtl */
|
|
|
|
.rtl .gallery .gallery-item {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2014-04-04 07:23:14 +02:00
|
|
|
@media print,
|
|
|
|
(-o-min-device-pixel-ratio: 5/4),
|
|
|
|
(-webkit-min-device-pixel-ratio: 1.25),
|
|
|
|
(min-resolution: 120dpi) {
|
|
|
|
|
|
|
|
.mce-content-body img.mce-wp-more {
|
|
|
|
background-image: url( images/more-2x.png );
|
|
|
|
background-size: 1900px 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-content-body img.mce-wp-nextpage {
|
|
|
|
background-image: url( images/pagebreak-2x.png );
|
|
|
|
background-size: 1900px 20px;
|
|
|
|
}
|
|
|
|
}
|