blob: 806ca1e5cd5f3172581fc650fe7642a2a4c30cd0 [file] [log] [blame]
Nils Diewalda1228622015-04-25 01:59:10 +00001@charset "utf-8";
2@import "../util";
3
Nils Diewaldbdf79c52015-04-29 23:47:13 +00004$border-size: 2px;
5
Nils Diewalda1228622015-04-25 01:59:10 +00006div.datepicker {
7 display: inline-block;
Nils Diewald87507832015-05-01 23:36:41 +00008 position: absolute;
Nils Diewald7148c6f2015-05-04 15:07:53 +00009 z-index: 8000;
Nils Diewald87507832015-05-01 23:36:41 +000010 font-size: 80%;
Nils Diewalda1228622015-04-25 01:59:10 +000011 padding: 4pt;
12 box-shadow: $choose-box-shadow;
13 border: {
Nils Diewaldbdf79c52015-04-29 23:47:13 +000014 width: $border-size;
Nils Diewalda1228622015-04-25 01:59:10 +000015 style: solid;
16 radius: $standard-border-radius;
17 }
18 > div {
19 font-size: 120%;
20 width: 45%;
21 }
Nils Diewaldbdf79c52015-04-29 23:47:13 +000022 > div.month {
Nils Diewalda1228622015-04-25 01:59:10 +000023 float: right;
24 }
Nils Diewald7148c6f2015-05-04 15:07:53 +000025
Nils Diewalda1228622015-04-25 01:59:10 +000026 @include choose-item;
27 > div > span {
28 display: inline-block;
Nils Diewaldbdf79c52015-04-29 23:47:13 +000029 &:first-child,
30 &:last-child {
31 width: 15%;
32 &::before {
33 display: inline-block;
34 text-align: center;
35 cursor: pointer;
36 font-family: 'FontAwesome';
37 min-width: 14px;
38 }
39 }
Nils Diewalda1228622015-04-25 01:59:10 +000040 &:first-child::before {
Nils Diewalda1228622015-04-25 01:59:10 +000041 content: $fa-previous;
Nils Diewalda1228622015-04-25 01:59:10 +000042 }
Nils Diewaldbdf79c52015-04-29 23:47:13 +000043 &:last-child::before {
Nils Diewalda1228622015-04-25 01:59:10 +000044 content: $fa-next;
Nils Diewalda1228622015-04-25 01:59:10 +000045 }
Nils Diewaldbdf79c52015-04-29 23:47:13 +000046 overflow: hidden;
47 white-space: nowrap;
Nils Diewalda1228622015-04-25 01:59:10 +000048 &:nth-child(2) {
Nils Diewaldbdf79c52015-04-29 23:47:13 +000049 cursor: pointer;
Nils Diewalda1228622015-04-25 01:59:10 +000050 display: inline-block;
Nils Diewaldbdf79c52015-04-29 23:47:13 +000051 width: 70%;
Nils Diewalda1228622015-04-25 01:59:10 +000052 text-align: center;
Nils Diewaldbdf79c52015-04-29 23:47:13 +000053 text-overflow: ellipsis;
54 border: {
55 radius: $standard-border-radius;
56 style: solid;
57 width: $border-size;
58 color: transparent;
59 }
60 &:hover {
61 @include choose-hover;
62 }
Nils Diewald7148c6f2015-05-04 15:07:53 +000063 &.selected {
64 @include choose-active;
65 }
Nils Diewalda1228622015-04-25 01:59:10 +000066 }
67 }
68 table {
69 border-collapse: separate;
70 border-spacing: 1px;
71 }
72 td {
73 @include standard-text-padding;
74 text-align: center;
75 border: {
76 style: solid;
77 width: 1px;
78 }
79 &:not(.out) {
80 cursor: pointer;
81 @include choose-item;
82 background-color: $nearly-white;
83 &.today {
84 background-color: $light-blue;
85 color: $dark-blue;
86 text-shadow: none;
87 }
88 &.selected {
89 @include choose-active;
90 }
91 &:hover {
92 @include choose-hover;
93 }
94 }
95 &.out {
96 border-color: transparent;
97 }
98 }
99}