-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathInputfieldRecurringDates.css
62 lines (53 loc) · 1.38 KB
/
InputfieldRecurringDates.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
.InputfieldRecurringDates [x-cloak] { display: none !important; }
.InputfieldRecurringDates .bymonthday-filter-wrapper{
max-width: 280px;
}
.InputfieldRecurringDates .bymonthday-grid-item{
width: calc(100% / 7);
}
.InputfieldRecurringDates .bymonthday-grid-item:nth-child(7n + 1) .bymonthday-wrapper{
border-left:1px solid #efefef;
}
.InputfieldRecurringDates .bymonthday-grid-item:nth-child(-n + 7) .bymonthday-wrapper{
border-top:1px solid #efefef;
}
.InputfieldRecurringDates .bymonthday-wrapper{
border-right:1px solid #efefef;
border-bottom:1px solid #efefef;
width:40px;
height:40px;
display:block;
position:relative;
font-size:14px;
}
.InputfieldRecurringDates .bymonthday-wrapper label{
line-height:40px;
text-align: center;
display:block;
position:relative;
}
.InputfieldRecurringDates .bymonthday-wrapper .bymonth-checkbox-background{
position:absolute;
top:0;
bottom:0;
left:0;
right:0;
}
.InputfieldRecurringDates .bymonthday-wrapper input[type=checkbox]:checked + .bymonth-checkbox-background{
background-color:rgb(88,88,88);
color:white;
}
.InputfieldRecurringDates .bymonthday-wrapper input[type=checkbox]{
width:30px;
height:30px;
display:block;
position:absolute;
top:0;
bottom:0;
left:0;
border:0;
opacity:0;
z-index:1;
}
.InputfieldRecurringDates{
}