View | Details | Raw Unified | Return to bug 28044
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/css/calendar.css (+159 lines)
Line 0 Link Here
1
.key {
2
    padding: 3px;
3
    white-space: nowrap;
4
    line-height: 230%;
5
}
6
7
.ui-datepicker {
8
    font-size: 150%;
9
}
10
11
.ui-datepicker th,
12
.ui-datepicker .ui-datepicker-title select {
13
    font-size: 80%;
14
}
15
16
.ui-datepicker td a {
17
    padding: .5em;
18
}
19
20
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
21
    font-size: 80%;
22
}
23
24
.key {
25
    padding: 3px;
26
    white-space: nowrap;
27
    line-height: 230%;
28
}
29
30
.normalday {
31
    background-color: #EDEDED;
32
    color: #000;
33
    border: 1px solid #BCBCBC;
34
}
35
36
.exception,
37
#holidayexceptions th.exception {
38
    background-color: #B3D4FF;
39
    color: #000;
40
    border: 1px solid #BCBCBC;
41
}
42
43
.holiday,
44
#holidaysunique th.holiday {
45
    background-color: #FFAEAE;
46
    color: #000;
47
    border: 1px solid #BCBCBC;
48
}
49
50
.repeatableweekly,
51
#holidayweeklyrepeatable th.repeatableweekly {
52
    background-color: #FFFF99;
53
    color: #000;
54
    border: 1px solid #BCBCBC;
55
}
56
57
.repeatableyearly,
58
#holidaysyearlyrepeatable th.repeatableyearly {
59
    background-color: #FFCC66;
60
    color: #000;
61
    border: 1px solid #BCBCBC;
62
}
63
64
td.exception a.ui-state-default {
65
    background: #b3d4ff none;
66
    color: #000;
67
    border: 1px solid #BCBCBC;
68
}
69
70
td.holiday a.ui-state-default {
71
    background: #FFAEAE none;
72
    color: #000;
73
    border: 1px solid #BCBCBC;
74
}
75
76
td.repeatableweekly a.ui-state-default {
77
    background: #FFFF99 none;
78
    color: #000;
79
    border: 1px solid #BCBCBC;
80
}
81
82
td.repeatableyearly a.ui-state-default {
83
    background: #FFCC66 none;
84
    color: #000;
85
    border: 1px solid #BCBCBC;
86
}
87
88
.information {
89
    z-index: 1;
90
    background-color: #DCD2F1;
91
    width: 300px;
92
    display: none;
93
    border: 1px solid #000000;
94
    color: #000000;
95
    font-size: 8pt;
96
    font-weight: bold;
97
    background-color: #FFD700;
98
    cursor: pointer;
99
    padding: 2px;
100
}
101
102
.panel {
103
    z-index: 1;
104
    display: none;
105
    border: 3px solid #CCC;
106
    padding: 3px;
107
    margin-top: .3em;
108
    background-color: #FEFEFE;
109
}
110
111
fieldset.brief {
112
    border: 0;
113
    margin-top: 0;
114
}
115
116
#showHoliday {
117
    margin: .5em 0;
118
}
119
120
h1 select {
121
    width: 20em;
122
}
123
124
fieldset.brief ol {
125
    font-size: 100%;
126
}
127
128
fieldset.brief li,
129
fieldset.brief li.radio {
130
    padding: 0.2em 0;
131
}
132
133
.help {
134
    margin: .3em 0;
135
    border: 1px solid #EEE;
136
    padding: .3em .7em;
137
    font-size: 90%;
138
}
139
140
#holidayweeklyrepeatable,
141
#holidaysyearlyrepeatable,
142
#holidaysunique,
143
#holidayexceptions {
144
    font-size: 90%;
145
    margin-bottom: 1em;
146
}
147
148
.calendar td,
149
.calendar th,
150
.calendar .button,
151
.calendar tbody .day {
152
    padding: .7em;
153
    font-size: 110%;
154
}
155
156
.calendar {
157
    width: auto;
158
    border: 0;
159
}
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt (-20 / +1 lines)
Lines 5-29 Link Here
5
[% INCLUDE 'doc-head-open.inc' %]
5
[% INCLUDE 'doc-head-open.inc' %]
6
<title>Koha &rsaquo; Tools &rsaquo; [% Branches.GetName( branch ) | html %] calendar</title>
6
<title>Koha &rsaquo; Tools &rsaquo; [% Branches.GetName( branch ) | html %] calendar</title>
7
[% INCLUDE 'doc-head-close.inc' %]
7
[% INCLUDE 'doc-head-close.inc' %]
8
<style> .key { padding : 3px; white-space:nowrap; line-height:230%; }
8
[% Asset.css("css/calendar.css") | $raw %]
9
.ui-datepicker { font-size : 150%; }
10
.ui-datepicker th, .ui-datepicker .ui-datepicker-title select { font-size : 80%; }
11
.ui-datepicker td a { padding : .5em; }
12
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { font-size : 80%; }
13
.key { padding : 3px; white-space:nowrap; line-height:230%; }
14
.normalday { background-color :  #EDEDED; color :  Black; border : 1px solid #BCBCBC; }
15
.exception { background-color :  #b3d4ff; color :  Black; border : 1px solid #BCBCBC; }
16
.holiday {  background-color :  #ffaeae; color :  Black;  border : 1px solid #BCBCBC; }
17
.repeatableweekly {  background-color :  #FFFF99; color :  Black;  border : 1px solid #BCBCBC; }
18
.repeatableyearly {  background-color :  #FFCC66; color :  Black;  border : 1px solid #BCBCBC; }
19
td.exception a.ui-state-default { background:  #b3d4ff none; color :  Black; border : 1px solid #BCBCBC; }
20
td.holiday a.ui-state-default {  background:  #ffaeae none; color :  Black;  border : 1px solid #BCBCBC; }
21
td.repeatableweekly a.ui-state-default {  background:  #FFFF99 none; color :  Black;  border : 1px solid #BCBCBC; }
22
td.repeatableyearly a.ui-state-default {  background:  #FFCC66 none; color :  Black;  border : 1px solid #BCBCBC; }
23
.information { z-index : 1; background-color :  #DCD2F1; width : 300px; display : none; border : 1px solid #000000; color :  #000000; font-size :  8pt; font-weight :  bold; background-color :  #FFD700; cursor :  pointer; padding : 2px; }
24
.panel { z-index : 1; display : none; border : 3px solid #CCC; padding : 3px; margin-top: .3em;  background-color: #FEFEFE; } fieldset.brief { border : 0; margin-top: 0; }
25
#showHoliday { margin : .5em 0; } h1 select { width: 20em; } fieldset.brief ol { font-size:100%; } fieldset.brief li, fieldset.brief li.radio  { padding:0.2em 0; } .help { margin:.3em 0;border:1px solid #EEE;padding:.3em .7em; font-size : 90%; } #holidayweeklyrepeatable, #holidaysyearlyrepeatable, #holidaysunique, #holidayexceptions { font-size : 90%; margin-bottom : 1em;} .calendar td, .calendar th, .calendar .button, .calendar tbody .day { padding : .7em; font-size: 110%; } .calendar { width: auto; border : 0; }
26
</style>
27
</head>
9
</head>
28
<body id="tools_holidays" class="tools">
10
<body id="tools_holidays" class="tools">
29
[% INCLUDE 'header.inc' %]
11
[% INCLUDE 'header.inc' %]
30
- 

Return to bug 28044