| author | ymh <ymh.work@gmail.com> |
| Thu, 04 Apr 2013 18:20:59 +0200 | |
| changeset 137 | efc0fce30814 |
| parent 136 | a822178766ce |
| child 141 | 64af5273ac5e |
| permissions | -rw-r--r-- |
|
97
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
1 |
|
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
2 |
::-moz-selection { background: initial; color: initial; text-shadow: initial; } |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
3 |
::selection { background: initial; color: initial; text-shadow: initial; } |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
4 |
|
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
5 |
body,html { |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
6 |
height: 100%; |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
7 |
} |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
8 |
|
| 81 | 9 |
body, h1, h2, table, tbody, thead, tr, td, th { |
10 |
border: none; margin: 0; padding: 0; text-align: left; font-size: 100%; |
|
11 |
} |
|
12 |
body { |
|
13 |
margin: 0; padding: 0; font-family: Arial, Helvetica, sans-serif; background: #F6F6F6; color: #333333; |
|
14 |
} |
|
15 |
h1 { |
|
16 |
margin-bottom: 5px; padding: 15px; border-bottom: 2px solid #ffffff; background: #333333; color: #ffffff; |
|
17 |
font-weight: bold; font-size: 30px; |
|
18 |
} |
|
19 |
h2 { |
|
20 |
margin: 12px 15px 2px; |
|
21 |
} |
|
22 |
h3 { |
|
23 |
color: #999999; font-size: 15px; font-weight: bold; |
|
24 |
font-style: italic; margin: 5px 30px; |
|
25 |
} |
|
26 |
a { |
|
27 |
text-decoration: none; color: #3030a0; |
|
28 |
} |
|
29 |
a:hover { |
|
30 |
text-decoration: underline; |
|
31 |
} |
|
32 |
table { |
|
33 |
border-collapse: collapse; margin: 5px 15px; border: 1px solid #CCCCCC; |
|
34 |
} |
|
35 |
th, td { |
|
| 136 | 36 |
padding: 4px 12px 4px 4px; border: 1px solid #cccccc; |
| 81 | 37 |
} |
38 |
thead { |
|
39 |
font-size: 16px; |
|
40 |
} |
|
41 |
tbody { |
|
42 |
font-size: 14px; |
|
43 |
} |
|
44 |
tbody tr:nth-child(even) { |
|
45 |
background: #fafafa; |
|
46 |
} |
|
47 |
tbody tr:nth-child(odd) { |
|
48 |
background: #f0f0f0; |
|
49 |
} |
|
50 |
thead tr { |
|
51 |
background: #666666; color: #f0e0e0; |
|
52 |
} |
|
53 |
tbody tr:hover { |
|
54 |
background: #ffffff; |
|
55 |
} |
|
56 |
||
| 87 | 57 |
.pagination-container { |
58 |
margin: 12px 15px 2px; |
|
59 |
font-size: 14px; |
|
60 |
} |
|
61 |
||
62 |
.pagination-container a, .pagination-container span { |
|
63 |
margin: 0 1px 0 1px; |
|
64 |
} |
|
65 |
||
|
97
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
66 |
div#container { |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
67 |
position:relative; /* needed for footer positioning*/ |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
68 |
margin:0 auto; /* center, not in IE5 */ |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
69 |
|
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
70 |
height:auto !important; /* real browsers */ |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
71 |
height:100%; /* IE6: treaded as min-height*/ |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
72 |
|
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
73 |
min-height:100%; /* real browsers */ |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
74 |
} |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
75 |
|
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
76 |
div#wrapper { |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
77 |
padding-bottom: 1em; /* bottom padding for footer */ |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
78 |
} |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
79 |
|
| 127 | 80 |
footer#footer { |
|
97
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
81 |
position:absolute; |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
82 |
bottom:0; |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
83 |
width:100%; |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
84 |
font-size: 12px; |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
85 |
} |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
86 |
|
| 127 | 87 |
footer#footer div { |
|
97
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
88 |
float:right; |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
89 |
margin: 15px 10px 0 0; |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
90 |
} |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
91 |
|
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
92 |
#home-link,#home-link:link,#home-link:hover,#home-link:active,#home-link:visited { |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
93 |
text-decoration: none; |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
94 |
color: #ffffff; |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
95 |
} |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
96 |
|
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
97 |
|
| 87 | 98 |
#inner { |
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
99 |
width: 300px; |
| 81 | 100 |
margin: 10px auto; |
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
101 |
} |
| 87 | 102 |
|
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
103 |
#button { |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
104 |
margin: 0 auto; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
105 |
border-radius: 3px; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
106 |
text-align: center; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
107 |
font: 36px verdana,arial,sans-serif; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
108 |
color: white; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
109 |
text-shadow: 0 -1px 0 rgba(0,0,0,.8); |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
110 |
height: 70px; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
111 |
line-height: 70px; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
112 |
background: #555; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
113 |
background: -webkit-linear-gradient(#5F5F5F,#565656 50%,#4C4C4C 51%,#373737); |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
114 |
background: -moz-linear-gradient(#5F5F5F,#565656 50%,#4C4C4C 51%,#373737); |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
115 |
background: -ms-linear-gradient(#5F5F5F,#565656 50%,#4C4C4C 51%,#373737); |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
116 |
background: -o-linear-gradient(#5F5F5F,#565656 50%,#4C4C4C 51%,#373737); |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
117 |
box-shadow: inset 0 1px 3px rgba(0,0,0,0.9); |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
118 |
} |
| 87 | 119 |
|
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
120 |
#button:hover { |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
121 |
cursor: pointer; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
122 |
background: #666; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
123 |
background: -webkit-linear-gradient(#707070,#666666 50%,#5B5B5B 51%,#474747); |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
124 |
background: -moz-linear-gradient(#707070,#666666 50%,#5B5B5B 51%,#474747); |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
125 |
background: -ms-linear-gradient(#707070,#666666 50%,#5B5B5B 51%,#474747); |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
126 |
background: -o-linear-gradient(#707070,#666666 50%,#5B5B5B 51%,#474747); |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
127 |
} |
| 87 | 128 |
|
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
129 |
#button:active { |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
130 |
box-shadow: inset 0 1px 12px rgba(0,0,0,0.9); |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
131 |
background: #444; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
132 |
} |
| 87 | 133 |
|
| 137 | 134 |
#label { |
| 87 | 135 |
font: 30px verdana,arial,sans-serif bold; |
136 |
text-align: center; |
|
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
137 |
text-shadow: 0 1px 1px #fff; |
| 87 | 138 |
height: 70px; |
139 |
line-height: 70px; |
|
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
140 |
margin: 16px auto 0; |
| 137 | 141 |
} |
142 |
||
143 |
form { |
|
| 87 | 144 |
height: 38px; |
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
145 |
position: relative; |
| 137 | 146 |
} |
147 |
||
148 |
button, input { |
|
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
149 |
font-weight: bold; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
150 |
font-size: 15px; |
| 137 | 151 |
} |
| 87 | 152 |
|
| 137 | 153 |
#inner input[type="text"] { |
| 87 | 154 |
background: #fff; |
155 |
border: 1px solid #bbb; |
|
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
156 |
border-radius: 3px; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
157 |
box-sizing: border-box; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
158 |
-moz-box-sizing: border-box; |
| 87 | 159 |
padding: 0 10px 0 10px; |
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
160 |
*padding: 0; /* IE7 hack */ |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
161 |
width: 100%; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
162 |
height: 100%; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
163 |
outline: none; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
164 |
position: absolute; |
| 127 | 165 |
} |
|
97
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
166 |
|
| 137 | 167 |
#inner button[type="submit"] { |
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
168 |
position: absolute; |
| 87 | 169 |
right: -45px; |
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
170 |
width: 45px; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
171 |
height: 38px; |
| 127 | 172 |
} |
173 |
||
174 |
#objects-content { |
|
175 |
float: left; |
|
176 |
} |
|
177 |
||
178 |
#objects-content table { |
|
179 |
width: 100%; |
|
180 |
} |
|
181 |
||
182 |
.object-tools { |
|
183 |
font-size: 11px; |
|
184 |
font-weight: bold; |
|
185 |
font-family: Arial,Helvetica,sans-serif; |
|
186 |
padding-left: 0; |
|
187 |
float: right; |
|
188 |
position: relative; |
|
189 |
margin: -2.4em -15px -2em 0; |
|
190 |
} |
|
191 |
||
192 |
.object-tools li { |
|
193 |
list-style: none; |
|
194 |
} |
|
195 |
||
196 |
.object-tools a:link, .object-tools a:visited { |
|
197 |
display: block; |
|
198 |
float: left; |
|
199 |
color: white; |
|
200 |
padding: .1em 8px .1em 8px; |
|
201 |
height: 14px; |
|
202 |
background: #666666; |
|
203 |
text-decoration: none; |
|
204 |
} |
|
205 |
||
206 |
.spaces-table-title { |
|
207 |
width: 250px; |
|
208 |
} |
|
209 |
.spaces-table-created { |
|
210 |
width: 120px; |
|
211 |
} |
|
212 |
||
213 |
.spaces-table-actions { |
|
214 |
width: 40px; |
|
215 |
} |
|
216 |
||
|
129
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
217 |
.spaces-table-actions-disabled, .spaces-table-actions-disabled:link, .spaces-table-actions-disabled:visited, .spaces-table-actions-disabled:hover, .spaces-table-actions-disabled:active, .spaces-table-actions-disabled:focus { |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
218 |
color: gray; |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
219 |
text-decoration: none; |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
220 |
cursor: default; |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
221 |
} |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
222 |
|
| 127 | 223 |
td.spaces-table-created { |
224 |
text-align: center; |
|
225 |
} |
|
226 |
||
227 |
.form-fields label, .form-fields input, .form-fields textarea, .form-fields #binConfigDiv { |
|
228 |
display:inline-block; |
|
229 |
} |
|
230 |
||
231 |
.form-fields label { |
|
232 |
width:150px; |
|
233 |
float: left; |
|
234 |
} |
|
235 |
||
236 |
.form-fields input, .form-fields textarea { |
|
237 |
width:200px; |
|
238 |
} |
|
239 |
||
240 |
||
241 |
#space-form-container { |
|
242 |
margin: 12px 0px 0px 15px; |
|
243 |
} |
|
244 |
||
245 |
.form-fields div { |
|
246 |
margin-bottom: 12px; |
|
247 |
} |
|
248 |
||
249 |
.form-error { |
|
250 |
color: red; |
|
251 |
} |
|
252 |
||
253 |
#binConfigDiv { |
|
254 |
position: relative; |
|
255 |
width: 650px; |
|
256 |
height: 150px; |
|
257 |
} |
|
|
129
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
258 |
|
| 127 | 259 |
#binConfigDiv div { |
260 |
margin-bottom: 0; |
|
261 |
} |
|
|
129
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
262 |
|
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
263 |
#space-delete-container { |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
264 |
margin-left: 12px; |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
265 |
margin-top: 1em; |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
266 |
} |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
267 |
|
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
268 |
|
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
269 |
#space-delete-confirm-buttons { |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
270 |
margin-top: 1em; |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
271 |
} |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
272 |
|
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
273 |
#space-delete-confirm-buttons form { |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
274 |
margin: 0; |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
275 |
padding: 0; |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
276 |
display: inline; |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
277 |
} |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
278 |
|
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
279 |
#space-delete-confirm-buttons input[type=submit] { |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
280 |
margin-right: 12px; |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
281 |
} |
| 136 | 282 |
|
| 137 | 283 |
#project-filter-container { |
284 |
margin: 12px 0 0 15px; |
|
285 |
} |
|
286 |
||
287 |
#project-filter-container input[type="text"] { |
|
288 |
background: #fff; |
|
289 |
border: 1px solid #bbb; |
|
290 |
border-radius: 3px; |
|
291 |
padding: 2px 10px 3px; |
|
292 |
box-sizing: border-box; |
|
293 |
-moz-box-sizing: border-box; |
|
294 |
outline: none; |
|
295 |
font-weight: normal; |
|
296 |
font-size: 15px; |
|
297 |
} |
|
298 |
|
|
299 |
#project-filter-container button[type="submit"] { |
|
300 |
|
|
301 |
} |
|
302 |
||
| 136 | 303 |
.proj-sort-form { |
304 |
float: right; |
|
305 |
height: auto; |
|
306 |
} |
|
307 |
||
308 |
.proj-sort-form input[type=submit] { |
|
309 |
width: 16px; |
|
310 |
height: 16px; |
|
311 |
border: 0; |
|
312 |
} |
|
313 |
||
314 |
.proj-sort-form input[type=submit]:HOVER { |
|
315 |
opacity: .5; |
|
316 |
} |
|
317 |
||
318 |
.proj-sortable-col { |
|
319 |
background: url("../img/sort_arrows.png") 0 0; |
|
320 |
} |
|
321 |
||
322 |
.proj-sort-desc-col { |
|
323 |
background: url("../img/sort_arrows.png") 0 -17px; |
|
324 |
} |
|
325 |
||
326 |
.proj-sort-asc-col { |
|
327 |
background: url("../img/sort_arrows.png") 0 -33px; |
|
328 |
} |