Update bootstrap, update/add all of PatternFly, add font-awesome
[cascardo/ipsilon.git] / less / patternfly / bootstrap-datepicker.less
1 //
2 // Bootstrap-Datepicker
3 // --------------------------------------------------
4
5 .datepicker {
6   border-radius: @border-radius-base;
7   .datepicker-switch, tfoot .today {
8     font-size: @font-size-large;
9     font-weight: 500;
10   }
11   .next, .prev {
12     font-weight: 500;
13   }
14   table tr {
15     td, th {
16       border-radius: @border-radius-base;
17     }
18     td {
19       &.active.active,
20       &.active.active:hover,
21       &.active.active.disabled,
22       &.active.active.disabled:hover {
23         background: @dropdown-link-active-bg !important;
24         color: #fff !important;
25         text-shadow: none;
26       }
27       &.day:hover, &.day.focused {
28         background: @dropdown-link-hover-bg;
29       }
30       &.selected,
31       &.selected:hover,
32       &.selected.disabled,
33       &.selected.disabled:hover {
34         text-shadow: none;
35       }
36       span {
37         border-radius: @border-radius-base;
38         &.active.active,
39         &.active.active:hover,
40         &.active.active.disabled,
41         &.active.active.disabled:hover {
42           background: @dropdown-link-active-bg;
43           text-shadow: none;
44         }
45         &:hover {
46           background: @dropdown-link-hover-bg;
47         }
48       }
49     }
50   }
51   thead tr:first-child th, tfoot tr th {
52     &:hover {
53       background: @dropdown-link-hover-bg;
54     }
55   }
56 }
57
58 .input-daterange {
59   input:first-child {
60     border-radius: @border-radius-base 0 0 @border-radius-base;
61   }
62   input:last-child {
63     border-radius: 0 @border-radius-base @border-radius-base 0;
64   }
65   .input-group-addon {
66     background-color: @input-group-addon-bg;
67     border-color: @input-group-addon-border-color;
68     line-height: @line-height-base;
69     padding: @padding-base-vertical @padding-base-horizontal;
70   }
71 }