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