PluginProbe
Parse.ly / 3.14.1
Parse.ly v3.14.1
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.scss

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

86 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 @import "../content-helper/common/css/variables";
2 @import "../content-helper/common/css/functions";
3
4 .settings_page_parsely {
5 --padding-default: 15px;
6
7 #track-post-types {
8 max-width: 550px;
9 width: 100%;
10
11 th,
12 td {
13 display: table-cell;
14 padding: var(--padding-default);
15 text-align: center;
16 vertical-align: middle;
17 }
18
19 /* Set padding to 0 so labels can take all the space */
20 td {
21 padding: 0;
22 }
23
24 /* Make radio box clickable in whole cell */
25 td label {
26 display: inline-block;
27 margin: 0 !important;
28 padding-top: var(--padding-default);
29 padding-bottom: var(--padding-default);
30 width: 100%;
31 }
32
33 thead th:nth-child(3) {
34 word-break: break-word;
35 }
36 }
37
38 fieldset:disabled,
39 tr:has(fieldset:disabled) {
40
41 * {
42 color: var(--gray-500);
43 cursor: default;
44 }
45 }
46
47 /* Can be a link or span. */
48 .managed-option-badge {
49 border-radius: to_rem(4px);
50 border: to_rem(1px) solid var(--green-500);
51 color: var(--green-500) !important;
52 display: inline-block;
53 font-size: to_rem(10px);
54 padding: to_rem(2px) to_rem(4px);
55 text-decoration: none;
56 }
57
58 a.managed-option-badge {
59 cursor: pointer !important;
60
61 &:hover {
62 background-color: var(--green-500);
63 color: #fff !important;
64 }
65 }
66
67 @media only screen and (max-width: 380px) {
68
69 #track-post-types {
70
71 th,
72 td {
73 padding-left: 10px;
74 padding-right: 10px;
75 }
76
77 th:first-child {
78 max-width: 120px;
79 overflow: hidden;
80 text-overflow: ellipsis;
81 white-space: nowrap;
82 }
83 }
84 }
85 }
86