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

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