blob: 8a3fbcd4fea35cb14d810adfede7bcc09ce45ccf [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;
9 font-size: 80%;
Nils Diewalda1228622015-04-25 01:59:10 +000010 padding: 4pt;
11 box-shadow: $choose-box-shadow;
12 border: {
Nils Diewaldbdf79c52015-04-29 23:47:13 +000013 width: $border-size;
Nils Diewalda1228622015-04-25 01:59:10 +000014 style: solid;
15 radius: $standard-border-radius;
16 }
17 > div {
18 font-size: 120%;
19 width: 45%;
20 }
Nils Diewaldbdf79c52015-04-29 23:47:13 +000021 > div.month {
Nils Diewalda1228622015-04-25 01:59:10 +000022 float: right;
23 }
24
25 @include choose-item;
26 > div > span {
27 display: inline-block;
Nils Diewaldbdf79c52015-04-29 23:47:13 +000028 &:first-child,
29 &:last-child {
30 width: 15%;
31 &::before {
32 display: inline-block;
33 text-align: center;
34 cursor: pointer;
35 font-family: 'FontAwesome';
36 min-width: 14px;
37 }
38 }
Nils Diewalda1228622015-04-25 01:59:10 +000039 &:first-child::before {
Nils Diewalda1228622015-04-25 01:59:10 +000040 content: $fa-previous;
Nils Diewalda1228622015-04-25 01:59:10 +000041 }
Nils Diewaldbdf79c52015-04-29 23:47:13 +000042 &:last-child::before {
Nils Diewalda1228622015-04-25 01:59:10 +000043 content: $fa-next;
Nils Diewalda1228622015-04-25 01:59:10 +000044 }
Nils Diewaldbdf79c52015-04-29 23:47:13 +000045 overflow: hidden;
46 white-space: nowrap;
Nils Diewalda1228622015-04-25 01:59:10 +000047 &:nth-child(2) {
Nils Diewaldbdf79c52015-04-29 23:47:13 +000048 cursor: pointer;
Nils Diewalda1228622015-04-25 01:59:10 +000049 display: inline-block;
Nils Diewaldbdf79c52015-04-29 23:47:13 +000050 width: 70%;
Nils Diewalda1228622015-04-25 01:59:10 +000051 text-align: center;
Nils Diewaldbdf79c52015-04-29 23:47:13 +000052 text-overflow: ellipsis;
53 border: {
54 radius: $standard-border-radius;
55 style: solid;
56 width: $border-size;
57 color: transparent;
58 }
59 &:hover {
60 @include choose-hover;
61 }
Nils Diewalda1228622015-04-25 01:59:10 +000062 }
63 }
64 table {
65 border-collapse: separate;
66 border-spacing: 1px;
67 }
68 td {
69 @include standard-text-padding;
70 text-align: center;
71 border: {
72 style: solid;
73 width: 1px;
74 }
75 &:not(.out) {
76 cursor: pointer;
77 @include choose-item;
78 background-color: $nearly-white;
79 &.today {
80 background-color: $light-blue;
81 color: $dark-blue;
82 text-shadow: none;
83 }
84 &.selected {
85 @include choose-active;
86 }
87 &:hover {
88 @include choose-hover;
89 }
90 }
91 &.out {
92 border-color: transparent;
93 }
94 }
95}