You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
678 B
34 lines
678 B
/** |
|
* @file |
|
* Visual styles for menu. |
|
*/ |
|
|
|
ul.menu { |
|
margin-left: 1em; /* LTR */ |
|
padding: 0; |
|
list-style: none outside; |
|
text-align: left; /* LTR */ |
|
} |
|
[dir="rtl"] ul.menu { |
|
margin-right: 1em; |
|
margin-left: 0; |
|
text-align: right; |
|
} |
|
.menu-item--expanded { |
|
list-style-type: circle; |
|
list-style-image: url(../../images/icons/menu-expanded.png); |
|
} |
|
.menu-item--collapsed { |
|
list-style-type: disc; |
|
list-style-image: url(../../images/icons/menu-collapsed.png); /* LTR */ |
|
} |
|
[dir="rtl"] .menu-item--collapsed { |
|
list-style-image: url(../../images/icons/menu-collapsed-rtl.png); |
|
} |
|
.menu-item { |
|
margin: 0; |
|
padding-top: 0.2em; |
|
} |
|
ul.menu a.is-active { |
|
color: #000; |
|
}
|
|
|