-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathstyles.css
executable file
·167 lines (132 loc) · 4.22 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/**********************************/
/* Tab styles for legacy YUI tabs */
/**********************************/
/* Tab styles adopted from filepicker style */
/* Tab title background */
.yui3-skin-sam .yui3-tabview-content .yui3-tab .yui3-tab-label,
.yui3-skin-sam .yui3-tabview-content .yui3-tab-selected .yui3-tab-label {
background-image: none;
border: 1px solid #a3a3a3;
border-bottom: 0;
}
.yui3-skin-sam .yui3-tabview-content .yui3-tab .yui3-tab-label,
.yui3-skin-sam .yui3-tabview-content .yui3-tab .yui3-tab-label:focus,
.yui3-skin-sam .yui3-tabview-content .yui3-tab .yui3-tab-label:hover {
background: linear-gradient(to bottom, white, #ccc);
}
.yui3-skin-sam .yui3-tabview-content .yui3-tab-selected .yui3-tab-label,
.yui3-skin-sam .yui3-tabview-content .yui3-tab-selected .yui3-tab-label:focus,
.yui3-skin-sam .yui3-tabview-content .yui3-tab-selected .yui3-tab-label:hover {
background: linear-gradient(to bottom, #aaa, #666);
}
/* Tab title rounded corners */
.yui3-skin-sam .yui3-tabview-content .yui3-tab:first-child .yui3-tab-label,
.dir-rtl.yui3-skin-sam .yui3-tabview-content .yui3-tab:last-child .yui3-tab-label {
border-radius: 5px 0 0 0;
}
.dir-rtl.yui3-skin-sam .yui3-tabview-content .yui3-tab:first-child .yui3-tab-label,
.yui3-skin-sam .yui3-tabview-content .yui3-tab:last-child .yui3-tab-label {
border-radius: 0 5px 0 0;
}
/* Tab title positioning */
.yui3-skin-sam .yui3-tabview-content .yui3-tab .yui3-tab-label,
.yui3-skin-sam .yui3-tabview-content .yui3-tab-selected .yui3-tab-label {
padding: 4px 10px;
}
.yui3-skin-sam .yui3-tabview-content .yui3-tab-selected {
margin-bottom: 0;
}
/* Tab title group bottom corner*/
.yui3-skin-sam .yui3-tabview-content .yui3-tabview-list {
border-bottom-width: 0;
}
/* Tab panel */
.yui3-skin-sam .yui3-tabview-content .yui3-tabview-panel {
background-color: #f2f2f2;
border: 1px solid #a3a3a3;
}
/* Prevent Flash of unstyled content */
.jsenabled .yui3-tabview-loading {
display: none;
}
/* Style when JavaScript is disabled */
.filter-tabs-tabgroup.yui3-tabview-loading .filter-tabs-titlegroup {
list-style: none;
margin-left: 0;
}
.filter-tabs-tabgroup.yui3-tabview-loading .filter-tabs-title {
border-right: 1px solid lightgrey;
float: left;
margin-right: 10px;
padding-right: 10px;
}
.dir-rtl .filter-tabs-tabgroup.yui3-tabview-loading .filter-tabs-title {
border-left: 1px solid lightgrey;
border-right: 0;
float: right;
margin-left: 10px;
margin-right: 0;
padding-left: 10px;
padding-right: 0;
}
.filter-tabs-tabgroup.yui3-tabview-loading .filter-tabs-title:last-child {
border-right: none;
margin-right: 0;
padding-right: 0;
}
.dir-rtl .filter-tabs-tabgroup.yui3-tabview-loading .filter-tabs-title:last-child {
border-left: none;
margin-left: 0;
padding-left: 0;
}
.filter-tabs-tabgroup.yui3-tabview-loading .filter-tabs-textgroup {
clear: both;
}
.filter-tabs-tabgroup.yui3-tabview-loading .filter-tabs-text:first-child {
border-top: 1px solid lightgrey;
}
.filter-tabs-tabgroup.yui3-tabview-loading .filter-tabs-text {
border-bottom: 1px dashed lightgrey;
padding: 5px 0;
}
/*********************************/
/* Tab styles for Bootstrap tabs */
/*********************************/
.filter-tabs-bootstrap .tab-content {
padding-right: 12px;
padding-left: 12px;
padding-bottom: 12px;
}
.filter-tabs-bootstrap .nav-tabs > li {
list-style: none;
}
.filter-tabs-bootstrap.boots-tabs .nav-tabs {
margin-bottom: 20px;
}
@media (max-width: 575px) {
.filter-tabs-bootstrap.boots-tabs .nav-tabs {
flex-direction: column;
}
}
/********************************/
/* Printable tabs for Bootstrap */
/********************************/
.filter-tabs-bootstrap.boots-tabs .tab-content .nav-tabs {
margin-left: -12px;
display: none;
}
@media print {
.filter-tabs-bootstrap.boots-tabs .tab-content .nav-tabs {
display: flex;
}
.filter-tabs-bootstrap.boots-tabs .tab-content .nav-link {
border-left-color: transparent;
}
.filter-tabs-bootstrap.boots-tabs .nav-tabs {
display: none;
}
.filter-tabs-bootstrap.boots-tabs .tab-content .tab-pane {
display: block;
opacity: 1;
}
}