|
Lines 1-117
Link Here
|
| 1 |
a.edit, a.delete, a.edit:hover, a.delete:hover { |
1 |
a.edit, |
| 2 |
border-bottom: none; |
2 |
a.delete, |
| 3 |
display: block; |
3 |
a.edit:hover, |
| 4 |
padding: 5px 0; |
4 |
a.delete:hover { |
| 5 |
text-align: center; |
5 |
border-bottom: none; |
|
|
6 |
display: block; |
| 7 |
padding: 5px 0; |
| 8 |
text-align: center; |
| 6 |
} |
9 |
} |
| 7 |
|
10 |
|
| 8 |
a.edit:hover { |
11 |
a.edit:hover { |
| 9 |
background: #ccc; |
12 |
background: #CCC; |
| 10 |
color: #036; |
13 |
color: #036; |
| 11 |
} |
14 |
} |
| 12 |
|
15 |
|
| 13 |
a:visited { |
16 |
a:visited { |
| 14 |
color: #006; |
17 |
color: #006; |
| 15 |
} |
18 |
} |
| 16 |
|
19 |
|
| 17 |
a:hover { |
20 |
a:hover { |
| 18 |
/* border-bottom: 1px solid #3a75ae;*/ |
21 |
color: #069; |
| 19 |
color: #069; |
|
|
| 20 |
} |
22 |
} |
| 21 |
|
23 |
|
| 22 |
body { |
24 |
body { |
| 23 |
background: #f3f4f4; |
25 |
background: #F3F4F4; |
| 24 |
} |
26 |
} |
| 25 |
|
27 |
|
| 26 |
form, label input { |
28 |
form, |
| 27 |
margin: 0; |
29 |
label input { |
| 28 |
padding: 0; |
30 |
margin: 0; |
|
|
31 |
padding: 0; |
| 29 |
} |
32 |
} |
| 30 |
|
33 |
|
| 31 |
input:focus, textarea:focus, label:focus { |
34 |
input:focus, |
| 32 |
background: #fff; |
35 |
textarea:focus, |
| 33 |
border: 1px solid #686868; |
36 |
label:focus { |
|
|
37 |
background: #FFF; |
| 38 |
border: 1px solid #686868; |
| 34 |
} |
39 |
} |
| 35 |
|
40 |
|
| 36 |
label { |
41 |
label { |
| 37 |
display : block; |
42 |
display: block; |
| 38 |
margin : .2em 0; |
43 |
margin: .2em 0; |
| 39 |
} |
44 |
} |
| 40 |
|
45 |
|
| 41 |
#logo { margin-bottom: 2em; } |
46 |
#logo { margin-bottom: 2em; } |
| 42 |
|
47 |
|
| 43 |
#login { |
48 |
#login { |
| 44 |
background: #fff; |
49 |
background: #FFF; |
| 45 |
border: none; |
50 |
border: none; |
| 46 |
box-shadow: 8px 8px 12px rgb(170 170 170); |
51 |
box-shadow: 8px 8px 12px #AAAAAA; |
| 47 |
margin: 4em auto; |
52 |
margin: 4em auto; |
| 48 |
padding: 1.5em; |
53 |
padding: 1.5em; |
| 49 |
position : relative; |
54 |
position: relative; |
| 50 |
top : auto; |
55 |
right: auto; |
| 51 |
right : auto; |
56 |
top: auto; |
| 52 |
width: 25em; |
57 |
width: 25em; |
| 53 |
} |
58 |
} |
| 54 |
|
59 |
|
| 55 |
#login #login_error { |
60 |
#login #login_error { |
| 56 |
background: #D23F3F; |
61 |
background: #D23F3F; |
| 57 |
border: 1px solid #a40000; |
62 |
border: 1px solid #A40000; |
| 58 |
color: #fff; |
63 |
border-radius: 5px; |
| 59 |
font-size: 120%; |
64 |
color: #FFF; |
| 60 |
line-height: 140%; |
65 |
filter: dropshadow( color=#6C1010, offx=0, offy=1 ); |
| 61 |
font-weight: bold; |
66 |
font-size: 120%; |
| 62 |
margin: 1em 0; |
67 |
font-weight: bold; |
| 63 |
padding: .5em; |
68 |
line-height: 140%; |
| 64 |
text-align: center; |
69 |
margin: 1em 0; |
| 65 |
text-shadow: 0px 1px 1px #6C1010; |
70 |
padding: .5em; |
| 66 |
filter: dropshadow(color=#6C1010, offx=0, offy=1); |
71 |
text-align: center; |
| 67 |
-moz-border-radius: 5px; |
72 |
text-shadow: 0 1px 1px #6C1010; |
| 68 |
border-radius: 5px; |
|
|
| 69 |
} |
73 |
} |
| 70 |
|
74 |
|
| 71 |
#login #login_error a:link, |
75 |
#login #login_error a:link, |
| 72 |
#login #login_error a:visited { |
76 |
#login #login_error a:visited { |
| 73 |
color : #FFC; |
77 |
color: #FFC; |
| 74 |
text-decoration: underline; |
78 |
text-decoration: underline; |
| 75 |
} |
79 |
} |
| 76 |
|
80 |
|
| 77 |
#login #login_error a:hover, |
81 |
#login #login_error a:hover, |
| 78 |
#login #login_error a:active { |
82 |
#login #login_error a:active { |
| 79 |
color : #FCFC4D; |
83 |
color: #FCFC4D; |
| 80 |
text-decoration: underline; |
84 |
text-decoration: underline; |
| 81 |
} |
85 |
} |
| 82 |
|
86 |
|
| 83 |
#login h1 { |
87 |
#login h1 { |
| 84 |
background: url(../img/koha-logo.gif) no-repeat top center; |
88 |
background: url( "../img/koha-logo.gif" ) no-repeat top center; |
| 85 |
margin-top: 0; |
89 |
margin-bottom: .5em; |
| 86 |
margin-bottom : .5em; |
90 |
margin-top: 0; |
| 87 |
} |
91 |
} |
| 88 |
|
92 |
|
| 89 |
#login h1 a { |
93 |
#login h1 a { |
| 90 |
/* http://www.zeldman.com/2012/03/01/replacing-the-9999px-hack-new-image-replacement/ */ |
94 |
/* http://www.zeldman.com/2012/03/01/replacing-the-9999px-hack-new-image-replacement/ */ |
| 91 |
display: block; |
95 |
display: block; |
| 92 |
height: 74px; |
96 |
height: 74px; |
|
|
97 |
overflow: hidden; |
| 93 |
text-indent: 100%; |
98 |
text-indent: 100%; |
| 94 |
white-space: nowrap; |
99 |
white-space: nowrap; |
| 95 |
overflow: hidden; |
|
|
| 96 |
} |
100 |
} |
| 97 |
|
101 |
|
| 98 |
#login ul { |
102 |
#login ul { |
| 99 |
list-style: none; |
103 |
list-style: none; |
| 100 |
margin: 0; |
104 |
margin: 0; |
| 101 |
padding: 0; |
105 |
padding: 0; |
| 102 |
} |
106 |
} |
| 103 |
|
107 |
|
| 104 |
#login ul li { |
108 |
#login ul li { |
| 105 |
display: inline; |
109 |
display: inline; |
| 106 |
margin-left: 1.4em; |
110 |
margin-left: 1.4em; |
| 107 |
text-align: center; |
111 |
text-align: center; |
| 108 |
} |
112 |
} |
| 109 |
|
113 |
|
| 110 |
#footer { |
114 |
#footer { |
| 111 |
text-align: center; |
115 |
border-top: 1px solid #CCC; |
| 112 |
border-top: 1px solid #ccc; |
116 |
font-style: italic; |
| 113 |
padding-top: 1em; |
117 |
padding-top: 1em; |
| 114 |
font-style: italic; |
118 |
text-align: center; |
| 115 |
} |
119 |
} |
| 116 |
|
120 |
|
| 117 |
.submit { |
121 |
.submit { |
|
Lines 124-144
label {
Link Here
|
| 124 |
|
128 |
|
| 125 |
input[type="submit"]:active, |
129 |
input[type="submit"]:active, |
| 126 |
input[type="submit"]:focus { |
130 |
input[type="submit"]:focus { |
| 127 |
box-shadow: inset 0 0 0 1px #edb423; |
131 |
box-shadow: inset 0 0 0 1px #EDB423; |
| 128 |
} |
132 |
} |
| 129 |
|
133 |
|
| 130 |
input[type="submit"]:active, |
134 |
input[type="submit"]:active, |
| 131 |
input[type="submit"]:focus, |
135 |
input[type="submit"]:focus, |
| 132 |
input[type="submit"]:hover { |
136 |
input[type="submit"]:hover { |
| 133 |
background: #ffd15e none; |
137 |
background: #FFD15E none; |
| 134 |
border: 1px solid #ffc32b; |
138 |
border: 1px solid #FFC32B; |
| 135 |
} |
139 |
} |
| 136 |
|
140 |
|
| 137 |
textarea, input, select { |
141 |
textarea, |
| 138 |
background: #fff; |
142 |
input, |
| 139 |
border: 1px solid #b2b2b2; |
143 |
select { |
|
|
144 |
background: #FFF; |
| 145 |
border: 1px solid #B2B2B2; |
| 140 |
color: #000; |
146 |
color: #000; |
| 141 |
font: 13px Verdana, Arial, Helvetica, sans-serif; |
147 |
font: 13px Verdana, Arial, Helvetica, sans-serif; |
| 142 |
margin: 1px; |
148 |
margin: 1px; |
| 143 |
padding: 3px; |
149 |
padding: 3px; |
| 144 |
} |
150 |
} |
|
Lines 147-154
select {
Link Here
|
| 147 |
width: 97%; |
153 |
width: 97%; |
| 148 |
} |
154 |
} |
| 149 |
|
155 |
|
| 150 |
input[type='text'], |
156 |
input[type="text"], |
| 151 |
input[type='password'] { |
157 |
input[type="password"] { |
| 152 |
font-size: 1.7em; |
158 |
font-size: 1.7em; |
| 153 |
width: 97%; |
159 |
width: 97%; |
| 154 |
} |
160 |
} |
| 155 |
- |
|
|