Spaces:
Sleeping
Sleeping
Upload index.less
Browse files
aworld/cmd/web/webui/src/pages/components/BubbleItem/index.less
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.cardwrap{
|
2 |
+
position: relative;
|
3 |
+
|
4 |
+
.card-length {
|
5 |
+
position: absolute;
|
6 |
+
top: -38px;
|
7 |
+
right: 4px;
|
8 |
+
display: flex;
|
9 |
+
align-items: center;
|
10 |
+
font-size: 14px;
|
11 |
+
color: #333;
|
12 |
+
|
13 |
+
.check-icon {
|
14 |
+
color: #1890ff;
|
15 |
+
margin-right: 8px;
|
16 |
+
font-size: 16px;
|
17 |
+
}
|
18 |
+
}
|
19 |
+
}
|
20 |
+
|
21 |
+
.cardbox{
|
22 |
+
.card-item{
|
23 |
+
width: 24.4%;
|
24 |
+
margin-bottom: 16px;
|
25 |
+
|
26 |
+
.ant-card-meta-title {
|
27 |
+
font-size: 16px;
|
28 |
+
}
|
29 |
+
|
30 |
+
.ant-card-meta-description {
|
31 |
+
display: -webkit-box;
|
32 |
+
-webkit-line-clamp: 2;
|
33 |
+
-webkit-box-orient: vertical;
|
34 |
+
overflow: hidden;
|
35 |
+
text-overflow: ellipsis;
|
36 |
+
color: #666;
|
37 |
+
}
|
38 |
+
|
39 |
+
&.view-more {
|
40 |
+
cursor: pointer;
|
41 |
+
text-align: center;
|
42 |
+
padding-top: 20px;
|
43 |
+
.ant-card-meta-title {
|
44 |
+
color: #999;
|
45 |
+
}
|
46 |
+
}
|
47 |
+
}
|
48 |
+
}
|