PluginProbe
Parse.ly / 3.16.1
Parse.ly v3.16.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.16.1, at src/css/admin-settings.scss

96 lines 1.6 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 fieldset.user-role-permissions {
8
9 label {
10 margin-right: to_rem(16px) !important;
11 }
12 }
13
14 .disabled-before-posting,
15 fieldset:disabled,
16 tr:has(fieldset:disabled) {
17
18 label:not(.prevent-disable),
19 p,
20 th {
21 color: var(--gray-500);
22 cursor: default;
23 }
24 }
25
26 #track-post-types {
27 max-width: 550px;
28 width: 100%;
29
30 th,
31 td {
32 display: table-cell;
33 padding: var(--padding-default);
34 text-align: center;
35 vertical-align: middle;
36 }
37
38 /* Set padding to 0 so labels can take all the space */
39 td {
40 padding: 0;
41 }
42
43 /* Make radio box clickable in whole cell */
44 td label {
45 display: inline-block;
46 margin: 0 !important;
47 padding-top: var(--padding-default);
48 padding-bottom: var(--padding-default);
49 width: 100%;
50 }
51
52 thead th:nth-child(3) {
53 word-break: break-word;
54 }
55 }
56
57 /* Can be a link or span. */
58 .managed-option-badge {
59 border-radius: to_rem(4px);
60 border: to_rem(1px) solid var(--green-500);
61 color: var(--green-500) !important;
62 display: inline-block;
63 font-size: to_rem(10px);
64 padding: to_rem(2px) to_rem(4px);
65 text-decoration: none;
66 }
67
68 a.managed-option-badge {
69 cursor: pointer !important;
70
71 &:hover {
72 background-color: var(--green-500);
73 color: #fff !important;
74 }
75 }
76
77 @media only screen and (max-width: 380px) {
78
79 #track-post-types {
80
81 th,
82 td {
83 padding-left: 10px;
84 padding-right: 10px;
85 }
86
87 th:first-child {
88 max-width: 120px;
89 overflow: hidden;
90 text-overflow: ellipsis;
91 white-space: nowrap;
92 }
93 }
94 }
95 }
96