Commit 0e741a07234986a59e1c6f13d9c8bf2c2ef89410

Authored by Daniela Feitosa
2 parents b26d69cf dd83149d

Merge branch 'fix_list_style_on_folder_elements' into 'master'

Fix list style on folder elements

This rule will prevent article general rule to subscribe folder list style rule and will maintain this style on common article page.

See merge request !172
src/noosfero-spb/noosfero-spb-theme/css/article-page.css
@@ -256,25 +256,25 @@ @@ -256,25 +256,25 @@
256 /*** end of help page ***/ 256 /*** end of help page ***/
257 257
258 /*** article lists ***/ 258 /*** article lists ***/
259 -#content #article .article-body ul { 259 +.article-body ul {
260 list-style-type: disc; 260 list-style-type: disc;
261 list-style-position: inside; 261 list-style-position: inside;
262 } 262 }
263 263
264 -#content #article .article-body ol { 264 +.article-body ol {
265 list-style-type: decimal; 265 list-style-type: decimal;
266 list-style-position: inside; 266 list-style-position: inside;
267 } 267 }
268 268
269 -#content #article .article-body ul ul,  
270 -#content #article .article-body ol ul { 269 +.article-body ul ul,
  270 +.article-body ol ul {
271 list-style-type: circle; 271 list-style-type: circle;
272 list-style-position: inside; 272 list-style-position: inside;
273 margin-left: 15px; 273 margin-left: 15px;
274 } 274 }
275 275
276 -#content #article .article-body ol ol,  
277 -#content #article .article-body ul ol { 276 +.article-body ol ol,
  277 +.article-body ul ol {
278 list-style-type: lower-latin; 278 list-style-type: lower-latin;
279 list-style-position: inside; 279 list-style-position: inside;
280 margin-left: 15px; 280 margin-left: 15px;