252 lines
6.2 KiB
SCSS
252 lines
6.2 KiB
SCSS
/*!
|
|
* Pikaday
|
|
* Copyright © 2014 David Bushell | BSD & MIT license | http://dbushell.com/
|
|
*/
|
|
|
|
// Variables
|
|
// Declare any of these variables before importing this SCSS file to easily override defaults
|
|
// Variables are namespaced with the pd (pikaday) prefix
|
|
|
|
// Colours
|
|
$pd-text-color: var(--primary) !default;
|
|
$pd-title-color: var(--primary) !default;
|
|
$pd-title-bg: var(--secondary) !default;
|
|
$pd-picker-bg: var(--secondary) !default;
|
|
$pd-picker-border: var(--primary-low) !default;
|
|
$pd-picker-border-bottom: var(--primary-low) !default;
|
|
$pd-picker-shadow: rgba(0,0,0,.5) !default;
|
|
$pd-th-color: var(--primary) !default;
|
|
$pd-day-color: var(--primary) !default;
|
|
$pd-day-bg: var(--secondary) !default;
|
|
$pd-day-hover-color: var(--primary) !default;
|
|
$pd-day-hover-bg: var(--tertiary-low) !default;
|
|
$pd-day-today-color: var(--tertiary) !default;
|
|
$pd-day-selected-color: var(--secondary) !default;
|
|
$pd-day-selected-bg: var(--tertiary) !default;
|
|
$pd-day-selected-shadow: var(--tertiary-low) !default;
|
|
$pd-day-disabled-color: var(--primary) !default;
|
|
$pd-week-color: var(--primary) !default;
|
|
|
|
// Font
|
|
$pd-font-family: Arial, sans-serif !default;
|
|
|
|
|
|
.pika-single {
|
|
z-index: 9999;
|
|
display: block;
|
|
position: relative;
|
|
color: $pd-text-color;
|
|
background: $pd-picker-bg;
|
|
border: 1px solid $pd-picker-border;
|
|
border-bottom-color: $pd-picker-border-bottom;
|
|
font-family: $pd-font-family;
|
|
|
|
&.is-hidden {
|
|
display: none;
|
|
}
|
|
|
|
&.is-bound {
|
|
position: absolute;
|
|
box-shadow: 0 5px 15px -5px $pd-picker-shadow;
|
|
}
|
|
}
|
|
|
|
// clear child float (pika-lendar), using the famous micro clearfix hack
|
|
// http://nicolasgallagher.com/micro-clearfix-hack/
|
|
.pika-single {
|
|
&:before,
|
|
&:after {
|
|
content: " ";
|
|
display: table;
|
|
}
|
|
|
|
&:after { clear: both }
|
|
}
|
|
|
|
.pika-lendar {
|
|
float: left;
|
|
width: 240px;
|
|
margin: 8px;
|
|
}
|
|
|
|
.pika-title {
|
|
position: relative;
|
|
text-align: center;
|
|
|
|
select {
|
|
cursor: pointer;
|
|
position: absolute;
|
|
z-index: 9998;
|
|
margin: 0;
|
|
left: 0;
|
|
top: 5px;
|
|
filter: alpha(opacity=0);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
.pika-label {
|
|
display: inline-block;
|
|
position: relative;
|
|
z-index: 9999;
|
|
overflow: hidden;
|
|
margin: 0;
|
|
padding: 5px 3px;
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
font-weight: bold;
|
|
color: $pd-title-color;
|
|
background-color: $pd-title-bg;
|
|
}
|
|
|
|
.pika-prev,
|
|
.pika-next {
|
|
display: block;
|
|
cursor: pointer;
|
|
position: relative;
|
|
outline: none;
|
|
border: 0;
|
|
padding: 0;
|
|
width: 20px;
|
|
height: 30px;
|
|
text-indent: 20px; // hide text using text-indent trick, using width value (it's enough)
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
background-color: var(--primary); // sets color of SVG masks below
|
|
background-size: 75% 75%;
|
|
opacity: .5;
|
|
|
|
&:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
&.is-disabled {
|
|
cursor: default;
|
|
opacity: .2;
|
|
}
|
|
}
|
|
|
|
.pika-prev,
|
|
.is-rtl .pika-next {
|
|
float: left;
|
|
-webkit-mask: svg-uri(
|
|
'<svg aria-hidden="true" role="img" xmlns="http://www.w3.org/2000/svg" width="14px" height="16px" viewBox="0 0 192 512"><path d="M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z"></path></svg>'
|
|
)
|
|
no-repeat 50% 50%;
|
|
mask: svg-uri(
|
|
'<svg aria-hidden="true" role="img" xmlns="http://www.w3.org/2000/svg" width="14px" height="16px" viewBox="0 0 192 512"><path d="M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z"></path></svg>'
|
|
)
|
|
no-repeat 50% 50%;
|
|
}
|
|
|
|
.pika-next,
|
|
.is-rtl .pika-prev {
|
|
float: right;
|
|
-webkit-mask: svg-uri(
|
|
'<svg aria-hidden="true" role="img" xmlns="http://www.w3.org/2000/svg" width="14px" height="16px" viewBox="0 0 192 512"><path d="M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z"></path></svg>'
|
|
)
|
|
no-repeat 50% 50%;
|
|
mask: svg-uri(
|
|
'<svg aria-hidden="true" role="img" xmlns="http://www.w3.org/2000/svg" width="14px" height="16px" viewBox="0 0 192 512"><path d="M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z"></path></svg>'
|
|
)
|
|
no-repeat 50% 50%;
|
|
}
|
|
|
|
.pika-select {
|
|
display: inline-block;
|
|
}
|
|
|
|
.pika-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
border-spacing: 0;
|
|
border: 0;
|
|
|
|
th,
|
|
td {
|
|
width: 14.285714285714286%;
|
|
padding: 0;
|
|
}
|
|
|
|
th {
|
|
color: $pd-th-color;
|
|
font-size: 12px;
|
|
line-height: 25px;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
|
|
abbr {
|
|
border-bottom: none;
|
|
cursor: help;
|
|
}
|
|
}
|
|
|
|
.pika-button {
|
|
cursor: pointer;
|
|
display: block;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
outline: none;
|
|
border: 0;
|
|
margin: 0;
|
|
width: 100%;
|
|
padding: 5px;
|
|
color: $pd-day-color;
|
|
font-size: 12px;
|
|
line-height: 15px;
|
|
text-align: right;
|
|
background: $pd-day-bg;
|
|
|
|
.is-today & {
|
|
color: $pd-day-today-color;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.is-selected & {
|
|
color: $pd-day-selected-color;
|
|
font-weight: bold;
|
|
background: $pd-day-selected-bg;
|
|
box-shadow: inset 0 1px 3px $pd-day-selected-shadow;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.is-disabled &,
|
|
.is-outside-current-month & {
|
|
pointer-events: none;
|
|
cursor: default;
|
|
color: $pd-day-disabled-color;
|
|
opacity: .3;
|
|
}
|
|
|
|
&:hover {
|
|
color: $pd-day-hover-color;
|
|
background: $pd-day-hover-bg;
|
|
box-shadow: none;
|
|
border-radius: 3px;
|
|
}
|
|
}
|
|
|
|
.pika-week {
|
|
font-size: 11px;
|
|
color: $pd-week-color;
|
|
}
|
|
|
|
.is-inrange .pika-button {
|
|
background: #D5E9F7;
|
|
}
|
|
|
|
.is-startrange .pika-button {
|
|
color: var(--secondary);
|
|
background: #6CB31D;
|
|
box-shadow: none;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.is-endrange .pika-button {
|
|
color: var(--secondary);
|
|
background: var(--tertiary);
|
|
box-shadow: none;
|
|
border-radius: 3px;
|
|
}
|