-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.css
More file actions
72 lines (65 loc) · 1.31 KB
/
demo.css
File metadata and controls
72 lines (65 loc) · 1.31 KB
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
#DemoOuter {
position: absolute;
top: 0;
left: 0;
height: 100vh;
width: 100vw;
display: flex;
flex-direction: row;
}
#tabBar {
width: 200px;
overflow-y: auto;
border-right: 1px solid #000;
}
#tabContent {
flex: auto;
}
.tab_template{
margin: 5px;
padding: 5px;
border-radius: 5px;
background-color: #efefef;
display: flex;
outline: none;
}
.tab_template span {
flex: auto;
}
.tab_template .closeBtn {
border: none;
border-radius: 50%;
outline: none;
background-color: transparent;
}
.tab_template .closeBtn:hover {
background-color: tomato;
color: #fff;
}
.tab_template[aria-selected='true'] {
background-color: lightsteelblue;
}
/* Nanotabs styles */
.nanotabs_tabList{
}
.nanotabs_addBtn{
width: 50px;
margin: 5px auto;
display: block;
border-radius: 5px;
border: none;
outline: none;
}
.nanotabs_group {
}
.nanotabs_group .nanotabs_groupbadge::-webkit-details-marker { display:none }
.nanotabs_group .nanotabs_groupbadge {
outline: none;
margin: 5px;
padding: 5px;
border-radius: 5px;
}
.nanotabs_group .nanotabs_groupcontainer {
margin: 5px;
border-left: 5px solid;
}