PluginProbe
Parse.ly / 3.18.0
Parse.ly v3.18.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.scss

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

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