xref: /template/sprintdoc/css/plugins/starred.less (revision d9d97457c39e04d8c09c10facf24ad8712cddae3) !
1/**
2 * This file provides styles for starred plugin
3 */
4
5.page-attributes {
6    li.plugin_starred {
7        .starred {
8            display: block;
9            padding-top: .05rem;
10
11            svg {
12                width: 1.6em;
13                height: 1.6em;
14                font-size: 0.82rem;
15                fill: @ini_nav_menu_hover_color;
16            }
17        }
18
19        a:hover,
20        a:focus,
21        a:active {
22            .starred svg {
23                fill: @ini_nav_menu_hover_bg;
24            }
25        }
26    }
27}
28
29nav.nav-starred {
30    margin-top: @nav-margin;
31
32    ul {
33        list-style: none;
34
35        &#sidebar-menu-starred {
36            margin-left: 0;
37        }
38
39        li {
40            margin-left: 0;
41
42            svg {
43                vertical-align: text-top;
44                fill: @ini_nav_menu_color;
45            }
46        }
47    }
48}
49