2013-02-28 18:54:00 +01:00
|
|
|
/*!
|
|
|
|
* jQuery UI CSS Framework 1.10.1
|
|
|
|
* http://jqueryui.com
|
2012-08-23 02:04:18 +02:00
|
|
|
*
|
2013-02-28 18:54:00 +01:00
|
|
|
* Copyright 2013 jQuery Foundation and other contributors
|
|
|
|
* Released under the MIT license.
|
2012-08-23 02:04:18 +02:00
|
|
|
* http://jquery.org/license
|
|
|
|
*
|
|
|
|
* http://docs.jquery.com/UI/Theming/API
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Layout helpers
|
|
|
|
----------------------------------*/
|
2013-02-28 18:54:00 +01:00
|
|
|
.ui-helper-hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.ui-helper-hidden-accessible {
|
|
|
|
border: 0;
|
|
|
|
clip: rect(0 0 0 0);
|
|
|
|
height: 1px;
|
|
|
|
margin: -1px;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 0;
|
|
|
|
position: absolute;
|
|
|
|
width: 1px;
|
|
|
|
}
|
|
|
|
.ui-helper-reset {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
outline: 0;
|
|
|
|
line-height: 1.3;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 100%;
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
.ui-helper-clearfix:before,
|
|
|
|
.ui-helper-clearfix:after {
|
|
|
|
content: "";
|
|
|
|
display: table;
|
|
|
|
border-collapse: collapse;
|
|
|
|
}
|
|
|
|
.ui-helper-clearfix:after {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
.ui-helper-clearfix {
|
|
|
|
min-height: 0; /* support: IE7 */
|
|
|
|
}
|
|
|
|
.ui-helper-zfix {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
opacity: 0;
|
|
|
|
filter:Alpha(Opacity=0);
|
|
|
|
}
|
|
|
|
|
2012-08-23 02:04:18 +02:00
|
|
|
/* Interaction Cues
|
|
|
|
----------------------------------*/
|
2013-02-28 18:54:00 +01:00
|
|
|
.ui-state-disabled {
|
|
|
|
cursor: default !important;
|
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
|
|
|
|
/* Icons
|
|
|
|
----------------------------------*/
|
|
|
|
|
|
|
|
/* states and images */
|
2013-02-28 18:54:00 +01:00
|
|
|
.ui-icon {
|
|
|
|
display: block;
|
|
|
|
text-indent: -99999px;
|
|
|
|
overflow: hidden;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2013-02-28 18:54:00 +01:00
|
|
|
/*!
|
|
|
|
* jQuery UI Resizable 1.10.1
|
|
|
|
* http://jqueryui.com
|
2012-08-23 02:04:18 +02:00
|
|
|
*
|
2013-02-28 18:54:00 +01:00
|
|
|
* Copyright 2013 jQuery Foundation and other contributors
|
|
|
|
* Released under the MIT license.
|
2012-08-23 02:04:18 +02:00
|
|
|
* http://jquery.org/license
|
|
|
|
*
|
|
|
|
* http://docs.jquery.com/UI/Resizable#theming
|
|
|
|
*/
|
2013-02-28 18:54:00 +01:00
|
|
|
.ui-resizable {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.ui-resizable-handle {
|
|
|
|
position: absolute;
|
|
|
|
font-size: 0.1px;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.ui-resizable-disabled .ui-resizable-handle,
|
|
|
|
.ui-resizable-autohide .ui-resizable-handle {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.ui-resizable-n {
|
|
|
|
cursor: n-resize;
|
|
|
|
height: 7px;
|
|
|
|
width: 100%;
|
|
|
|
top: -5px;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
.ui-resizable-s {
|
|
|
|
cursor: s-resize;
|
|
|
|
height: 7px;
|
|
|
|
width: 100%;
|
|
|
|
bottom: -5px;
|
|
|
|
left: 0;
|
|
|
|
}
|
2013-11-17 17:18:11 +01:00
|
|
|
/* @noflip */
|
2013-02-28 18:54:00 +01:00
|
|
|
.ui-resizable-e {
|
|
|
|
cursor: e-resize;
|
|
|
|
width: 7px;
|
|
|
|
right: -5px;
|
|
|
|
top: 0;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2013-11-17 17:18:11 +01:00
|
|
|
/* @noflip */
|
2013-02-28 18:54:00 +01:00
|
|
|
.ui-resizable-w {
|
|
|
|
cursor: w-resize;
|
|
|
|
width: 7px;
|
|
|
|
left: -5px;
|
|
|
|
top: 0;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2013-11-17 17:18:11 +01:00
|
|
|
/* @noflip */
|
2013-02-28 18:54:00 +01:00
|
|
|
.ui-resizable-se {
|
|
|
|
cursor: se-resize;
|
2014-03-11 01:04:14 +01:00
|
|
|
width: 9px;
|
|
|
|
height: 9px;
|
|
|
|
right: -5px;
|
|
|
|
bottom: -5px;
|
2013-02-28 18:54:00 +01:00
|
|
|
}
|
2013-11-17 17:18:11 +01:00
|
|
|
/* @noflip */
|
2013-02-28 18:54:00 +01:00
|
|
|
.ui-resizable-sw {
|
|
|
|
cursor: sw-resize;
|
|
|
|
width: 9px;
|
|
|
|
height: 9px;
|
|
|
|
left: -5px;
|
|
|
|
bottom: -5px;
|
|
|
|
}
|
2013-11-17 17:18:11 +01:00
|
|
|
/* @noflip */
|
2013-02-28 18:54:00 +01:00
|
|
|
.ui-resizable-nw {
|
|
|
|
cursor: nw-resize;
|
|
|
|
width: 9px;
|
|
|
|
height: 9px;
|
|
|
|
left: -5px;
|
|
|
|
top: -5px;
|
|
|
|
}
|
2013-11-17 17:18:11 +01:00
|
|
|
/* @noflip */
|
2013-02-28 18:54:00 +01:00
|
|
|
.ui-resizable-ne {
|
|
|
|
cursor: ne-resize;
|
|
|
|
width: 9px;
|
|
|
|
height: 9px;
|
|
|
|
right: -5px;
|
|
|
|
top: -5px;
|
|
|
|
}
|
|
|
|
|
2014-03-11 01:04:14 +01:00
|
|
|
/* WP buttons: see buttons.css. */
|
|
|
|
|
|
|
|
.ui-button {
|
|
|
|
display: inline-block;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: 26px;
|
|
|
|
height: 28px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0 10px 1px;
|
|
|
|
cursor: pointer;
|
|
|
|
border-width: 1px;
|
|
|
|
border-style: solid;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-webkit-border-radius: 3px;
|
|
|
|
border-radius: 3px;
|
2013-02-28 18:54:00 +01:00
|
|
|
white-space: nowrap;
|
2014-03-11 01:04:14 +01:00
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
|
|
|
color: #555;
|
|
|
|
border-color: #cccccc;
|
|
|
|
background: #f7f7f7;
|
|
|
|
-webkit-box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0,0,0,.08);
|
|
|
|
box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0,0,0,.08);
|
|
|
|
vertical-align: top;
|
2013-02-28 18:54:00 +01:00
|
|
|
}
|
2014-03-11 01:04:14 +01:00
|
|
|
|
|
|
|
/* Remove the dotted border on :focus and the extra padding in Firefox */
|
|
|
|
.ui-button::-moz-focus-inner {
|
|
|
|
border-width: 1px 0;
|
|
|
|
border-style: solid none;
|
|
|
|
border-color: transparent;
|
|
|
|
padding: 0;
|
2013-02-28 18:54:00 +01:00
|
|
|
}
|
2014-03-11 01:04:14 +01:00
|
|
|
|
|
|
|
.ui-button:hover {
|
|
|
|
background: #fafafa;
|
|
|
|
border-color: #999;
|
|
|
|
color: #222;
|
2013-02-28 18:54:00 +01:00
|
|
|
}
|
2014-03-11 01:04:14 +01:00
|
|
|
|
|
|
|
.ui-button:focus {
|
|
|
|
-webkit-box-shadow: 1px 1px 1px rgba(0,0,0,.2);
|
|
|
|
box-shadow: 1px 1px 1px rgba(0,0,0,.2);
|
2013-02-28 18:54:00 +01:00
|
|
|
}
|
2014-03-11 01:04:14 +01:00
|
|
|
|
|
|
|
.ui-button:active {
|
|
|
|
background: #eee;
|
|
|
|
border-color: #999;
|
|
|
|
color: #333;
|
|
|
|
-webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
|
|
|
|
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
|
|
|
|
outline: none;
|
2013-02-28 18:54:00 +01:00
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2014-03-11 01:04:14 +01:00
|
|
|
.ui-button[disabled],
|
|
|
|
.ui-button:disabled {
|
|
|
|
color: #aaa !important;
|
|
|
|
border-color: #ddd !important;
|
|
|
|
background: #f7f7f7 !important;
|
|
|
|
-webkit-box-shadow: none !important;
|
|
|
|
box-shadow: none !important;
|
|
|
|
text-shadow: 0 1px 0 #fff !important;
|
|
|
|
cursor: default;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
2014-03-11 01:04:14 +01:00
|
|
|
@media screen and ( max-width: 782px ) {
|
|
|
|
|
|
|
|
.ui-button {
|
|
|
|
padding: 10px 14px;
|
|
|
|
line-height: 1;
|
|
|
|
font-size: 14px;
|
|
|
|
vertical-align: middle;
|
|
|
|
height: auto;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
2014-03-11 01:04:14 +01:00
|
|
|
/* WP Theme */
|
|
|
|
|
|
|
|
.ui-dialog {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 100102;
|
|
|
|
background-color: #fff;
|
2014-03-14 06:55:16 +01:00
|
|
|
-webkit-box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
|
|
|
|
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
2014-03-11 01:04:14 +01:00
|
|
|
.ui-dialog-titlebar {
|
|
|
|
background: #fcfcfc;
|
|
|
|
border-bottom: 1px solid #dfdfdf;
|
2014-03-14 06:55:16 +01:00
|
|
|
height: 36px;
|
|
|
|
font-size: 18px;
|
2014-03-11 01:04:14 +01:00
|
|
|
font-weight: 600;
|
2014-03-14 06:55:16 +01:00
|
|
|
line-height: 36px;
|
|
|
|
padding: 0 36px 0 16px;
|
2013-02-28 18:54:00 +01:00
|
|
|
}
|
|
|
|
|
2014-03-11 01:04:14 +01:00
|
|
|
.ui-button.ui-dialog-titlebar-close {
|
2013-12-02 18:59:10 +01:00
|
|
|
background: none;
|
2014-03-11 01:04:14 +01:00
|
|
|
border: none;
|
|
|
|
-webkit-box-shadow: none;
|
|
|
|
box-shadow: none;
|
|
|
|
color: #666;
|
|
|
|
cursor: pointer;
|
|
|
|
display: block;
|
|
|
|
padding: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
2014-03-14 06:55:16 +01:00
|
|
|
width: 36px;
|
|
|
|
height: 36px;
|
2014-03-11 01:04:14 +01:00
|
|
|
text-align: center;
|
2013-12-02 18:59:10 +01:00
|
|
|
}
|
|
|
|
|
2014-03-11 01:04:14 +01:00
|
|
|
.ui-dialog-titlebar-close:before {
|
2013-12-02 18:59:10 +01:00
|
|
|
font: normal 20px/1 'dashicons';
|
2014-03-11 01:04:14 +01:00
|
|
|
vertical-align: top;
|
2013-12-02 18:59:10 +01:00
|
|
|
speak: none;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
2014-03-14 06:55:16 +01:00
|
|
|
line-height: 36px;
|
|
|
|
width: 36px;
|
|
|
|
height: 36px;
|
2014-03-11 01:04:14 +01:00
|
|
|
content: '\f158';
|
2013-12-02 18:59:10 +01:00
|
|
|
}
|
|
|
|
|
2014-03-11 01:04:14 +01:00
|
|
|
.ui-button.ui-dialog-titlebar-close:hover {
|
2013-12-02 18:59:10 +01:00
|
|
|
color: #2ea2cc;
|
2013-02-28 18:54:00 +01:00
|
|
|
}
|
|
|
|
|
2014-03-11 01:04:14 +01:00
|
|
|
.ui-dialog-titlebar-close .ui-button-text {
|
2013-02-28 18:54:00 +01:00
|
|
|
display: none;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
2014-03-11 01:04:14 +01:00
|
|
|
.ui-dialog-content {
|
|
|
|
padding: 16px;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui-dialog-buttonpane {
|
|
|
|
background: #fcfcfc;
|
|
|
|
border-top: 1px solid #dfdfdf;
|
|
|
|
padding: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui-dialog-buttonpane .ui-button {
|
|
|
|
margin-left: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui-dialog-buttonpane .ui-dialog-buttonset {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui-draggable .ui-dialog-titlebar {
|
|
|
|
cursor: move;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.ui-widget-overlay {
|
2014-03-11 01:04:14 +01:00
|
|
|
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-08 01:41:16 +01:00
|
|
|
z-index: 100101;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|