2013-11-17 17:18:11 +01:00
|
|
|
/*------------------------------------------------------------------------------
|
|
|
|
TinyMCE and Quicklinks toolbars
|
|
|
|
------------------------------------------------------------------------------*/
|
|
|
|
|
2014-02-18 07:32:14 +01:00
|
|
|
/* TinyMCE widgets/containers */
|
|
|
|
|
|
|
|
.mce-container,
|
2014-03-27 20:19:14 +01:00
|
|
|
.mce-container *,
|
|
|
|
.mce-widget,
|
|
|
|
.mce-widget * {
|
2014-02-18 07:32:14 +01:00
|
|
|
color: inherit;
|
|
|
|
font-family: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TinyMCE windows */
|
2015-01-16 00:29:21 +01:00
|
|
|
#mce-modal-block,
|
|
|
|
#mce-modal-block.mce-fade {
|
2014-02-18 07:32:14 +01:00
|
|
|
opacity: 0.7;
|
2014-03-14 06:55:16 +01:00
|
|
|
filter: alpha(opacity=70);
|
2015-01-16 00:29:21 +01:00
|
|
|
-webkit-transition: none;
|
|
|
|
transition: none;
|
2014-02-18 07:32:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mce-window {
|
2014-02-19 04:51:15 +01:00
|
|
|
-webkit-border-radius: 0;
|
2014-02-18 07:32:14 +01:00
|
|
|
border-radius: 0;
|
2014-03-14 06:55:16 +01:00
|
|
|
-webkit-box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
|
|
|
|
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
|
2014-02-18 07:32:14 +01:00
|
|
|
-webkit-font-smoothing: subpixel-antialiased;
|
2015-01-16 00:29:21 +01:00
|
|
|
-webkit-transition: none;
|
|
|
|
transition: none;
|
2014-02-18 07:32:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mce-window .mce-container-body.mce-abs-layout {
|
|
|
|
overflow: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-window .mce-window-head {
|
|
|
|
background: #fcfcfc;
|
|
|
|
border-bottom: 1px solid #dfdfdf;
|
|
|
|
padding: 0;
|
2014-03-12 09:19:14 +01:00
|
|
|
min-height: 36px;
|
2014-02-18 07:32:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mce-window .mce-window-head .mce-title {
|
2014-03-14 06:55:16 +01:00
|
|
|
color: #444;
|
|
|
|
font-size: 18px;
|
2014-02-18 07:32:14 +01:00
|
|
|
font-weight: 600;
|
2014-03-12 09:19:14 +01:00
|
|
|
line-height: 36px;
|
2014-02-18 07:32:14 +01:00
|
|
|
margin: 0;
|
2014-03-12 09:19:14 +01:00
|
|
|
padding: 0 16px 0 36px;
|
2014-02-18 07:32:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mce-window .mce-window-head .mce-close {
|
|
|
|
color: transparent;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2014-03-12 09:19:14 +01:00
|
|
|
width: 36px;
|
|
|
|
height: 36px;
|
|
|
|
line-height: 36px;
|
2014-02-18 07:32:14 +01:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-window .mce-window-head .mce-close:before {
|
2014-03-12 09:19:14 +01:00
|
|
|
font: normal 20px/36px 'dashicons';
|
2014-02-18 07:32:14 +01:00
|
|
|
text-align: center;
|
2014-02-19 04:51:15 +01:00
|
|
|
color: #666;
|
2014-03-12 09:19:14 +01:00
|
|
|
width: 36px;
|
|
|
|
height: 36px;
|
2014-02-18 07:32:14 +01:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-window .mce-window-head .mce-close:hover:before {
|
2014-02-19 04:51:15 +01:00
|
|
|
color: #2ea2cc;
|
2014-02-18 07:32:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mce-window .mce-window-head .mce-dragh {
|
2014-03-12 09:19:14 +01:00
|
|
|
width: -webkit-calc( 100% - 36px );
|
|
|
|
width: calc( 100% - 36px );
|
2014-02-18 07:32:14 +01:00
|
|
|
}
|
|
|
|
|
2014-03-27 01:08:15 +01:00
|
|
|
.mce-wp-help .mce-window-head {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
|
2014-03-27 03:36:14 +01:00
|
|
|
.mce-textbox,
|
2014-07-29 05:16:17 +02:00
|
|
|
.mce-checkbox i.mce-i-checkbox,
|
|
|
|
#wp-link .query-results {
|
2014-02-18 07:32:14 +01:00
|
|
|
border: 1px solid #ddd;
|
2014-02-19 04:51:15 +01:00
|
|
|
-webkit-border-radius: 0;
|
2014-02-18 07:32:14 +01:00
|
|
|
border-radius: 0;
|
|
|
|
-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.07);
|
|
|
|
box-shadow: inset 0 1px 2px rgba(0,0,0,0.07);
|
2014-07-29 05:16:17 +02:00
|
|
|
-webkit-transition: .05s all ease-in-out;
|
|
|
|
transition: .05s all ease-in-out;
|
2014-02-18 07:32:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mce-textbox:focus,
|
2014-03-27 03:36:14 +01:00
|
|
|
.mce-textbox.mce-focus,
|
2014-07-29 05:16:17 +02:00
|
|
|
.mce-checkbox:focus i.mce-i-checkbox,
|
|
|
|
#wp-link .query-results:focus {
|
2014-03-27 03:36:14 +01:00
|
|
|
border-color: #5b9dd9;
|
|
|
|
-webkit-box-shadow: 0 0 2px rgba(30,140,190,0.8);
|
|
|
|
box-shadow: 0 0 2px rgba(30,140,190,0.8);
|
2014-02-18 07:32:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* TinyMCE menus */
|
|
|
|
.mce-menu,
|
|
|
|
.mce-floatpanel.mce-popover {
|
|
|
|
border-color: rgba(0,0,0,0.15);
|
2014-02-19 04:51:15 +01:00
|
|
|
-webkit-border-radius: 0;
|
2014-02-18 07:32:14 +01:00
|
|
|
border-radius: 0;
|
2014-02-19 04:51:15 +01:00
|
|
|
-webkit-box-shadow: 0 3px 5px rgba( 0, 0, 0, 0.2 );
|
2014-02-18 07:32:14 +01:00
|
|
|
box-shadow: 0 3px 5px rgba( 0, 0, 0, 0.2 );
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-floatpanel.mce-popover.mce-bottom {
|
|
|
|
margin-top: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-floatpanel .mce-arrow {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-menu .mce-container-body {
|
|
|
|
min-width: 160px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-menu-item {
|
|
|
|
border: none;
|
|
|
|
margin-bottom: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-menu-has-icons i.mce-ico {
|
2014-04-07 09:11:15 +02:00
|
|
|
line-height: 20px;
|
2014-02-18 07:32:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* TinyMCE panel */
|
2013-12-30 02:54:11 +01:00
|
|
|
div.mce-panel {
|
2013-11-17 17:18:11 +01:00
|
|
|
border: 0;
|
|
|
|
background: #fff;
|
2014-02-13 09:30:17 +01:00
|
|
|
-webkit-filter: none;
|
2013-12-30 02:54:11 +01:00
|
|
|
filter: none;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
2014-02-18 07:32:14 +01:00
|
|
|
.mce-panel.mce-menu {
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
}
|
|
|
|
|
2014-04-07 09:11:15 +02:00
|
|
|
div.mce-tab {
|
|
|
|
line-height: 13px;
|
|
|
|
}
|
|
|
|
|
2014-02-18 07:32:14 +01:00
|
|
|
/* TinyMCE toolbars */
|
2013-12-30 02:54:11 +01:00
|
|
|
div.mce-toolbar-grp {
|
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-bottom: 1px solid #dedede;
|
|
|
|
background: #f5f5f5;
|
2014-07-10 00:06:15 +02:00
|
|
|
padding: 0;
|
2014-03-30 00:58:14 +01:00
|
|
|
position: relative;
|
2014-07-10 00:06:15 +02:00
|
|
|
}
|
|
|
|
|
2014-11-13 01:56:22 +01:00
|
|
|
div.mce-inline-toolbar-grp {
|
|
|
|
border: 1px solid #aaa;
|
|
|
|
-webkit-border-radius: 2px;
|
|
|
|
border-radius: 2px;
|
2014-12-11 00:53:22 +01:00
|
|
|
-webkit-box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.15 );
|
|
|
|
box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.15 );
|
2014-11-13 01:56:22 +01:00
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
position: absolute;
|
2014-12-12 01:10:25 +01:00
|
|
|
visibility: hidden;
|
2014-11-13 01:56:22 +01:00
|
|
|
-moz-user-select: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
2014-11-22 03:43:24 +01:00
|
|
|
z-index: 100100; /* Same as the other TinyMCE "panels" */
|
2014-11-13 01:56:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.mce-wp-image-toolbar > div.mce-stack-layout {
|
|
|
|
padding: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.mce-inline-toolbar-grp.mce-arrow-up {
|
|
|
|
margin-bottom: 0;
|
|
|
|
margin-top: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.mce-inline-toolbar-grp:before,
|
|
|
|
div.mce-inline-toolbar-grp:after {
|
|
|
|
position: absolute;
|
|
|
|
right: 50%;
|
|
|
|
display: block;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border-style: solid;
|
|
|
|
border-color: transparent;
|
|
|
|
content: '';
|
|
|
|
}
|
|
|
|
|
|
|
|
div.mce-inline-toolbar-grp.mce-arrow-up:before {
|
|
|
|
top: -18px;
|
|
|
|
border-bottom-color: #aaa;
|
|
|
|
border-width: 9px;
|
|
|
|
margin-right: -9px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.mce-inline-toolbar-grp.mce-arrow-down:before {
|
|
|
|
bottom: -18px;
|
|
|
|
border-top-color: #aaa;
|
|
|
|
border-width: 9px;
|
|
|
|
margin-right: -9px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.mce-inline-toolbar-grp.mce-arrow-up:after {
|
|
|
|
top: -16px;
|
|
|
|
border-bottom-color: #f5f5f5;
|
|
|
|
border-width: 8px;
|
|
|
|
margin-right: -8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.mce-inline-toolbar-grp.mce-arrow-down:after {
|
|
|
|
bottom: -16px;
|
|
|
|
border-top-color: #f5f5f5;
|
|
|
|
border-width: 8px;
|
|
|
|
margin-right: -8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.mce-inline-toolbar-grp.mce-arrow-left:before,
|
|
|
|
div.mce-inline-toolbar-grp.mce-arrow-left:after {
|
2014-11-17 01:19:23 +01:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.mce-inline-toolbar-grp.mce-arrow-left:before {
|
2014-11-13 01:56:22 +01:00
|
|
|
right: 20px;
|
|
|
|
}
|
2014-11-17 01:19:23 +01:00
|
|
|
div.mce-inline-toolbar-grp.mce-arrow-left:after {
|
|
|
|
right: 21px;
|
|
|
|
}
|
2014-11-13 01:56:22 +01:00
|
|
|
|
|
|
|
div.mce-inline-toolbar-grp.mce-arrow-right:before,
|
|
|
|
div.mce-inline-toolbar-grp.mce-arrow-right:after {
|
|
|
|
right: auto;
|
2014-11-17 01:19:23 +01:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.mce-inline-toolbar-grp.mce-arrow-right:before {
|
|
|
|
left: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.mce-inline-toolbar-grp.mce-arrow-right:after {
|
|
|
|
left: 21px;
|
2014-11-13 01:56:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.mce-inline-toolbar-grp.mce-arrow-full {
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.mce-inline-toolbar-grp.mce-arrow-full > div {
|
|
|
|
width: 100%;
|
|
|
|
overflow-x: auto;
|
|
|
|
}
|
|
|
|
|
2014-12-12 01:10:25 +01:00
|
|
|
div.mce-inline-toolbar-grp-active {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
2014-07-10 00:06:15 +02:00
|
|
|
div.mce-toolbar-grp > div {
|
|
|
|
padding: 3px;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
2014-04-07 03:10:15 +02:00
|
|
|
.has-dfw div.mce-toolbar-grp .mce-toolbar.mce-first {
|
|
|
|
padding-left: 32px;
|
|
|
|
}
|
|
|
|
|
2014-03-30 00:58:14 +01:00
|
|
|
.mce-toolbar .mce-btn-group {
|
|
|
|
margin: 0;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
2014-01-02 05:18:10 +01:00
|
|
|
div.mce-statusbar {
|
2014-07-10 00:06:15 +02:00
|
|
|
border-top: 1px solid #e5e5e5;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
2014-03-29 01:19:14 +01:00
|
|
|
div.mce-path {
|
2014-07-10 00:06:15 +02:00
|
|
|
padding: 2px 10px;
|
2014-03-29 01:19:14 +01:00
|
|
|
margin: 0;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
2014-08-08 05:46:17 +02:00
|
|
|
.mce-path,
|
|
|
|
.mce-path-item,
|
|
|
|
.mce-path .mce-divider {
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 18px;
|
|
|
|
}
|
2014-07-10 00:06:15 +02:00
|
|
|
|
2014-03-30 00:58:14 +01:00
|
|
|
.mce-toolbar .mce-btn,
|
2014-11-13 23:31:22 +01:00
|
|
|
.qt-dfw {
|
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-color: transparent;
|
|
|
|
background: transparent;
|
2014-02-13 09:30:17 +01:00
|
|
|
-webkit-box-shadow: none;
|
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
|
|
|
box-shadow: none;
|
2014-02-19 04:51:15 +01:00
|
|
|
text-shadow: none;
|
2014-03-30 00:58:14 +01:00
|
|
|
cursor: pointer;
|
2013-11-17 17:18:11 +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
|
|
|
#wp-fullscreen-buttons .mce-btn,
|
2014-03-30 00:58:14 +01:00
|
|
|
.mce-toolbar .mce-btn-group .mce-btn,
|
2014-11-13 23:31:22 +01:00
|
|
|
.qt-dfw {
|
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: 1px solid transparent;
|
2014-03-30 00:58:14 +01:00
|
|
|
margin: 2px;
|
|
|
|
background-image: none;
|
2014-04-07 03:10:15 +02:00
|
|
|
-webkit-border-radius: 2px;
|
|
|
|
border-radius: 2px;
|
2014-02-13 09:30:17 +01:00
|
|
|
-webkit-filter: none;
|
2013-12-30 02:54:11 +01:00
|
|
|
filter: none;
|
2013-11-17 17:18:11 +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
|
|
|
#wp-fullscreen-buttons .mce-btn:hover,
|
2014-03-30 00:58:14 +01:00
|
|
|
.mce-toolbar .mce-btn-group .mce-btn:hover,
|
|
|
|
#wp-fullscreen-buttons .mce-btn:focus,
|
|
|
|
.mce-toolbar .mce-btn-group .mce-btn:focus,
|
2014-11-13 23:31:22 +01:00
|
|
|
.qt-dfw:hover,
|
|
|
|
.qt-dfw:focus {
|
2014-03-30 00:58:14 +01:00
|
|
|
background: #fafafa;
|
|
|
|
border-color: #999;
|
|
|
|
color: #222;
|
|
|
|
-webkit-box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba( 0, 0, 0, 0.08 );
|
|
|
|
box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba( 0, 0, 0, 0.08 );
|
2014-11-13 23:31:22 +01:00
|
|
|
outline: none;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
2014-03-30 00:58:14 +01:00
|
|
|
.mce-toolbar .mce-btn-group .mce-btn.mce-active,
|
|
|
|
#wp-fullscreen-buttons .mce-btn.mce-active,
|
|
|
|
.mce-toolbar .mce-btn-group .mce-btn:active,
|
2014-11-13 23:31:22 +01:00
|
|
|
#wp-fullscreen-buttons .mce-btn:active,
|
|
|
|
.qt-dfw.active {
|
2014-04-07 03:10:15 +02:00
|
|
|
background: #ebebeb;
|
2014-03-30 00:58:14 +01:00
|
|
|
border-color: #999;
|
2014-04-07 03:10:15 +02:00
|
|
|
-webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.3 );
|
|
|
|
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.3 );
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-toolbar .mce-btn-group .mce-btn.mce-active:hover {
|
|
|
|
border-color: #555;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-toolbar .mce-btn-group .mce-btn.mce-active:hover i.mce-ico {
|
|
|
|
color: #555;
|
2014-03-27 08:19:15 +01:00
|
|
|
}
|
|
|
|
|
2014-03-30 00:58:14 +01:00
|
|
|
.mce-toolbar .mce-btn-group .mce-btn.mce-disabled:hover,
|
|
|
|
#wp-fullscreen-buttons .mce-btn.mce-disabled:hover,
|
|
|
|
.mce-toolbar .mce-btn-group .mce-btn.mce-disabled:focus,
|
|
|
|
#wp-fullscreen-buttons .mce-btn.mce-disabled:focus {
|
|
|
|
color: #aaa;
|
|
|
|
background: none;
|
|
|
|
border-color: #ddd;
|
|
|
|
text-shadow: 0 1px 0 #fff;
|
|
|
|
-webkit-box-shadow: none;
|
|
|
|
box-shadow: none;
|
2013-11-17 17:18:11 +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
|
|
|
.mce-toolbar .mce-btn-group .mce-first,
|
|
|
|
.mce-toolbar .mce-btn-group .mce-last {
|
|
|
|
border-color: transparent;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
2014-03-30 00:58:14 +01:00
|
|
|
.mce-toolbar .mce-btn button,
|
2014-11-13 23:31:22 +01:00
|
|
|
.qt-dfw {
|
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
|
|
|
padding: 2px 3px;
|
|
|
|
line-height: normal;
|
2013-11-17 17:18:11 +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
|
|
|
.mce-toolbar .mce-btn i {
|
2014-02-18 07:32:14 +01:00
|
|
|
text-shadow: none;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
2014-02-17 03:13:13 +01:00
|
|
|
.mce-toolbar .mce-btn-group > div {
|
|
|
|
white-space: normal;
|
|
|
|
}
|
|
|
|
|
2014-02-18 07:32:14 +01:00
|
|
|
.mce-toolbar .mce-colorbutton .mce-open {
|
|
|
|
border-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-toolbar .mce-colorbutton .mce-preview {
|
2014-07-19 00:15:15 +02:00
|
|
|
margin: 0;
|
2014-02-18 07:32:14 +01:00
|
|
|
padding: 0;
|
2014-07-19 00:15:15 +02:00
|
|
|
top: auto;
|
|
|
|
bottom: 2px;
|
|
|
|
right: 3px;
|
|
|
|
height: 3px;
|
|
|
|
width: 20px;
|
2014-02-18 07:32:14 +01:00
|
|
|
}
|
|
|
|
|
2014-02-19 04:51:15 +01:00
|
|
|
/* mce listbox */
|
|
|
|
.mce-toolbar .mce-btn-group .mce-btn.mce-listbox {
|
|
|
|
-webkit-border-radius: 0;
|
|
|
|
border-radius: 0;
|
|
|
|
direction: rtl;
|
|
|
|
background: #fff;
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
-webkit-box-shadow: inset 0 1px 1px -1px rgba(0, 0, 0, .2);
|
|
|
|
box-shadow: inset 0 1px 1px -1px rgba(0, 0, 0, .2);
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-toolbar .mce-btn-group .mce-btn.mce-listbox:hover {
|
|
|
|
background-image: none;
|
|
|
|
border-color: #bbb;
|
|
|
|
}
|
|
|
|
|
2014-04-22 15:24:15 +02:00
|
|
|
.mce-toolbar .mce-btn-group .mce-btn.mce-listbox span {
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
|
2014-03-12 09:19:14 +01:00
|
|
|
.mce-panel .mce-btn i.mce-caret {
|
|
|
|
border-top: 6px solid #777;
|
2014-04-07 03:10:15 +02:00
|
|
|
margin-right: 2px;
|
|
|
|
margin-left: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-listbox i.mce-caret {
|
|
|
|
left: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-panel .mce-btn button.mce-open i.mce-caret,
|
|
|
|
.mce-panel .mce-btn.mce-listbox i.mce-caret {
|
|
|
|
margin-right: 0;
|
|
|
|
margin-left: 0;
|
2014-03-12 09:19:14 +01:00
|
|
|
}
|
2014-02-19 04:51:15 +01:00
|
|
|
|
2014-03-12 09:19:14 +01:00
|
|
|
.mce-panel .mce-btn:hover i.mce-caret {
|
|
|
|
border-top-color: #333;
|
2014-02-19 04:51:15 +01:00
|
|
|
}
|
|
|
|
|
2014-03-12 09:19:14 +01:00
|
|
|
.mce-panel .mce-active i.mce-caret {
|
|
|
|
border-top: 0;
|
|
|
|
border-bottom: 6px solid #333;
|
|
|
|
margin-top: 7px;
|
2014-02-19 04:51:15 +01:00
|
|
|
}
|
|
|
|
|
2014-03-12 09:19:14 +01:00
|
|
|
.mce-listbox.mce-active i.mce-caret {
|
|
|
|
margin-top: -3px;
|
2014-02-19 04:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mce-toolbar .mce-splitbtn:hover .mce-open {
|
|
|
|
border-left-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-toolbar .mce-splitbtn .mce-open.mce-active{
|
|
|
|
-webkit-box-shadow: none;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-menu .mce-menu-item-normal.mce-active {
|
|
|
|
background-color: #e5e5e5;
|
|
|
|
-webkit-filter: none;
|
|
|
|
filter: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-menu .mce-menu-item:hover,
|
|
|
|
.mce-menu .mce-menu-item.mce-selected,
|
|
|
|
.mce-menu .mce-menu-item:focus {
|
|
|
|
color: #000;
|
|
|
|
background-color: #bbb;
|
|
|
|
background-image: none;
|
|
|
|
-webkit-filter: none;
|
|
|
|
filter: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-menu .mce-menu-item:hover .mce-ico,
|
|
|
|
.mce-menu .mce-menu-item.mce-selected .mce-ico,
|
|
|
|
.mce-menu .mce-menu-item:focus .mce-ico,
|
|
|
|
.mce-menu .mce-menu-item:hover .mce-text,
|
|
|
|
.mce-menu .mce-menu-item.mce-active:hover .mce-text,
|
|
|
|
.mce-menu .mce-menu-item.mce-selected .mce-text {
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Menubar */
|
2014-02-18 07:32:14 +01:00
|
|
|
.mce-menubar {
|
|
|
|
border-color: #e5e5e5;
|
2014-08-24 07:11:16 +02:00
|
|
|
background: #fff;
|
|
|
|
border-width: 0px 0px 1px;
|
2014-02-18 07:32:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mce-menubar .mce-btn:focus {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.mce-menu .mce-menu-item-sep,
|
|
|
|
.mce-menu-item-sep:hover {
|
|
|
|
margin: 5px 0 4px;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
2014-02-19 04:51:15 +01:00
|
|
|
.mce-menubtn span {
|
|
|
|
margin-left: 0;
|
|
|
|
padding-right: 3px;
|
|
|
|
}
|
|
|
|
|
2014-03-12 09:19:14 +01:00
|
|
|
.mce-menu-has-icons i.mce-ico:before {
|
|
|
|
margin-right: -2px;
|
|
|
|
}
|
|
|
|
|
2014-02-18 07:32:14 +01:00
|
|
|
/* Buttons in modals */
|
2014-02-19 04:51:15 +01:00
|
|
|
.mce-primary button,
|
|
|
|
.mce-primary button i {
|
|
|
|
text-align: center;
|
|
|
|
color: #fff;
|
|
|
|
text-shadow: none;
|
2014-03-11 01:04:14 +01:00
|
|
|
padding: 0;
|
|
|
|
line-height: 26px;
|
2014-02-19 04:51:15 +01:00
|
|
|
}
|
|
|
|
|
2014-02-18 07:32:14 +01:00
|
|
|
.mce-window .mce-btn {
|
|
|
|
color: #555;
|
|
|
|
background: #f7f7f7;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: 26px;
|
|
|
|
height: 28px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-webkit-border-radius: 3px;
|
|
|
|
border-radius: 3px;
|
|
|
|
white-space: nowrap;
|
2014-08-26 07:17:17 +02:00
|
|
|
-webkit-box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba( 0, 0, 0, 0.08 );
|
|
|
|
box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba( 0, 0, 0, 0.08 );
|
2013-11-28 01:53:09 +01:00
|
|
|
background-image: none;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
2014-03-11 01:04:14 +01:00
|
|
|
/* Remove the dotted border on :focus and the extra padding in Firefox */
|
|
|
|
.mce-window .mce-btn::-moz-focus-inner {
|
|
|
|
border-width: 1px 0;
|
|
|
|
border-style: solid none;
|
|
|
|
border-color: transparent;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2014-08-26 07:17:17 +02:00
|
|
|
.mce-window .mce-btn:hover,
|
|
|
|
.mce-window .mce-btn:focus {
|
2014-02-18 07:32:14 +01:00
|
|
|
background: #fafafa;
|
|
|
|
border-color: #999;
|
|
|
|
color: #222;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
2014-02-18 07:32:14 +01:00
|
|
|
.mce-window .mce-btn:focus {
|
2014-08-26 07:17:17 +02:00
|
|
|
-webkit-box-shadow:
|
|
|
|
0 0 0 1px #5b9dd9,
|
|
|
|
0 0 2px 1px rgba( 30, 140, 190, 0.8 );
|
|
|
|
box-shadow:
|
|
|
|
0 0 0 1px #5b9dd9,
|
|
|
|
0 0 2px 1px rgba( 30, 140, 190, 0.8 );
|
2014-02-18 07:32:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mce-window .mce-btn:active {
|
|
|
|
background: #eee;
|
|
|
|
border-color: #999;
|
|
|
|
color: #333;
|
2014-08-26 07:17:17 +02:00
|
|
|
-webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
|
|
|
|
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
|
2014-02-18 07:32:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mce-window .mce-btn.mce-disabled {
|
|
|
|
color: #aaa;
|
|
|
|
border-color: #ddd;
|
2014-08-26 07:17:17 +02:00
|
|
|
background: #f7f7f7;
|
2014-02-18 07:32:14 +01:00
|
|
|
-webkit-box-shadow: none;
|
|
|
|
box-shadow: none;
|
|
|
|
text-shadow: 0 1px 0 #fff;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-window .mce-btn.mce-primary {
|
|
|
|
background: #2ea2cc;
|
|
|
|
border-color: #0074a2;
|
2014-08-26 07:17:17 +02:00
|
|
|
-webkit-box-shadow: inset 0 1px 0 rgba( 120, 200, 230, 0.5), 0 1px 0 rgba( 0, 0, 0, 0.15 );
|
|
|
|
box-shadow: inset 0 1px 0 rgba( 120, 200, 230, 0.5 ), 0 1px 0 rgba( 0, 0, 0, 0.15 );
|
2014-03-11 01:04:14 +01:00
|
|
|
color: #fff;
|
|
|
|
text-decoration: none;
|
2014-02-18 07:32:14 +01:00
|
|
|
}
|
|
|
|
|
2014-08-26 07:17:17 +02:00
|
|
|
.mce-window .mce-btn.mce-primary:hover,
|
|
|
|
.mce-window .mce-btn.mce-primary:focus {
|
2014-02-18 07:32:14 +01:00
|
|
|
background: #1e8cbe;
|
|
|
|
border-color: #0074a2;
|
2014-08-26 07:17:17 +02:00
|
|
|
-webkit-box-shadow: inset 0 1px 0 rgba( 120, 200, 230, 0.6 );
|
|
|
|
box-shadow: inset 0 1px 0 rgba( 120, 200, 230, 0.6 );
|
2014-02-18 07:32:14 +01:00
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-window .mce-btn.mce-primary:focus {
|
|
|
|
border-color: #0e3950;
|
2014-08-26 07:17:17 +02:00
|
|
|
-webkit-box-shadow:
|
|
|
|
inset 0 1px 0 rgba( 120, 200, 230, 0.6 ),
|
|
|
|
0 0 0 1px #5b9dd9,
|
|
|
|
0 0 2px 1px rgba( 30, 140, 190, 0.8 );
|
|
|
|
box-shadow:
|
|
|
|
inset 0 1px 0 rgba( 120, 200, 230, 0.6 ),
|
|
|
|
0 0 0 1px #5b9dd9,
|
|
|
|
0 0 2px 1px rgba( 30, 140, 190, 0.8 );
|
2014-02-18 07:32:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mce-window .mce-btn.mce-primary:active {
|
|
|
|
background: #1b7aa6;
|
|
|
|
border-color: #005684;
|
2014-08-26 07:17:17 +02:00
|
|
|
color: rgba( 255, 255, 255, 0.95 );
|
|
|
|
-webkit-box-shadow: inset 0 1px 0 rgba( 0, 0, 0, 0.1 );
|
|
|
|
box-shadow: inset 0 1px 0 rgba( 0, 0, 0, 0.1 );
|
|
|
|
vertical-align: top;
|
2014-02-18 07:32:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mce-window .mce-btn.mce-primary.mce-disabled {
|
|
|
|
color: #94cde7;
|
|
|
|
background: #298cba;
|
|
|
|
border-color: #1b607f;
|
2014-08-26 07:17:17 +02:00
|
|
|
-webkit-box-shadow: none;
|
|
|
|
box-shadow: none;
|
|
|
|
text-shadow: 0 -1px 0 rgba( 0, 0, 0, 0.1 );
|
|
|
|
cursor: default;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
2014-04-07 03:10:15 +02:00
|
|
|
.mce-menubtn.mce-fixed-width button span {
|
|
|
|
max-width: 80px;
|
|
|
|
padding-left: 16px;
|
|
|
|
}
|
|
|
|
|
2014-02-12 00:33:14 +01:00
|
|
|
/* Charmap modal */
|
2014-02-18 07:32:14 +01:00
|
|
|
.mce-charmap {
|
|
|
|
margin: 3px;
|
|
|
|
}
|
|
|
|
|
2014-02-12 00:33:14 +01:00
|
|
|
.mce-charmap td {
|
|
|
|
padding: 0;
|
2014-02-18 07:32:14 +01:00
|
|
|
border-color: #dfdfdf;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-charmap td:hover {
|
|
|
|
background: #f3f3f3;
|
2014-02-12 00:33:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mce-charmap td div {
|
|
|
|
width: 18px;
|
|
|
|
height: 22px;
|
|
|
|
line-height: 22px;
|
|
|
|
}
|
|
|
|
|
2014-02-18 07:32:14 +01:00
|
|
|
/* TinyMCE tooltips */
|
|
|
|
.mce-tooltip {
|
|
|
|
margin-top: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-tooltip-inner {
|
2014-02-19 04:51:15 +01:00
|
|
|
-webkit-box-shadow: 0 3px 5px rgba( 0, 0, 0, 0.2 );
|
2014-02-18 07:32:14 +01:00
|
|
|
box-shadow: 0 3px 5px rgba( 0, 0, 0, 0.2 );
|
|
|
|
color: #fff;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TinyMCE icons */
|
2014-03-27 20:19:14 +01:00
|
|
|
.mce-ico {
|
|
|
|
font-family: 'tinymce', Arial;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-btn-small .mce-ico {
|
|
|
|
font-family: 'tinymce-small', Arial;
|
|
|
|
}
|
|
|
|
|
2014-03-12 09:19:14 +01:00
|
|
|
.mce-toolbar .mce-ico {
|
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: #777;
|
|
|
|
line-height: 20px;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
text-align: center;
|
2014-02-18 07:32:14 +01:00
|
|
|
text-shadow: none;
|
2014-03-12 09:19:14 +01:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
2014-11-13 23:31:22 +01:00
|
|
|
.qt-dfw {
|
2014-03-30 00:58:14 +01:00
|
|
|
color: #777;
|
|
|
|
line-height: 20px;
|
|
|
|
width: 28px;
|
|
|
|
height: 26px;
|
|
|
|
text-align: center;
|
|
|
|
text-shadow: none;
|
2014-02-18 07:32:14 +01:00
|
|
|
}
|
|
|
|
|
2014-03-12 09:19:14 +01:00
|
|
|
.mce-toolbar .mce-btn .mce-open {
|
|
|
|
line-height: 20px;
|
|
|
|
}
|
|
|
|
|
2014-03-30 00:58:14 +01:00
|
|
|
.mce-toolbar .mce-btn:hover .mce-open,
|
|
|
|
.mce-toolbar .mce-btn:focus .mce-open,
|
|
|
|
.mce-toolbar .mce-btn.mce-active .mce-open {
|
|
|
|
border-right-color: #999;
|
|
|
|
}
|
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-bold,
|
|
|
|
i.mce-i-italic,
|
|
|
|
i.mce-i-bullist,
|
|
|
|
i.mce-i-numlist,
|
|
|
|
i.mce-i-blockquote,
|
|
|
|
i.mce-i-alignleft,
|
|
|
|
i.mce-i-aligncenter,
|
|
|
|
i.mce-i-alignright,
|
|
|
|
i.mce-i-link,
|
|
|
|
i.mce-i-unlink,
|
|
|
|
i.mce-i-wp_more,
|
|
|
|
i.mce-i-strikethrough,
|
|
|
|
i.mce-i-spellchecker,
|
|
|
|
i.mce-i-fullscreen,
|
|
|
|
i.mce-i-wp_fullscreen,
|
2014-11-13 23:31:22 +01:00
|
|
|
i.mce-i-dfw,
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-wp_adv,
|
|
|
|
i.mce-i-underline,
|
|
|
|
i.mce-i-alignjustify,
|
|
|
|
i.mce-i-forecolor,
|
2014-07-19 00:15:15 +02:00
|
|
|
i.mce-i-backcolor,
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-pastetext,
|
|
|
|
i.mce-i-pasteword,
|
|
|
|
i.mce-i-removeformat,
|
|
|
|
i.mce-i-charmap,
|
|
|
|
i.mce-i-outdent,
|
|
|
|
i.mce-i-indent,
|
|
|
|
i.mce-i-undo,
|
|
|
|
i.mce-i-redo,
|
|
|
|
i.mce-i-help,
|
|
|
|
i.mce-i-wp_help,
|
|
|
|
i.mce-i-wp-media-library,
|
2014-01-27 16:06:32 +01:00
|
|
|
i.mce-i-ltr,
|
2014-02-18 07:32:14 +01:00
|
|
|
i.mce-i-wp_page,
|
2014-03-27 20:19:14 +01:00
|
|
|
i.mce-i-hr,
|
2014-11-13 01:56:22 +01:00
|
|
|
i.mce-i-dashicon,
|
2014-02-18 07:32:14 +01:00
|
|
|
.mce-close {
|
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
|
|
|
font: normal 20px/1 'dashicons';
|
|
|
|
padding: 0;
|
|
|
|
vertical-align: top;
|
|
|
|
speak: none;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
2014-03-12 09:19:14 +01:00
|
|
|
margin-right: -2px;
|
|
|
|
padding-left: 2px;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
2014-11-13 23:31:22 +01:00
|
|
|
.qt-dfw {
|
2014-03-30 00:58:14 +01:00
|
|
|
font: normal 20px/1 'dashicons';
|
|
|
|
vertical-align: top;
|
|
|
|
speak: none;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
}
|
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-bold:before {
|
2013-11-28 01:53:09 +01:00
|
|
|
content: '\f200';
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-italic:before {
|
2013-11-28 01:53:09 +01:00
|
|
|
content: '\f201';
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-bullist:before {
|
2013-11-28 01:53:09 +01:00
|
|
|
content: '\f203';
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-numlist:before {
|
2013-11-28 01:53:09 +01:00
|
|
|
content: '\f204';
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-blockquote:before {
|
2013-11-28 01:53:09 +01:00
|
|
|
content: '\f205';
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-alignleft:before {
|
2013-11-28 01:53:09 +01:00
|
|
|
content: '\f206';
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-aligncenter:before {
|
2013-11-28 01:53:09 +01:00
|
|
|
content: '\f207';
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-alignright:before {
|
2013-11-28 01:53:09 +01:00
|
|
|
content: '\f208';
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-link:before {
|
2013-11-28 01:53:09 +01:00
|
|
|
content: '\f103';
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-unlink:before {
|
2013-11-28 01:53:09 +01:00
|
|
|
content: '\f225';
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-wp_more:before {
|
2013-11-28 01:53:09 +01:00
|
|
|
content: '\f209';
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-strikethrough:before {
|
2013-11-28 01:53:09 +01:00
|
|
|
content: '\f224';
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-spellchecker:before {
|
2013-11-28 01:53:09 +01:00
|
|
|
content: '\f210';
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-fullscreen:before,
|
2014-03-30 00:58:14 +01:00
|
|
|
i.mce-i-wp_fullscreen:before,
|
2014-11-13 23:31:22 +01:00
|
|
|
i.mce-i-dfw:before,
|
|
|
|
.qt-dfw:before {
|
2013-11-28 01:53:09 +01:00
|
|
|
content: '\f211';
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-wp_adv:before {
|
2013-11-28 01:53:09 +01:00
|
|
|
content: '\f212';
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
2013-12-30 02:54:11 +01:00
|
|
|
|
|
|
|
i.mce-i-underline:before {
|
2013-11-28 01:53:09 +01:00
|
|
|
content: '\f213';
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-alignjustify:before {
|
2013-11-28 01:53:09 +01:00
|
|
|
content: '\f214';
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
2014-07-19 00:15:15 +02:00
|
|
|
i.mce-i-forecolor:before,
|
|
|
|
i.mce-i-backcolor:before {
|
2013-11-28 01:53:09 +01:00
|
|
|
content: '\f215';
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-pastetext:before {
|
2013-11-28 01:53:09 +01:00
|
|
|
content: '\f217';
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-removeformat:before {
|
2013-11-28 01:53:09 +01:00
|
|
|
content: '\f218';
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-charmap:before {
|
2013-11-28 01:53:09 +01:00
|
|
|
content: '\f220';
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-outdent:before {
|
2013-11-28 01:53:09 +01:00
|
|
|
content: '\f221';
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-indent:before {
|
2013-11-28 01:53:09 +01:00
|
|
|
content: '\f222';
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-undo:before {
|
2013-11-28 01:53:09 +01:00
|
|
|
content: '\f171';
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-redo:before {
|
2013-11-28 01:53:09 +01:00
|
|
|
content: '\f172';
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-help:before,
|
|
|
|
i.mce-i-wp_help:before {
|
2013-11-28 01:53:09 +01:00
|
|
|
content: '\f223';
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-wp-media-library:before {
|
2013-11-17 17:18:11 +01:00
|
|
|
content: '\f104';
|
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-ltr:before {
|
2013-11-17 17:18:11 +01:00
|
|
|
content: '\f320';
|
|
|
|
}
|
|
|
|
|
2014-01-27 16:06:32 +01:00
|
|
|
i.mce-i-wp_page:before {
|
|
|
|
content: '\f105';
|
|
|
|
}
|
|
|
|
|
2014-03-27 20:19:14 +01:00
|
|
|
i.mce-i-hr:before {
|
|
|
|
content: '\f460';
|
|
|
|
}
|
|
|
|
|
2014-02-18 07:32:14 +01:00
|
|
|
.mce-close:before {
|
|
|
|
content: '\f158';
|
|
|
|
}
|
|
|
|
|
2014-03-14 23:43:16 +01:00
|
|
|
.mce-i-wp_code:before {
|
2014-07-10 00:06:15 +02:00
|
|
|
content: '\f475';
|
2014-03-14 23:43:16 +01:00
|
|
|
}
|
|
|
|
|
2015-01-11 21:30:26 +01:00
|
|
|
/* RTL button icons */
|
|
|
|
.rtl i.mce-i-outdent:before {
|
|
|
|
content: '\f222';
|
|
|
|
}
|
|
|
|
|
|
|
|
.rtl i.mce-i-indent:before {
|
|
|
|
content: '\f221';
|
|
|
|
}
|
|
|
|
|
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
|
|
|
/* Editors */
|
2013-11-17 17:18:11 +01:00
|
|
|
.wp-editor-wrap {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2014-08-24 07:11:16 +02:00
|
|
|
.wp-editor-tools {
|
2013-11-17 17:18:11 +01:00
|
|
|
position: relative;
|
2014-08-24 07:11:16 +02:00
|
|
|
z-index: 1;
|
2014-07-10 00:06:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.wp-editor-tools:after {
|
|
|
|
clear: both;
|
|
|
|
content: '';
|
|
|
|
display: table;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
2013-11-24 22:47:10 +01:00
|
|
|
.wp-editor-container {
|
2013-11-17 17:18:11 +01:00
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-editor-area {
|
|
|
|
font-family: Consolas, Monaco, monospace;
|
|
|
|
font-size: 13px;
|
|
|
|
padding: 10px;
|
|
|
|
margin: 1px 0 0;
|
|
|
|
line-height: 150%;
|
|
|
|
border: 0 none;
|
|
|
|
outline: none;
|
|
|
|
display: block;
|
|
|
|
resize: vertical;
|
|
|
|
-webkit-box-sizing: border-box;
|
2014-02-13 09:30:17 +01:00
|
|
|
-moz-box-sizing: border-box;
|
2013-11-17 17:18:11 +01:00
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2014-09-27 13:10:16 +02:00
|
|
|
.rtl .wp-editor-area {
|
|
|
|
font-family: Tahoma, Monaco, monospace;
|
|
|
|
}
|
|
|
|
|
|
|
|
.locale-he-il .wp-editor-area {
|
|
|
|
font-family: Arial, Monaco, monospace;
|
|
|
|
}
|
|
|
|
|
2013-11-17 17:18:11 +01:00
|
|
|
.wp-editor-container textarea.wp-editor-area {
|
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
-webkit-box-shadow: none;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
2013-11-22 03:23:09 +01:00
|
|
|
.wp-editor-tabs {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
2013-11-17 17:18:11 +01:00
|
|
|
.wp-switch-editor {
|
2014-10-24 03:21:18 +02:00
|
|
|
float: right;
|
2014-10-28 21:48:24 +01:00
|
|
|
-webkit-box-sizing: content-box;
|
|
|
|
-moz-box-sizing: content-box;
|
2014-10-24 03:21:18 +02:00
|
|
|
box-sizing: content-box;
|
|
|
|
position: relative;
|
|
|
|
top: 1px;
|
2013-11-17 17:18:11 +01:00
|
|
|
background: #ebebeb;
|
|
|
|
color: #777;
|
|
|
|
cursor: pointer;
|
|
|
|
font: 13px/19px "Open Sans", sans-serif;
|
2014-10-24 03:21:18 +02:00
|
|
|
height: 20px;
|
2013-11-17 17:18:11 +01:00
|
|
|
margin: 5px 5px 0 0;
|
|
|
|
padding: 3px 8px 4px;
|
2014-10-24 03:21:18 +02:00
|
|
|
border: 1px solid #e5e5e5;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
2014-10-24 03:21:18 +02:00
|
|
|
.wp-switch-editor:focus {
|
|
|
|
-webkit-box-shadow:
|
|
|
|
0 0 0 1px #5b9dd9,
|
|
|
|
0 0 2px 1px rgba(30, 140, 190, .8);
|
|
|
|
box-shadow:
|
|
|
|
0 0 0 1px #5b9dd9,
|
|
|
|
0 0 2px 1px rgba(30, 140, 190, .8);
|
|
|
|
outline: none;
|
|
|
|
color: #222;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
2014-10-24 03:21:18 +02:00
|
|
|
.wp-switch-editor:active,
|
|
|
|
.html-active .switch-html:focus,
|
|
|
|
.tmce-active .switch-tmce:focus {
|
|
|
|
-webkit-box-shadow: none;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-switch-editor:active {
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
-webkit-box-shadow: none;
|
|
|
|
box-shadow: none;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.js .tmce-active .wp-editor-area {
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tmce-active .quicktags-toolbar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tmce-active .switch-tmce,
|
|
|
|
.html-active .switch-html {
|
|
|
|
background: #f5f5f5;
|
|
|
|
color: #555;
|
2014-10-24 03:21:18 +02:00
|
|
|
border-bottom-color: #f5f5f5;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
2013-11-22 03:23:09 +01:00
|
|
|
.wp-media-buttons {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2013-11-17 17:18:11 +01:00
|
|
|
.wp-media-buttons .button {
|
|
|
|
margin-left: 5px;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
padding-right: 7px;
|
|
|
|
padding-left: 7px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-media-buttons .button:active {
|
|
|
|
position: relative;
|
|
|
|
top: 1px;
|
|
|
|
margin-top: -1px;
|
|
|
|
margin-bottom: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-media-buttons .insert-media {
|
|
|
|
padding-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-media-buttons a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: #464646;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-media-buttons img {
|
|
|
|
padding: 0 4px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-media-buttons span.wp-media-buttons-icon {
|
|
|
|
display: inline-block;
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
vertical-align: text-top;
|
|
|
|
margin: 0 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-media-buttons .add_media span.wp-media-buttons-icon {
|
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-media-buttons .add_media span.wp-media-buttons-icon:before {
|
|
|
|
font: normal 18px/1 'dashicons';
|
|
|
|
speak: none;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-media-buttons .add_media span.wp-media-buttons-icon:before {
|
|
|
|
content: '\f104';
|
|
|
|
}
|
|
|
|
|
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
|
|
|
/* Quicktags */
|
2013-11-17 17:18:11 +01:00
|
|
|
.quicktags-toolbar {
|
2014-04-07 03:10:15 +02:00
|
|
|
padding: 3px;
|
2014-03-30 00:58:14 +01:00
|
|
|
position: relative;
|
2014-04-07 03:10:15 +02:00
|
|
|
border-bottom: 1px solid #dedede;
|
|
|
|
background: #f5f5f5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.has-dfw .quicktags-toolbar {
|
|
|
|
padding-left: 35px;
|
2014-02-02 23:38:12 +01:00
|
|
|
}
|
|
|
|
|
2014-03-30 00:58:14 +01:00
|
|
|
.wp-core-ui .quicktags-toolbar input.button.button-small {
|
|
|
|
margin: 2px;
|
2014-02-02 23:38:12 +01:00
|
|
|
}
|
|
|
|
|
2013-11-17 17:18:11 +01:00
|
|
|
.quicktags-toolbar input[value="link"] {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.quicktags-toolbar input[value="del"] {
|
|
|
|
text-decoration: line-through;
|
|
|
|
}
|
|
|
|
|
|
|
|
.quicktags-toolbar input[value="i"] {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
.quicktags-toolbar input[value="b"] {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2014-11-13 23:31:22 +01:00
|
|
|
.mce-toolbar .mce-btn-group .mce-btn.mce-wp-dfw,
|
|
|
|
.qt-dfw {
|
2014-03-30 00:58:14 +01:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2014-08-08 05:46:17 +02:00
|
|
|
margin: 5px 0 0 5px;
|
2014-03-30 00:58:14 +01:00
|
|
|
}
|
|
|
|
|
2014-11-26 03:50:24 +01:00
|
|
|
.qt-fullscreen {
|
|
|
|
position: static;
|
|
|
|
margin: 2px;
|
|
|
|
}
|
|
|
|
|
2014-03-30 00:58:14 +01:00
|
|
|
@media screen and ( max-width: 782px ) {
|
|
|
|
.mce-toolbar .mce-btn button,
|
2014-11-13 23:31:22 +01:00
|
|
|
.qt-dfw {
|
2014-08-08 05:46:17 +02:00
|
|
|
padding: 6px 7px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-fullscreen-buttons .mce-btn,
|
|
|
|
.mce-toolbar .mce-btn-group .mce-btn {
|
|
|
|
margin: 1px;
|
2014-03-30 00:58:14 +01:00
|
|
|
}
|
|
|
|
|
2014-11-13 23:31:22 +01:00
|
|
|
.qt-dfw {
|
2014-08-08 05:46:17 +02:00
|
|
|
width: 36px;
|
2014-03-30 00:58:14 +01:00
|
|
|
height: 34px;
|
|
|
|
}
|
|
|
|
|
2014-11-13 23:31:22 +01:00
|
|
|
.mce-toolbar .mce-btn-group .mce-btn.mce-wp-dfw {
|
2014-08-08 05:46:17 +02:00
|
|
|
margin: 4px 0 0 4px;
|
|
|
|
}
|
|
|
|
|
2014-03-30 00:58:14 +01:00
|
|
|
.mce-toolbar .mce-colorbutton .mce-preview {
|
2014-08-08 05:46:17 +02:00
|
|
|
right: 8px;
|
|
|
|
bottom: 6px;
|
2014-03-30 00:58:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mce-window .mce-btn {
|
|
|
|
padding: 2px 0;
|
|
|
|
}
|
|
|
|
|
2014-08-08 05:46:17 +02:00
|
|
|
.has-dfw div.mce-toolbar-grp .mce-toolbar.mce-first,
|
|
|
|
.has-dfw .quicktags-toolbar {
|
|
|
|
padding-left: 40px;
|
2014-03-30 00:58:14 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and ( min-width: 782px ) {
|
|
|
|
.wp-core-ui .quicktags-toolbar input.button.button-small {
|
|
|
|
/* .button-small is normaly 11px, but a bit too small for these buttons. */
|
|
|
|
font-size: 12px;
|
|
|
|
height: 26px;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-17 17:18:11 +01:00
|
|
|
#wp_editbtns,
|
|
|
|
#wp_gallerybtns {
|
|
|
|
padding: 2px;
|
|
|
|
position: absolute;
|
|
|
|
display: none;
|
2014-03-08 01:41:16 +01:00
|
|
|
z-index: 100020;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#wp_editimgbtn,
|
|
|
|
#wp_delimgbtn,
|
|
|
|
#wp_editgallery,
|
|
|
|
#wp_delgallery {
|
|
|
|
border-color: #999;
|
|
|
|
background-color: #eee;
|
|
|
|
margin: 2px;
|
|
|
|
padding: 2px;
|
|
|
|
border-width: 1px;
|
|
|
|
border-style: solid;
|
|
|
|
-webkit-border-radius: 3px;
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp_editimgbtn:hover,
|
|
|
|
#wp_delimgbtn:hover,
|
|
|
|
#wp_editgallery:hover,
|
|
|
|
#wp_delgallery:hover {
|
|
|
|
border-color: #555;
|
|
|
|
background-color: #ccc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*------------------------------------------------------------------------------
|
|
|
|
wp-link
|
|
|
|
------------------------------------------------------------------------------*/
|
|
|
|
|
2014-03-11 01:04:14 +01:00
|
|
|
#wp-link-wrap {
|
|
|
|
display: none;
|
|
|
|
background-color: #fff;
|
2014-03-14 06:55:16 +01:00
|
|
|
-webkit-box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
|
|
|
|
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
|
|
|
|
width: 500px;
|
2014-03-11 04:36:14 +01:00
|
|
|
height: 250px;
|
2014-03-11 01:04:14 +01:00
|
|
|
overflow: hidden;
|
2014-03-14 06:55:16 +01:00
|
|
|
margin-right: -250px;
|
2014-03-11 04:36:14 +01:00
|
|
|
margin-top: -125px;
|
2014-03-11 01:04:14 +01:00
|
|
|
position: fixed;
|
2014-03-11 04:36:14 +01:00
|
|
|
top: 50%;
|
2014-03-11 01:04:14 +01:00
|
|
|
right: 50%;
|
|
|
|
z-index: 100105;
|
2014-03-27 20:17:15 +01:00
|
|
|
-webkit-transition: height 0.2s, margin-top 0.2s;
|
2014-03-14 06:55:16 +01:00
|
|
|
transition: height 0.2s, margin-top 0.2s;
|
2014-03-11 01:04:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link-backdrop {
|
|
|
|
display: none;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
min-height: 360px;
|
|
|
|
background: #000;
|
|
|
|
opacity: 0.7;
|
2014-03-14 06:55:16 +01:00
|
|
|
filter: alpha(opacity=70);
|
2014-03-11 01:04:14 +01:00
|
|
|
z-index: 100100;
|
|
|
|
}
|
|
|
|
|
2013-11-17 17:18:11 +01:00
|
|
|
#wp-link {
|
2014-03-11 01:04:14 +01:00
|
|
|
position: relative;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link-wrap.search-panel-visible {
|
2014-03-11 04:36:14 +01:00
|
|
|
height: 500px;
|
|
|
|
margin-top: -250px;
|
2014-03-11 01:04:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#link-modal-title {
|
|
|
|
background: #fcfcfc;
|
|
|
|
border-bottom: 1px solid #dfdfdf;
|
2014-03-11 03:36:14 +01:00
|
|
|
height: 36px;
|
2014-03-14 06:55:16 +01:00
|
|
|
font-size: 18px;
|
2014-03-11 01:04:14 +01:00
|
|
|
font-weight: 600;
|
2014-03-11 03:36:14 +01:00
|
|
|
line-height: 36px;
|
|
|
|
padding: 0 16px 0 36px;
|
2014-03-11 01:04:14 +01:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link-close {
|
|
|
|
color: #666;
|
|
|
|
padding: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2014-03-11 03:36:14 +01:00
|
|
|
width: 36px;
|
|
|
|
height: 36px;
|
2014-03-11 01:04:14 +01:00
|
|
|
text-align: center;
|
2014-07-29 05:16:17 +02:00
|
|
|
background: none;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
2014-03-11 01:04:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link-close:before {
|
2014-03-11 03:36:14 +01:00
|
|
|
font: normal 20px/36px 'dashicons';
|
2014-03-11 01:04:14 +01:00
|
|
|
vertical-align: top;
|
|
|
|
speak: none;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
2014-03-11 03:36:14 +01:00
|
|
|
width: 36px;
|
|
|
|
height: 36px;
|
2014-03-11 01:04:14 +01:00
|
|
|
content: '\f158';
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link-close:hover,
|
|
|
|
#wp-link-close:focus {
|
|
|
|
color: #2ea2cc;
|
|
|
|
}
|
|
|
|
|
2014-07-29 05:16:17 +02:00
|
|
|
#wp-link-close:focus {
|
|
|
|
outline: none;
|
|
|
|
-webkit-box-shadow:
|
|
|
|
0 0 0 1px #5b9dd9,
|
|
|
|
0 0 2px 1px rgba(30, 140, 190, .8);
|
|
|
|
box-shadow:
|
|
|
|
0 0 0 1px #5b9dd9,
|
|
|
|
0 0 2px 1px rgba(30, 140, 190, .8);
|
|
|
|
}
|
|
|
|
|
2014-03-11 01:04:14 +01:00
|
|
|
#link-selector {
|
2014-03-11 04:36:14 +01:00
|
|
|
padding: 0 16px 50px;
|
2014-03-11 01:04:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link-wrap.search-panel-visible #link-selector {
|
|
|
|
padding: 0 16px;
|
|
|
|
position: absolute;
|
2014-03-11 03:36:14 +01:00
|
|
|
top: 36px;
|
2014-03-11 01:04:14 +01:00
|
|
|
right: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 44px;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link ol,
|
|
|
|
#wp-link ul {
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2014-05-01 23:21:15 +02:00
|
|
|
#wp-link-search-toggle:after {
|
|
|
|
display: inline-block;
|
2014-03-11 01:04:14 +01:00
|
|
|
font: normal 20px/1 'dashicons';
|
|
|
|
vertical-align: top;
|
|
|
|
speak: none;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
content: '\f140';
|
|
|
|
}
|
|
|
|
|
2014-05-01 23:21:15 +02:00
|
|
|
.search-panel-visible #wp-link-search-toggle:after {
|
2014-03-11 01:04:14 +01:00
|
|
|
content: '\f142';
|
|
|
|
}
|
|
|
|
|
2013-11-17 17:18:11 +01:00
|
|
|
#wp-link input[type="text"] {
|
|
|
|
-webkit-box-sizing: border-box;
|
2014-02-13 09:30:17 +01:00
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link #link-options {
|
2014-03-14 06:55:16 +01:00
|
|
|
padding: 8px 0 12px;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link p.howto {
|
2014-03-11 01:04:14 +01:00
|
|
|
margin: 3px 0;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
2014-07-29 05:16:17 +02:00
|
|
|
#wp-link p.howto a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
2014-03-11 01:04:14 +01:00
|
|
|
#wp-link-search-toggle {
|
2013-11-17 17:18:11 +01:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link label input[type="text"] {
|
|
|
|
margin-top: 5px;
|
2014-03-14 06:55:16 +01:00
|
|
|
width: 70%;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link #link-options label span,
|
|
|
|
#wp-link #search-panel label span.search-label {
|
|
|
|
display: inline-block;
|
|
|
|
width: 80px;
|
|
|
|
text-align: left;
|
|
|
|
padding-left: 5px;
|
2014-03-11 01:04:14 +01:00
|
|
|
max-width: 24%;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link .link-search-field {
|
|
|
|
float: right;
|
2014-03-11 01:04:14 +01:00
|
|
|
width: 250px;
|
|
|
|
max-width: 70%;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link .link-search-wrapper {
|
2014-03-11 01:04:14 +01:00
|
|
|
margin: 5px 0 9px;
|
2013-11-17 17:18:11 +01:00
|
|
|
display: block;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link .link-search-wrapper span {
|
|
|
|
float: right;
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link .link-search-wrapper .spinner {
|
|
|
|
display: none;
|
|
|
|
vertical-align: text-bottom;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link .link-target {
|
|
|
|
padding: 3px 0 0;
|
2014-03-14 06:55:16 +01:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link .link-target label {
|
|
|
|
max-width: 70%;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link .query-results {
|
|
|
|
border: 1px #dfdfdf solid;
|
2014-03-11 01:04:14 +01:00
|
|
|
margin: 0;
|
2013-11-17 17:18:11 +01:00
|
|
|
background: #fff;
|
|
|
|
overflow: auto;
|
2014-03-11 01:04:14 +01:00
|
|
|
position: absolute;
|
|
|
|
right: 16px;
|
|
|
|
left: 16px;
|
|
|
|
bottom: 16px;
|
|
|
|
top: 205px;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
2014-07-29 05:16:17 +02:00
|
|
|
#wp-link li {
|
2013-11-17 17:18:11 +01:00
|
|
|
clear: both;
|
|
|
|
margin-bottom: 0;
|
|
|
|
border-bottom: 1px solid #f1f1f1;
|
|
|
|
color: #333;
|
2014-07-29 05:16:17 +02:00
|
|
|
padding: 4px 10px 4px 6px;
|
2013-11-17 17:18:11 +01:00
|
|
|
cursor: pointer;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2014-07-29 05:16:17 +02:00
|
|
|
#wp-link .query-notice {
|
|
|
|
padding: 0;
|
|
|
|
border-bottom: 1px solid #dfdfdf;
|
|
|
|
background-color: #f7fcfe;
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link .query-notice .query-notice-default,
|
|
|
|
#wp-link .query-notice .query-notice-hint {
|
|
|
|
display: block;
|
|
|
|
padding: 6px;
|
|
|
|
border-right: 4px solid #2ea2cc;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link .unselectable.no-matches-found {
|
|
|
|
padding: 0;
|
|
|
|
border-bottom: 1px solid #dfdfdf;
|
|
|
|
background-color: #fef7f1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link .no-matches-found .item-title {
|
|
|
|
display: block;
|
|
|
|
padding: 6px;
|
|
|
|
border-right: 4px solid #d54e21;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link .query-results em {
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
|
2013-11-17 17:18:11 +01:00
|
|
|
#wp-link li:hover {
|
|
|
|
background: #eaf2fa;
|
|
|
|
color: #151515;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link li.unselectable {
|
|
|
|
border-bottom: 1px solid #dfdfdf;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link li.unselectable:hover {
|
|
|
|
background: #fff;
|
|
|
|
cursor: auto;
|
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link li.selected {
|
|
|
|
background: #ddd;
|
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link li.selected .item-title {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2014-03-11 01:04:14 +01:00
|
|
|
#wp-link li:last-child {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2013-11-17 17:18:11 +01:00
|
|
|
#wp-link .item-title {
|
|
|
|
display: inline-block;
|
|
|
|
width: 80%;
|
2014-03-27 20:17:15 +01:00
|
|
|
width: -webkit-calc(100% - 68px);
|
2014-03-14 06:55:16 +01:00
|
|
|
width: calc(100% - 68px);
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link .item-info {
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: #666;
|
|
|
|
font-size: 11px;
|
|
|
|
position: absolute;
|
|
|
|
left: 5px;
|
2014-03-14 06:55:16 +01:00
|
|
|
top: 5px;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
2014-03-11 01:04:14 +01:00
|
|
|
#wp-link #search-results,
|
|
|
|
#wp-link #search-panel {
|
2013-11-17 17:18:11 +01:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2014-03-11 01:04:14 +01:00
|
|
|
#wp-link-wrap.search-panel-visible #search-panel {
|
|
|
|
display: block;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link .river-waiting {
|
|
|
|
display: none;
|
|
|
|
padding: 10px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link .river-waiting .spinner {
|
|
|
|
margin: 0 auto;
|
|
|
|
display: block;
|
2014-04-02 04:27:16 +02:00
|
|
|
float: none;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link .submitbox {
|
2014-03-11 01:04:14 +01:00
|
|
|
padding: 8px 16px;
|
|
|
|
background: #fcfcfc;
|
|
|
|
border-top: 1px solid #dfdfdf;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
2014-03-12 04:07:15 +01:00
|
|
|
#wp-link-cancel {
|
|
|
|
line-height: 25px;
|
2014-07-29 05:16:17 +02:00
|
|
|
float: right;
|
2014-03-11 03:36:14 +01:00
|
|
|
}
|
|
|
|
|
2013-11-17 17:18:11 +01:00
|
|
|
#wp-link-update {
|
|
|
|
line-height: 23px;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
2014-03-11 01:04:14 +01:00
|
|
|
#wp-link-submit {
|
2013-11-17 17:18:11 +01:00
|
|
|
float: left;
|
2014-03-11 01:04:14 +01:00
|
|
|
margin-bottom: 0;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
2014-03-12 04:07:15 +01:00
|
|
|
@media screen and ( max-width: 782px ) {
|
|
|
|
#wp-link-wrap {
|
2014-03-14 06:55:16 +01:00
|
|
|
height: 280px;
|
|
|
|
margin-top: -140px;
|
2014-03-12 04:07:15 +01:00
|
|
|
}
|
2013-11-17 17:18:11 +01:00
|
|
|
|
2014-03-12 04:07:15 +01:00
|
|
|
#wp-link-wrap.search-panel-visible .query-results {
|
|
|
|
top: 235px;
|
|
|
|
}
|
2014-03-28 05:40:14 +01:00
|
|
|
|
2014-03-14 06:55:16 +01:00
|
|
|
#link-selector {
|
|
|
|
padding: 0 16px 60px;
|
|
|
|
}
|
2014-03-28 05:40:14 +01:00
|
|
|
|
2014-03-14 06:55:16 +01:00
|
|
|
#wp-link-wrap.search-panel-visible #link-selector {
|
|
|
|
bottom: 52px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link-cancel {
|
|
|
|
line-height: 32px;
|
|
|
|
}
|
2014-03-12 04:07:15 +01:00
|
|
|
}
|
|
|
|
|
2014-03-14 06:55:16 +01:00
|
|
|
@media screen and ( max-width: 520px ) {
|
2014-03-12 04:07:15 +01:00
|
|
|
#wp-link-wrap {
|
2014-03-11 01:04:14 +01:00
|
|
|
width: auto;
|
2014-03-12 04:07:15 +01:00
|
|
|
margin-right: 0;
|
2014-03-11 01:04:14 +01:00
|
|
|
right: 10px;
|
|
|
|
left: 10px;
|
2014-03-14 06:55:16 +01:00
|
|
|
max-width: 500px;
|
2014-03-11 01:04:14 +01:00
|
|
|
}
|
2014-03-12 04:07:15 +01:00
|
|
|
}
|
2013-12-02 18:59:10 +01:00
|
|
|
|
2014-03-12 04:07:15 +01:00
|
|
|
@media screen and ( max-height: 520px ) {
|
2014-03-14 06:55:16 +01:00
|
|
|
#wp-link-wrap {
|
2014-03-27 20:17:15 +01:00
|
|
|
-webkit-transition: none;
|
2014-03-14 06:55:16 +01:00
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
|
2014-03-12 04:07:15 +01:00
|
|
|
#wp-link-wrap.search-panel-visible {
|
|
|
|
height: auto;
|
|
|
|
margin-top: 0;
|
|
|
|
top: 10px;
|
|
|
|
bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-panel-visible #link-selector {
|
2014-03-11 01:04:14 +01:00
|
|
|
overflow: auto;
|
|
|
|
}
|
2013-12-02 18:59:10 +01:00
|
|
|
|
2014-03-12 04:07:15 +01:00
|
|
|
.search-panel-visible #search-panel .query-results {
|
|
|
|
position: static;
|
2014-03-11 01:04:14 +01:00
|
|
|
}
|
2014-03-12 04:07:15 +01:00
|
|
|
}
|
2013-11-17 17:18:11 +01:00
|
|
|
|
2014-03-12 04:07:15 +01:00
|
|
|
@media screen and ( max-height: 290px ) {
|
|
|
|
#wp-link-wrap {
|
|
|
|
height: auto;
|
|
|
|
margin-top: 0;
|
|
|
|
top: 10px;
|
|
|
|
bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#link-selector {
|
|
|
|
overflow: auto;
|
2014-03-27 20:17:15 +01:00
|
|
|
height: -webkit-calc(100% - 92px);
|
2014-03-12 04:07:15 +01:00
|
|
|
height: calc(100% - 92px);
|
2014-03-14 06:55:16 +01:00
|
|
|
padding-bottom: 2px;
|
2014-03-11 01:04:14 +01:00
|
|
|
}
|
2013-11-17 17:18:11 +01:00
|
|
|
|
2014-03-11 01:04:14 +01:00
|
|
|
#search-panel .query-results {
|
|
|
|
position: static;
|
|
|
|
}
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
2014-03-11 01:04:14 +01:00
|
|
|
/* Old TinyMCE 3.x modal */
|
|
|
|
/*
|
2013-11-17 17:18:11 +01:00
|
|
|
.clearlooks2 .mceTop {
|
|
|
|
border-bottom: 1px solid #ccc;
|
|
|
|
}
|
|
|
|
|
|
|
|
.clearlooks2 .mceTop span {
|
|
|
|
font: 13px/24px "Open Sans", sans-serif;
|
|
|
|
color: #e5e5e5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.clearlooks2 .mceTop .mceLeft {
|
|
|
|
background: #444444;
|
|
|
|
border-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.clearlooks2 .mceTop .mceRight {
|
|
|
|
background: #444444;
|
|
|
|
border-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.clearlooks2 .mceMiddle {
|
|
|
|
clip: rect(24px auto auto auto);
|
|
|
|
}
|
|
|
|
|
|
|
|
.clearlooks2 .mceMiddle .mceLeft {
|
|
|
|
background: #f1f1f1;
|
|
|
|
border-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.clearlooks2 .mceMiddle .mceRight {
|
|
|
|
background: #f1f1f1;
|
|
|
|
border-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.clearlooks2 .mceBottom {
|
|
|
|
background: #f1f1f1;
|
|
|
|
border-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.clearlooks2 .mceBottom .mceLeft {
|
|
|
|
background: #f1f1f1;
|
|
|
|
border-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.clearlooks2 .mceBottom .mceCenter {
|
|
|
|
background: #f1f1f1;
|
|
|
|
border-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.clearlooks2 .mceBottom .mceRight {
|
|
|
|
background: #f1f1f1;
|
|
|
|
border-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.clearlooks2 .mceClose,
|
|
|
|
.clearlooks2 .mceFocus .mceClose,
|
|
|
|
.clearlooks2 .mceFocus .mceClose:hover {
|
|
|
|
background-image: none;
|
|
|
|
}
|
|
|
|
.clearlooks2 .mceClose:before {
|
|
|
|
content: '\f158';
|
|
|
|
font: normal 20px/1 'dashicons';
|
|
|
|
speak: none;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
2013-12-02 18:59:10 +01:00
|
|
|
color: #999;
|
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
|
|
|
padding-left: 12px;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
2014-02-06 07:25:18 +01:00
|
|
|
|
|
|
|
/* from colors.css
|
|
|
|
.clearlooks2 {
|
|
|
|
box-shadow: 0 5px 15px rgba(0,0,0,0.7);
|
|
|
|
}
|
|
|
|
|
|
|
|
.clearlooks2 .mceMiddle span,
|
|
|
|
.clearlooks2 .mceMiddle .mceLeft,
|
|
|
|
.clearlooks2 .mceMiddle .mceRight,
|
|
|
|
.clearlooks2 .mceBottom,
|
|
|
|
.clearlooks2 .mceBottom .mceLeft,
|
|
|
|
.clearlooks2 .mceBottom .mceCenter,
|
|
|
|
.clearlooks2 .mceBottom .mceRight {
|
|
|
|
background-color: #fcfcfc;
|
|
|
|
}
|
|
|
|
|
|
|
|
.clearlooks2 .mceTop span,
|
|
|
|
.clearlooks2 .mceFocus .mceTop span {
|
|
|
|
color: #222;
|
|
|
|
}
|
|
|
|
|
|
|
|
.clearlooks2 .mceClose:before {
|
|
|
|
color: #999;
|
|
|
|
}
|
|
|
|
|
|
|
|
.clearlooks2 .mceClose:hover:before {
|
|
|
|
color: #2ea2cc;
|
|
|
|
}
|
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-12-16 11:07:23 +01:00
|
|
|
/* Distraction-Free Writing mode
|
2013-11-17 17:18:11 +01:00
|
|
|
* =Overlay Styles
|
|
|
|
-------------------------------------------------------------- */
|
|
|
|
.fullscreen-overlay {
|
2014-03-08 01:41:16 +01:00
|
|
|
z-index: 100005;
|
2013-11-17 17:18:11 +01:00
|
|
|
display: none;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
2014-02-13 09:30:17 +01:00
|
|
|
-webkit-filter: inherit;
|
2013-11-17 17:18:11 +01:00
|
|
|
filter: inherit;
|
|
|
|
}
|
|
|
|
|
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-fullscreen-active .fullscreen-overlay,
|
|
|
|
.wp-fullscreen-active #wp-fullscreen-body {
|
2013-11-17 17:18:11 +01:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fullscreen-fader {
|
|
|
|
z-index: 200000;
|
|
|
|
}
|
|
|
|
|
2014-04-14 10:15:16 +02:00
|
|
|
.wp-fullscreen-active .fullscreen-fader,
|
|
|
|
.wp-core-ui.wp-fullscreen-active .postbox-container {
|
2013-11-17 17:18:11 +01:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* =Overlay Body
|
|
|
|
-------------------------------------------------------------- */
|
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-30 00:58:14 +01:00
|
|
|
#wp-fullscreen-body,
|
|
|
|
.mce-fullscreen {
|
2014-03-08 01:41:16 +01:00
|
|
|
z-index: 100010;
|
2014-03-30 00:58:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#wp-fullscreen-body {
|
2013-11-17 17:18:11 +01:00
|
|
|
display: none;
|
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-fullscreen-wrap {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2013-11-17 17:18:11 +01:00
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
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
|
|
|
left: 0;
|
|
|
|
bottom: 30px;
|
|
|
|
top: 60px;
|
2014-03-08 01:41:16 +01:00
|
|
|
z-index: 100015;
|
2013-11-17 17:18:11 +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
|
|
|
.wp-fullscreen-wrap .wp-editor-container,
|
2014-03-28 18:38:15 +01:00
|
|
|
.wp-fullscreen-title,
|
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-fullscreen-central-toolbar {
|
2014-03-28 18:38:15 +01:00
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
2014-04-08 09:49:14 +02:00
|
|
|
max-width: 100%;
|
2013-11-17 17:18:11 +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
|
|
|
.wp-fullscreen-active .wp-editor-tools,
|
|
|
|
.wp-fullscreen-active .quicktags-toolbar,
|
|
|
|
.wp-fullscreen-active .mce-toolbar-grp,
|
|
|
|
.wp-fullscreen-active .mce-statusbar {
|
|
|
|
display: none;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
2014-04-08 09:49:14 +02:00
|
|
|
#wp-fullscreen-statusbar {
|
|
|
|
position: fixed;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
height: 30px;
|
|
|
|
z-index: 100020;
|
|
|
|
background: #fff;
|
2014-04-08 10:29:14 +02:00
|
|
|
-webkit-transition: height 0.2s;
|
|
|
|
transition: height 0.2s;
|
2014-04-08 09:49:14 +02: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
|
|
|
#wp-fullscreen-status {
|
2014-04-08 09:49:14 +02:00
|
|
|
margin: 0 auto;
|
|
|
|
padding: 0;
|
2013-11-17 17:18:11 +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
|
|
|
.wp-fullscreen-active .wp-fullscreen-title,
|
|
|
|
.wp-fullscreen-active .wp-fullscreen-title:focus,
|
|
|
|
.wp-fullscreen-active .wp-editor-container {
|
2013-11-17 17:18:11 +01:00
|
|
|
-webkit-border-radius: 0;
|
|
|
|
border-radius: 0;
|
|
|
|
border: 1px dashed transparent;
|
|
|
|
background: transparent;
|
|
|
|
-webkit-box-shadow: none;
|
|
|
|
box-shadow: none;
|
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-transition: border-color 0.4s;
|
|
|
|
transition: border-color 0.4s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-fullscreen-active .wp-editor-container {
|
2014-04-14 10:15:16 +02:00
|
|
|
margin: 0 auto 40px;
|
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-fullscreen-active .wp-fullscreen-title {
|
|
|
|
font-size: 1.7em;
|
|
|
|
line-height: 100%;
|
|
|
|
outline: medium none;
|
|
|
|
padding: 3px 7px;
|
|
|
|
margin: 10px auto 30px;
|
|
|
|
display: block;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#wp-fullscreen-tagline {
|
2014-04-08 09:49:14 +02:00
|
|
|
color: #888;
|
2013-11-17 17:18:11 +01:00
|
|
|
font-size: 18px;
|
|
|
|
float: left;
|
2014-04-08 09:49:14 +02:00
|
|
|
padding: 4px 0 0;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* =Top bar
|
|
|
|
-------------------------------------------------------------- */
|
|
|
|
#fullscreen-topbar {
|
|
|
|
background: #f5f5f5;
|
2014-03-30 00:58:14 +01:00
|
|
|
border-bottom: 1px solid #dedede;
|
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
|
|
|
height: 45px;
|
2013-11-17 17:18:11 +01:00
|
|
|
position: fixed;
|
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
|
|
|
right: 0;
|
|
|
|
left: 0;
|
2013-11-17 17:18:11 +01:00
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
2014-03-08 01:41:16 +01:00
|
|
|
z-index: 100020;
|
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-transition: opacity 0.4s;
|
|
|
|
transition: opacity 0.4s;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#wp-fullscreen-toolbar {
|
|
|
|
padding: 6px 10px 0;
|
|
|
|
clear: both;
|
|
|
|
max-width: 1100px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-fullscreen-mode-bar,
|
|
|
|
#wp-fullscreen-button-bar,
|
2014-04-08 09:49:14 +02:00
|
|
|
#wp-fullscreen-close {
|
2013-11-17 17:18:11 +01:00
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2014-04-08 09:49:14 +02:00
|
|
|
#wp-fullscreen-count,
|
|
|
|
#wp-fullscreen-tagline {
|
|
|
|
display: inline-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
|
|
|
#wp-fullscreen-button-bar {
|
|
|
|
margin-top: 2px;
|
|
|
|
}
|
|
|
|
|
2013-11-17 17:18:11 +01:00
|
|
|
#wp-fullscreen-save {
|
|
|
|
float: left;
|
2014-04-08 09:49:14 +02:00
|
|
|
padding: 2px 0 0;
|
|
|
|
min-width: 95px;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#wp-fullscreen-count,
|
|
|
|
#wp-fullscreen-close {
|
2014-04-08 09:49:14 +02:00
|
|
|
padding: 5px 0 0;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#wp-fullscreen-central-toolbar {
|
|
|
|
margin: auto;
|
|
|
|
padding: 0;
|
2014-04-14 10:15:16 +02:00
|
|
|
min-width: 620px;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#wp-fullscreen-buttons > div {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-fullscreen-mode-bar {
|
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
|
|
|
padding: 3px 0 0 14px;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#wp-fullscreen-buttons .hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-fullscreen-buttons .disabled {
|
|
|
|
opacity: 0.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
|
|
|
#wp-fullscreen-buttons .mce-btn button {
|
|
|
|
margin: 0;
|
|
|
|
outline: 0 none;
|
|
|
|
border: 0 none;
|
|
|
|
white-space: nowrap;
|
|
|
|
width: auto;
|
|
|
|
background: none;
|
|
|
|
color: #333333;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 20px;
|
|
|
|
overflow: visible;
|
|
|
|
text-align: center;
|
2014-02-13 09:30:17 +01:00
|
|
|
-webkit-box-sizing: border-box;
|
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
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2013-11-17 17:18:11 +01:00
|
|
|
.wp-html-mode #wp-fullscreen-buttons div {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-html-mode #wp-fullscreen-buttons div.wp-fullscreen-both {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-fullscreen-save img {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-fullscreen-save span {
|
|
|
|
display: none;
|
2014-04-08 09:49:14 +02:00
|
|
|
margin: 5px 6px 0;
|
|
|
|
float: right;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* =Thickbox Adjustments
|
|
|
|
-------------------------------------------------------------- */
|
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-fullscreen-active #TB_overlay {
|
2014-03-08 01:41:16 +01:00
|
|
|
z-index: 100050;
|
2013-11-17 17:18:11 +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
|
|
|
.wp-fullscreen-active #TB_window {
|
2014-03-08 01:41:16 +01:00
|
|
|
z-index: 100051;
|
2013-11-17 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Colors */
|
|
|
|
.fullscreen-overlay {
|
|
|
|
background: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* =CSS 3 transitions
|
|
|
|
-------------------------------------------------------------- */
|
|
|
|
|
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-fullscreen-active #fullscreen-topbar {
|
|
|
|
-webkit-transition-duration: 0.8s;
|
|
|
|
transition-duration: 0.8s;
|
|
|
|
opacity: 0;
|
|
|
|
filter: alpha(opacity=0);
|
|
|
|
}
|
|
|
|
|
2014-04-08 09:49:14 +02:00
|
|
|
.wp-fullscreen-active #wp-fullscreen-statusbar {
|
|
|
|
height: 0;
|
|
|
|
}
|
|
|
|
|
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-fullscreen-active.wp-dfw-show-ui #fullscreen-topbar {
|
|
|
|
-webkit-transition-duration: 0.4s;
|
|
|
|
transition-duration: 0.4s;
|
|
|
|
opacity: 1;
|
|
|
|
filter: alpha(opacity=100);
|
|
|
|
}
|
|
|
|
|
2014-04-08 09:49:14 +02:00
|
|
|
.wp-fullscreen-active.wp-dfw-show-ui #wp-fullscreen-statusbar {
|
2014-04-14 10:15:16 +02:00
|
|
|
height: 29px;
|
|
|
|
background: #f8f8f8;
|
|
|
|
border-top: 1px solid #eee;
|
2014-04-08 09:49:14 +02: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
|
|
|
.wp-fullscreen-active .wp-fullscreen-title,
|
|
|
|
.wp-fullscreen-active .wp-editor-container {
|
|
|
|
-webkit-transition-duration: 0.8s;
|
|
|
|
transition-duration: 0.8s;
|
|
|
|
border-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-fullscreen-active.wp-dfw-show-ui .wp-fullscreen-title,
|
|
|
|
.wp-fullscreen-active.wp-dfw-show-ui .wp-editor-container {
|
|
|
|
-webkit-transition-duration: 0.4s;
|
|
|
|
transition-duration: 0.4s;
|
2014-08-18 20:23:16 +02:00
|
|
|
border-color: #ccc;
|
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-11-17 17:18:11 +01:00
|
|
|
.fade-1000,
|
|
|
|
.fade-600,
|
|
|
|
.fade-400,
|
|
|
|
.fade-300 {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transition-property: opacity;
|
|
|
|
transition-property: opacity;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fade-1000 {
|
|
|
|
-webkit-transition-duration: 1s;
|
|
|
|
transition-duration: 1s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fade-600 {
|
|
|
|
-webkit-transition-duration: 0.6s;
|
|
|
|
transition-duration: 0.6s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fade-400 {
|
|
|
|
-webkit-transition-duration: 0.4s;
|
|
|
|
transition-duration: 0.4s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fade-300 {
|
|
|
|
-webkit-transition-duration: 0.3s;
|
|
|
|
transition-duration: 0.3s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fade-trigger {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2014-03-28 05:40:14 +01:00
|
|
|
/* DFW on touch screen devices */
|
|
|
|
.wp-dfw-touch #fullscreen-topbar {
|
|
|
|
position: absolute;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-dfw-touch .wp-fullscreen-wrap .wp-editor-container,
|
|
|
|
.wp-dfw-touch .wp-fullscreen-title {
|
|
|
|
max-width: 700px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-fullscreen-active.wp-dfw-touch .wp-fullscreen-title,
|
|
|
|
.wp-fullscreen-active.wp-dfw-touch .wp-editor-container {
|
2014-08-18 20:23:16 +02:00
|
|
|
border-color: #ccc;
|
2014-03-28 05:40:14 +01:00
|
|
|
}
|
|
|
|
|
2014-04-08 09:49:14 +02:00
|
|
|
.wp-dfw-touch #wp-fullscreen-statusbar {
|
|
|
|
height: 30px;
|
2014-03-28 05:40:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and ( max-width: 782px ) {
|
|
|
|
#wp-fullscreen-close,
|
|
|
|
#wp-fullscreen-central-toolbar,
|
|
|
|
#wp-fullscreen-mode-bar,
|
|
|
|
#wp-fullscreen-button-bar,
|
|
|
|
#wp-fullscreen-save {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
#fullscreen-topbar {
|
|
|
|
height: 85px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-fullscreen-central-toolbar {
|
|
|
|
width: auto !important;
|
2014-04-08 09:49:14 +02:00
|
|
|
min-width: 0;
|
2014-03-28 05:40:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#wp-fullscreen-close {
|
|
|
|
line-height: 30px;
|
|
|
|
vertical-align: top;
|
|
|
|
padding: 0 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-fullscreen-button-bar {
|
|
|
|
position: absolute;
|
|
|
|
top: 45px;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-fullscreen-wrap {
|
|
|
|
top: 95px;
|
|
|
|
}
|
|
|
|
|
2014-04-08 09:49:14 +02:00
|
|
|
#wp-fullscreen-save {
|
|
|
|
position: absolute;
|
|
|
|
left: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and ( max-width: 480px ) {
|
|
|
|
#wp_fs_help {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2014-03-28 05:40:14 +01:00
|
|
|
.wp-fullscreen-wrap .wp-editor-container,
|
|
|
|
.wp-fullscreen-title {
|
2014-04-08 09:49:14 +02:00
|
|
|
width: 480px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
body.wp-fullscreen-active {
|
|
|
|
width: 480px;
|
|
|
|
overflow: auto;
|
2014-03-28 05:40:14 +01:00
|
|
|
}
|
|
|
|
|
2014-04-08 09:49:14 +02:00
|
|
|
#fullscreen-topbar,
|
|
|
|
.wp-fullscreen-wrap {
|
|
|
|
width: 480px;
|
|
|
|
}
|
2014-04-14 10:15:16 +02:00
|
|
|
|
|
|
|
#fullscreen-topbar {
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
2014-04-08 09:49:14 +02:00
|
|
|
#wp-fullscreen-status {
|
|
|
|
width: auto !important;
|
|
|
|
max-width: 100%;
|
|
|
|
padding: 0 10px;
|
2014-03-28 05:40:14 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-09 02:31:11 +01:00
|
|
|
/* =Localization
|
|
|
|
-------------------------------------------------------------- */
|
|
|
|
.rtl .wp-switch-editor,
|
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
|
|
|
.rtl .quicktags-toolbar input {
|
2013-12-09 02:31:11 +01:00
|
|
|
font-family: Tahoma, sans-serif;
|
|
|
|
}
|
|
|
|
|
2014-04-13 02:23:15 +02:00
|
|
|
/* @noflip */
|
|
|
|
.mce-rtl .mce-flow-layout .mce-flow-layout-item > div {
|
|
|
|
direction: rtl;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* @noflip */
|
|
|
|
.mce-rtl .mce-listbox i.mce-caret {
|
|
|
|
left: 6px;
|
|
|
|
}
|
|
|
|
|
2013-12-09 02:31:11 +01:00
|
|
|
html:lang(he-il) .rtl .wp-switch-editor,
|
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
|
|
|
html:lang(he-il) .rtl .quicktags-toolbar input {
|
2013-12-09 02:31:11 +01:00
|
|
|
font-family: Arial, sans-serif;
|
|
|
|
}
|
|
|
|
|
2013-11-17 17:18:11 +01:00
|
|
|
/* HiDPI */
|
|
|
|
@media print,
|
|
|
|
(-o-min-device-pixel-ratio: 5/4),
|
|
|
|
(-webkit-min-device-pixel-ratio: 1.25),
|
|
|
|
(min-resolution: 120dpi) {
|
|
|
|
.wp-media-buttons .add_media span.wp-media-buttons-icon,
|
|
|
|
#wp-fullscreen-buttons #wp_fs_image span.mce_image {
|
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
}
|