Spaces:
Sleeping
Sleeping
Upload index.less
Browse files
aworld/cmd/web/webui/src/pages/components/Drawer/index.less
ADDED
@@ -0,0 +1,93 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.workspacebox {
|
2 |
+
width: 100%;
|
3 |
+
padding: 15px 18px;
|
4 |
+
box-sizing: border-box;
|
5 |
+
.btn{
|
6 |
+
color: #555;
|
7 |
+
height: 28px;
|
8 |
+
background-color: #daffd5;
|
9 |
+
border-radius: 10px;
|
10 |
+
position: fixed;
|
11 |
+
top: 14px;
|
12 |
+
right: 380px;
|
13 |
+
&:hover{
|
14 |
+
color: #555 !important;
|
15 |
+
border: 1px solid #daffd5 !important;
|
16 |
+
background-color: #f6ffed !important;
|
17 |
+
}
|
18 |
+
}
|
19 |
+
&.border,
|
20 |
+
.border {
|
21 |
+
border: 1px solid #c1c1c1;
|
22 |
+
border-radius: 10px;
|
23 |
+
}
|
24 |
+
.tabbox {
|
25 |
+
width: 100%;
|
26 |
+
box-sizing: border-box;
|
27 |
+
margin-bottom: 12px;
|
28 |
+
.num {
|
29 |
+
width: 30px;
|
30 |
+
height: 30px;
|
31 |
+
text-align: center;
|
32 |
+
line-height: 30px;
|
33 |
+
border-radius: 50%;
|
34 |
+
margin-right: 10px;
|
35 |
+
background-color: #efefef;
|
36 |
+
}
|
37 |
+
.tab {
|
38 |
+
width: 29%;
|
39 |
+
padding: 5px 10px;
|
40 |
+
cursor: pointer;
|
41 |
+
&.active {
|
42 |
+
.num {
|
43 |
+
background-color: #c4efa6;
|
44 |
+
color: #555;
|
45 |
+
}
|
46 |
+
}
|
47 |
+
|
48 |
+
.name {
|
49 |
+
font-size: 14px;
|
50 |
+
}
|
51 |
+
.desc {
|
52 |
+
font-size: 12px;
|
53 |
+
color: #999;
|
54 |
+
}
|
55 |
+
}
|
56 |
+
}
|
57 |
+
.listwrap {
|
58 |
+
background-color: #fafafa;
|
59 |
+
.title {
|
60 |
+
text-align: center;
|
61 |
+
line-height: 40px;
|
62 |
+
border-bottom: 1px solid #a7a7a7;
|
63 |
+
}
|
64 |
+
.listbox {
|
65 |
+
.list {
|
66 |
+
padding: 10px 14px;
|
67 |
+
.name {
|
68 |
+
font-size: 14px;
|
69 |
+
margin-bottom: 3px;
|
70 |
+
display: flex;
|
71 |
+
align-items: center;
|
72 |
+
&::before {
|
73 |
+
content: '';
|
74 |
+
display: inline-block;
|
75 |
+
width: 12px;
|
76 |
+
height: 12px;
|
77 |
+
margin-right: 5px;
|
78 |
+
border-radius: 50%;
|
79 |
+
border: 1px solid #999;
|
80 |
+
background-color: #d8d8d8;
|
81 |
+
}
|
82 |
+
}
|
83 |
+
.desc{
|
84 |
+
color: #999;
|
85 |
+
font-size: 12px;
|
86 |
+
}
|
87 |
+
&:not(:last-child) {
|
88 |
+
border-bottom: 1px solid #a7a7a7;
|
89 |
+
}
|
90 |
+
}
|
91 |
+
}
|
92 |
+
}
|
93 |
+
}
|