1.pagenav {
2    margin: 1rem 0;
3    text-align: center;
4}
5
6.docInfo {
7    margin-top: 1rem;
8    padding-top: .5rem;
9    font-size: 14px;
10    color: @ini_text_neu;
11    text-align: right;
12    border-top: 1px dashed @ini_border;
13}
14
15// 草稿已保存提醒
16.draft__status {
17    float: right;
18    margin-bottom: 5px;
19    padding: 4px 8px;
20    color: #4CAF50;
21    background-color: #acf2bd;
22    border-radius: 6px;
23}
24
25// 弹出层
26.picker {
27    padding: 4px;
28    max-width: 400px;
29    border: 1px solid @ini_border;
30    border-radius: 6px;
31    background-color: @ini_background;
32
33    .pickerbutton {
34        padding: 8px 10px;
35        border: 0;
36        background-color: @ini_background;
37
38        &:hover {
39            background-color: @ini_background_alt;
40        }
41    }
42}
43
44// 注册、登录、更新个人信息表单
45.centeralign .no{
46    fieldset {
47        margin-bottom: 1rem;
48    }
49
50    .block {
51        margin-bottom: .5rem;
52
53        span {
54            display: inline-block;
55            padding-right: .5rem;
56            width: 160px;
57            text-align: right;
58        }
59
60        .edit {
61            width: 200px;
62        }
63    }
64}
65
66#dw__profiledelete button {
67
68}
69
70// 网站地图
71.index__tree {
72    overflow: hidden;
73
74    .idx {
75        li {
76            color: @ini_text_alt;
77        }
78    }
79}
80
81// qsearch__out
82.JSpopup, #qsearch__out {
83    // padding: .5rem;
84    color: @ini_text;
85    background-color: @ini_background;
86    background-clip: padding-box;
87    border-radius: 0.25rem;
88    -webkit-box-shadow: 0 6.4px 14.4px 0 rgba(0, 0, 0, .132), 0 1.2px 3.6px 0 rgba(0, 0, 0, .108);
89    box-shadow: 0 6.4px 14.4px 0 rgba(0, 0, 0, .132), 0 1.2px 3.6px 0 rgba(0, 0, 0, .108);
90}
91
92#qsearch__out {
93    top: 18px;
94    max-height: 400px;
95    overflow-x: hidden;
96    overflow-y: auto;
97
98    strong {
99        display: inline-block;
100        padding: 8px 15px;
101    }
102
103    ul {
104        padding: 0;
105
106        li {
107            a {
108                padding: 8px 15px;
109                display: block;
110
111                &:hover {
112                    color: inherit;
113                    background: @ini_background_alt;
114                    text-decoration: none;
115                    border-bottom: 0;
116                }
117            }
118        }
119    }
120}