xref: /template/writr/css/components/toc.less (revision 4a84672673ff8080b95337c1df8a5f807800d61c)
1/* =Table of Contents Styles
2----------------------------------------------- */
3
4#writr__main {
5    position: relative;
6
7    #dw__toc {
8        position: absolute;
9        top: 20px;
10        right: 0px;
11        width: 300px;
12        border: solid 2px @ini_background_alt;
13        z-index: 2000;
14
15        &:hover {
16            border: solid 2px @ini_theme_color;
17        }
18    }
19
20    &:has(#plugin_bloglinks__links) {
21        #dw__toc {
22            top: 116px;
23        }
24    }
25}
26