-
Notifications
You must be signed in to change notification settings - Fork 1
/
Module-9-Snippets.txt
49 lines (40 loc) · 1.03 KB
/
Module-9-Snippets.txt
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
===========
Snippet for styles.css to style the tabs component
===========
.tab-panel {
border: 1px solid #ddd;
padding: 10px;
border-radius: 4px;
}
.nav-tabs > li.open, .member-tabset > .nav-tabs > li:hover {
border-bottom: 4px solid #fbcdcf;
}
.member-tabset > .nav-tabs > li.open > a, .member-tabset > .nav-tabs > li:hover > a {
border: 0;
background: none !important;
color: #333333;
}
.member-tabset > .nav-tabs > li.open > a > i, .member-tabset > .nav-tabs > li:hover > a > i {
color: #a6a6a6;
}
.member-tabset > .nav-tabs > li.open .dropdown-menu, .member-tabset > .nav-tabs > li:hover .dropdown-menu {
margin-top: 0px;
}
.member-tabset > .nav-tabs > li.active {
border-bottom: 4px solid #E95420;
position: relative;
}
.member-tabset > .nav-tabs > li.active > a {
border: 0 !important;
color: #333333;
}
.member-tabset > .nav-tabs > li.active > a > i {
color: #404040;
}
.member-tabset > .tab-content {
margin-top: -3px;
background-color: #fff;
border: 0;
border-top: 1px solid #eee;
padding: 15px 0;
}