mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-07-20 07:04:06 +09:00
first sync
This commit is contained in:
@@ -0,0 +1,107 @@
|
||||
/* ==========================================================================
|
||||
$BASE-TIME-PICKER
|
||||
========================================================================== */
|
||||
/**
|
||||
* The list of times.
|
||||
*/
|
||||
.picker__list {
|
||||
list-style: none;
|
||||
list-style: none !important;
|
||||
padding: 5px !important;
|
||||
margin: 0px !important;
|
||||
}
|
||||
|
||||
/**
|
||||
* The times on the clock.
|
||||
*/
|
||||
.picker__list-item {
|
||||
position: relative;
|
||||
border-radius: 2px;
|
||||
display: inline-block;
|
||||
width: 25%;
|
||||
text-align: center;
|
||||
box-sizing: border-box;
|
||||
padding: 6px 0px !important;
|
||||
margin: 5px 0 !important;
|
||||
}
|
||||
|
||||
@media (min-height: 46.75em) {
|
||||
.picker__list-item {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
/* Hovered time */
|
||||
.picker__list-item:hover {
|
||||
cursor: pointer;
|
||||
z-index: 10;
|
||||
}
|
||||
/* Highlighted and hovered/focused time */
|
||||
.picker__list-item--highlighted {
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.picker__list-item--highlighted:hover,
|
||||
.picker--focused .picker__list-item--highlighted {
|
||||
cursor: pointer;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* Selected and hovered/focused time */
|
||||
.picker__list-item--selected,
|
||||
.picker__list-item--selected:hover,
|
||||
.picker--focused .picker__list-item--selected {
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
/* Disabled time */
|
||||
.picker__list-item--disabled,
|
||||
.picker__list-item--disabled:hover,
|
||||
.picker--focused .picker__list-item--disabled {
|
||||
color: #a9e792;
|
||||
cursor: default;
|
||||
background: transparent;
|
||||
z-index: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* The clear button
|
||||
*/
|
||||
.picker--time .picker__button--clear {
|
||||
width: 100%;
|
||||
display: inline-block;
|
||||
background: none;
|
||||
box-shadow: none !important;
|
||||
border: 0!important;
|
||||
outline: 0 !important;
|
||||
background: none !important;
|
||||
border-radius: 0 0 2px 2px;
|
||||
}
|
||||
.picker--time .picker__button--clear:hover,
|
||||
.picker--time .picker__button--clear:focus {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
$DEFAULT-TIME-PICKER
|
||||
========================================================================== */
|
||||
/**
|
||||
* The frame the bounds the time picker.
|
||||
*/
|
||||
.picker--time .picker__frame {
|
||||
min-width: 256px;
|
||||
max-width: 400px;
|
||||
}
|
||||
/**
|
||||
* The picker box.
|
||||
*/
|
||||
.picker--time .picker__box {
|
||||
font-size: 15px;
|
||||
padding: 0;
|
||||
border-radius: 2px !important;
|
||||
}
|
||||
@media (min-height: 40.125em) {
|
||||
.picker--time .picker__frame {
|
||||
margin-bottom: 10% !important;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user