2012-02-27 00:49:51 +00:00
|
|
|
/*!
|
2010-07-14 19:55:54 +00:00
|
|
|
* jQuery UI CSS Framework @VERSION
|
2024-04-26 14:25:34 +00:00
|
|
|
* https://jqueryui.com
|
2010-07-09 13:01:04 +00:00
|
|
|
*
|
2022-07-19 07:36:55 +00:00
|
|
|
* Copyright OpenJS Foundation and other contributors
|
2012-08-09 14:13:24 +00:00
|
|
|
* Released under the MIT license.
|
2024-04-26 14:25:34 +00:00
|
|
|
* https://jquery.org/license
|
2010-07-14 19:55:54 +00:00
|
|
|
*
|
2024-04-26 14:25:34 +00:00
|
|
|
* https://api.jqueryui.com/category/theming/
|
2010-07-09 13:01:04 +00:00
|
|
|
*/
|
2008-12-05 20:19:46 +00:00
|
|
|
|
|
|
|
/* Layout helpers
|
|
|
|
----------------------------------*/
|
2012-11-20 00:29:01 +00: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;
|
2013-02-13 14:06:02 +00:00
|
|
|
border-collapse: collapse;
|
2012-11-20 00:29:01 +00:00
|
|
|
}
|
|
|
|
.ui-helper-clearfix:after {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
.ui-helper-zfix {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
2008-12-11 21:33:56 +00:00
|
|
|
|
2012-11-20 00:29:01 +00:00
|
|
|
.ui-front {
|
|
|
|
z-index: 100;
|
|
|
|
}
|
2012-10-15 20:12:21 +00:00
|
|
|
|
2008-12-11 21:33:56 +00:00
|
|
|
|
|
|
|
/* Interaction Cues
|
|
|
|
----------------------------------*/
|
2012-11-20 00:29:01 +00:00
|
|
|
.ui-state-disabled {
|
|
|
|
cursor: default !important;
|
2014-08-29 15:15:22 +00:00
|
|
|
pointer-events: none;
|
2012-11-20 00:29:01 +00:00
|
|
|
}
|
2008-12-11 21:33:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Icons
|
|
|
|
----------------------------------*/
|
2012-11-20 00:29:01 +00:00
|
|
|
.ui-icon {
|
2014-01-22 17:02:32 +00:00
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-top: -.25em;
|
|
|
|
position: relative;
|
2015-08-10 14:08:51 +00:00
|
|
|
text-indent: -99999px;
|
|
|
|
overflow: hidden;
|
|
|
|
background-repeat: no-repeat;
|
2012-11-20 00:29:01 +00:00
|
|
|
}
|
2008-12-11 21:33:56 +00:00
|
|
|
|
2014-01-22 17:02:32 +00:00
|
|
|
.ui-widget-icon-block {
|
|
|
|
left: 50%;
|
|
|
|
margin-left: -8px;
|
|
|
|
display: block;
|
|
|
|
}
|
2008-12-11 21:33:56 +00:00
|
|
|
|
|
|
|
/* Misc visuals
|
|
|
|
----------------------------------*/
|
|
|
|
|
|
|
|
/* Overlays */
|
2012-11-20 00:29:01 +00:00
|
|
|
.ui-widget-overlay {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|