PluginProbe
Parse.ly / 3.3.0
Parse.ly v3.3.0
3.24.1 3.24.0 3.23.7 3.23.6 3.23.5 3.23.4 3.23.3 3.16.0 3.16.1 3.16.2 3.16.3 3.16.4 3.17.0 3.18.0 3.18.1 3.19.0 3.19.1 3.19.2 3.19.3 3.2.0 3.2.1 3.20.0 3.20.1 3.20.2 3.20.3 All 105 releases
wp-parsely / src / css / admin-settings.css

admin-settings.css in Parse.ly 3.3.0, at src/css/admin-settings.css

46 lines 823 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 :root {
2 --padding-default: 15px;
3 }
4
5 #track-post-types {
6 max-width: 550px;
7 width: 100%;
8 }
9
10 #track-post-types th,
11 #track-post-types td {
12 display: table-cell;
13 padding: var(--padding-default);
14 text-align: center;
15 vertical-align: middle;
16 }
17
18 #track-post-types td {
19 padding: 0; /* Set padding to 0 so labels can take the space */
20 }
21
22 /* Make radio box clickable in whole cell */
23 #track-post-types td label {
24 display: inline-block;
25 margin: 0 !important;
26 padding-top: var(--padding-default);
27 padding-bottom: var(--padding-default);
28 width: 100%;
29 }
30
31 @media only screen and (max-width: 380px) {
32
33 #track-post-types th,
34 #track-post-types td {
35 padding-left: 10px;
36 padding-right: 10px;
37 }
38
39 #track-post-types th:first-child {
40 max-width: 120px;
41 overflow: hidden;
42 text-overflow: ellipsis;
43 white-space: nowrap;
44 }
45 }
46