2012-02-27 00:49:51 +00:00
|
|
|
/*!
|
2011-01-11 02:44:25 +00:00
|
|
|
* jQuery UI Spinner @VERSION
|
2012-07-04 13:08:08 +00:00
|
|
|
* http://jqueryui.com
|
2011-01-11 02:44:25 +00:00
|
|
|
*
|
2014-01-29 03:25:02 +00:00
|
|
|
* Copyright 2014 jQuery Foundation and other contributors
|
2012-08-09 14:13:24 +00:00
|
|
|
* Released under the MIT license.
|
2011-01-11 02:44:25 +00:00
|
|
|
* http://jquery.org/license
|
|
|
|
*
|
2013-06-06 02:03:09 +00:00
|
|
|
* http://api.jqueryui.com/spinner/#theming
|
2011-01-11 02:44:25 +00:00
|
|
|
*/
|
2012-11-20 00:29:01 +00:00
|
|
|
.ui-spinner {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 0;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
.ui-spinner-input {
|
|
|
|
border: none;
|
|
|
|
background: none;
|
2013-01-15 14:25:00 +00:00
|
|
|
color: inherit;
|
2012-11-20 00:29:01 +00:00
|
|
|
padding: 0;
|
|
|
|
margin: .2em 0;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-left: .4em;
|
|
|
|
margin-right: 22px;
|
|
|
|
}
|
|
|
|
.ui-spinner-button {
|
|
|
|
width: 16px;
|
|
|
|
height: 50%;
|
|
|
|
font-size: .5em;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
text-align: center;
|
|
|
|
position: absolute;
|
|
|
|
cursor: default;
|
|
|
|
display: block;
|
|
|
|
overflow: hidden;
|
|
|
|
right: 0;
|
|
|
|
}
|
2013-06-03 02:30:05 +00:00
|
|
|
/* more specificity required here to override default borders */
|
2012-11-20 00:29:01 +00:00
|
|
|
.ui-spinner a.ui-spinner-button {
|
|
|
|
border-top: none;
|
|
|
|
border-bottom: none;
|
|
|
|
border-right: none;
|
|
|
|
}
|
2013-06-03 02:30:05 +00:00
|
|
|
/* vertically center icon */
|
2012-11-20 00:29:01 +00:00
|
|
|
.ui-spinner .ui-icon {
|
|
|
|
position: absolute;
|
|
|
|
margin-top: -8px;
|
|
|
|
top: 50%;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
.ui-spinner-up {
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
.ui-spinner-down {
|
|
|
|
bottom: 0;
|
|
|
|
}
|
2010-11-30 12:43:43 +00:00
|
|
|
|
|
|
|
/* TR overrides */
|
2010-12-01 21:57:20 +00:00
|
|
|
.ui-spinner .ui-icon-triangle-1-s {
|
|
|
|
/* need to fix icons sprite */
|
2012-11-20 00:29:01 +00:00
|
|
|
background-position: -65px -16px;
|
2010-12-01 21:57:20 +00:00
|
|
|
}
|