2014-02-19 22:43:14 +01:00
|
|
|
/* General Widgets Styles */
|
|
|
|
|
|
|
|
.widget {
|
|
|
|
margin: 0 auto 10px;
|
|
|
|
position: relative;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget-top {
|
|
|
|
font-size: 13px;
|
|
|
|
font-weight: 600;
|
|
|
|
background: #f7f7f7;
|
|
|
|
}
|
|
|
|
|
2017-04-19 23:14:44 +02:00
|
|
|
.widget-top .widget-action {
|
|
|
|
border: 0;
|
|
|
|
margin: 0;
|
|
|
|
padding: 10px;
|
|
|
|
background: none;
|
|
|
|
cursor: pointer;
|
2014-07-12 17:47:15 +02:00
|
|
|
outline: none;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2015-10-10 18:34:25 +02:00
|
|
|
.widget-title h3,
|
2014-02-19 22:43:14 +01:00
|
|
|
.widget-title h4 {
|
|
|
|
margin: 0;
|
|
|
|
padding: 15px;
|
2015-10-10 18:34:25 +02:00
|
|
|
font-size: 1em;
|
2014-02-19 22:43:14 +01:00
|
|
|
line-height: 1;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widgets-holder-wrap .widget-inside {
|
|
|
|
border-top: none;
|
|
|
|
padding: 1px 15px 15px 15px;
|
|
|
|
line-height: 16px;
|
|
|
|
}
|
|
|
|
|
2017-09-08 21:11:43 +02:00
|
|
|
.widget.widget-dirty .widget-control-close-wrapper {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
.in-widget-title,
|
|
|
|
#widgets-right a.widget-control-edit,
|
|
|
|
#available-widgets .widget-description {
|
|
|
|
color: #666;
|
|
|
|
}
|
|
|
|
|
|
|
|
.deleting .widget-title,
|
2017-04-19 23:14:44 +02:00
|
|
|
.deleting .widget-top .widget-action .toggle-indicator:before {
|
2015-04-05 23:20:27 +02:00
|
|
|
color: #a0a5aa;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
Widgets: Introduce media widgets for images, audio, and video with extensible base for additional media widgets in the future.
The last time a new widget was introduced, Vuvuzelas were a thing, Angry Birds started taking over phones, and WordPress stopped shipping with Kubrick. Seven years and 17 releases without new widgets have been enough, time to spice up your sidebar!
Props westonruter, melchoyce, obenland, timmydcrawford, adamsilverstein, gonom9, wonderboymusic, Fab1en, DrewAPicture, sirbrillig, joen, matias, samikeijonen, afercia, celloexpressions, designsimply, michelleweber, ranh, kjellr, karmatosed.
Fixes #32417, #39993, #39994, #39995.
Built from https://develop.svn.wordpress.org/trunk@40640
git-svn-id: http://core.svn.wordpress.org/trunk@40501 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-11 23:11:44 +02:00
|
|
|
/* Media Widgets */
|
|
|
|
.wp-core-ui .media-widget-control.selected .placeholder,
|
|
|
|
.wp-core-ui .media-widget-control.selected .not-selected,
|
|
|
|
.wp-core-ui .media-widget-control .selected {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-widget-control.selected .selected {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-widget-buttons {
|
|
|
|
text-align: left;
|
2017-05-12 19:50:44 +02:00
|
|
|
margin-top: 0;
|
Widgets: Introduce media widgets for images, audio, and video with extensible base for additional media widgets in the future.
The last time a new widget was introduced, Vuvuzelas were a thing, Angry Birds started taking over phones, and WordPress stopped shipping with Kubrick. Seven years and 17 releases without new widgets have been enough, time to spice up your sidebar!
Props westonruter, melchoyce, obenland, timmydcrawford, adamsilverstein, gonom9, wonderboymusic, Fab1en, DrewAPicture, sirbrillig, joen, matias, samikeijonen, afercia, celloexpressions, designsimply, michelleweber, ranh, kjellr, karmatosed.
Fixes #32417, #39993, #39994, #39995.
Built from https://develop.svn.wordpress.org/trunk@40640
git-svn-id: http://core.svn.wordpress.org/trunk@40501 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-11 23:11:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.media-widget-control .media-widget-buttons .button {
|
|
|
|
width: auto;
|
2017-05-12 19:50:44 +02:00
|
|
|
height: auto;
|
|
|
|
margin-top: 12px;
|
|
|
|
white-space: normal;
|
Widgets: Introduce media widgets for images, audio, and video with extensible base for additional media widgets in the future.
The last time a new widget was introduced, Vuvuzelas were a thing, Angry Birds started taking over phones, and WordPress stopped shipping with Kubrick. Seven years and 17 releases without new widgets have been enough, time to spice up your sidebar!
Props westonruter, melchoyce, obenland, timmydcrawford, adamsilverstein, gonom9, wonderboymusic, Fab1en, DrewAPicture, sirbrillig, joen, matias, samikeijonen, afercia, celloexpressions, designsimply, michelleweber, ranh, kjellr, karmatosed.
Fixes #32417, #39993, #39994, #39995.
Built from https://develop.svn.wordpress.org/trunk@40640
git-svn-id: http://core.svn.wordpress.org/trunk@40501 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-11 23:11:44 +02:00
|
|
|
}
|
2017-05-12 19:50:44 +02:00
|
|
|
|
Widgets: Introduce media widgets for images, audio, and video with extensible base for additional media widgets in the future.
The last time a new widget was introduced, Vuvuzelas were a thing, Angry Birds started taking over phones, and WordPress stopped shipping with Kubrick. Seven years and 17 releases without new widgets have been enough, time to spice up your sidebar!
Props westonruter, melchoyce, obenland, timmydcrawford, adamsilverstein, gonom9, wonderboymusic, Fab1en, DrewAPicture, sirbrillig, joen, matias, samikeijonen, afercia, celloexpressions, designsimply, michelleweber, ranh, kjellr, karmatosed.
Fixes #32417, #39993, #39994, #39995.
Built from https://develop.svn.wordpress.org/trunk@40640
git-svn-id: http://core.svn.wordpress.org/trunk@40501 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-11 23:11:44 +02:00
|
|
|
.media-widget-buttons .button:first-child {
|
2017-05-12 19:50:44 +02:00
|
|
|
margin-right: 8px;
|
Widgets: Introduce media widgets for images, audio, and video with extensible base for additional media widgets in the future.
The last time a new widget was introduced, Vuvuzelas were a thing, Angry Birds started taking over phones, and WordPress stopped shipping with Kubrick. Seven years and 17 releases without new widgets have been enough, time to spice up your sidebar!
Props westonruter, melchoyce, obenland, timmydcrawford, adamsilverstein, gonom9, wonderboymusic, Fab1en, DrewAPicture, sirbrillig, joen, matias, samikeijonen, afercia, celloexpressions, designsimply, michelleweber, ranh, kjellr, karmatosed.
Fixes #32417, #39993, #39994, #39995.
Built from https://develop.svn.wordpress.org/trunk@40640
git-svn-id: http://core.svn.wordpress.org/trunk@40501 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-11 23:11:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.media-widget-control .placeholder {
|
|
|
|
border: 1px dashed #b4b9be;
|
|
|
|
box-sizing: border-box;
|
2017-09-25 08:28:45 +02:00
|
|
|
cursor: pointer;
|
Widgets: Introduce media widgets for images, audio, and video with extensible base for additional media widgets in the future.
The last time a new widget was introduced, Vuvuzelas were a thing, Angry Birds started taking over phones, and WordPress stopped shipping with Kubrick. Seven years and 17 releases without new widgets have been enough, time to spice up your sidebar!
Props westonruter, melchoyce, obenland, timmydcrawford, adamsilverstein, gonom9, wonderboymusic, Fab1en, DrewAPicture, sirbrillig, joen, matias, samikeijonen, afercia, celloexpressions, designsimply, michelleweber, ranh, kjellr, karmatosed.
Fixes #32417, #39993, #39994, #39995.
Built from https://develop.svn.wordpress.org/trunk@40640
git-svn-id: http://core.svn.wordpress.org/trunk@40501 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-11 23:11:44 +02:00
|
|
|
line-height: 20px;
|
|
|
|
padding: 9px 0;
|
|
|
|
position: relative;
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-widget-control .media-widget-preview {
|
2017-10-11 21:45:49 +02:00
|
|
|
background: transparent;
|
Widgets: Introduce media widgets for images, audio, and video with extensible base for additional media widgets in the future.
The last time a new widget was introduced, Vuvuzelas were a thing, Angry Birds started taking over phones, and WordPress stopped shipping with Kubrick. Seven years and 17 releases without new widgets have been enough, time to spice up your sidebar!
Props westonruter, melchoyce, obenland, timmydcrawford, adamsilverstein, gonom9, wonderboymusic, Fab1en, DrewAPicture, sirbrillig, joen, matias, samikeijonen, afercia, celloexpressions, designsimply, michelleweber, ranh, kjellr, karmatosed.
Fixes #32417, #39993, #39994, #39995.
Built from https://develop.svn.wordpress.org/trunk@40640
git-svn-id: http://core.svn.wordpress.org/trunk@40501 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-11 23:11:44 +02:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.media-widget-control .media-widget-preview .notice {
|
|
|
|
text-align: initial;
|
|
|
|
}
|
|
|
|
.media-frame .media-widget-embed-notice p code,
|
|
|
|
.media-widget-control .notice p code {
|
|
|
|
padding: 0 3px 0 0;
|
|
|
|
}
|
|
|
|
.media-frame .media-widget-embed-notice {
|
|
|
|
margin-top: 16px;
|
|
|
|
}
|
|
|
|
.media-widget-control .media-widget-preview img {
|
|
|
|
max-width: 100%;
|
2017-08-23 19:15:42 +02:00
|
|
|
vertical-align: middle;
|
Widgets: Introduce media widgets for images, audio, and video with extensible base for additional media widgets in the future.
The last time a new widget was introduced, Vuvuzelas were a thing, Angry Birds started taking over phones, and WordPress stopped shipping with Kubrick. Seven years and 17 releases without new widgets have been enough, time to spice up your sidebar!
Props westonruter, melchoyce, obenland, timmydcrawford, adamsilverstein, gonom9, wonderboymusic, Fab1en, DrewAPicture, sirbrillig, joen, matias, samikeijonen, afercia, celloexpressions, designsimply, michelleweber, ranh, kjellr, karmatosed.
Fixes #32417, #39993, #39994, #39995.
Built from https://develop.svn.wordpress.org/trunk@40640
git-svn-id: http://core.svn.wordpress.org/trunk@40501 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-11 23:11:44 +02:00
|
|
|
}
|
|
|
|
.media-widget-control .media-widget-preview .wp-video-shortcode {
|
|
|
|
background: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-frame.media-widget .media-toolbar-secondary {
|
|
|
|
min-width: 300px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-frame.media-widget .image-details .embed-media-settings .setting.align,
|
|
|
|
.media-frame.media-widget .attachment-display-settings .setting.align,
|
|
|
|
.media-frame.media-widget .embed-media-settings .setting.align,
|
|
|
|
.media-frame.media-widget .embed-link-settings .setting.link-text,
|
|
|
|
.media-frame.media-widget .replace-attachment,
|
|
|
|
.media-frame.media-widget .checkbox-setting.autoplay {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-widget-video-preview {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-widget-video-link {
|
|
|
|
display: inline-block;
|
|
|
|
min-height: 132px;
|
|
|
|
width: 100%;
|
|
|
|
background: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-widget-video-link .dashicons {
|
|
|
|
font: normal 60px/1 'dashicons';
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
top: -90px;
|
|
|
|
color: white;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-widget-video-link.no-poster .dashicons {
|
|
|
|
top: 30px;
|
|
|
|
}
|
|
|
|
|
2017-11-10 02:29:40 +01:00
|
|
|
.media-frame #embed-url-field.invalid,
|
|
|
|
.media-widget-image-link > .link:invalid {
|
2017-10-03 18:03:32 +02:00
|
|
|
border: 1px solid #dc3232;
|
Widgets: Introduce media widgets for images, audio, and video with extensible base for additional media widgets in the future.
The last time a new widget was introduced, Vuvuzelas were a thing, Angry Birds started taking over phones, and WordPress stopped shipping with Kubrick. Seven years and 17 releases without new widgets have been enough, time to spice up your sidebar!
Props westonruter, melchoyce, obenland, timmydcrawford, adamsilverstein, gonom9, wonderboymusic, Fab1en, DrewAPicture, sirbrillig, joen, matias, samikeijonen, afercia, celloexpressions, designsimply, michelleweber, ranh, kjellr, karmatosed.
Fixes #32417, #39993, #39994, #39995.
Built from https://develop.svn.wordpress.org/trunk@40640
git-svn-id: http://core.svn.wordpress.org/trunk@40501 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-11 23:11:44 +02:00
|
|
|
}
|
|
|
|
|
2017-08-14 19:56:42 +02:00
|
|
|
.media-widget-image-link {
|
|
|
|
margin: 1em 0;
|
|
|
|
}
|
|
|
|
|
2017-09-25 08:28:45 +02:00
|
|
|
.media-widget-gallery-preview {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
|
|
|
flex-wrap: wrap;
|
2017-10-11 21:45:49 +02:00
|
|
|
margin: -1.79104477%;
|
2017-09-25 08:28:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.media-widget-preview.media_gallery,
|
|
|
|
.media-widget-preview.media_image {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2018-01-23 15:03:42 +01:00
|
|
|
.media-widget-preview .placeholder {
|
2017-10-11 21:45:49 +02:00
|
|
|
background: #f1f1f1;
|
|
|
|
}
|
|
|
|
|
2017-09-25 08:28:45 +02:00
|
|
|
.media-widget-gallery-preview .gallery-item {
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 50%;
|
|
|
|
margin: 0;
|
2017-10-11 21:45:49 +02:00
|
|
|
background: transparent;
|
2017-09-25 08:28:45 +02:00
|
|
|
}
|
|
|
|
|
2018-01-23 15:03:42 +01:00
|
|
|
.media-widget-gallery-preview .gallery-item .gallery-icon {
|
2017-10-11 23:14:51 +02:00
|
|
|
margin: 4.5%;
|
|
|
|
}
|
|
|
|
|
2017-09-25 08:28:45 +02:00
|
|
|
/*
|
|
|
|
* Use targeted nth-last-child selectors to control the size of each image
|
|
|
|
* based on how many gallery items are present in the grid.
|
|
|
|
* See: https://alistapart.com/article/quantity-queries-for-css
|
|
|
|
*/
|
|
|
|
.media-widget-gallery-preview .gallery-item:nth-last-child(3):first-child,
|
|
|
|
.media-widget-gallery-preview .gallery-item:nth-last-child(3):first-child ~ .gallery-item,
|
|
|
|
.media-widget-gallery-preview .gallery-item:nth-last-child(n+5),
|
|
|
|
.media-widget-gallery-preview .gallery-item:nth-last-child(n+5) ~ .gallery-item,
|
|
|
|
.media-widget-gallery-preview .gallery-item:nth-last-child(n+6),
|
|
|
|
.media-widget-gallery-preview .gallery-item:nth-last-child(n+6) ~ .gallery-item {
|
|
|
|
max-width: 33.33%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-widget-gallery-preview .gallery-item img {
|
|
|
|
height: auto;
|
|
|
|
vertical-align: bottom;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-widget-gallery-preview .gallery-icon {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-widget-gallery-preview .gallery-icon-placeholder {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
background-color: rgba( 0, 0, 0, .5 );
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-widget-gallery-preview .gallery-icon-placeholder-text {
|
|
|
|
font-weight: 600;
|
|
|
|
font-size: 2em;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
/* Widget Dragging Helpers */
|
|
|
|
.widget.ui-draggable-dragging {
|
|
|
|
min-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget.ui-sortable-helper {
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget-placeholder {
|
2015-04-05 23:20:27 +02:00
|
|
|
border: 1px dashed #b4b9be;
|
2014-02-19 22:43:14 +01:00
|
|
|
margin: 0 auto 10px;
|
|
|
|
height: 45px;
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
#widgets-right .widget-placeholder {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#widgets-right .closed .widget-placeholder {
|
|
|
|
height: 0;
|
|
|
|
border: 0;
|
|
|
|
margin-top: -10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Widget Sidebars */
|
|
|
|
.sidebar-name {
|
|
|
|
position: relative;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2017-09-27 18:29:44 +02:00
|
|
|
.js .sidebar-name {
|
|
|
|
cursor: pointer;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2017-09-27 18:29:44 +02:00
|
|
|
.sidebar-name .handlediv {
|
|
|
|
float: right;
|
|
|
|
width: 38px;
|
|
|
|
height: 38px;
|
|
|
|
border: 0;
|
|
|
|
margin: 0;
|
|
|
|
padding: 8px;
|
|
|
|
background: none;
|
2014-02-19 22:43:14 +01:00
|
|
|
cursor: pointer;
|
2017-09-27 18:29:44 +02:00
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#widgets-right .sidebar-name .handlediv {
|
|
|
|
margin: 5px 3px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar-name .handlediv:focus {
|
|
|
|
box-shadow: none;
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#widgets-left .sidebar-name .toggle-indicator {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#widgets-left .widgets-holder-wrap.closed .sidebar-name .toggle-indicator,
|
|
|
|
#widgets-left .sidebar-name:hover .toggle-indicator,
|
|
|
|
#widgets-left .sidebar-name .handlediv:focus .toggle-indicator {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar-name .toggle-indicator:before {
|
|
|
|
padding: 1px 2px 1px 0;
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar-name .handlediv:focus .toggle-indicator:before {
|
|
|
|
box-shadow:
|
|
|
|
0 0 0 1px #5b9dd9,
|
|
|
|
0 0 2px 1px rgba(30, 140, 190, .8);
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
2015-10-10 18:34:25 +02:00
|
|
|
.sidebar-name h2,
|
2014-02-19 22:43:14 +01:00
|
|
|
.sidebar-name h3 {
|
|
|
|
margin: 0;
|
|
|
|
padding: 8px 10px;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widgets-holder-wrap .description {
|
|
|
|
padding: 0 0 15px;
|
|
|
|
margin: 0;
|
|
|
|
font-style: normal;
|
2016-01-26 01:04:26 +01:00
|
|
|
color: #72777c;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget-holder .description,
|
|
|
|
.inactive-sidebar .description {
|
|
|
|
color: #555d66;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#widgets-right .widgets-holder-wrap .description {
|
|
|
|
padding-left: 7px;
|
|
|
|
padding-right: 7px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Widgets 2-col Layout */
|
|
|
|
div.widget-liquid-left {
|
|
|
|
margin: 0;
|
|
|
|
width: 38%;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.widget-liquid-right {
|
|
|
|
float: right;
|
|
|
|
width: 58%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Widgets Left - Available Widgets */
|
|
|
|
|
|
|
|
div#widgets-left {
|
|
|
|
padding-top: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#widgets-left .closed .sidebar-name,
|
|
|
|
div#widgets-left .inactive-sidebar.closed .sidebar-name {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2015-10-10 18:34:25 +02:00
|
|
|
div#widgets-left .sidebar-name h2,
|
2014-02-19 22:43:14 +01:00
|
|
|
div#widgets-left .sidebar-name h3 {
|
|
|
|
padding: 10px 0;
|
|
|
|
margin: 0 10px 0 0;
|
|
|
|
}
|
|
|
|
|
2016-01-13 23:36:26 +01:00
|
|
|
#widgets-left .widgets-holder-wrap,
|
2014-02-19 22:43:14 +01:00
|
|
|
div#widgets-left .widget-holder {
|
|
|
|
background: transparent;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#widgets-left .widgets-holder-wrap {
|
|
|
|
border: none;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#available-widgets .widget-action {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#available-widgets .widget {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#available-widgets .widget:nth-child(odd) {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
|
|
|
#available-widgets .widget .widget-description {
|
|
|
|
display: block;
|
|
|
|
padding: 10px 15px;
|
|
|
|
font-size: 12px;
|
2017-09-06 20:28:43 +02:00
|
|
|
overflow-wrap: break-word;
|
|
|
|
word-wrap: break-word;
|
|
|
|
-ms-word-break: break-all;
|
|
|
|
word-break: break-word;
|
|
|
|
-ms-hyphens: auto;
|
|
|
|
-webkit-hyphens: auto;
|
|
|
|
hyphens: auto;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#available-widgets #widget-list {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Inactive Sidebars */
|
|
|
|
#widgets-left .inactive-sidebar {
|
|
|
|
clear: both;
|
|
|
|
width: 100%;
|
|
|
|
background: transparent;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0 0 20px 0;
|
|
|
|
border: none;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#widgets-left .inactive-sidebar.first {
|
|
|
|
margin-top: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Not sure what this is for... */
|
|
|
|
div#widgets-left .inactive-sidebar .widget.expanded {
|
|
|
|
left: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget-title-action {
|
|
|
|
float: right;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#widgets-left .inactive-sidebar .widgets-sortables {
|
|
|
|
min-height: 42px;
|
|
|
|
padding: 0;
|
|
|
|
background: transparent;
|
|
|
|
margin: 0;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Widgets Right */
|
|
|
|
|
|
|
|
div#widgets-right .sidebars-column-1,
|
|
|
|
div#widgets-right .sidebars-column-2 {
|
|
|
|
max-width: 450px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#widgets-right .widgets-holder-wrap {
|
|
|
|
margin: 10px 0 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#widgets-right .sidebar-description {
|
|
|
|
min-height: 20px;
|
|
|
|
margin-top: -5px;
|
|
|
|
}
|
|
|
|
|
2015-10-10 18:34:25 +02:00
|
|
|
div#widgets-right .sidebar-name h2,
|
2014-02-19 22:43:14 +01:00
|
|
|
div#widgets-right .sidebar-name h3 {
|
|
|
|
padding: 15px 7px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#widgets-right .widget-top {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#widgets-right .widgets-sortables {
|
|
|
|
padding: 0 8px;
|
|
|
|
margin-bottom: 9px;
|
|
|
|
position: relative;
|
|
|
|
min-height: 123px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#widgets-right .closed .widgets-sortables {
|
|
|
|
min-height: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2015-10-21 07:23:26 +02:00
|
|
|
.sidebar-name .spinner,
|
|
|
|
.remove-inactive-widgets .spinner {
|
2014-02-19 22:43:14 +01:00
|
|
|
float: none;
|
2015-04-03 06:52:27 +02:00
|
|
|
position: relative;
|
|
|
|
top: -2px;
|
|
|
|
margin: -5px 5px;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Dragging a widget over a closed sidebar */
|
|
|
|
#widgets-right .widgets-holder-wrap.widget-hover {
|
2016-01-26 01:04:26 +01:00
|
|
|
border-color: #72777c;
|
2014-02-19 22:43:14 +01:00
|
|
|
box-shadow: 0 1px 2px rgba(0,0,0,0.3);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Accessibility Mode */
|
|
|
|
.widgets_access #widgets-left .widget .widget-top {
|
|
|
|
cursor: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widgets_access #wpwrap .widgets-holder-wrap.closed .sidebar-description,
|
|
|
|
.widgets_access #wpwrap .widgets-holder-wrap.closed .widget,
|
|
|
|
.widgets_access #wpwrap .widget-control-edit {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widgets_access #widgets-left .widget .widget-top:hover,
|
|
|
|
.widgets_access #widgets-right .widget .widget-top:hover {
|
|
|
|
border-color: #ddd;
|
|
|
|
}
|
|
|
|
|
|
|
|
#available-widgets .widget-control-edit .edit,
|
|
|
|
#widgets-left .inactive-sidebar .widget-control-edit .add,
|
|
|
|
#widgets-right .widget-control-edit .add {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget-control-edit {
|
|
|
|
display: block;
|
|
|
|
color: #666;
|
|
|
|
background: #EEE;
|
|
|
|
padding: 0 15px;
|
|
|
|
line-height: 43px;
|
|
|
|
border-left: 1px solid #DDD;
|
|
|
|
}
|
|
|
|
|
|
|
|
#widgets-left .widget-control-edit:hover,
|
|
|
|
#widgets-right .widget-control-edit:hover {
|
|
|
|
color: #fff;
|
|
|
|
background: #444;
|
|
|
|
border-left: 0;
|
|
|
|
outline: 1px solid #444;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widgets-holder-wrap .sidebar-name,
|
|
|
|
.widgets-holder-wrap .sidebar-description {
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.editwidget {
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.editwidget .widget-inside {
|
|
|
|
display: block;
|
|
|
|
padding: 0 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.editwidget .widget-control-actions {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.js .widgets-holder-wrap.closed .widget,
|
|
|
|
.js .widgets-holder-wrap.closed .sidebar-description,
|
2015-10-21 07:23:26 +02:00
|
|
|
.js .widgets-holder-wrap.closed .remove-inactive-widgets,
|
2016-04-28 22:40:28 +02:00
|
|
|
.js .widgets-holder-wrap.closed .description,
|
2014-02-19 22:43:14 +01:00
|
|
|
.js .closed br.clear {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2015-05-10 02:32:31 +02:00
|
|
|
.js .widgets-holder-wrap.closed .widget.ui-sortable-helper {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
/* Hide Widget Settings by Default */
|
|
|
|
.widget-inside,
|
|
|
|
.widget-description {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget-inside {
|
|
|
|
background: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Dragging widgets over the available widget area show's a "Deactivate" message */
|
|
|
|
#removing-widget {
|
|
|
|
display: none;
|
2016-06-17 20:37:28 +02:00
|
|
|
font-weight: 400;
|
2014-02-19 22:43:14 +01:00
|
|
|
padding-left: 15px;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 1;
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.js #removing-widget {
|
2015-02-11 23:18:26 +01:00
|
|
|
color: #00a0d2;
|
2014-02-19 22:43:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.widget-control-noform,
|
|
|
|
#access-off,
|
|
|
|
.widgets_access .widget-action,
|
2017-09-27 18:29:44 +02:00
|
|
|
.widgets_access .handlediv,
|
2014-02-19 22:43:14 +01:00
|
|
|
.widgets_access #access-on,
|
|
|
|
.widgets_access .widget-holder .description,
|
|
|
|
.no-js .widget-holder .description {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widgets_access .widget-holder,
|
|
|
|
.widgets_access #widget-list {
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widgets_access #access-off {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widgets_access .sidebar-name,
|
|
|
|
.widgets_access .widget .widget-top {
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Widgets Area Chooser */
|
|
|
|
.widget-liquid-left #widgets-left.chooser #available-widgets .widget,
|
|
|
|
.widget-liquid-left #widgets-left.chooser .inactive-sidebar {
|
|
|
|
transition: opacity 0.1s linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget-liquid-left #widgets-left.chooser #available-widgets .widget,
|
|
|
|
.widget-liquid-left #widgets-left.chooser .inactive-sidebar {
|
|
|
|
/* -webkit-filter: blur(1px); */
|
|
|
|
opacity: 0.2;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget-liquid-left #widgets-left.chooser #available-widgets .widget-in-question {
|
|
|
|
/* -webkit-filter: none; */
|
|
|
|
opacity: 1;
|
|
|
|
pointer-events: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widgets-chooser ul,
|
|
|
|
#widgets-left .widget-in-question .widget-top,
|
|
|
|
#available-widgets .widget-top:hover,
|
|
|
|
div#widgets-right .widget-top:hover,
|
|
|
|
#widgets-left .widget-top:hover {
|
|
|
|
border-color: #999;
|
|
|
|
box-shadow: 0 1px 2px rgba(0,0,0,0.1);
|
|
|
|
}
|
|
|
|
|
|
|
|
.widgets-chooser ul.widgets-chooser-sidebars {
|
|
|
|
margin: 0;
|
|
|
|
list-style-type: none;
|
|
|
|
max-height: 300px;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widgets-chooser {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widgets-chooser ul {
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widgets-chooser li {
|
|
|
|
padding: 10px 15px 10px 35px;
|
|
|
|
border-bottom: 1px solid #ccc;
|
|
|
|
background: #fff;
|
|
|
|
margin: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
outline: none;
|
|
|
|
position: relative;
|
|
|
|
transition: background 0.2s ease-in-out;
|
|
|
|
}
|
|
|
|
|
2016-02-19 19:44:27 +01:00
|
|
|
/* @todo looks like these hover/focus states are overridden by .widgets-chooser-selected */
|
2014-02-19 22:43:14 +01:00
|
|
|
.widgets-chooser li:hover,
|
|
|
|
.widgets-chooser li:focus {
|
|
|
|
background: rgba(255,255,255,0.7);
|
|
|
|
}
|
|
|
|
|
|
|
|
.widgets-chooser li:focus:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f147";
|
2014-02-19 22:43:14 +01:00
|
|
|
display: block;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
2015-09-05 21:57:25 +02:00
|
|
|
font: normal 26px/1 dashicons;
|
2016-02-19 19:44:27 +01:00
|
|
|
color: #555d66;
|
2014-02-19 22:43:14 +01:00
|
|
|
position: absolute;
|
|
|
|
top: 7px;
|
|
|
|
left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widgets-chooser li:last-child {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widgets-chooser li.widgets-chooser-selected {
|
2015-02-11 23:18:26 +01:00
|
|
|
background: #00a0d2;
|
2014-02-19 22:43:14 +01:00
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widgets-chooser li.widgets-chooser-selected:before,
|
|
|
|
.widgets-chooser li.widgets-chooser-selected:focus:before {
|
2015-09-10 22:22:25 +02:00
|
|
|
content: "\f147";
|
2014-02-19 22:43:14 +01:00
|
|
|
display: block;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
2015-09-05 21:57:25 +02:00
|
|
|
font: normal 26px/1 dashicons;
|
2014-02-19 22:43:14 +01:00
|
|
|
color: #fff;
|
|
|
|
position: absolute;
|
|
|
|
top: 7px;
|
|
|
|
left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widgets-chooser .widgets-chooser-actions {
|
|
|
|
padding: 10px 0 12px 0;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widgets-chooser button {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#available-widgets .widget .widget-top {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2015-05-10 02:32:31 +02:00
|
|
|
#available-widgets .widget.ui-draggable-dragging .widget-top {
|
|
|
|
cursor: move;
|
|
|
|
}
|
|
|
|
|
2017-07-14 19:09:43 +02:00
|
|
|
/* =Specific widget styling
|
|
|
|
-------------------------------------------------------------- */
|
|
|
|
.text-widget-fields {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.text-widget-fields [hidden] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.text-widget-fields .wp-pointer.wp-pointer-top {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 3;
|
|
|
|
top: 100px;
|
|
|
|
right: 10px;
|
|
|
|
left: 10px;
|
|
|
|
}
|
|
|
|
.text-widget-fields .wp-pointer .wp-pointer-arrow {
|
|
|
|
left: auto;
|
|
|
|
right: 15px;
|
|
|
|
}
|
|
|
|
.text-widget-fields .wp-pointer .wp-pointer-buttons {
|
|
|
|
line-height: 1.4em;
|
|
|
|
}
|
|
|
|
|
Editor: Add CodeMirror-powered code editor with syntax highlighting, linting, and auto-completion.
* Code editor is integrated into the Theme/Plugin Editor, Additional CSS in Customizer, and Custom HTML widget. Code editor is not yet integrated into the post editor, and it may not be until accessibility concerns are addressed.
* The CodeMirror component in the Custom HTML widget is integrated in a similar way to TinyMCE being integrated into the Text widget, adopting the same approach for integrating dynamic JavaScript-initialized fields.
* Linting is performed for JS, CSS, HTML, and JSON via JSHint, CSSLint, HTMLHint, and JSONLint respectively. Linting is not yet supported for PHP.
* When user lacks `unfiltered_html` the capability, the Custom HTML widget will report any Kses-invalid elements and attributes as errors via a custom Kses rule for HTMLHint.
* When linting errors are detected, the user will be prevented from saving the code until the errors are fixed, reducing instances of broken websites.
* The placeholder value is removed from Custom CSS in favor of a fleshed-out section description which now auto-expands when the CSS field is empty. See #39892.
* The CodeMirror library is included as `wp.CodeMirror` to prevent conflicts with any existing `CodeMirror` global.
* An `wp.codeEditor.initialize()` API in JS is provided to convert a `textarea` into CodeMirror, with a `wp_enqueue_code_editor()` function in PHP to manage enqueueing the assets and settings needed to edit a given type of code.
* A user preference is added to manage whether or not "syntax highlighting" is enabled. The feature is opt-out, being enabled by default.
* Allowed file extensions in the theme and plugin editors have been updated to include formats which CodeMirror has modes for: `conf`, `css`, `diff`, `patch`, `html`, `htm`, `http`, `js`, `json`, `jsx`, `less`, `md`, `php`, `phtml`, `php3`, `php4`, `php5`, `php7`, `phps`, `scss`, `sass`, `sh`, `bash`, `sql`, `svg`, `xml`, `yml`, `yaml`, `txt`.
Props westonruter, georgestephanis, obenland, melchoyce, pixolin, mizejewski, michelleweber, afercia, grahamarmfield, samikeijonen, rianrietveld, iseulde.
See #38707.
Fixes #12423, #39892.
Built from https://develop.svn.wordpress.org/trunk@41376
git-svn-id: http://core.svn.wordpress.org/trunk@41209 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-09-13 08:08:47 +02:00
|
|
|
.custom-html-widget-fields > p > .CodeMirror {
|
|
|
|
border: 1px solid #e5e5e5;
|
|
|
|
}
|
|
|
|
.custom-html-widget-fields code {
|
|
|
|
padding-top: 1px;
|
|
|
|
padding-bottom: 1px;
|
|
|
|
}
|
|
|
|
ul.CodeMirror-hints {
|
|
|
|
z-index: 101; /* Due to z-index 100 set on .widget.open */
|
|
|
|
}
|
|
|
|
.widget-control-actions .custom-html-widget-save-button.button.validation-blocked {
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:43:14 +01:00
|
|
|
/* =Media Queries
|
|
|
|
-------------------------------------------------------------- */
|
|
|
|
|
|
|
|
@media screen and (max-width: 480px) {
|
|
|
|
div.widget-liquid-left {
|
|
|
|
width: 100%;
|
|
|
|
float: none;
|
|
|
|
border-right: none;
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#widgets-left .sidebar-name {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#widgets-left #available-widgets .widget-top {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#widgets-left .inactive-sidebar .widgets-sortables {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.widget-liquid-right {
|
|
|
|
width: 100%;
|
|
|
|
float: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.widget {
|
2017-09-26 21:05:46 +02:00
|
|
|
margin: 0 auto !important;
|
2014-02-19 22:43:14 +01:00
|
|
|
max-width: 480px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 320px) {
|
|
|
|
div.widget {
|
|
|
|
max-width: 320px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (min-width: 1250px) {
|
|
|
|
#widgets-left #available-widgets .widget {
|
|
|
|
width: 49%;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget.ui-draggable-dragging {
|
|
|
|
min-width: 49%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#widgets-left #available-widgets .widget:nth-child(even) {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
#widgets-right .sidebars-column-1,
|
|
|
|
#widgets-right .sidebars-column-2 {
|
|
|
|
float: left;
|
|
|
|
width: 49%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#widgets-right .sidebars-column-1 {
|
|
|
|
margin-right: 2%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#widgets-right.single-sidebar .sidebars-column-1,
|
|
|
|
#widgets-right.single-sidebar .sidebars-column-2 {
|
|
|
|
float: none;
|
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|