tingobol / yii-rights

Automatically exported from code.google.com/p/yii-rights
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

Menu css needs inline-block on anchor tag nested in li #58

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Right now you have padding on the <a> without using display:inline-block;
That makes it break some layouts in some browsers.

Need to add:
#rights #menu ul.actions a {
    display:inline-block;
}

to default.css

Original issue reported on code.google.com by pha...@gmail.com on 24 Jul 2011 at 7:42