Made li list style dots more specific

We set all li elements to use list-style disc, but it was affecting our
navbar.  Changed it to use a specific class in the crop hierarchy (where
we actually cared about it).
This commit is contained in:
Skud
2013-09-16 10:49:02 +10:00
parent 950a333ac7
commit df3254135f
2 changed files with 2 additions and 2 deletions

View File

@@ -165,6 +165,6 @@ p.stats {
}
}
li {
li.crop-hierarchy {
list-style-type: disc;
}

View File

@@ -1,6 +1,6 @@
%ul
- display_crops.each do |c|
%li
%li.crop-hierarchy
= link_to c, c
- if c.varieties.present?
- c.varieties.each do |v|