xref: /template/sprintdoc/css/plugins/starred.less (revision 86e59cb304c137acc395c9a02b1f451ca255d43b)
1/**
2 * This file provides styles for starred plugin
3 */
4
5.page-attributes {
6    li.plugin_starred {
7        .starred svg {
8            margin-top: .1em;
9            width: 1.6em;
10            height: 1.6em;
11            font-size: 0.82rem;
12            fill: @ini_nav_menu_color;
13        }
14
15        .starred.on svg {
16            fill: @ini_link;
17        }
18
19        a:hover,
20        a:active {
21            .starred svg {
22                fill: @ini_nav_menu_hover_bg;
23            }
24        }
25
26    }
27}
28
29nav.nav-starred {
30    ul {
31        list-style: none;
32        li {
33            margin-left: 0;
34            svg {
35                vertical-align: middle;
36            }
37        }
38    }
39}
40