source: schedule/Module/src/css/border-radius.css@ 15884

Last change on this file since 15884 was 15532, checked in by tanio, 11 years ago
File size: 1.7 KB
Line 
1/* This is for Gecko-based browsers */
2
3.DynarchCalendar {
4 -moz-border-radius: 5px;
5 -webkit-border-radius: 5px;
6 border-radius: 5px;
7}
8
9.DynarchCalendar-title, .DynarchCalendar-title div {
10 -moz-border-radius: 0 0 4px 4px;
11 -webkit-border-radius: 0 0 4px 4px;
12 border-radius: 0 0 4px 4px;
13}
14
15.DynarchCalendar-topBar {
16 -moz-border-radius: 4px 4px 0 0;
17 -webkit-border-radius: 4px;
18 border-radius: 4px 4px 0 0;
19}
20
21.DynarchCalendar-bottomBar {
22 -moz-border-radius: 0 0 4px 4px;
23 -webkit-border-radius: 0 0 4px 4px;
24 border-radius: 0 0 4px 4px;
25}
26
27.DynarchCalendar-bottomBar-today {
28 -moz-border-radius: 4px;
29 -webkit-border-radius: 4px;
30 border-radius: 4px;
31}
32
33.DynarchCalendar-navBtn, .DynarchCalendar-navBtn div {
34 -moz-border-radius: 4px;
35 -webkit-border-radius: 4px;
36 border-radius: 4px;
37}
38
39.DynarchCalendar-menu {
40 -moz-border-radius: 5px;
41 -webkit-border-radius: 5px;
42 border-radius: 5px;
43}
44
45.DynarchCalendar-menu table td div {
46 -moz-border-radius: 4px;
47 -webkit-border-radius: 4px;
48 border-radius: 4px;
49}
50
51.DynarchCalendar-weekNumber {
52 -moz-border-radius: 4px 0 0 4px;
53 -webkit-border-radius: 4px 0 0 4px;
54 border-radius: 4px 0 0 4px;
55}
56
57.DynarchCalendar-day {
58 -moz-border-radius: 4px;
59 -webkit-border-radius: 4px;
60 border-radius: 4px;
61}
62
63.DynarchCalendar-day-disabled {
64 -moz-border-radius: 0;
65 -webkit-border-radius: 0;
66 border-radius: 0;
67}
68
69.DynarchCalendar-tooltipCont {
70 -moz-border-radius: 0 0 5px 5px;
71 -webkit-border-radius: 5px;
72}
73
74.DynarchCalendar-time-hour, .DynarchCalendar-time-minute {
75 -moz-border-radius: 3px 0 0 3px;
76 -webkit-border-radius: 3px;
77}
78
79.DynarchCalendar-time-am {
80 -moz-border-radius: 3px;
81 -webkit-border-radius: 3px;
82}
Note: See TracBrowser for help on using the repository browser.