mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-07-17 13:43:38 +09:00
@@ -5,7 +5,7 @@
|
||||
* The picker box.
|
||||
*/
|
||||
.picker__box {
|
||||
padding: 0 1em;
|
||||
|
||||
}
|
||||
/**
|
||||
* The header containing the month and year stuff.
|
||||
@@ -14,32 +14,34 @@
|
||||
text-align: center;
|
||||
position: relative;
|
||||
margin-top: .75em;
|
||||
border-radius: 2px 2px 0 0;
|
||||
padding: 15px 0;
|
||||
font-size: 18px;
|
||||
}
|
||||
/**
|
||||
* The month and year labels.
|
||||
*/
|
||||
.picker__month,
|
||||
.picker__year {
|
||||
font-weight: 500;
|
||||
display: inline-block;
|
||||
margin-left: .25em;
|
||||
margin-right: .25em;
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
.picker__year {
|
||||
color: #999999;
|
||||
font-size: .8em;
|
||||
font-style: italic;
|
||||
|
||||
}
|
||||
/**
|
||||
* The month and year selectors.
|
||||
*/
|
||||
.picker__select--month,
|
||||
.picker__select--year {
|
||||
border: 1px solid #b7b7b7;
|
||||
height: 2em;
|
||||
padding: .5em;
|
||||
margin-left: .25em;
|
||||
margin-right: .25em;
|
||||
font-size: 16px;
|
||||
color: #999;
|
||||
background: #fff !important;
|
||||
outline: 0 !important;
|
||||
border: 0 !important;
|
||||
}
|
||||
@media (min-width: 24.5em) {
|
||||
.picker__select--month,
|
||||
@@ -55,7 +57,7 @@
|
||||
}
|
||||
.picker__select--month:focus,
|
||||
.picker__select--year:focus {
|
||||
border-color: #0089ec;
|
||||
|
||||
}
|
||||
/**
|
||||
* The month navigation buttons.
|
||||
@@ -66,17 +68,18 @@
|
||||
padding: .5em 1.25em;
|
||||
width: 1em;
|
||||
height: 1em;
|
||||
box-sizing: content-box;
|
||||
top: -0.25em;
|
||||
box-sizing: content-box !important;
|
||||
top: 8px;
|
||||
color: #fff;
|
||||
}
|
||||
@media (min-width: 24.5em) {
|
||||
.picker__nav--prev,
|
||||
.picker__nav--next {
|
||||
top: -0.33em;
|
||||
|
||||
}
|
||||
}
|
||||
.picker__nav--prev {
|
||||
left: -1em;
|
||||
left: 0;
|
||||
padding-right: 1.25em;
|
||||
}
|
||||
@media (min-width: 24.5em) {
|
||||
@@ -85,7 +88,7 @@
|
||||
}
|
||||
}
|
||||
.picker__nav--next {
|
||||
right: -1em;
|
||||
right: 0;
|
||||
padding-left: 1.25em;
|
||||
}
|
||||
@media (min-width: 24.5em) {
|
||||
@@ -98,7 +101,9 @@
|
||||
content: " ";
|
||||
border-top: .5em solid transparent;
|
||||
border-bottom: .5em solid transparent;
|
||||
border-right: 0.75em solid #000000;
|
||||
|
||||
border-right: 0.5em solid #fff;
|
||||
|
||||
width: 0;
|
||||
height: 0;
|
||||
display: block;
|
||||
@@ -106,13 +111,14 @@
|
||||
}
|
||||
.picker__nav--next:before {
|
||||
border-right: 0;
|
||||
border-left: 0.75em solid #000000;
|
||||
|
||||
border-left: 0.5em solid #fff;
|
||||
|
||||
}
|
||||
.picker__nav--prev:hover,
|
||||
.picker__nav--next:hover {
|
||||
cursor: pointer;
|
||||
color: #000000;
|
||||
background: #b1dcfb;
|
||||
color: #fff;
|
||||
}
|
||||
.picker__nav--disabled,
|
||||
.picker__nav--disabled:hover,
|
||||
@@ -120,9 +126,8 @@
|
||||
.picker__nav--disabled:before:hover {
|
||||
cursor: default;
|
||||
background: none;
|
||||
border-right-color: #f5f5f5;
|
||||
border-left-color: #f5f5f5;
|
||||
}
|
||||
|
||||
/**
|
||||
* The calendar table of dates
|
||||
*/
|
||||
@@ -133,169 +138,107 @@
|
||||
table-layout: fixed;
|
||||
font-size: inherit;
|
||||
width: 100%;
|
||||
margin-top: .75em;
|
||||
margin-bottom: .5em;
|
||||
margin-top: 5px;
|
||||
border: none;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
@media (min-height: 33.875em) {
|
||||
.picker__table {
|
||||
margin-bottom: .75em;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
.picker__table th {
|
||||
|
||||
}
|
||||
|
||||
.picker__table td {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
padding: 0px 10px;
|
||||
text-align: center;
|
||||
border: 0;
|
||||
}
|
||||
/**
|
||||
* The weekday labels
|
||||
*/
|
||||
.picker__weekday {
|
||||
width: 14.285714286%;
|
||||
font-size: .75em;
|
||||
padding-bottom: .25em;
|
||||
color: #999999;
|
||||
font-weight: 500;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
padding: 5px 0 !important;
|
||||
/* Increase the spacing a tad */
|
||||
}
|
||||
@media (min-height: 33.875em) {
|
||||
.picker__weekday {
|
||||
padding-bottom: .5em;
|
||||
|
||||
}
|
||||
}
|
||||
/**
|
||||
* The days on the calendar
|
||||
*/
|
||||
.picker__day {
|
||||
padding: .3125em 0;
|
||||
font-weight: 200;
|
||||
border: 1px solid transparent;
|
||||
padding: 10px 0;
|
||||
line-height: 1em !important;
|
||||
}
|
||||
.picker__day--today {
|
||||
position: relative;
|
||||
}
|
||||
.picker__day--today:before {
|
||||
content: " ";
|
||||
position: absolute;
|
||||
top: 2px;
|
||||
right: 2px;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-top: 0.5em solid #0059bc;
|
||||
border-left: .5em solid transparent;
|
||||
}
|
||||
.picker__day--disabled:before {
|
||||
border-top-color: #aaaaaa;
|
||||
}
|
||||
.picker__day--outfocus {
|
||||
color: #dddddd;
|
||||
opacity: 0.75;
|
||||
}
|
||||
.picker__day--infocus:hover,
|
||||
.picker__day--outfocus:hover {
|
||||
border-radius: 2px;
|
||||
cursor: pointer;
|
||||
color: #000000;
|
||||
background: #b1dcfb;
|
||||
}
|
||||
|
||||
.picker__day--highlighted {
|
||||
border-color: #0089ec;
|
||||
|
||||
}
|
||||
.picker__day--highlighted:hover,
|
||||
.picker--focused .picker__day--highlighted {
|
||||
cursor: pointer;
|
||||
color: #000000;
|
||||
background: #b1dcfb;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.picker__day--selected,
|
||||
.picker__day--selected:hover,
|
||||
.picker--focused .picker__day--selected {
|
||||
background: #0089ec;
|
||||
color: #ffffff;
|
||||
|
||||
}
|
||||
.picker__day--disabled,
|
||||
.picker__day--disabled:hover,
|
||||
.picker--focused .picker__day--disabled {
|
||||
background: #f5f5f5;
|
||||
border-color: #f5f5f5;
|
||||
color: #dddddd;
|
||||
.picker__day--disabled:hover {
|
||||
cursor: default;
|
||||
background: transparent !important;
|
||||
opacity: 0.3;
|
||||
}
|
||||
.picker__day--highlighted.picker__day--disabled,
|
||||
.picker__day--highlighted.picker__day--disabled:hover {
|
||||
background: #bbbbbb;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* The footer containing the "today", "clear", and "close" buttons.
|
||||
* The footer containing the "today" and "clear" buttons.
|
||||
*/
|
||||
.picker__footer {
|
||||
text-align: center;
|
||||
height: 50px !important;
|
||||
line-height: 50px !important;
|
||||
margin-top: 5px;
|
||||
border-radius: 0 0 2px 2px;
|
||||
}
|
||||
.picker__button--today,
|
||||
.picker__button--clear,
|
||||
.picker__button--close {
|
||||
border: 1px solid #ffffff;
|
||||
background: #ffffff;
|
||||
font-size: .8em;
|
||||
padding: .66em 0;
|
||||
font-weight: bold;
|
||||
width: 33%;
|
||||
.picker__button--clear {
|
||||
width: 50%;
|
||||
display: inline-block;
|
||||
vertical-align: bottom;
|
||||
background: none !important;
|
||||
box-shadow: none !important;
|
||||
border: 0!important;
|
||||
outline: 0 !important;
|
||||
box-sizing: border-box !important;
|
||||
}
|
||||
.picker__button--today:hover,
|
||||
.picker__button--clear:hover,
|
||||
.picker__button--close:hover {
|
||||
cursor: pointer;
|
||||
color: #000000;
|
||||
background: #b1dcfb;
|
||||
border-bottom-color: #b1dcfb;
|
||||
}
|
||||
.picker__button--today:focus,
|
||||
.picker__button--clear:focus,
|
||||
.picker__button--close:focus {
|
||||
background: #b1dcfb;
|
||||
border-color: #0089ec;
|
||||
outline: none;
|
||||
}
|
||||
.picker__button--today:before,
|
||||
.picker__button--clear:before,
|
||||
.picker__button--close:before {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
height: 0;
|
||||
}
|
||||
.picker__button--today:before,
|
||||
.picker__button--clear:before {
|
||||
content: " ";
|
||||
margin-right: .45em;
|
||||
}
|
||||
.picker__button--today:before {
|
||||
top: -0.05em;
|
||||
width: 0;
|
||||
border-top: 0.66em solid #0059bc;
|
||||
border-left: .66em solid transparent;
|
||||
}
|
||||
.picker__button--clear:before {
|
||||
top: -0.25em;
|
||||
width: .66em;
|
||||
border-top: 3px solid #ee2200;
|
||||
}
|
||||
.picker__button--close:before {
|
||||
content: "\D7";
|
||||
top: -0.1em;
|
||||
vertical-align: top;
|
||||
font-size: 1.1em;
|
||||
margin-right: .35em;
|
||||
color: #777777;
|
||||
}
|
||||
.picker__button--today[disabled],
|
||||
.picker__button--today[disabled]:hover {
|
||||
background: #f5f5f5;
|
||||
border-color: #f5f5f5;
|
||||
color: #dddddd;
|
||||
cursor: default;
|
||||
}
|
||||
.picker__button--today[disabled]:before {
|
||||
border-top-color: #aaaaaa;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
$DEFAULT-DATE-PICKER
|
||||
========================================================================== */
|
||||
.picker__button--clear:focus {
|
||||
cursor: pointer;
|
||||
}
|
||||
Reference in New Issue
Block a user