| author | ymh <ymh.work@gmail.com> |
| Tue, 14 Jan 2014 18:02:42 +0100 | |
| branch | user_management |
| changeset 239 | 67c2b0fb9b19 |
| parent 222 | 6ac00231ee34 |
| child 298 | 2f35c2ae7de8 |
| permissions | -rw-r--r-- |
|
97
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
1 |
|
| 144 | 2 |
::-moz-selection { background: #a8d1ff; color: inherit; text-shadow: inherit;} |
3 |
::selection { background: #a8d1ff; color: inherit; text-shadow: inherit;} |
|
|
97
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 { |
|
|
150
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
16 |
margin-bottom: 5px; padding: 15px; background: #333333; color: #ffffff; |
| 81 | 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 |
|
|
150
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
80 |
header#header { |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
81 |
border-bottom: 2px solid #ffffff; background: #333333; color: #ffffff; |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
82 |
font-weight: bold; font-size: 30px; |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
83 |
} |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
84 |
|
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
85 |
header h1 { |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
86 |
float:left; |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
87 |
} |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
88 |
|
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
89 |
header #header-clear { |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
90 |
clear: both; |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
91 |
} |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
92 |
|
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
93 |
header .header-nav { |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
94 |
background: #333333; color: #ffffff; |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
95 |
float: right; |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
96 |
font-weight: normal; font-size: 15px; |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
97 |
margin-bottom: 5px; padding: 15px; |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
98 |
text-align: right; |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
99 |
} |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
100 |
|
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
101 |
|
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
102 |
header .header-nav a, header .header-nav a:ACTIVE, header .header-nav a:LINK, header .header-nav a:VISITED { |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
103 |
color: #ffffff; |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
104 |
text-decoration: none; |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
105 |
} |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
106 |
|
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
107 |
header .header-nav a:HOVER { |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
108 |
color: #ffffff; |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
109 |
text-decoration: underline; |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
110 |
} |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
111 |
|
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
112 |
#header-nav-user-avatar { |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
113 |
margin: 0 5px 2px 0; |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
114 |
} |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
115 |
|
| 127 | 116 |
footer#footer { |
|
97
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
117 |
position:absolute; |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
118 |
bottom:0; |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
119 |
width:100%; |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
120 |
font-size: 12px; |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
121 |
} |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
122 |
|
| 127 | 123 |
footer#footer div { |
|
97
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
124 |
float:right; |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
125 |
margin: 15px 10px 0 0; |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
126 |
} |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
127 |
|
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
128 |
#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
|
129 |
text-decoration: none; |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
130 |
color: #ffffff; |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
131 |
} |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
132 |
|
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
133 |
|
| 87 | 134 |
#inner { |
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
135 |
width: 300px; |
| 81 | 136 |
margin: 10px auto; |
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
137 |
} |
| 87 | 138 |
|
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
139 |
#button { |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
140 |
margin: 0 auto; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
141 |
border-radius: 3px; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
142 |
text-align: center; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
143 |
font: 36px verdana,arial,sans-serif; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
144 |
color: white; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
145 |
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
|
146 |
height: 70px; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
147 |
line-height: 70px; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
148 |
background: #555; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
149 |
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
|
150 |
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
|
151 |
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
|
152 |
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
|
153 |
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
|
154 |
} |
| 87 | 155 |
|
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
156 |
#button:hover { |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
157 |
cursor: pointer; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
158 |
background: #666; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
159 |
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
|
160 |
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
|
161 |
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
|
162 |
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
|
163 |
} |
| 87 | 164 |
|
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
165 |
#button:active { |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
166 |
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
|
167 |
background: #444; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
168 |
} |
| 87 | 169 |
|
| 137 | 170 |
#label { |
| 87 | 171 |
font: 30px verdana,arial,sans-serif bold; |
172 |
text-align: center; |
|
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
173 |
text-shadow: 0 1px 1px #fff; |
| 87 | 174 |
height: 70px; |
175 |
line-height: 70px; |
|
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
176 |
margin: 16px auto 0; |
| 137 | 177 |
} |
178 |
||
179 |
form { |
|
| 87 | 180 |
height: 38px; |
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
181 |
position: relative; |
| 137 | 182 |
} |
183 |
||
184 |
button, input { |
|
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
185 |
font-weight: bold; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
186 |
font-size: 15px; |
| 137 | 187 |
} |
| 87 | 188 |
|
| 137 | 189 |
#inner input[type="text"] { |
| 87 | 190 |
background: #fff; |
191 |
border: 1px solid #bbb; |
|
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
192 |
border-radius: 3px; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
193 |
box-sizing: border-box; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
194 |
-moz-box-sizing: border-box; |
| 87 | 195 |
padding: 0 10px 0 10px; |
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
196 |
*padding: 0; /* IE7 hack */ |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
197 |
width: 100%; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
198 |
height: 100%; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
199 |
outline: none; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
200 |
position: absolute; |
| 127 | 201 |
} |
|
97
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
202 |
|
| 137 | 203 |
#inner button[type="submit"] { |
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
204 |
position: absolute; |
| 87 | 205 |
right: -45px; |
|
47
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
206 |
width: 45px; |
|
267d67791e05
first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
207 |
height: 38px; |
| 127 | 208 |
} |
209 |
||
210 |
#objects-content { |
|
211 |
float: left; |
|
212 |
} |
|
213 |
||
214 |
#objects-content table { |
|
215 |
width: 100%; |
|
216 |
} |
|
217 |
||
218 |
.object-tools { |
|
219 |
font-size: 11px; |
|
220 |
font-weight: bold; |
|
221 |
font-family: Arial,Helvetica,sans-serif; |
|
222 |
padding-left: 0; |
|
223 |
float: right; |
|
224 |
position: relative; |
|
225 |
margin: -2.4em -15px -2em 0; |
|
226 |
} |
|
227 |
||
228 |
.object-tools li { |
|
229 |
list-style: none; |
|
230 |
} |
|
231 |
||
232 |
.object-tools a:link, .object-tools a:visited { |
|
233 |
display: block; |
|
234 |
float: left; |
|
235 |
color: white; |
|
236 |
padding: .1em 8px .1em 8px; |
|
237 |
height: 14px; |
|
238 |
background: #666666; |
|
239 |
text-decoration: none; |
|
240 |
} |
|
241 |
||
| 215 | 242 |
.object-table-title { |
| 127 | 243 |
width: 250px; |
244 |
} |
|
| 215 | 245 |
.object-table-created { |
| 127 | 246 |
width: 120px; |
247 |
} |
|
248 |
||
| 215 | 249 |
.object-table-actions { |
| 127 | 250 |
width: 40px; |
251 |
} |
|
252 |
||
| 215 | 253 |
.object-table-actions-disabled, .object-table-actions-disabled:link, .object-table-actions-disabled:visited, .object-table-actions-disabled:hover, .object-table-actions-disabled:active, .object-table-actions-disabled:focus { |
|
129
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
254 |
color: gray; |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
255 |
text-decoration: none; |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
256 |
cursor: default; |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
257 |
} |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
258 |
|
| 215 | 259 |
td.object-table-created { |
| 127 | 260 |
text-align: center; |
261 |
} |
|
262 |
||
| 141 | 263 |
.form-fields label, .form-fields input, .form-fields textarea, .form-fields #binConfigContainer { |
| 127 | 264 |
display:inline-block; |
265 |
} |
|
266 |
||
267 |
.form-fields label { |
|
268 |
width:150px; |
|
269 |
float: left; |
|
270 |
} |
|
271 |
||
|
239
67c2b0fb9b19
add user and group list in group and user edit pages
ymh <ymh.work@gmail.com>
parents:
222
diff
changeset
|
272 |
.form-fields input, .form-fields textarea, .form-fields select { |
| 127 | 273 |
width:200px; |
274 |
} |
|
275 |
||
276 |
||
277 |
.form-fields div { |
|
278 |
margin-bottom: 12px; |
|
279 |
} |
|
280 |
||
281 |
.form-error { |
|
282 |
color: red; |
|
283 |
} |
|
284 |
||
285 |
#binConfigDiv { |
|
286 |
position: relative; |
|
287 |
width: 650px; |
|
288 |
height: 150px; |
|
289 |
} |
|
|
129
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
290 |
|
| 141 | 291 |
.binConfigButton { |
292 |
font-weight: normal; |
|
293 |
} |
|
294 |
.binConfigButton[disabled] { |
|
295 |
color: graytext; |
|
296 |
} |
|
297 |
||
| 127 | 298 |
#binConfigDiv div { |
299 |
margin-bottom: 0; |
|
300 |
} |
|
|
129
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
301 |
|
| 222 | 302 |
#object-delete-container { |
|
129
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
303 |
margin-left: 12px; |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
304 |
margin-top: 1em; |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
305 |
} |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
306 |
|
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
307 |
|
| 222 | 308 |
#object-delete-confirm-buttons { |
|
129
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
309 |
margin-top: 1em; |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
310 |
} |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
311 |
|
| 222 | 312 |
#object-delete-confirm-buttons form { |
|
129
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
313 |
margin: 0; |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
314 |
padding: 0; |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
315 |
display: inline; |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
316 |
} |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
317 |
|
| 222 | 318 |
#object-delete-confirm-buttons input[type=submit] { |
|
129
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
319 |
margin-right: 12px; |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
320 |
} |
| 136 | 321 |
|
| 137 | 322 |
#project-filter-container { |
323 |
margin: 12px 0 0 15px; |
|
324 |
} |
|
325 |
||
326 |
#project-filter-container input[type="text"] { |
|
327 |
background: #fff; |
|
328 |
border: 1px solid #bbb; |
|
329 |
border-radius: 3px; |
|
330 |
padding: 2px 10px 3px; |
|
331 |
box-sizing: border-box; |
|
332 |
-moz-box-sizing: border-box; |
|
333 |
outline: none; |
|
334 |
font-weight: normal; |
|
335 |
font-size: 15px; |
|
336 |
} |
|
337 |
|
|
338 |
#project-filter-container button[type="submit"] { |
|
339 |
|
|
340 |
} |
|
341 |
||
| 136 | 342 |
.proj-sort-form { |
343 |
float: right; |
|
344 |
height: auto; |
|
345 |
} |
|
346 |
||
347 |
.proj-sort-form input[type=submit] { |
|
348 |
width: 16px; |
|
349 |
height: 16px; |
|
350 |
border: 0; |
|
351 |
} |
|
352 |
||
353 |
.proj-sort-form input[type=submit]:HOVER { |
|
354 |
opacity: .5; |
|
355 |
} |
|
356 |
||
357 |
.proj-sortable-col { |
|
358 |
background: url("../img/sort_arrows.png") 0 0; |
|
359 |
} |
|
360 |
||
361 |
.proj-sort-desc-col { |
|
362 |
background: url("../img/sort_arrows.png") 0 -17px; |
|
363 |
} |
|
364 |
||
365 |
.proj-sort-asc-col { |
|
366 |
background: url("../img/sort_arrows.png") 0 -33px; |
|
367 |
} |
|
|
150
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
368 |
|
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
369 |
#inner-container { |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
370 |
margin: 12px 0px 0px 15px; |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
371 |
} |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
372 |
|
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
373 |
#login-errors { |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
374 |
color: #ff0000; |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
375 |
border: 1px solid #ff0000; |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
376 |
padding: 8px; |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
377 |
margin: 16px 16px 32px; |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
378 |
width: inherit; |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
379 |
float: left; |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
380 |
} |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
381 |
|
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
382 |
#login-form { |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
383 |
clear: both; |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
384 |
} |