-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvt.less
72 lines (54 loc) · 1.26 KB
/
vt.less
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
@block: ~".b-vt";
@{block} {
font: normal 14px sans-serif;
display: table;
margin-bottom: 50px;
&__tabs,
&__contents {
display: table-cell;
vertical-align: top;
}
&__tabs {
border-style: solid;
border-width: 1px 0;
border-color: #dddddd;
background-color: #dddddd;
}
&__tab {
width: 200px;
height: 40px;
padding: 0 10px;
line-height: 40px;
box-sizing: border-box;
-moz-box-sizing: border-box;
overflow: hidden;
text-overflow: ellipsis;
border-style: solid;
border-width: 1px;
border-color: transparent transparent #ffffff;
background-color: #dddddd;
cursor: pointer;
&_selected {
border-color: transparent transparent #ffffff #dddddd;
background-color: #e4ff99;
cursor: default;
}
}
&__contents {
border-style: solid;
border-width: 1px 1px 1px 0;
border-color: #dddddd;
background-color: #e4ff99;
}
&__content {
font-size: 12px;
display: none;
padding: 0 10px;
&_selected {
display: block;
}
}
}
.b-lorem {
display: none;
}