Commit eb53ac4204d3bc4af25528c5d3a3c0985b45a010
1 parent
6961604a
Exists in
master
and in
54 other branches
Fix categories cloud alignments
Showing
1 changed file
with
19 additions
and
19 deletions
Show diff stats
css/software-pages.css
... | ... | @@ -175,11 +175,12 @@ |
175 | 175 | |
176 | 176 | /*** Categories and Tags block ***/ |
177 | 177 | |
178 | -#content .box-1 .categories-and-tags-block { | |
178 | +#content .box-1 .categories-and-tags-block{ | |
179 | 179 | border-top: 4px solid #2C4B6B; |
180 | 180 | } |
181 | 181 | |
182 | -#content .box-1 .categories-and-tags-block .block-title { | |
182 | +#content .box-1 .categories-and-tags-block .block-title{ | |
183 | + display: inline-flex; | |
183 | 184 | margin: 13px 10px 10px 0; |
184 | 185 | padding: 3px 0px; |
185 | 186 | background: none; |
... | ... | @@ -187,19 +188,18 @@ |
187 | 188 | font-family: Arial; |
188 | 189 | font-size: 12px; |
189 | 190 | font-weight: 300; |
190 | - float: left; | |
191 | 191 | } |
192 | 192 | |
193 | -#content .box-1 .categories-and-tags-block .category_cloud { | |
193 | +#content .box-1 .categories-and-tags-block .category_cloud{ | |
194 | + display: inline-flex; | |
194 | 195 | margin: 13px 0 10px 0; |
195 | - float: left; | |
196 | 196 | max-width: 87%; |
197 | 197 | } |
198 | 198 | |
199 | -#content .box-1 .categories-and-tags-block .category_cloud a { | |
199 | +#content .box-1 .categories-and-tags-block .category_cloud a{ | |
200 | + display: inline-block; | |
200 | 201 | padding: 3px 10px; |
201 | 202 | margin: 5px; |
202 | - float: left; | |
203 | 203 | color: #3E67B1; |
204 | 204 | background-color: #ECEDF1; |
205 | 205 | border: 1px solid #D3D6DE; |
... | ... | @@ -207,13 +207,13 @@ |
207 | 207 | font-size: 12px; |
208 | 208 | } |
209 | 209 | |
210 | -#content .box-1 .categories-and-tags-block .category_cloud a:hover { | |
210 | +#content .box-1 .categories-and-tags-block .category_cloud a:hover{ | |
211 | 211 | border-color: #3a70d1; |
212 | 212 | background: #3a70d1; |
213 | 213 | color: white; |
214 | 214 | } |
215 | 215 | |
216 | -#content .box-1 .categories-and-tags-block .category_cloud a:link { | |
216 | +#content .box-1 .categories-and-tags-block .category_cloud a:link{ | |
217 | 217 | text-decoration: none; |
218 | 218 | } |
219 | 219 | |
... | ... | @@ -224,21 +224,21 @@ |
224 | 224 | /*** WARNING - WHITOUT BOX-4 ***/ |
225 | 225 | |
226 | 226 | /* Link-list block */ |
227 | -.template-default #content .box-3 .block-title { | |
227 | +.template-default #content .box-3 .block-title{ | |
228 | 228 | border-top: 4px solid #4562b1; |
229 | 229 | line-height: 15px; |
230 | 230 | background: #eee; |
231 | 231 | color: #4562b1; |
232 | 232 | } |
233 | 233 | |
234 | -.template-default #content .box-3 .link-list-block li { | |
234 | +.template-default #content .box-3 .link-list-block li{ | |
235 | 235 | margin: 0px; |
236 | 236 | padding: 0px; |
237 | 237 | border-bottom: 1px solid #ddd; |
238 | 238 | border-top: none; |
239 | 239 | } |
240 | 240 | |
241 | -.template-default #content .box-3 .link-list-block li a { | |
241 | +.template-default #content .box-3 .link-list-block li a{ | |
242 | 242 | border-right: none; |
243 | 243 | border-top: 0px solid #64946E; |
244 | 244 | border-radius: 0px 0px 0px 0px; |
... | ... | @@ -252,21 +252,21 @@ |
252 | 252 | font-size: 14px; |
253 | 253 | } |
254 | 254 | |
255 | -.template-default #content .box-3 .link-list-block h3.empty + ul { | |
255 | +.template-default #content .box-3 .link-list-block h3.empty + ul{ | |
256 | 256 | border-top: 1px solid #ddd; |
257 | 257 | } |
258 | 258 | |
259 | 259 | .template-default #content .box-3 .link-list-block li a.link-this-page, |
260 | -.template-default #content .box-3 .link-list-block li a.link-this-page:hover { | |
260 | +.template-default #content .box-3 .link-list-block li a.link-this-page:hover{ | |
261 | 261 | border-right: none; |
262 | 262 | } |
263 | 263 | |
264 | -.template-default #content .box-3 .link-list-block li a:hover { | |
264 | +.template-default #content .box-3 .link-list-block li a:hover{ | |
265 | 265 | background-color: #FFFFFF; |
266 | 266 | color: #000; |
267 | 267 | } |
268 | 268 | |
269 | -.template-default #content .box-3 .link-list-block li a.link-this-page { | |
269 | +.template-default #content .box-3 .link-list-block li a.link-this-page{ | |
270 | 270 | margin-left: 0px; |
271 | 271 | width: auto; |
272 | 272 | background-color: #ffffff; |
... | ... | @@ -276,7 +276,7 @@ |
276 | 276 | /* Repository block */ |
277 | 277 | .template-default .box-3 #bt_repositorio, |
278 | 278 | .template-default .box-3 #bt_repositorio:active, |
279 | -.template-default .box-3 #bt_repositorio:visited { | |
279 | +.template-default .box-3 #bt_repositorio:visited{ | |
280 | 280 | border-radius: 4px; |
281 | 281 | padding: 12px 10px; |
282 | 282 | background: #EAEBEE; |
... | ... | @@ -286,7 +286,7 @@ |
286 | 286 | position: relative; |
287 | 287 | } |
288 | 288 | |
289 | -.template-default .box-3 #bt_repositorio::after { | |
289 | +.template-default .box-3 #bt_repositorio::after{ | |
290 | 290 | margin-top: -2px; |
291 | 291 | padding: 4px 0px 4px 2px; |
292 | 292 | border-radius: 4px; |
... | ... | @@ -301,7 +301,7 @@ |
301 | 301 | content: url('../images/right-arrow.png'); |
302 | 302 | } |
303 | 303 | |
304 | -.template-default .box-3 #content #bt_repositorio:hover { | |
304 | +.template-default .box-3 #content #bt_repositorio:hover{ | |
305 | 305 | color: #FFF; |
306 | 306 | background: #2C66CE; |
307 | 307 | text-decoration: none; | ... | ... |