71 lines
1.3 KiB
SCSS
71 lines
1.3 KiB
SCSS
|
/*
|
||
|
* This file is part of the Arnapou jqCron package.
|
||
|
*
|
||
|
* (c) Arnaud Buathier <arnaud@arnapou.net>
|
||
|
*
|
||
|
* For the full copyright and license information, please view the LICENSE
|
||
|
* file that was distributed with this source code.
|
||
|
*/
|
||
|
|
||
|
.jqCron-selector {
|
||
|
position: relative;
|
||
|
}
|
||
|
.jqCron-cross,
|
||
|
.jqCron-selector-title {
|
||
|
cursor: pointer;
|
||
|
border-radius: 3px;
|
||
|
margin: 0 0.2em;
|
||
|
padding: 0 0.5em;
|
||
|
}
|
||
|
|
||
|
.jqCron-cross {
|
||
|
border-radius: 1em;
|
||
|
font-size: 80%;
|
||
|
padding: 0 0.3em;
|
||
|
}
|
||
|
.jqCron-selector-list {
|
||
|
left: 0.2em;
|
||
|
list-style: none;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
position: absolute;
|
||
|
top: 1.5em;
|
||
|
z-index: 5;
|
||
|
}
|
||
|
.jqCron-selector-list li {
|
||
|
-webkit-box-sizing: border-box;
|
||
|
-moz-box-sizing: border-box;
|
||
|
-ms-box-sizing: border-box;
|
||
|
box-sizing: border-box;
|
||
|
cursor: default;
|
||
|
display: inline-block !important;
|
||
|
margin: 0;
|
||
|
padding: 0.1em 0.4em;
|
||
|
width: 100%;
|
||
|
}
|
||
|
.jqCron-selector-list.cols2 {
|
||
|
width: 4em;
|
||
|
}
|
||
|
.jqCron-selector-list.cols2 li {
|
||
|
width: 50%;
|
||
|
}
|
||
|
.jqCron-selector-list.cols3 {
|
||
|
width: 6em;
|
||
|
}
|
||
|
.jqCron-selector-list.cols3 li {
|
||
|
width: 33%;
|
||
|
}
|
||
|
.jqCron-selector-list.cols4 {
|
||
|
width: 8em;
|
||
|
}
|
||
|
.jqCron-selector-list.cols4 li {
|
||
|
width: 25%;
|
||
|
}
|
||
|
.jqCron-selector-list.cols5 {
|
||
|
width: 10em;
|
||
|
}
|
||
|
.jqCron-selector-list.cols5 li {
|
||
|
width: 20%;
|
||
|
}
|
||
|
|