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.
24 lines
343 B
24 lines
343 B
2 years ago
|
/**
|
||
|
* @file
|
||
|
* Visual styles for links.
|
||
|
*/
|
||
|
|
||
|
ul.inline,
|
||
|
ul.links.inline {
|
||
|
display: inline;
|
||
|
padding-left: 0; /* LTR */
|
||
|
}
|
||
|
[dir="rtl"] ul.inline,
|
||
|
[dir="rtl"] ul.links.inline {
|
||
|
padding-right: 0;
|
||
|
padding-left: 15px;
|
||
|
}
|
||
|
ul.inline li {
|
||
|
display: inline;
|
||
|
padding: 0 0.5em;
|
||
|
list-style-type: none;
|
||
|
}
|
||
|
ul.links a.is-active {
|
||
|
color: #000;
|
||
|
}
|