| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473 |
- /* .bs-datepicker */
- .bs-datepicker {
- display: flex;
- align-items: stretch;
- flex-flow: row wrap;
- background: #fff;
- box-shadow: 0 0 10px 0 #aaa;
- position: relative;
- z-index: 1;
- /* button */
- /* .bs-datepicker-head */
- /* .bs-datepicker-body */
- /* .current-timedate */
- /* .bs-datepicker-multiple */
- /* .bs-datepicker-btns */
- /*.bs-datepicker-custom-range */
- /* .bs-datepicker-predefined-btns */
- /* .bs-datepicker-buttons */ }
- .bs-datepicker:after {
- clear: both;
- content: '';
- display: block; }
- .bs-datepicker bs-day-picker {
- float: left; }
- .bs-datepicker button:hover,
- .bs-datepicker button:focus,
- .bs-datepicker button:active,
- .bs-datepicker input:hover,
- .bs-datepicker input:focus,
- .bs-datepicker input:active,
- .bs-datepicker-btns button:hover,
- .bs-datepicker-btns button:focus,
- .bs-datepicker-btns button:active,
- .bs-datepicker-predefined-btns button:active,
- .bs-datepicker-predefined-btns button:focus {
- outline: none; }
- .bs-datepicker-head {
- min-width: 270px;
- height: 50px;
- padding: 10px;
- border-radius: 3px 3px 0 0;
- text-align: justify;
- /* .bs-datepicker-head button */ }
- .bs-datepicker-head:after {
- content: "";
- display: inline-block;
- vertical-align: top;
- width: 100%; }
- .bs-datepicker-head button {
- display: inline-block;
- vertical-align: top;
- padding: 0;
- height: 30px;
- line-height: 30px;
- border: 0;
- background: transparent;
- text-align: center;
- cursor: pointer;
- color: #fff;
- transition: 0.3s; }
- .bs-datepicker-head button[disabled], .bs-datepicker-head button[disabled]:hover, .bs-datepicker-head button[disabled]:active {
- background: rgba(221, 221, 221, 0.3);
- color: #f5f5f5;
- cursor: not-allowed; }
- .bs-datepicker-head button.next, .bs-datepicker-head button.previous {
- border-radius: 50%;
- width: 30px;
- height: 30px; }
- .bs-datepicker-head button.next span, .bs-datepicker-head button.previous span {
- font-size: 28px;
- line-height: 1;
- display: inline-block;
- position: relative;
- height: 100%;
- width: 100%;
- border-radius: 50%; }
- .bs-datepicker-head button.current {
- border-radius: 15px;
- max-width: 155px;
- padding: 0 13px; }
- .bs-datepicker-head button:hover {
- background-color: rgba(0, 0, 0, 0.1); }
- .bs-datepicker-head button:active {
- background-color: rgba(0, 0, 0, 0.2); }
- .bs-datepicker-body {
- padding: 10px;
- border-radius: 0 0 3px 3px;
- min-height: 232px;
- min-width: 278px;
- border: 1px solid #e9edf0;
- /* .bs-datepicker-body table */ }
- .bs-datepicker-body .days.weeks {
- position: relative;
- z-index: 1; }
- .bs-datepicker-body table {
- width: 100%;
- border-collapse: separate;
- border-spacing: 0;
- /* .bs-datepicker-body table.days */
- /* .bs-datepicker-body table.weeks */ }
- .bs-datepicker-body table th {
- font-size: 13px;
- color: #9aaec1;
- font-weight: 400;
- text-align: center; }
- .bs-datepicker-body table td {
- color: #54708b;
- text-align: center;
- position: relative;
- padding: 0; }
- .bs-datepicker-body table td span {
- display: block;
- margin: 0 auto;
- font-size: 13px;
- border-radius: 50%;
- position: relative;
- /*z-index: 1;*/
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none; }
- .bs-datepicker-body table td:not(.disabled):not(.week) span:not(.disabled):not(.is-other-month) {
- cursor: pointer; }
- .bs-datepicker-body table td.is-highlighted:not(.disabled):not(.selected) span,
- .bs-datepicker-body table td span.is-highlighted:not(.disabled):not(.selected) {
- background-color: #e9edf0;
- transition: 0s; }
- .bs-datepicker-body table td.is-active-other-month:not(.disabled):not(.selected) span,
- .bs-datepicker-body table td span.is-active-other-month:not(.disabled):not(.selected) {
- background-color: #e9edf0;
- transition: 0s;
- cursor: pointer; }
- .bs-datepicker-body table td span.disabled,
- .bs-datepicker-body table td.disabled span {
- color: #9aaec1; }
- .bs-datepicker-body table td span.selected,
- .bs-datepicker-body table td.selected span {
- color: #fff; }
- .bs-datepicker-body table td span.is-other-month,
- .bs-datepicker-body table td.is-other-month span {
- color: rgba(0, 0, 0, 0.25); }
- .bs-datepicker-body table td.active {
- position: relative; }
- .bs-datepicker-body table td.active.select-start:before {
- left: 35%; }
- .bs-datepicker-body table td.active.select-end:before {
- left: -85%; }
- .bs-datepicker-body table td span.active.select-start:after,
- .bs-datepicker-body table td span.active.select-end:after,
- .bs-datepicker-body table td.active.select-start span:after,
- .bs-datepicker-body table td.active.select-end span:after {
- content: "";
- display: block;
- position: absolute;
- z-index: -1;
- width: 100%;
- height: 100%;
- transition: 0.3s;
- top: 0;
- border-radius: 50%; }
- .bs-datepicker-body table td:before,
- .bs-datepicker-body table td span:before {
- content: "";
- display: block;
- position: absolute;
- z-index: -1;
- top: 6px;
- bottom: 6px;
- left: -2px;
- right: -2px;
- box-sizing: content-box;
- background: transparent; }
- .bs-datepicker-body table td.active.select-start + td.active:before {
- left: -20%; }
- .bs-datepicker-body table td:last-child.active:before {
- border-radius: 0 3px 3px 0;
- width: 125%;
- left: -25%; }
- .bs-datepicker-body table td span[class*="select-"],
- .bs-datepicker-body table td[class*="select-"] span {
- border-radius: 50%;
- color: #fff; }
- .bs-datepicker-body table.days td.active:not(.select-start):before, .bs-datepicker-body table.days td.in-range:not(.select-start):before,
- .bs-datepicker-body table.days span.active:not(.select-start):before,
- .bs-datepicker-body table.days span.in-range:not(.select-start):before {
- background: #e9edf0; }
- .bs-datepicker-body table.days span {
- width: 32px;
- height: 32px;
- line-height: 32px; }
- .bs-datepicker-body table.days span.select-start {
- z-index: 2; }
- .bs-datepicker-body table.days span.is-highlighted.in-range:before, .bs-datepicker-body table.days span.in-range.select-end:before {
- background: none;
- right: 0;
- left: 0; }
- .bs-datepicker-body table.days td.select-start + td.select-end:before,
- .bs-datepicker-body table.days td.select-start + td.is-highlighted:before,
- .bs-datepicker-body table.days td.active + td.is-highlighted:before,
- .bs-datepicker-body table.days td.active + td.select-end:before,
- .bs-datepicker-body table.days td.in-range + td.is-highlighted:before,
- .bs-datepicker-body table.days td.in-range + td.select-end:before {
- background: #e9edf0;
- width: 100%; }
- .bs-datepicker-body table.weeks tr td:nth-child(2).active:before {
- border-radius: 3px 0 0 3px;
- left: 0;
- width: 100%; }
- .bs-datepicker-body table:not(.weeks) tr td:first-child:before {
- border-radius: 3px 0 0 3px; }
- .bs-datepicker-body table.years td span {
- width: 46px;
- height: 46px;
- line-height: 45px;
- margin: 0 auto; }
- .bs-datepicker-body table.years tr:not(:last-child) td span {
- margin-bottom: 8px; }
- .bs-datepicker-body table.months td {
- height: 52px; }
- .bs-datepicker-body table.months td span {
- padding: 6px;
- border-radius: 15px; }
- .bs-datepicker .current-timedate {
- color: #54708b;
- font-size: 15px;
- text-align: center;
- height: 30px;
- line-height: 30px;
- border-radius: 20px;
- border: 1px solid #e9edf0;
- margin-bottom: 10px;
- cursor: pointer;
- text-transform: uppercase;
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none; }
- .bs-datepicker .current-timedate span:not(:empty):before {
- content: "";
- width: 15px;
- height: 16px;
- display: inline-block;
- margin-right: 4px;
- vertical-align: text-bottom;
- background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAQCAYAAADJViUEAAABMklEQVQoU9VTwW3CQBCcOUgBtEBKSAukAnBKME+wFCAlYIhk8sQlxFABtJAScAsuAPBEewYcxCP8ouxrPDsza61uiVN1o6RNHD4htSCmq49RfO71BvMJqBBkITRf1kmUW49nQRC9h1I5AZlBClaL8aP1fKgOOxCx8aSLs+Q19eZuNO8QmPqJRtDFguy7OAcDbJPs+/BKVPDIPrvD2ZJgWAmVe7O0rI0Vqs1seyWUXpuJoppYCa5L+U++NpNPkr5OE2oMdARsb3gykJT5ydZcL8Z9Ww60nxg2LhjON9li9OwXZzo+xLbp3nC2s9CL2RrueGyVrgwNm8HpsCzZ9EEW6kqXlo1GQe03FzP/7W8Hl0dBtu7Bf7zt6mIwvX1RvzDCm7+q3mAW0Dl/GPdUCeXrZLT9BrDrGkm4qlPvAAAAAElFTkSuQmCC); }
- .bs-datepicker-multiple {
- border-radius: 4px 0 0 4px; }
- .bs-datepicker-multiple + .bs-datepicker-multiple {
- margin-left: 10px; }
- .bs-datepicker-multiple .bs-datepicker {
- box-shadow: none;
- position: relative; }
- .bs-datepicker-multiple .bs-datepicker:not(:last-child) {
- padding-right: 10px; }
- .bs-datepicker-multiple .bs-datepicker + .bs-datepicker:after {
- content: "";
- display: block;
- width: 14px;
- height: 10px;
- background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAKCAYAAABrGwT5AAAA1ElEQVQoU42RsQrCUAxF77VuDu7O4oMWW//BURBBpZvgKk4uIrjoqKOTf+DopIO4uYggtFTfw3+pkQqCW1/G5J7kJiFy4m5MxUlxAzgIPHX+lzMPzupRYlYgxiR7vqsOP8YKzsTx0yxFMCUZ+q7aZzlr+OvgoWcAFyAHgat2jLWu48252DdqAihDJGSSJNUUxYmQjs3+hPQBlAh2rG2LCOPnaw3IiGDX99TRCs7ASJsNhUOA7d/LcuHvRG22FIZvsNXw1MX6VZExCilOQKEfeLXr/10+aC9Ho7arh7oAAAAASUVORK5CYII=);
- position: absolute;
- top: 25px;
- left: -8px; }
- .bs-datepicker-multiple .bs-datepicker .left {
- float: left; }
- .bs-datepicker-multiple .bs-datepicker .right {
- float: right; }
- .bs-datepicker-container {
- padding: 15px; }
- .bs-datepicker .bs-media-container {
- display: flex; }
- @media (max-width: 768px) {
- .bs-datepicker .bs-media-container {
- flex-direction: column; } }
- .bs-datepicker-custom-range {
- padding: 15px;
- background: #eee; }
- .bs-datepicker-predefined-btns button {
- width: 100%;
- display: block;
- height: 30px;
- background-color: #9aaec1;
- border-radius: 4px;
- color: #fff;
- border: 0;
- margin-bottom: 10px;
- padding: 0 18px;
- text-align: left;
- transition: 0.3s; }
- .bs-datepicker-predefined-btns button:active, .bs-datepicker-predefined-btns button:hover {
- background-color: #54708b; }
- .bs-datepicker-buttons {
- display: flex;
- flex-flow: row wrap;
- justify-content: flex-end;
- padding-top: 10px;
- border-top: 1px solid #e9edf0; }
- .bs-datepicker-buttons .btn-default {
- margin-left: 10px; }
- /* .bs-timepicker */
- .bs-timepicker-container {
- padding: 10px 0; }
- .bs-timepicker-label {
- color: #54708b;
- margin-bottom: 10px; }
- .bs-timepicker-controls {
- display: inline-block;
- vertical-align: top;
- margin-right: 10px; }
- .bs-timepicker-controls button {
- width: 20px;
- height: 20px;
- border-radius: 50%;
- border: 0;
- background-color: #e9edf0;
- color: #54708b;
- font-size: 16px;
- font-weight: 700;
- vertical-align: middle;
- line-height: 0;
- padding: 0;
- transition: 0.3s; }
- .bs-timepicker-controls button:hover {
- background-color: #d5dadd; }
- .bs-timepicker-controls input {
- width: 35px;
- height: 25px;
- border-radius: 13px;
- text-align: center;
- border: 1px solid #e9edf0; }
- .bs-timepicker .switch-time-format {
- text-transform: uppercase;
- min-width: 54px;
- height: 25px;
- border-radius: 20px;
- border: 1px solid #e9edf0;
- background: #fff;
- color: #54708b;
- font-size: 13px; }
- .bs-timepicker .switch-time-format img {
- vertical-align: initial;
- margin-left: 4px; }
- bs-datepicker-container,
- bs-daterangepicker-container {
- z-index: 1080; }
- /* screen size < 1024px */
- @media (max-width: 768px) {
- .bs-datepicker-multiple {
- display: flex; }
- .bs-datepicker-multiple + .bs-datepicker-multiple {
- margin-top: 10px;
- margin-left: 0; } }
- /* theming */
- .theme-default .bs-datepicker-head {
- background-color: #777; }
- .theme-default .bs-datepicker-body table td span.selected,
- .theme-default .bs-datepicker-body table td.selected span,
- .theme-default .bs-datepicker-body table td span[class*="select-"]:after,
- .theme-default .bs-datepicker-body table td[class*="select-"] span:after {
- background-color: #777; }
- .theme-default .bs-datepicker-body table td.week span {
- color: #777; }
- .theme-default .bs-datepicker-body table td.active-week span:hover {
- cursor: pointer;
- background-color: #777;
- color: #fff;
- opacity: 0.5;
- transition: 0s; }
- .theme-green .bs-datepicker-head {
- background-color: #5cb85c; }
- .theme-green .bs-datepicker-body table td span.selected,
- .theme-green .bs-datepicker-body table td.selected span,
- .theme-green .bs-datepicker-body table td span[class*="select-"]:after,
- .theme-green .bs-datepicker-body table td[class*="select-"] span:after {
- background-color: #5cb85c; }
- .theme-green .bs-datepicker-body table td.week span {
- color: #5cb85c; }
- .theme-green .bs-datepicker-body table td.active-week span:hover {
- cursor: pointer;
- background-color: #5cb85c;
- color: #fff;
- opacity: 0.5;
- transition: 0s; }
- .theme-blue .bs-datepicker-head {
- background-color: #5bc0de; }
- .theme-blue .bs-datepicker-body table td span.selected,
- .theme-blue .bs-datepicker-body table td.selected span,
- .theme-blue .bs-datepicker-body table td span[class*="select-"]:after,
- .theme-blue .bs-datepicker-body table td[class*="select-"] span:after {
- background-color: #5bc0de; }
- .theme-blue .bs-datepicker-body table td.week span {
- color: #5bc0de; }
- .theme-blue .bs-datepicker-body table td.active-week span:hover {
- cursor: pointer;
- background-color: #5bc0de;
- color: #fff;
- opacity: 0.5;
- transition: 0s; }
- .theme-dark-blue .bs-datepicker-head {
- background-color: #337ab7; }
- .theme-dark-blue .bs-datepicker-body table td span.selected,
- .theme-dark-blue .bs-datepicker-body table td.selected span,
- .theme-dark-blue .bs-datepicker-body table td span[class*="select-"]:after,
- .theme-dark-blue .bs-datepicker-body table td[class*="select-"] span:after {
- background-color: #337ab7; }
- .theme-dark-blue .bs-datepicker-body table td.week span {
- color: #337ab7; }
- .theme-dark-blue .bs-datepicker-body table td.active-week span:hover {
- cursor: pointer;
- background-color: #337ab7;
- color: #fff;
- opacity: 0.5;
- transition: 0s; }
- .theme-red .bs-datepicker-head {
- background-color: #d9534f; }
- .theme-red .bs-datepicker-body table td span.selected,
- .theme-red .bs-datepicker-body table td.selected span,
- .theme-red .bs-datepicker-body table td span[class*="select-"]:after,
- .theme-red .bs-datepicker-body table td[class*="select-"] span:after {
- background-color: #d9534f; }
- .theme-red .bs-datepicker-body table td.week span {
- color: #d9534f; }
- .theme-red .bs-datepicker-body table td.active-week span:hover {
- cursor: pointer;
- background-color: #d9534f;
- color: #fff;
- opacity: 0.5;
- transition: 0s; }
- .theme-orange .bs-datepicker-head {
- background-color: #f0ad4e; }
- .theme-orange .bs-datepicker-body table td span.selected,
- .theme-orange .bs-datepicker-body table td.selected span,
- .theme-orange .bs-datepicker-body table td span[class*="select-"]:after,
- .theme-orange .bs-datepicker-body table td[class*="select-"] span:after {
- background-color: #f0ad4e; }
- .theme-orange .bs-datepicker-body table td.week span {
- color: #f0ad4e; }
- .theme-orange .bs-datepicker-body table td.active-week span:hover {
- cursor: pointer;
- background-color: #f0ad4e;
- color: #fff;
- opacity: 0.5;
- transition: 0s; }
- /*# sourceMappingURL=bs-datepicker.css.map */
|