-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathstyles.css
115 lines (94 loc) · 1.73 KB
/
styles.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
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
.hyper_main {
border: 0;
border-radius: 0;
}
.header_header {
top: 0;
left: 0;
right: 0;
background: transparent !important;
border-top-left-radius: 0;
border-top-right-radius: 0;
position: relative;
}
.terms_terms {
margin-top: 0;
position: relative;
top: auto;
bottom: auto;
height: calc(100% - 23px);
}
/* Ensure v1 backwards compatibility */
body.closed-tabs .terms_terms {
height: 100%;
}
:global(body.closed-tabs) .terms_terms {
height: 100%;
}
.tabs_nav {
height: 23px;
line-height: 22px;
background: #D4D4D4 !important;
border-bottom: 1px solid #B2B2B2;
}
/* Ensure v1 backwards compatibility */
body.closed-tabs .tabs_nav {
display: none;
}
:global(body.closed-tabs) .tabs_nav {
display: none;
}
.tabs_nav .tabs_list {
border: 0;
margin-left: 0;
}
.tabs_nav .tabs_borderShim {
display: none;
}
.tabs_nav .tab_tab {
border-bottom: 0;
border-left: 0;
}
.tabs_nav .tab_tab:not(.tab_textActive) {
background: #BEBEBE;
transition: all 0.20s ease-out;
}
.tabs_nav .tab_tab:not(.tab_textActive):hover {
background: #B2B2B2;
}
.tabs_nav .tab_tab.tab_first {
margin-left: 0;
}
.tabs_nav .tab_tab .tab_text {
height: 22px;
}
.tabs_nav .tab_tab.tab_active:before {
display: none;
}
.tabs_nav .tab_tab .tab_icon {
left: 5px;
right: auto;
top: 4px;
border-radius: 2px;
}
.tabs_nav .tab_tab .tab_icon svg {
fill: #767676;
height: 8px;
width: 8px;
left: 3px;
top: 3px;
}
.tabs_nav .tab_tab .tab_icon:hover {
background: #A2A2A2;
}
.tabs_nav .tab_tab.tab_active .tab_icon:hover {
background: #C0C0C0;
}
.tabs_nav .tab_tab .tab_textActive {
border: 0 !important;
background: #D4D4D4;
}
.tabs_nav .tabs_list .tab_text,
.tabs_nav .tabs_title {
color: #2E2D2E;
}