2012-08-23 02:04:18 +02: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;
|
|
|
|
}
|
|
|
|
|
2016-10-17 00:51:28 +02:00
|
|
|
.mce-container .mce-monospace,
|
|
|
|
.mce-widget .mce-monospace {
|
|
|
|
font-family: Consolas, Monaco, monospace;
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: 150%;
|
|
|
|
}
|
|
|
|
|
2014-02-18 07:32:14 +01:00
|
|
|
/* 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
|
|
|
transition: none;
|
2014-02-18 07:32:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mce-window {
|
|
|
|
border-radius: 0;
|
2014-03-14 06:55:16 +01:00
|
|
|
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
|
|
|
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;
|
2016-03-09 20:51:26 +01:00
|
|
|
border-bottom: 1px solid #ddd;
|
2014-02-18 07:32:14 +01:00
|
|
|
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 36px 0 16px;
|
2014-02-18 07:32:14 +01:00
|
|
|
}
|
|
|
|
|
2016-03-05 23:01:27 +01:00
|
|
|
.mce-window .mce-window-head .mce-close,
|
|
|
|
.mce-window-head .mce-close .mce-i-remove {
|
2014-02-18 07:32:14 +01:00
|
|
|
color: transparent;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
2014-03-12 09:19:14 +01:00
|
|
|
width: 36px;
|
|
|
|
height: 36px;
|
2016-03-05 23:01:27 +01:00
|
|
|
padding: 0;
|
2014-03-12 09:19:14 +01:00
|
|
|
line-height: 36px;
|
2014-02-18 07:32:14 +01:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2016-03-05 23:01:27 +01:00
|
|
|
.mce-window-head .mce-close .mce-i-remove:before {
|
2015-09-05 21:57:25 +02: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;
|
|
|
|
}
|
|
|
|
|
2016-03-05 23:01:27 +01:00
|
|
|
.mce-window-head .mce-close:hover .mce-i-remove:before,
|
|
|
|
.mce-window-head .mce-close:focus .mce-i-remove:before {
|
2015-04-05 23:20:27 +02:00
|
|
|
color: #00a0d2;
|
2014-02-18 07:32:14 +01:00
|
|
|
}
|
|
|
|
|
2016-03-05 23:01:27 +01:00
|
|
|
.mce-window-head .mce-close:focus .mce-i-remove,
|
|
|
|
div.mce-tab:focus {
|
|
|
|
box-shadow: 0 0 0 1px #5b9dd9,
|
|
|
|
0 0 2px 1px rgba(30, 140, 190, .8);
|
|
|
|
}
|
|
|
|
|
2014-02-18 07:32:14 +01:00
|
|
|
.mce-window .mce-window-head .mce-dragh {
|
2014-03-12 09:19:14 +01:00
|
|
|
width: calc( 100% - 36px );
|
2014-02-18 07:32:14 +01:00
|
|
|
}
|
|
|
|
|
2015-06-26 06:40:24 +02:00
|
|
|
.mce-window .mce-foot {
|
2016-03-09 20:51:26 +01:00
|
|
|
border-top: 1px solid #ddd;
|
2014-03-27 01:08:15 +01:00
|
|
|
}
|
|
|
|
|
2014-03-27 03:36:14 +01:00
|
|
|
.mce-textbox,
|
2016-04-01 23:13:29 +02:00
|
|
|
.mce-checkbox i.mce-i-checkbox,
|
|
|
|
#wp-link .query-results {
|
2014-02-18 07:32:14 +01:00
|
|
|
border: 1px solid #ddd;
|
|
|
|
border-radius: 0;
|
|
|
|
box-shadow: inset 0 1px 2px rgba(0,0,0,0.07);
|
2014-07-29 05:16:17 +02:00
|
|
|
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;
|
|
|
|
box-shadow: 0 0 2px rgba(30,140,190,0.8);
|
2014-02-18 07:32:14 +01:00
|
|
|
}
|
|
|
|
|
2015-06-26 06:40:24 +02:00
|
|
|
.mce-window .mce-wp-help {
|
2015-07-15 23:34:25 +02:00
|
|
|
height: 360px;
|
|
|
|
width: 460px;
|
2015-06-26 06:40:24 +02:00
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-window .mce-wp-help * {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2015-07-01 02:52:25 +02:00
|
|
|
.mce-window .mce-wp-help > .mce-container-body {
|
2015-06-26 06:40:24 +02:00
|
|
|
width: auto !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-window .wp-editor-help {
|
2015-07-26 21:14:26 +02:00
|
|
|
padding: 10px 10px 0 20px;
|
2015-06-26 06:40:24 +02:00
|
|
|
}
|
|
|
|
|
2015-07-26 21:14:26 +02:00
|
|
|
.mce-window .wp-editor-help h2,
|
2015-06-26 06:40:24 +02:00
|
|
|
.mce-window .wp-editor-help p {
|
2015-06-26 20:49:25 +02:00
|
|
|
margin: 8px 0;
|
|
|
|
white-space: normal;
|
2015-07-26 21:14:26 +02:00
|
|
|
font-size: 14px;
|
2016-06-17 20:37:28 +02:00
|
|
|
font-weight: 400;
|
2015-06-26 06:40:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mce-window .wp-editor-help table {
|
2015-07-26 21:14:26 +02:00
|
|
|
width: 100%;
|
2015-06-26 06:40:24 +02:00
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
2016-02-28 20:00:27 +01:00
|
|
|
.mce-window .wp-editor-help table.wp-help-single {
|
|
|
|
margin: 0 8px 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-window .wp-editor-help table.fixed {
|
|
|
|
table-layout: fixed;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-window .wp-editor-help table.fixed th:nth-child(odd),
|
|
|
|
.mce-window .wp-editor-help table.fixed td:nth-child(odd) {
|
|
|
|
width: 12%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-window .wp-editor-help table.fixed th:nth-child(even),
|
|
|
|
.mce-window .wp-editor-help table.fixed td:nth-child(even) {
|
|
|
|
width: 38%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-window .wp-editor-help table.fixed th:nth-child(odd) {
|
|
|
|
padding: 5px 0 0;
|
|
|
|
}
|
|
|
|
|
2015-06-26 06:40:24 +02:00
|
|
|
.mce-window .wp-editor-help td,
|
|
|
|
.mce-window .wp-editor-help th {
|
|
|
|
font-size: 13px;
|
|
|
|
padding: 5px;
|
2015-07-26 21:14:26 +02:00
|
|
|
vertical-align: middle;
|
2015-06-26 06:40:24 +02:00
|
|
|
word-wrap: break-word;
|
|
|
|
white-space: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-window .wp-editor-help th {
|
2016-06-17 20:37:28 +02:00
|
|
|
font-weight: 600;
|
2015-07-26 21:14:26 +02:00
|
|
|
padding-bottom: 0;
|
2015-06-26 06:40:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mce-window .wp-editor-help kbd {
|
|
|
|
font-family: monospace;
|
2015-07-26 21:14:26 +02:00
|
|
|
padding: 2px 7px 3px;
|
2016-06-17 20:37:28 +02:00
|
|
|
font-weight: 600;
|
2015-07-26 21:14:26 +02:00
|
|
|
margin: 0;
|
2015-06-26 06:40:24 +02:00
|
|
|
background: #eaeaea;
|
|
|
|
background: rgba(0,0,0,0.08);
|
|
|
|
}
|
|
|
|
|
2015-07-26 21:14:26 +02:00
|
|
|
.mce-window .wp-help-th-center td:nth-child(odd),
|
|
|
|
.mce-window .wp-help-th-center th:nth-child(odd) {
|
2015-07-15 23:34:25 +02:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2014-02-18 07:32:14 +01:00
|
|
|
/* TinyMCE menus */
|
|
|
|
.mce-menu,
|
|
|
|
.mce-floatpanel.mce-popover {
|
|
|
|
border-color: rgba(0,0,0,0.15);
|
|
|
|
border-radius: 0;
|
|
|
|
box-shadow: 0 3px 5px rgba( 0, 0, 0, 0.2 );
|
|
|
|
}
|
|
|
|
|
2015-07-15 23:31:24 +02:00
|
|
|
.mce-menu,
|
2014-02-18 07:32:14 +01:00
|
|
|
.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 {
|
2012-08-23 02:04:18 +02:00
|
|
|
border: 0;
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
background: #fff;
|
2012-08-23 02:04:18 +02: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 {
|
2016-03-09 20:51:26 +01:00
|
|
|
border-bottom: 1px solid #ddd;
|
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
|
|
|
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 {
|
2015-04-05 23:20:27 +02:00
|
|
|
border: 1px solid #a0a5aa;
|
2014-11-13 01:56:22 +01:00
|
|
|
border-radius: 2px;
|
2014-12-11 00:53:22 +01:00
|
|
|
box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.15 );
|
2014-11-13 01:56:22 +01:00
|
|
|
box-sizing: border-box;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
position: absolute;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
2015-06-25 06:42:28 +02:00
|
|
|
max-width: 98%;
|
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
|
|
|
}
|
|
|
|
|
2015-03-11 20:12:28 +01:00
|
|
|
div.mce-inline-toolbar-grp > div.mce-stack-layout {
|
2014-11-13 01:56:22 +01:00
|
|
|
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;
|
|
|
|
left: 50%;
|
|
|
|
display: block;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border-style: solid;
|
|
|
|
border-color: transparent;
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "";
|
2014-11-13 01:56:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.mce-inline-toolbar-grp.mce-arrow-up:before {
|
2015-07-25 18:46:25 +02:00
|
|
|
top: -9px;
|
2015-04-05 23:20:27 +02:00
|
|
|
border-bottom-color: #a0a5aa;
|
2015-07-25 18:46:25 +02:00
|
|
|
border-width: 0 9px 9px;
|
2014-11-13 01:56:22 +01:00
|
|
|
margin-left: -9px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.mce-inline-toolbar-grp.mce-arrow-down:before {
|
2015-07-25 18:46:25 +02:00
|
|
|
bottom: -9px;
|
2015-04-05 23:20:27 +02:00
|
|
|
border-top-color: #a0a5aa;
|
2015-07-25 18:46:25 +02:00
|
|
|
border-width: 9px 9px 0;
|
2014-11-13 01:56:22 +01:00
|
|
|
margin-left: -9px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.mce-inline-toolbar-grp.mce-arrow-up:after {
|
2015-07-25 18:46:25 +02:00
|
|
|
top: -8px;
|
2014-11-13 01:56:22 +01:00
|
|
|
border-bottom-color: #f5f5f5;
|
2015-07-25 18:46:25 +02:00
|
|
|
border-width: 0 8px 8px;
|
2014-11-13 01:56:22 +01:00
|
|
|
margin-left: -8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.mce-inline-toolbar-grp.mce-arrow-down:after {
|
2015-07-25 18:46:25 +02:00
|
|
|
bottom: -8px;
|
2014-11-13 01:56:22 +01:00
|
|
|
border-top-color: #f5f5f5;
|
2015-07-25 18:46:25 +02:00
|
|
|
border-width: 8px 8px 0;
|
2014-11-13 01:56:22 +01:00
|
|
|
margin-left: -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
|
|
|
left: 20px;
|
|
|
|
}
|
2014-11-17 01:19:23 +01:00
|
|
|
div.mce-inline-toolbar-grp.mce-arrow-left:after {
|
|
|
|
left: 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 {
|
|
|
|
left: auto;
|
2014-11-17 01:19:23 +01:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.mce-inline-toolbar-grp.mce-arrow-right:before {
|
|
|
|
right: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.mce-inline-toolbar-grp.mce-arrow-right:after {
|
|
|
|
right: 21px;
|
2014-11-13 01:56:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.mce-inline-toolbar-grp.mce-arrow-full {
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.mce-inline-toolbar-grp.mce-arrow-full > div {
|
|
|
|
width: 100%;
|
|
|
|
overflow-x: auto;
|
|
|
|
}
|
|
|
|
|
2014-07-10 00:06:15 +02:00
|
|
|
div.mce-toolbar-grp > div {
|
|
|
|
padding: 3px;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
2014-04-07 03:10:15 +02:00
|
|
|
.has-dfw div.mce-toolbar-grp .mce-toolbar.mce-first {
|
|
|
|
padding-right: 32px;
|
|
|
|
}
|
|
|
|
|
2014-03-30 00:58:14 +01:00
|
|
|
.mce-toolbar .mce-btn-group {
|
|
|
|
margin: 0;
|
2012-08-23 02:04:18 +02: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;
|
2012-09-26 20:24:02 +02: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;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
2014-08-08 05:46:17 +02:00
|
|
|
.mce-path,
|
|
|
|
.mce-path-item,
|
|
|
|
.mce-path .mce-divider {
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
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;
|
|
|
|
box-shadow: none;
|
2014-02-19 04:51:15 +01:00
|
|
|
text-shadow: none;
|
2014-03-30 00:58:14 +01:00
|
|
|
cursor: pointer;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
2016-08-25 03:20:30 +02:00
|
|
|
.mce-btn .mce-txt {
|
|
|
|
direction: inherit;
|
|
|
|
text-align: inherit;
|
|
|
|
}
|
|
|
|
|
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;
|
2014-04-07 03:10:15 +02:00
|
|
|
border-radius: 2px;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
2014-03-30 00:58:14 +01:00
|
|
|
.mce-toolbar .mce-btn-group .mce-btn:hover,
|
|
|
|
.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;
|
2016-02-15 22:11:28 +01:00
|
|
|
border-color: #555d66;
|
2015-04-05 23:20:27 +02:00
|
|
|
color: #23282d;
|
2014-03-30 00:58:14 +01:00
|
|
|
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;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
2014-03-30 00:58:14 +01:00
|
|
|
.mce-toolbar .mce-btn-group .mce-btn.mce-active,
|
|
|
|
.mce-toolbar .mce-btn-group .mce-btn:active,
|
2014-11-13 23:31:22 +01:00
|
|
|
.qt-dfw.active {
|
2014-04-07 03:10:15 +02:00
|
|
|
background: #ebebeb;
|
2016-02-15 22:11:28 +01:00
|
|
|
border-color: #555d66;
|
2014-04-07 03:10:15 +02:00
|
|
|
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.3 );
|
|
|
|
}
|
|
|
|
|
2016-02-15 22:11:28 +01:00
|
|
|
.mce-toolbar .mce-btn-group .mce-btn.mce-active:hover,
|
|
|
|
.mce-toolbar .mce-btn-group .mce-btn.mce-active:focus {
|
|
|
|
border-color: #23282d;
|
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,
|
2015-06-01 19:38:29 +02:00
|
|
|
.mce-toolbar .mce-btn-group .mce-btn.mce-disabled:focus {
|
2015-04-05 23:20:27 +02:00
|
|
|
color: #a0a5aa;
|
2014-03-30 00:58:14 +01:00
|
|
|
background: none;
|
|
|
|
border-color: #ddd;
|
|
|
|
text-shadow: 0 1px 0 #fff;
|
|
|
|
box-shadow: none;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
2016-02-15 22:11:28 +01:00
|
|
|
.mce-toolbar .mce-btn-group .mce-btn.mce-disabled:focus {
|
|
|
|
border-color: #555d66;
|
|
|
|
}
|
|
|
|
|
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;
|
2012-08-23 02:04:18 +02: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;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
2015-07-01 02:52:25 +02:00
|
|
|
.mce-toolbar .mce-listbox button {
|
2015-07-15 23:31:24 +02:00
|
|
|
font-size: 13px;
|
|
|
|
line-height: 20px;
|
|
|
|
padding-left: 6px;
|
2015-07-01 02:52:25 +02:00
|
|
|
padding-right: 20px;
|
|
|
|
}
|
|
|
|
|
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;
|
2012-08-23 02:04:18 +02: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-right: 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;
|
|
|
|
left: 3px;
|
|
|
|
height: 3px;
|
|
|
|
width: 20px;
|
2016-02-15 22:11:28 +01:00
|
|
|
background: #555d66;
|
2014-02-18 07:32:14 +01:00
|
|
|
}
|
|
|
|
|
2016-01-23 01:08:26 +01:00
|
|
|
.mce-toolbar .mce-btn-group .mce-btn.mce-primary {
|
|
|
|
min-width: 0;
|
|
|
|
background: #0085ba;
|
|
|
|
border-color: #0073aa #006799 #006799;
|
2016-03-16 05:29:27 +01:00
|
|
|
box-shadow: 0 1px 0 #006799;
|
2016-03-16 03:04:27 +01:00
|
|
|
color: #fff;
|
2016-01-23 01:08:26 +01:00
|
|
|
text-decoration: none;
|
2016-03-16 03:04:27 +01:00
|
|
|
text-shadow: none;
|
2016-01-23 01:08:26 +01:00
|
|
|
}
|
|
|
|
|
2016-03-16 05:29:27 +01:00
|
|
|
/* Compensate for the extra box shadow at the bottom of .mce-btn.mce-primary */
|
|
|
|
.mce-toolbar .mce-btn-group .mce-btn.mce-primary button {
|
|
|
|
padding: 2px 3px 1px;
|
|
|
|
}
|
|
|
|
|
2016-01-23 01:08:26 +01:00
|
|
|
.mce-toolbar .mce-btn-group .mce-btn.mce-primary .mce-ico {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-toolbar .mce-btn-group .mce-btn.mce-primary:hover,
|
|
|
|
.mce-toolbar .mce-btn-group .mce-btn.mce-primary:focus {
|
|
|
|
background: #008ec2;
|
|
|
|
border-color: #006799;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-toolbar .mce-btn-group .mce-btn.mce-primary:focus {
|
2016-03-16 03:04:27 +01:00
|
|
|
box-shadow: 0 0 1px 1px #33b3db;
|
2016-01-23 01:08:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mce-toolbar .mce-btn-group .mce-btn.mce-primary:active {
|
|
|
|
background: #0073aa;
|
|
|
|
border-color: #006799;
|
|
|
|
box-shadow: inset 0 2px 0 #006799;
|
|
|
|
}
|
|
|
|
|
2014-02-19 04:51:15 +01:00
|
|
|
/* mce listbox */
|
|
|
|
.mce-toolbar .mce-btn-group .mce-btn.mce-listbox {
|
|
|
|
border-radius: 0;
|
|
|
|
direction: ltr;
|
|
|
|
background: #fff;
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
box-shadow: inset 0 1px 1px -1px rgba(0, 0, 0, .2);
|
|
|
|
}
|
|
|
|
|
2016-02-15 22:11:28 +01:00
|
|
|
.mce-toolbar .mce-btn-group .mce-btn.mce-listbox:hover,
|
|
|
|
.mce-toolbar .mce-btn-group .mce-btn.mce-listbox:focus {
|
2015-07-15 23:31:24 +02:00
|
|
|
border-color: #b4b9be;
|
2014-04-22 15:24:15 +02:00
|
|
|
}
|
|
|
|
|
2014-03-12 09:19:14 +01:00
|
|
|
.mce-panel .mce-btn i.mce-caret {
|
2016-02-15 22:11:28 +01:00
|
|
|
border-top: 6px solid #555d66;
|
2014-04-07 03:10:15 +02:00
|
|
|
margin-left: 2px;
|
|
|
|
margin-right: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-listbox i.mce-caret {
|
2015-07-01 02:52:25 +02:00
|
|
|
right: 4px;
|
2014-03-12 09:19:14 +01:00
|
|
|
}
|
2014-02-19 04:51:15 +01:00
|
|
|
|
2016-02-15 22:11:28 +01:00
|
|
|
.mce-panel .mce-btn:hover i.mce-caret,
|
|
|
|
.mce-panel .mce-btn:focus i.mce-caret {
|
|
|
|
border-top-color: #23282d;
|
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;
|
2016-02-15 22:11:28 +01:00
|
|
|
border-bottom: 6px solid #23282d;
|
2014-03-12 09:19:14 +01:00
|
|
|
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-right-color: transparent;
|
|
|
|
}
|
|
|
|
|
2015-07-15 23:31:24 +02:00
|
|
|
.mce-toolbar .mce-splitbtn .mce-open.mce-active {
|
|
|
|
background: transparent;
|
|
|
|
outline: none;
|
2014-02-19 04:51:15 +01:00
|
|
|
}
|
|
|
|
|
2015-07-15 23:31:24 +02:00
|
|
|
.mce-menu .mce-menu-item:hover,
|
|
|
|
.mce-menu .mce-menu-item.mce-selected,
|
|
|
|
.mce-menu .mce-menu-item:focus,
|
2015-07-16 01:35:24 +02:00
|
|
|
.mce-menu .mce-menu-item-normal.mce-active,
|
|
|
|
.mce-menu .mce-menu-item-preview.mce-active {
|
2015-07-15 23:31:24 +02:00
|
|
|
background: #0073aa; /* See color scheme. */
|
2016-10-25 03:40:31 +02:00
|
|
|
color: #fff;
|
2014-02-19 04:51:15 +01:00
|
|
|
}
|
|
|
|
|
2015-07-16 01:35:24 +02:00
|
|
|
.mce-menu .mce-menu-item-preview.mce-active {
|
|
|
|
border-left: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-menu .mce-menu-item-preview.mce-active .mce-text {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
2015-07-15 23:31:24 +02:00
|
|
|
.mce-menu .mce-menu-item.mce-disabled {
|
|
|
|
cursor: default;
|
2014-02-19 04:51:15 +01:00
|
|
|
}
|
|
|
|
|
2015-07-15 23:31:24 +02:00
|
|
|
.mce-menu .mce-menu-item.mce-disabled:hover {
|
|
|
|
background: #ccc;
|
2014-02-19 04:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Menubar */
|
2017-04-19 04:38:44 +02:00
|
|
|
div.mce-menubar {
|
2014-02-18 07:32:14 +01:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2015-07-15 23:31:24 +02:00
|
|
|
.mce-menubar .mce-menubtn:hover,
|
|
|
|
.mce-menubar .mce-menubtn.mce-active,
|
|
|
|
.mce-menubar .mce-menubtn:focus {
|
|
|
|
border-color: transparent;
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-menubar .mce-menubtn:focus {
|
|
|
|
color: #124964;
|
|
|
|
box-shadow:
|
|
|
|
0 0 0 1px #5b9dd9,
|
|
|
|
0 0 2px 1px rgba(30, 140, 190, .8);
|
2014-02-18 07:32:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.mce-menu .mce-menu-item-sep,
|
|
|
|
.mce-menu-item-sep:hover {
|
2015-07-15 23:31:24 +02:00
|
|
|
border-bottom: 1px solid #ddd;
|
|
|
|
height: 0px;
|
|
|
|
margin: 5px 0;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
2014-02-19 04:51:15 +01:00
|
|
|
.mce-menubtn span {
|
|
|
|
margin-right: 0;
|
|
|
|
padding-left: 3px;
|
|
|
|
}
|
|
|
|
|
2014-03-12 09:19:14 +01:00
|
|
|
.mce-menu-has-icons i.mce-ico:before {
|
|
|
|
margin-left: -2px;
|
|
|
|
}
|
|
|
|
|
2016-10-25 03:40:31 +02:00
|
|
|
/* Keyboard shortcuts position */
|
|
|
|
.mce-menu.mce-menu-align .mce-menu-item-normal {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-menu.mce-menu-align .mce-menu-shortcut {
|
2016-10-26 02:37:30 +02:00
|
|
|
bottom: 0.6em;
|
|
|
|
font-size: 0.9em;
|
2016-10-25 03:40:31 +02:00
|
|
|
}
|
|
|
|
|
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;
|
2016-03-24 01:57:28 +01:00
|
|
|
border: 1px solid #cccccc;
|
2014-02-18 07:32:14 +01:00
|
|
|
-webkit-appearance: none;
|
|
|
|
border-radius: 3px;
|
|
|
|
white-space: nowrap;
|
2016-03-24 01:57:28 +01:00
|
|
|
box-shadow: 0 1px 0 #cccccc;
|
2012-08-23 02:04:18 +02: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 {
|
2016-03-24 01:57:28 +01:00
|
|
|
border-width: 0;
|
|
|
|
border-style: none;
|
2014-03-11 01:04:14 +01:00
|
|
|
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;
|
2016-03-24 01:57:28 +01:00
|
|
|
border-color: #999;
|
2015-04-05 23:20:27 +02:00
|
|
|
color: #23282d;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
2014-02-18 07:32:14 +01:00
|
|
|
.mce-window .mce-btn:focus {
|
2016-03-24 01:57:28 +01:00
|
|
|
border-color: #5b9dd9;
|
|
|
|
box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
|
2014-02-18 07:32:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mce-window .mce-btn:active {
|
|
|
|
background: #eee;
|
2016-03-24 01:57:28 +01:00
|
|
|
border-color: #999;
|
2014-08-26 07:17:17 +02:00
|
|
|
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
|
2016-03-24 01:57:28 +01:00
|
|
|
-webkit-transform: translateY(1px);
|
|
|
|
transform: translateY(1px);
|
2014-02-18 07:32:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mce-window .mce-btn.mce-disabled {
|
2016-03-24 01:57:28 +01:00
|
|
|
color: #a0a5aa !important;
|
|
|
|
border-color: #ddd !important;
|
|
|
|
background: #f7f7f7 !important;
|
|
|
|
box-shadow: none !important;
|
|
|
|
text-shadow: 0 1px 0 #fff !important;
|
2014-02-18 07:32:14 +01:00
|
|
|
cursor: default;
|
2016-03-24 01:57:28 +01:00
|
|
|
-webkit-transform: none !important;
|
|
|
|
transform: none !important;
|
2014-02-18 07:32:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mce-window .mce-btn.mce-primary {
|
2016-03-24 01:57:28 +01:00
|
|
|
background: #0085ba;
|
|
|
|
border-color: #0073aa #006799 #006799;
|
|
|
|
box-shadow: 0 1px 0 #006799;
|
2014-03-11 01:04:14 +01:00
|
|
|
color: #fff;
|
|
|
|
text-decoration: none;
|
2016-03-24 01:57:28 +01:00
|
|
|
text-shadow: 0 -1px 1px #006799,
|
|
|
|
1px 0 1px #006799,
|
|
|
|
0 1px 1px #006799,
|
|
|
|
-1px 0 1px #006799;
|
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 {
|
2016-03-24 01:57:28 +01:00
|
|
|
background: #008ec2;
|
|
|
|
border-color: #006799;
|
2014-02-18 07:32:14 +01:00
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-window .mce-btn.mce-primary:focus {
|
2016-03-24 01:57:28 +01:00
|
|
|
box-shadow: 0 1px 0 #0073aa,
|
|
|
|
0 0 2px 1px #33b3db;
|
2014-02-18 07:32:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mce-window .mce-btn.mce-primary:active {
|
2016-03-24 01:57:28 +01:00
|
|
|
background: #0073aa;
|
|
|
|
border-color: #006799;
|
|
|
|
box-shadow: inset 0 2px 0 #006799;
|
2014-08-26 07:17:17 +02:00
|
|
|
vertical-align: top;
|
2014-02-18 07:32:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mce-window .mce-btn.mce-primary.mce-disabled {
|
2016-03-24 01:57:28 +01:00
|
|
|
color: #66c6e4 !important;
|
|
|
|
background: #008ec2 !important;
|
|
|
|
border-color: #007cb2 !important;
|
|
|
|
box-shadow: none !important;
|
|
|
|
text-shadow: 0 -1px 0 rgba( 0, 0, 0, 0.1 ) !important;
|
2014-08-26 07:17:17 +02:00
|
|
|
cursor: default;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
2015-07-15 23:31:24 +02:00
|
|
|
.mce-menubtn.mce-fixed-width button {
|
|
|
|
overflow-x: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
width: 110px;
|
2014-04-07 03:10:15 +02:00
|
|
|
}
|
|
|
|
|
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;
|
2016-03-09 20:51:26 +01:00
|
|
|
border-color: #ddd;
|
2014-02-18 07:32:14 +01:00
|
|
|
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 {
|
2015-07-15 23:31:24 +02:00
|
|
|
border-radius: 3px;
|
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 {
|
2016-02-15 22:11:28 +01:00
|
|
|
color: #555d66;
|
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
|
|
|
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;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
2014-11-13 23:31:22 +01:00
|
|
|
.qt-dfw {
|
2016-02-15 22:11:28 +01:00
|
|
|
color: #555d66;
|
2014-03-30 00:58:14 +01:00
|
|
|
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 {
|
2016-02-15 22:11:28 +01:00
|
|
|
border-left-color: #23282d;
|
2014-03-30 00:58:14 +01:00
|
|
|
}
|
|
|
|
|
2016-11-29 05:59:29 +01:00
|
|
|
div.mce-notification {
|
|
|
|
left: 10% !important;
|
|
|
|
right: 10%;
|
|
|
|
}
|
|
|
|
|
2016-03-02 02:15:27 +01:00
|
|
|
.mce-notification button.mce-close {
|
2016-03-05 23:01:27 +01:00
|
|
|
right: 6px;
|
|
|
|
top: 3px;
|
2016-06-17 20:37:28 +02:00
|
|
|
font-weight: 400;
|
2016-03-05 23:01:27 +01:00
|
|
|
color: #555d66;
|
2016-03-02 02:15:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mce-notification button.mce-close:hover,
|
|
|
|
.mce-notification button.mce-close:focus {
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
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,
|
2015-03-22 23:54:28 +01:00
|
|
|
i.mce-i-wp_code,
|
2014-11-13 01:56:22 +01:00
|
|
|
i.mce-i-dashicon,
|
2016-03-05 23:01:27 +01:00
|
|
|
i.mce-i-remove {
|
2015-09-05 21:57:25 +02:00
|
|
|
font: normal 20px/1 dashicons;
|
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: 0;
|
|
|
|
vertical-align: top;
|
|
|
|
speak: none;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
2014-03-12 09:19:14 +01:00
|
|
|
margin-left: -2px;
|
|
|
|
padding-right: 2px;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
2014-11-13 23:31:22 +01:00
|
|
|
.qt-dfw {
|
2015-09-05 21:57:25 +02:00
|
|
|
font: normal 20px/1 dashicons;
|
2014-03-30 00:58:14 +01:00
|
|
|
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 {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f200";
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-italic:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f201";
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
}
|
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-bullist:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f203";
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
}
|
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-numlist:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f204";
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
}
|
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-blockquote:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f205";
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-alignleft:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f206";
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-aligncenter:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f207";
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-alignright:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f208";
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-link:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f103";
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-unlink:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f225";
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-wp_more:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f209";
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-strikethrough:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f224";
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
}
|
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-spellchecker:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f210";
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +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 {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f211";
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
}
|
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-wp_adv:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f212";
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
}
|
2013-12-30 02:54:11 +01:00
|
|
|
|
|
|
|
i.mce-i-underline:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f213";
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
}
|
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-alignjustify:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f214";
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
}
|
|
|
|
|
2014-07-19 00:15:15 +02:00
|
|
|
i.mce-i-forecolor:before,
|
|
|
|
i.mce-i-backcolor:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f215";
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-pastetext:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f217";
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-removeformat:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f218";
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-charmap:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f220";
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-outdent:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f221";
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-indent:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f222";
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-undo:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f171";
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-redo:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f172";
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +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 {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f223";
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +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 {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f104";
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
}
|
2013-11-28 01:53:09 +01:00
|
|
|
|
2013-12-30 02:54:11 +01:00
|
|
|
i.mce-i-ltr:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f320";
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
}
|
|
|
|
|
2014-01-27 16:06:32 +01:00
|
|
|
i.mce-i-wp_page:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f105";
|
2014-01-27 16:06:32 +01:00
|
|
|
}
|
|
|
|
|
2014-03-27 20:19:14 +01:00
|
|
|
i.mce-i-hr:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f460";
|
2014-03-27 20:19:14 +01:00
|
|
|
}
|
|
|
|
|
2016-03-05 23:01:27 +01:00
|
|
|
i.mce-i-remove:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f158";
|
2014-02-18 07:32:14 +01:00
|
|
|
}
|
|
|
|
|
2015-03-22 23:54:28 +01:00
|
|
|
i.mce-i-wp_code:before {
|
2015-09-10 22:22:25 +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 {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f222";
|
2015-01-11 21:30:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.rtl i.mce-i-indent:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f221";
|
2015-01-11 21:30:26 +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
|
|
|
/* Editors */
|
2012-09-26 05:30:21 +02:00
|
|
|
.wp-editor-wrap {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2014-08-24 07:11:16 +02:00
|
|
|
.wp-editor-tools {
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +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;
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "";
|
2014-07-10 00:06:15 +02:00
|
|
|
display: table;
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
}
|
|
|
|
|
2013-11-24 22:47:10 +01:00
|
|
|
.wp-editor-container {
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
clear: both;
|
2017-04-19 04:38:44 +02:00
|
|
|
border: 1px solid #e5e5e5;
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
}
|
|
|
|
|
2012-08-23 02:04:18 +02:00
|
|
|
.wp-editor-area {
|
|
|
|
font-family: Consolas, Monaco, monospace;
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
font-size: 13px;
|
2012-08-23 02:04:18 +02:00
|
|
|
padding: 10px;
|
2012-09-26 05:30:21 +02:00
|
|
|
margin: 1px 0 0;
|
2012-08-23 02:04:18 +02:00
|
|
|
line-height: 150%;
|
2016-03-14 21:55:26 +01:00
|
|
|
border: 0;
|
2012-08-23 02:04:18 +02:00
|
|
|
outline: none;
|
2012-09-26 05:30:21 +02:00
|
|
|
display: block;
|
2012-08-23 02:04:18 +02:00
|
|
|
resize: vertical;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2012-08-23 02:04:18 +02:00
|
|
|
.wp-editor-container textarea.wp-editor-area {
|
2012-11-06 00:55:10 +01:00
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
2012-08-28 07:48:58 +02:00
|
|
|
box-shadow: none;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
2013-11-22 03:23:09 +01:00
|
|
|
.wp-editor-tabs {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2012-08-23 02:04:18 +02:00
|
|
|
.wp-switch-editor {
|
2014-10-24 03:21:18 +02:00
|
|
|
float: left;
|
|
|
|
box-sizing: content-box;
|
|
|
|
position: relative;
|
|
|
|
top: 1px;
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
background: #ebebeb;
|
2016-02-15 22:11:28 +01:00
|
|
|
color: #666;
|
2012-08-23 02:04:18 +02:00
|
|
|
cursor: pointer;
|
Drop Open Sans in the admin in favor of system fonts.
Rejoice, for your admins will feel more native to your surrounding computing environment and likely load faster, especially when offline, as they no longer have to talk to The Google Overlord.
At the time of introduction in 3.8, there were not good system fonts common to all platforms at the time. In the years since, Windows, Android, OS X, iOS, Firefox OS, and various flavors of Linux have all gotten their own (good) system UI fonts.
There will definitely be visual bugs, mainly around alignment and spacing; these should be documented and reported on the ticket and fixed more atomically so that our current and future selves have a better understanding of what happened and why.
The style remains registered, as it is almost certainly in use by themes and plugins.
props mattmiklic.
see #36753.
Built from https://develop.svn.wordpress.org/trunk@37361
git-svn-id: http://core.svn.wordpress.org/trunk@37327 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-05-05 00:07:37 +02:00
|
|
|
font-size: 13px;
|
|
|
|
line-height: 19px;
|
2014-10-24 03:21:18 +02:00
|
|
|
height: 20px;
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
margin: 5px 0 0 5px;
|
|
|
|
padding: 3px 8px 4px;
|
2014-10-24 03:21:18 +02:00
|
|
|
border: 1px solid #e5e5e5;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
2014-10-24 03:21:18 +02:00
|
|
|
.wp-switch-editor:focus {
|
|
|
|
box-shadow:
|
|
|
|
0 0 0 1px #5b9dd9,
|
|
|
|
0 0 2px 1px rgba(30, 140, 190, .8);
|
|
|
|
outline: none;
|
2015-04-05 23:20:27 +02:00
|
|
|
color: #23282d;
|
2012-10-22 21:51:51 +02:00
|
|
|
}
|
|
|
|
|
2014-10-24 03:21:18 +02:00
|
|
|
.wp-switch-editor:active,
|
|
|
|
.html-active .switch-html:focus,
|
|
|
|
.tmce-active .switch-tmce:focus {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-switch-editor:active {
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
box-shadow: none;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.js .tmce-active .wp-editor-area {
|
2016-09-01 20:14:31 +02:00
|
|
|
color: #fff;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.tmce-active .quicktags-toolbar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tmce-active .switch-tmce,
|
|
|
|
.html-active .switch-html {
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
background: #f5f5f5;
|
2012-09-26 20:24:02 +02:00
|
|
|
color: #555;
|
2014-10-24 03:21:18 +02:00
|
|
|
border-bottom-color: #f5f5f5;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
2013-11-22 03:23:09 +01:00
|
|
|
.wp-media-buttons {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
2012-09-27 06:09:43 +02:00
|
|
|
.wp-media-buttons .button {
|
|
|
|
margin-right: 5px;
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
margin-bottom: 4px;
|
|
|
|
padding-left: 7px;
|
|
|
|
padding-right: 7px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-media-buttons .button:active {
|
|
|
|
position: relative;
|
|
|
|
top: 1px;
|
|
|
|
margin-top: -1px;
|
|
|
|
margin-bottom: 1px;
|
2012-09-27 06:09:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.wp-media-buttons .insert-media {
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
padding-left: 5px;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.wp-media-buttons a {
|
|
|
|
text-decoration: none;
|
2016-03-09 20:51:26 +01:00
|
|
|
color: #444;
|
2012-08-23 02:04:18 +02:00
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-media-buttons img {
|
|
|
|
padding: 0 4px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2012-09-28 02:33:40 +02:00
|
|
|
.wp-media-buttons span.wp-media-buttons-icon {
|
|
|
|
display: inline-block;
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
2012-09-28 02:33:40 +02:00
|
|
|
vertical-align: text-top;
|
|
|
|
margin: 0 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-media-buttons .add_media span.wp-media-buttons-icon {
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-media-buttons .add_media span.wp-media-buttons-icon:before {
|
2015-09-05 21:57:25 +02:00
|
|
|
font: normal 18px/1 dashicons;
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
speak: none;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-media-buttons .add_media span.wp-media-buttons-icon:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f104";
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +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
|
|
|
/* Quicktags */
|
2012-08-23 02:04:18 +02:00
|
|
|
.quicktags-toolbar {
|
2014-04-07 03:10:15 +02:00
|
|
|
padding: 3px;
|
2014-03-30 00:58:14 +01:00
|
|
|
position: relative;
|
2016-03-09 20:51:26 +01:00
|
|
|
border-bottom: 1px solid #ddd;
|
2014-04-07 03:10:15 +02:00
|
|
|
background: #f5f5f5;
|
2015-06-22 00:01:28 +02:00
|
|
|
min-height: 30px;
|
2014-04-07 03:10:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.has-dfw .quicktags-toolbar {
|
|
|
|
padding-right: 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
|
|
|
}
|
|
|
|
|
2012-08-23 02:04:18 +02: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"] {
|
2016-06-17 20:37:28 +02:00
|
|
|
font-weight: 600;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
right: 0;
|
2014-08-08 05:46:17 +02:00
|
|
|
margin: 5px 5px 0 0;
|
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;
|
|
|
|
}
|
|
|
|
|
2016-03-16 05:29:27 +01:00
|
|
|
/* Compensate for the extra box shadow at the bottom of .mce-btn.mce-primary */
|
|
|
|
.mce-toolbar .mce-btn-group .mce-btn.mce-primary button {
|
|
|
|
padding: 6px 7px 5px;
|
|
|
|
}
|
|
|
|
|
2014-08-08 05:46:17 +02:00
|
|
|
.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 4px 0 0;
|
|
|
|
}
|
|
|
|
|
2014-03-30 00:58:14 +01:00
|
|
|
.mce-toolbar .mce-colorbutton .mce-preview {
|
2014-08-08 05:46:17 +02:00
|
|
|
left: 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-right: 40px;
|
2014-03-30 00:58:14 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and ( min-width: 782px ) {
|
|
|
|
.wp-core-ui .quicktags-toolbar input.button.button-small {
|
2016-10-31 07:28:32 +01:00
|
|
|
/* .button-small is normally 11px, but a bit too small for these buttons. */
|
2014-03-30 00:58:14 +01:00
|
|
|
font-size: 12px;
|
|
|
|
height: 26px;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-23 02:04:18 +02:00
|
|
|
#wp_editbtns,
|
|
|
|
#wp_gallerybtns {
|
|
|
|
padding: 2px;
|
|
|
|
position: absolute;
|
|
|
|
display: none;
|
2014-03-08 01:41:16 +01:00
|
|
|
z-index: 100020;
|
2012-08-23 02:04:18 +02: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;
|
|
|
|
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
|
|
|
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
|
|
|
|
width: 500px;
|
2014-03-11 01:04:14 +01:00
|
|
|
overflow: hidden;
|
2014-03-14 06:55:16 +01:00
|
|
|
margin-left: -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
|
|
|
left: 50%;
|
|
|
|
z-index: 100105;
|
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;
|
|
|
|
left: 0;
|
|
|
|
right: 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;
|
|
|
|
}
|
|
|
|
|
2012-08-23 02:04:18 +02:00
|
|
|
#wp-link {
|
2014-03-11 01:04:14 +01:00
|
|
|
position: relative;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2016-04-01 23:13:29 +02:00
|
|
|
#wp-link-wrap {
|
|
|
|
height: 500px;
|
|
|
|
margin-top: -250px;
|
|
|
|
}
|
|
|
|
|
2015-03-11 03:40:27 +01:00
|
|
|
#wp-link-wrap .wp-link-text-field {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link-wrap.has-text-field .wp-link-text-field {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2014-03-11 01:04:14 +01:00
|
|
|
#link-modal-title {
|
|
|
|
background: #fcfcfc;
|
2016-03-09 20:51:26 +01:00
|
|
|
border-bottom: 1px solid #ddd;
|
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;
|
2016-03-14 21:55:26 +01:00
|
|
|
margin: 0;
|
2014-03-11 03:36:14 +01:00
|
|
|
padding: 0 36px 0 16px;
|
2014-03-11 01:04:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link-close {
|
|
|
|
color: #666;
|
|
|
|
padding: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 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 {
|
2015-09-05 21:57:25 +02: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;
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f158";
|
2014-03-11 01:04:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link-close:hover,
|
|
|
|
#wp-link-close:focus {
|
2015-04-05 23:20:27 +02:00
|
|
|
color: #00a0d2;
|
2014-03-11 01:04:14 +01:00
|
|
|
}
|
|
|
|
|
2014-07-29 05:16:17 +02:00
|
|
|
#wp-link-close:focus {
|
|
|
|
outline: none;
|
|
|
|
box-shadow:
|
|
|
|
0 0 0 1px #5b9dd9,
|
|
|
|
0 0 2px 1px rgba(30, 140, 190, .8);
|
|
|
|
}
|
|
|
|
|
2016-04-01 23:13:29 +02:00
|
|
|
#wp-link-wrap #link-selector {
|
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
padding: 0 16px;
|
|
|
|
position: absolute;
|
|
|
|
top: 37px;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 44px;
|
2014-03-11 01:04:14 +01:00
|
|
|
}
|
|
|
|
|
2012-08-23 02:04:18 +02:00
|
|
|
#wp-link ol,
|
|
|
|
#wp-link ul {
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link input[type="text"] {
|
2014-02-13 09:30:17 +01:00
|
|
|
box-sizing: border-box;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link #link-options {
|
2014-03-14 06:55:16 +01:00
|
|
|
padding: 8px 0 12px;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link p.howto {
|
2014-03-11 01:04:14 +01:00
|
|
|
margin: 3px 0;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
2014-07-29 05:16:17 +02:00
|
|
|
#wp-link p.howto a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
2012-08-23 02:04:18 +02:00
|
|
|
#wp-link label input[type="text"] {
|
2016-04-01 23:13:29 +02:00
|
|
|
margin-top: 5px;
|
2014-03-14 06:55:16 +01:00
|
|
|
width: 70%;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
2016-04-01 23:13:29 +02:00
|
|
|
#wp-link #link-options label span,
|
|
|
|
#wp-link #search-panel label span.search-label {
|
2012-08-23 02:04:18 +02:00
|
|
|
display: inline-block;
|
|
|
|
width: 80px;
|
|
|
|
text-align: right;
|
|
|
|
padding-right: 5px;
|
2014-03-11 01:04:14 +01:00
|
|
|
max-width: 24%;
|
2015-07-17 01:58:25 +02:00
|
|
|
vertical-align: middle;
|
|
|
|
word-wrap: break-word;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
2016-04-01 23:13:29 +02:00
|
|
|
#wp-link .link-search-field {
|
|
|
|
float: left;
|
|
|
|
width: 250px;
|
|
|
|
max-width: 70%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link .link-search-wrapper {
|
|
|
|
margin: 5px 0 9px;
|
|
|
|
display: block;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link .link-search-wrapper span {
|
|
|
|
float: left;
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link .link-search-wrapper .spinner {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
2012-08-23 02:04:18 +02:00
|
|
|
#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%;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
2016-04-01 23:13:29 +02:00
|
|
|
#wp-link .query-results {
|
|
|
|
border: 1px #dfdfdf solid;
|
|
|
|
margin: 0 0 12px;
|
|
|
|
background: #fff;
|
|
|
|
overflow: auto;
|
|
|
|
position: absolute;
|
|
|
|
left: 16px;
|
|
|
|
right: 16px;
|
|
|
|
bottom: 0;
|
|
|
|
top: 166px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.has-text-field #wp-link .query-results {
|
|
|
|
top: 200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link li {
|
|
|
|
clear: both;
|
|
|
|
margin-bottom: 0;
|
|
|
|
border-bottom: 1px solid #f1f1f1;
|
|
|
|
color: #32373c;
|
|
|
|
padding: 4px 6px 4px 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
#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-left: 4px solid #00a0d2;
|
|
|
|
}
|
|
|
|
|
|
|
|
#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-left: 4px solid #d54e21;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link .query-results em {
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
#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: #32373c;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link li.selected {
|
|
|
|
background: #ddd;
|
|
|
|
color: #32373c;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link li.selected .item-title {
|
2016-06-17 20:37:28 +02:00
|
|
|
font-weight: 600;
|
2016-04-01 23:13:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link li:last-child {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link .item-title {
|
|
|
|
display: inline-block;
|
|
|
|
width: 80%;
|
|
|
|
width: calc(100% - 68px);
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link .item-info {
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: #666;
|
|
|
|
font-size: 11px;
|
|
|
|
position: absolute;
|
|
|
|
right: 5px;
|
|
|
|
top: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link .river-waiting {
|
|
|
|
display: none;
|
|
|
|
padding: 10px 0;
|
|
|
|
}
|
|
|
|
|
2012-08-23 02:04:18 +02:00
|
|
|
#wp-link .submitbox {
|
2014-03-11 01:04:14 +01:00
|
|
|
padding: 8px 16px;
|
|
|
|
background: #fcfcfc;
|
2016-03-09 20:51:26 +01:00
|
|
|
border-top: 1px solid #ddd;
|
2014-03-11 01:04:14 +01:00
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
2014-03-12 04:07:15 +01:00
|
|
|
#wp-link-cancel {
|
|
|
|
line-height: 25px;
|
2014-07-29 05:16:17 +02:00
|
|
|
float: left;
|
2014-03-11 03:36:14 +01:00
|
|
|
}
|
|
|
|
|
2012-08-23 02:04:18 +02:00
|
|
|
#wp-link-update {
|
|
|
|
line-height: 23px;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2014-03-11 01:04:14 +01:00
|
|
|
#wp-link-submit {
|
2013-02-28 18:54:00 +01:00
|
|
|
float: right;
|
2012-08-23 02:04:18 +02: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
|
|
|
margin-top: -140px;
|
2014-03-12 04:07:15 +01:00
|
|
|
}
|
2013-02-28 18:54:00 +01:00
|
|
|
|
2016-04-01 23:13:29 +02:00
|
|
|
#wp-link-wrap .query-results {
|
|
|
|
top: 195px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link-wrap.has-text-field .query-results {
|
|
|
|
top: 235px;
|
|
|
|
}
|
|
|
|
|
2014-03-14 06:55:16 +01:00
|
|
|
#link-selector {
|
|
|
|
padding: 0 16px 60px;
|
|
|
|
}
|
2014-03-28 05:40:14 +01:00
|
|
|
|
2016-04-01 23:13:29 +02:00
|
|
|
#wp-link-wrap #link-selector {
|
|
|
|
bottom: 52px;
|
|
|
|
}
|
|
|
|
|
2014-03-14 06:55:16 +01:00
|
|
|
#wp-link-cancel {
|
|
|
|
line-height: 32px;
|
|
|
|
}
|
2016-03-14 21:55:26 +01:00
|
|
|
|
|
|
|
#wp-link .link-target {
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wp-link .submitbox .button {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
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-left: 0;
|
2014-03-11 01:04:14 +01:00
|
|
|
left: 10px;
|
|
|
|
right: 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 {
|
|
|
|
transition: none;
|
2016-04-01 23:13:29 +02:00
|
|
|
height: auto;
|
|
|
|
margin-top: 0;
|
|
|
|
top: 10px;
|
|
|
|
bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#link-selector {
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#search-panel .query-results {
|
|
|
|
position: static;
|
2014-03-14 06:55:16 +01:00
|
|
|
}
|
2014-03-12 04:07:15 +01:00
|
|
|
}
|
2012-08-23 02:04:18 +02: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;
|
|
|
|
height: calc(100% - 92px);
|
2014-03-14 06:55:16 +01:00
|
|
|
padding-bottom: 2px;
|
2014-03-11 01:04:14 +01:00
|
|
|
}
|
2016-04-01 23:13:29 +02:00
|
|
|
|
|
|
|
#search-panel .query-results {
|
|
|
|
position: static;
|
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
2015-07-23 01:05:25 +02:00
|
|
|
div.wp-link-preview {
|
2015-06-25 01:05:26 +02:00
|
|
|
float: left;
|
|
|
|
margin: 5px;
|
2015-06-25 06:42:28 +02:00
|
|
|
max-width: 694px;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2015-06-25 01:05:26 +02:00
|
|
|
}
|
|
|
|
|
2015-07-23 01:05:25 +02:00
|
|
|
div.wp-link-preview a {
|
2015-06-25 01:05:26 +02:00
|
|
|
color: #0073aa;
|
|
|
|
text-decoration: underline;
|
|
|
|
transition-property: border, background, color;
|
|
|
|
transition-duration: .05s;
|
|
|
|
transition-timing-function: ease-in-out;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2016-06-17 22:41:28 +02:00
|
|
|
div.wp-link-preview a.wplink-url-error {
|
2016-06-19 15:01:28 +02:00
|
|
|
color: #dc3232;
|
2016-06-17 22:41:28 +02:00
|
|
|
}
|
|
|
|
|
2016-01-23 01:08:26 +01:00
|
|
|
div.wp-link-input {
|
|
|
|
float: left;
|
|
|
|
margin: 2px;
|
|
|
|
max-width: 694px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.wp-link-input input {
|
|
|
|
width: 300px;
|
|
|
|
padding: 3px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2016-03-16 05:29:27 +01:00
|
|
|
.mce-toolbar div.wp-link-preview ~ .mce-btn,
|
|
|
|
.mce-toolbar div.wp-link-input ~ .mce-btn {
|
|
|
|
margin: 2px 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mce-inline-toolbar-grp .mce-btn-group .mce-btn:last-child {
|
|
|
|
margin-right: 2px;
|
|
|
|
}
|
|
|
|
|
2016-02-24 07:20:26 +01:00
|
|
|
.ui-autocomplete.wplink-autocomplete {
|
|
|
|
z-index: 100110;
|
|
|
|
max-height: 200px;
|
|
|
|
overflow-y: auto;
|
2016-04-11 17:12:29 +02:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
list-style: none;
|
|
|
|
position: absolute;
|
|
|
|
border: 1px solid #5b9dd9;
|
|
|
|
box-shadow: 0 1px 2px rgba( 30, 140, 190, 0.8 );
|
|
|
|
background-color: #fff;
|
2016-02-24 07:20:26 +01:00
|
|
|
}
|
|
|
|
|
2016-04-11 17:12:29 +02:00
|
|
|
.ui-autocomplete.wplink-autocomplete li {
|
|
|
|
margin-bottom: 0;
|
|
|
|
padding: 4px 10px;
|
2016-02-24 07:20:26 +01:00
|
|
|
clear: both;
|
|
|
|
white-space: normal;
|
2016-04-11 17:12:29 +02:00
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui-autocomplete.wplink-autocomplete li .wp-editor-float-right {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui-autocomplete.wplink-autocomplete li.ui-state-focus {
|
|
|
|
background-color: #ddd;
|
|
|
|
cursor: pointer;
|
2016-02-24 07:20:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and ( max-width: 782px ) {
|
|
|
|
div.wp-link-preview,
|
2016-01-23 01:08:26 +01:00
|
|
|
div.wp-link-input {
|
|
|
|
max-width: 70%;
|
2016-02-24 07:20:26 +01:00
|
|
|
max-width: calc(100% - 86px);
|
|
|
|
}
|
|
|
|
|
|
|
|
div.wp-link-preview {
|
|
|
|
margin: 8px 0 8px 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.wp-link-input {
|
|
|
|
width: 300px;
|
2016-01-23 01:08:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.wp-link-input input {
|
|
|
|
width: 100%;
|
|
|
|
font-size: 16px;
|
2016-03-16 05:29:27 +01:00
|
|
|
padding: 5px;
|
2016-01-23 01:08:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-23 02:04:18 +02:00
|
|
|
/* =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
|
|
|
.mce-fullscreen {
|
2014-03-08 01:41:16 +01:00
|
|
|
z-index: 100010;
|
2014-03-30 00:58: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;
|
|
|
|
}
|
|
|
|
|
2015-02-27 14:41:30 +01:00
|
|
|
/* rtl:ignore */
|
2014-04-13 02:23:15 +02:00
|
|
|
.mce-rtl .mce-flow-layout .mce-flow-layout-item > div {
|
|
|
|
direction: rtl;
|
|
|
|
}
|
|
|
|
|
2015-02-27 14:41:30 +01:00
|
|
|
/* rtl:ignore */
|
2014-04-13 02:23:15 +02:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
2012-09-28 02:33:40 +02:00
|
|
|
/* HiDPI */
|
Introduce a new, cross-browser HiDPI CSS @media rule to be used everywhere.
{{{
@media print,
(-o-min-device-pixel-ratio: 5/4),
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 120dpi) {
}}}
Serve HiDPI graphics for printing, regardless of screen resolution.
Specify Opera's vendor-prefixed device pixel ratio property, for Opera desktop.
Specify a minimum Webkit device pixel ratio of 1.25 instead of 1.5, to serve
2x images to Android devices that are between 1 and 1.5x (like the Nexus 7).
Firefox and Opera will respond to 1.5x on these devices, but Chrome will not.
Specify min-resolution, which covers Firefox 19. Opera on Android also supports
min-resolution, but Opera Mini does not support dppx, so the dpi unit is used.
props iammattthomas for the exhaustive research.
props lessbloat for patching.
fixes #22238.
git-svn-id: http://core.svn.wordpress.org/trunk@22629 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-11-17 07:50:08 +01:00
|
|
|
@media print,
|
|
|
|
(-webkit-min-device-pixel-ratio: 1.25),
|
|
|
|
(min-resolution: 120dpi) {
|
2015-06-01 19:38:29 +02:00
|
|
|
.wp-media-buttons .add_media span.wp-media-buttons-icon {
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
background: none;
|
2012-09-28 02:33:40 +02:00
|
|
|
}
|
|
|
|
}
|