-
Notifications
You must be signed in to change notification settings - Fork 32
/
templates_tabs.css
44 lines (44 loc) · 1.11 KB
/
templates_tabs.css
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
.basicTabs-container .tabs-list,
.dynamicTabs-container .tabs-list {
text-align: left;
width: 100%;
}
.basicTabs-container .tabs-list .tab-item,
.dynamicTabs-container .tabs-list .tab-item {
font-weight: 600;
font-size: 13px;
display: inline-block;
padding: 13px 15px;
margin: 0;
list-style: none;
cursor: pointer;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.basicTabs-container .tabs-list .tab-item.active,
.dynamicTabs-container .tabs-list .tab-item.active {
border-radius: top 5px;
border: 1px solid #ddd;
border-bottom: none;
margin-bottom: -1px !important;
padding: 12px 14px 14px 14px !important;
background-color: #fff;
color: #333;
}
.basicTabs-container .tabs-content-container,
.dynamicTabs-container .tabs-content-container {
padding: 15px;
border-top: 1px solid #ddd;
}
.basicTabs-container .tabs-content,
.dynamicTabs-container .tabs-content {
display: none;
}
.basicTabs-container .tabs-content.active,
.dynamicTabs-container .tabs-content.active {
display: block;
}