1.dokuwiki > header.notos .toprow {
2    .tools {
3        z-index: 1;
4        position: relative;
5        display: flex;
6
7        > div {
8            margin-left: 1rem;
9
10            svg {
11                fill: @ini_header_text;
12                width: 1.2rem;
13                height: 1.2rem;
14                margin-right: 0.25rem;
15            }
16        }
17
18        div.tool-button {
19            display: inline-block;
20
21            label {
22                display: flex;
23                align-items: center;
24            }
25
26            div {
27                position: absolute;
28                right: 0;
29                top: 1.5em;
30                width: 20rem;
31                z-index: 10;
32                background-color: @ini_header_text;
33                border: 1px solid @ini_border;
34
35                ul {
36                    list-style: none;
37                    padding: 0;
38                    margin: 0 0 1rem 0;
39
40                    li {
41                        text-align: center;
42                        line-height: 2;
43
44                        &.top {
45                            display: none;
46                        }
47                    }
48                }
49            }
50        }
51
52        div.tool-login {
53            a {
54                color: @ini_header_text;
55                display: flex;
56                align-items: center;
57                flex-direction: row-reverse;
58            }
59        }
60    }
61}
62