PluginProbe
TablePress – Tables in WordPress made easy / 1.12
TablePress – Tables in WordPress made easy v1.12
3.3.4 3.3.3 3.3.2 3.3.1 trunk 1.12 1.14 1.9.2 2.0.4 2.1.7 2.1.8 2.2 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.3 2.3.1 2.3.2 2.4 2.4.1 2.4.2 2.4.3 2.4.4 All 44 releases
tablepress / css / default.css

default.css in TablePress – Tables in WordPress made easy 1.12, at css/default.css

272 lines 6.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * TablePress Default CSS
3 *
4 * Attention: Do not modify this file directly, but use the "Custom CSS" textarea
5 * on the "Plugin Options" screen of TablePress.
6 *
7 * @package TablePress
8 * @subpackage Frontend CSS
9 * @author Tobias Bäthge, Allan Jardine
10 * @since 1.0.0
11 */
12
13 @font-face {
14 font-family: 'TablePress';
15 src: url(data:application/font-woff2;charset=utf-8;base64,d09GMgABAAAAAAPUAA0AAAAACZAAAAN+AAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP0ZGVE0cGh4GYACCUhEICoQIgnILFgABNgIkAygEIAWGcgeBARv6B8iuBzK53oAhKg2KWDsrezjalSefocfD9/uZ575PSbYEqJHAIdo6tMDGdCprFIHd+F9r+rZE46O2iHBJfoAuxwW0yfgKS8KGVFE4dHX1gPmgVhzwhcJbReQ9RWXcraeutbmNHE7T7B1sex8stfMfnkvv0XsgUZrYO1hirXme9TnUkBvQ22RGX50VAr48H54Cn9b8GD73edAAhjboBpIQ6kKOhCz7GA8V5HfzyeA6h0mnrFTJnPjxC7KCrl9caqIUg0EAYACGDBn6YGCxeIE+EkwANTWJX/brZpNfyE5o/7r9uPZjS4tESbCTExLCjxOEbxGi2dQeNEAXUMMlvADkqSV0IHXtkQXNOnI2ctJpRIPt8+HjNivx3rlQYA8FqGwdCxF2aZrdJluMnaqFvy+yngVKbBcn0fSOd1xTpnW4HTkptV8Gi2kvCeUHC0BD+D0VKMIqXniZPJyPya9D7gT6DvUpwJER6avgKDsOfW9jU+YGc/ng6MhA3VSar3NdtvrD9WHZurKVKYOi0RwlY9500YSuWDE084F+jMinu4sTudD5yBTTozA9Horpmb+M3TwIBHempnzdpu1/raWypX0JND/ki4p71CQQlFqnAvkijABrVFIq5BdNJbFncoBOF03/h3IINPQRBxJCYDoAOnkRIDR0w0BSmYiBzDinAuQ6eROg0DEGY6DUiEUYqKyILwFq2qS9GKhrpFsykdeFLmDjknYG4jKbNeNyQ1zhCoP840pdYiqu8jTW4mp6pMXH1HVJp8wRmHmQKTKiUOBVSMHrlKuBlYidxkMgw6/bMoG5RD6qfs8yO8LVqFCFa8ELrcVLEqTaS7UG5aqVq1GlWi28k3rRgCjbiU+qqOItvDEqXjkvwF/dUF595jB8LSqqgwIWAWsRmcJJ5GsHbYUqVbirBi5IpRMxLso/i2oSA6ZYDoMFCiknI7ZkGacSVYUjlLSXyG8n08nOQcXTeyzU5ozbiGRQZRt0vu/TMoEV8RLI3DiBSiVzMtNKAPgErlwLoqiAY2fJ9UbRMU/0rz38UP5FQtH3i8V3KYSHYJdSYRnwW8XazUAUop3gQY19hkEH98OA2QQ6wg0S+FjtwOwdOvF5J2VXBBLQmo2EAxsIKVJkkUcRZVRRa7NrP+my6Ns8cKszHYJf+fPPLPTq5vFcmYKZNL+fn1CZDgoYecKZHwA=) format('woff2'),
16 url(tablepress.woff) format('woff');
17 font-weight: normal;
18 font-style: normal;
19 font-display: block;
20 }
21
22 /* Table description */
23 .tablepress-table-description {
24 clear: both;
25 display: block;
26 }
27
28 .tablepress {
29 border-collapse: collapse;
30 border-spacing: 0;
31 width: 100%;
32 margin-bottom: 1em;
33 border: none;
34 }
35
36 .tablepress th,
37 .tablepress td {
38 padding: 8px;
39 border: none;
40 background: none;
41 text-align: left;
42 float: none !important;
43 }
44 .tablepress tbody td {
45 vertical-align: top;
46 }
47
48 /* Horizontal borders */
49 .tablepress tbody td,
50 .tablepress tfoot th {
51 border-top: 1px solid #dddddd;
52 }
53 .tablepress tbody tr:first-child td {
54 border-top: 0;
55 }
56 .tablepress thead th {
57 border-bottom: 1px solid #dddddd;
58 }
59
60 /* Row background colors */
61 .tablepress thead th,
62 .tablepress tfoot th {
63 background-color: #d9edf7;
64 font-weight: bold;
65 vertical-align: middle;
66 }
67 .tablepress .odd td {
68 background-color: #f9f9f9;
69 }
70 .tablepress .even td {
71 background-color: #ffffff;
72 }
73 .tablepress .row-hover tr:hover td {
74 background-color: #f3f3f3;
75 }
76
77 /* Reset image layout in tables */
78 .tablepress img {
79 margin: 0;
80 padding: 0;
81 border: none;
82 max-width: none;
83 }
84
85 /* Table wrapper */
86 .dataTables_wrapper {
87 clear: both;
88 margin-bottom: 1em;
89 }
90 .dataTables_wrapper .tablepress {
91 clear: both;
92 margin: 0 !important;
93 }
94
95 /* Length Change menu */
96 .dataTables_length {
97 float: left;
98 white-space: nowrap;
99 }
100
101 /* Filter/Search */
102 .dataTables_filter {
103 float: right;
104 white-space: nowrap;
105 }
106 .dataTables_wrapper .dataTables_filter input {
107 margin-left: 0.5em;
108 }
109
110 /* Table information */
111 .dataTables_info {
112 clear: both;
113 float: left;
114 margin: 4px 0 0;
115 }
116
117 /* Pagination */
118 .dataTables_paginate {
119 float: right;
120 margin: 4px 0 0;
121 }
122 .dataTables_paginate a {
123 color: #111111 !important;
124 display: inline-block;
125 outline: none;
126 position: relative;
127 text-decoration: underline;
128 margin: 0 5px;
129 }
130 .dataTables_paginate a:first-child {
131 margin-left: 0;
132 }
133 .dataTables_paginate a:last-child {
134 margin-right: 0;
135 }
136 .paginate_button:hover {
137 cursor: pointer;
138 text-decoration: none;
139 }
140 .paginate_button.disabled {
141 color: #999999 !important;
142 text-decoration: none;
143 cursor: default;
144 }
145 .paginate_button.current {
146 font-weight: bold;
147 text-decoration: none;
148 cursor: default;
149 }
150 /* Two button pagination - previous/next */
151 .dataTables_paginate.paging_simple {
152 padding: 0 15px;
153 }
154 .paging_simple .paginate_button.previous:before,
155 .paging_simple .paginate_button.next:after {
156 text-align: left;
157 font-family: TablePress;
158 font-size: 14px;
159 font-weight: bold;
160 -webkit-font-smoothing: antialiased;
161 content: "\f053";
162 text-shadow: 0.1em 0.1em #666666;
163 position: absolute;
164 top: 0;
165 right: auto;
166 bottom: 0;
167 left: -14px;
168 margin: auto;
169 height: 14px;
170 width: 14px;
171 line-height: 1;
172 }
173 .paging_simple .paginate_button.next:after {
174 text-align: right;
175 content: "\f054";
176 left: auto;
177 }
178 .paginate_button:before,
179 .paginate_button:after {
180 color: #d9edf7;
181 }
182 .paginate_button:hover:before,
183 .paginate_button:hover:after {
184 color: #049cdb;
185 }
186 .paginate_button.disabled:before,
187 .paginate_button.disabled:after {
188 color: #f9f9f9;
189 }
190
191 /* Processing indicator */
192 .dataTables_processing {
193 display: none; /* always hidden, we don't use it */
194 }
195
196 /* Scrolling */
197 .dataTables_scroll {
198 clear: both;
199 }
200 .dataTables_scrollBody {
201 -webkit-overflow-scrolling: touch;
202 }
203 .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody th > div.dataTables_sizing,
204 .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody td > div.dataTables_sizing {
205 height: 0;
206 overflow: hidden;
207 margin: 0 !important;
208 padding: 0 !important;
209 }
210
211 /* Sorting */
212 .tablepress .sorting,
213 .tablepress .sorting_asc,
214 .tablepress .sorting_desc {
215 position: relative;
216 padding-right: 20px; /* more right padding for sort arrows */
217 cursor: pointer;
218 outline: none;
219 }
220 .tablepress .sorting:after,
221 .tablepress .sorting_asc:after,
222 .tablepress .sorting_desc:after {
223 font-family: TablePress;
224 font-weight: normal;
225 font-size: 14px;
226 -webkit-font-smoothing: antialiased;
227 position: absolute;
228 top: 0;
229 bottom: 0;
230 left: auto;
231 right: 6px;
232 margin: auto;
233 height: 14px;
234 line-height: 1;
235 }
236 .tablepress .sorting:after {
237 content: "\f0dc";
238 }
239 .tablepress .sorting_asc:after {
240 content: "\f0d8";
241 padding: 0 0 2px;
242 }
243 .tablepress .sorting_desc:after {
244 content: "\f0d7";
245 }
246 .tablepress .sorting:hover,
247 .tablepress .sorting_asc,
248 .tablepress .sorting_desc {
249 background-color: #049cdb;
250 }
251 /* Hide the sorting arrows in the extra table that is added for scrolling */
252 .dataTables_scrollBody .tablepress thead th:after {
253 content: "";
254 }
255
256 /* Self clearing */
257 .dataTables_wrapper:after {
258 content: "";
259 display: block;
260 clear: both;
261 visibility: hidden;
262 line-height: 0;
263 height: 0;
264 }
265
266 .dataTables_wrapper label input,
267 .dataTables_wrapper label select {
268 display: inline;
269 margin: 2px;
270 width: auto;
271 }
272