ucla-oarc-mobile / mwf

UCLA Mobile Web Framework
http://mwf.ucla.edu
Other
86 stars 25 forks source link

Left-Alignment Bug #156

Closed ebollens closed 12 years ago

ebollens commented 12 years ago

This definition in root/assets/css/default/basic.src.css is incorrect:

 .menu.left > ul > li,
 .menu.detailed > ol > li {
     text-align: left;
 }

It should be:

 .menu.left > ul > li,
 .menu.left > ol > li,
 .menu.detailed > ul > li,
 .menu.detailed > ol > li {
     text-align: left;
 }