Commit e6c47f500030bd32930281a1fa4240b816dcdf1a
Committed by
Álvaro Fernando Matos de Souza
1 parent
d05d8fe3
Exists in
design_validation
Fix broken styles on Profiles manage pages
Showing
1 changed file
with
103 additions
and
4 deletions
Show diff stats
src/noosfero-spb-theme/css/administration-panel.css
@@ -57,11 +57,13 @@ | @@ -57,11 +57,13 @@ | ||
57 | } | 57 | } |
58 | 58 | ||
59 | .action-organizations-index .main-block form#manage-profiles .search-field{ | 59 | .action-organizations-index .main-block form#manage-profiles .search-field{ |
60 | - margin-bottom: 30px; | 60 | + margin-bottom: 20px; |
61 | + display: block; | ||
62 | + height: 30px; | ||
61 | } | 63 | } |
62 | 64 | ||
63 | .action-organizations-index .main-block form#manage-profiles .search-field .formfield { | 65 | .action-organizations-index .main-block form#manage-profiles .search-field .formfield { |
64 | - width: 100%; | 66 | + width: 60%; |
65 | margin-right: 0.5em; | 67 | margin-right: 0.5em; |
66 | float: left; | 68 | float: left; |
67 | } | 69 | } |
@@ -80,13 +82,14 @@ | @@ -80,13 +82,14 @@ | ||
80 | 82 | ||
81 | .action-organizations-index .main-block form#manage-profiles input.button.submit{ | 83 | .action-organizations-index .main-block form#manage-profiles input.button.submit{ |
82 | height: 32px; | 84 | height: 32px; |
83 | - margin-top: 8px; | 85 | + float: left; |
86 | + margin-left: 10px; | ||
84 | padding: 5px 15px; | 87 | padding: 5px 15px; |
85 | background: #3E67B1 none; | 88 | background: #3E67B1 none; |
86 | color: #FFF; | 89 | color: #FFF; |
87 | border-radius: 4px; | 90 | border-radius: 4px; |
88 | border: 1px solid #3E67B1; | 91 | border: 1px solid #3E67B1; |
89 | - line-height: 22px; | 92 | + line-height: 14px; |
90 | font-size: 14px; | 93 | font-size: 14px; |
91 | text-transform: uppercase; | 94 | text-transform: uppercase; |
92 | } | 95 | } |
@@ -107,6 +110,10 @@ | @@ -107,6 +110,10 @@ | ||
107 | padding: 2px 8px; | 110 | padding: 2px 8px; |
108 | } | 111 | } |
109 | 112 | ||
113 | +.action-organizations-index .main-block table#organizations-list td{ | ||
114 | + padding: 8px 8px 0; | ||
115 | +} | ||
116 | + | ||
110 | /*** Features Settings ***/ | 117 | /*** Features Settings ***/ |
111 | 118 | ||
112 | .controller-features #content form *{ | 119 | .controller-features #content form *{ |
@@ -135,6 +142,98 @@ | @@ -135,6 +142,98 @@ | ||
135 | font-size: 15px; | 142 | font-size: 15px; |
136 | } | 143 | } |
137 | 144 | ||
145 | +/* Manage Users */ | ||
146 | +.action-users-index .main-block #search-users{ | ||
147 | + background-color: transparent; | ||
148 | +} | ||
149 | + | ||
150 | +.action-users-index .main-block #search-users .search-field{ | ||
151 | + margin-bottom: 20px; | ||
152 | + display: block; | ||
153 | + height: 30px; | ||
154 | +} | ||
155 | + | ||
156 | +.action-users-index .main-block #search-users .search-field .formfield { | ||
157 | + width: 70%; | ||
158 | + margin-right: 0.5em; | ||
159 | + float: left; | ||
160 | +} | ||
161 | + | ||
162 | +.action-users-index .main-block #search-users .search-field .formfield input { | ||
163 | + margin-top: 0px; | ||
164 | + margin-right: 0.5em; | ||
165 | + padding: 6px; | ||
166 | + min-width: 97%; | ||
167 | + height: 19px; | ||
168 | + max-height: 19px; | ||
169 | + background: none; | ||
170 | + border: 1px solid #ccc; | ||
171 | + border-radius: 4px; | ||
172 | +} | ||
173 | + | ||
174 | +.action-users-index .main-block #search-users input.button.submit{ | ||
175 | + height: 32px; | ||
176 | + float: left; | ||
177 | + margin-left: 10px; | ||
178 | + padding: 5px 15px; | ||
179 | + background: #3E67B1 none; | ||
180 | + color: #FFF; | ||
181 | + border-radius: 4px; | ||
182 | + border: 1px solid #3E67B1; | ||
183 | + line-height: 14px; | ||
184 | + font-size: 14px; | ||
185 | + text-transform: uppercase; | ||
186 | +} | ||
187 | + | ||
188 | +.action-users-index .main-block #search-users input.button.submit:hover{ | ||
189 | + background: #5E82C6; | ||
190 | +} | ||
191 | + | ||
192 | +.action-users-index .main-block #users-list th{ | ||
193 | + text-align: left; | ||
194 | + vertical-align: middle; | ||
195 | + padding: 2px 8px; | ||
196 | +} | ||
197 | + | ||
198 | +.action-users-index .main-block #users-list td{ | ||
199 | + padding: 8px 8px 0; | ||
200 | +} | ||
201 | + | ||
202 | +/* Manage Roles */ | ||
203 | +.action-role-index .main-block th{ | ||
204 | + text-align: left; | ||
205 | + vertical-align: middle; | ||
206 | + padding: 2px 8px; | ||
207 | +} | ||
208 | + | ||
209 | +.action-role-index .main-block td{ | ||
210 | + padding: 8px 8px 0; | ||
211 | +} | ||
212 | + | ||
213 | +.action-role-edit #content form input.button.with-text{ | ||
214 | + height: 30px; | ||
215 | + padding: 5px 15px; | ||
216 | + background: #FFF none; | ||
217 | + color: #3E67B1; | ||
218 | + border-radius: 4px; | ||
219 | + border: 1px solid #3E67B1; | ||
220 | + font-size: 14px; | ||
221 | + line-height: 14px; | ||
222 | +} | ||
223 | + | ||
224 | +/* Manage template */ | ||
225 | + | ||
226 | +.action-templates-index #content .template-kind th{ | ||
227 | + text-align: left; | ||
228 | + vertical-align: middle; | ||
229 | + padding: 2px 8px; | ||
230 | +} | ||
231 | + | ||
232 | +.action-templates-index #content .template-kind td{ | ||
233 | + padding: 8px 8px 0; | ||
234 | +} | ||
235 | + | ||
236 | + | ||
138 | /*** Community Admin pages ***/ | 237 | /*** Community Admin pages ***/ |
139 | /* Homepage */ | 238 | /* Homepage */ |
140 | .action-profile_editor-index #profile-editor-index h1.block-title{ | 239 | .action-profile_editor-index #profile-editor-index h1.block-title{ |