PluginProbe ʕ •ᴥ•ʔ
Auto Post Cleaner / trunk
Auto Post Cleaner vtrunk
3.12.0 3.13.1 3.2.4 3.2.5 3.3.0 3.3.10 3.3.11 3.3.8 3.4.2 3.5.3 3.6.0 3.7.0 3.7.1 3.7.2 3.7.3 3.7.5 3.7.6 3.8.0 3.9.0 3.9.4 3.9.6 3.9.7 trunk 3.0.0 3.1.0 3.10.1 3.10.2 3.11.4
delete-old-posts-programmatically / styles.css
delete-old-posts-programmatically Last commit date
assets 1 month ago freemius 1 month ago inc 1 month ago languages 3 years ago README.md 1 month ago composer.json 5 years ago delete-old-posts-premium.php 3 years ago delete-old-posts-programmatically.php 3 years ago delete-old-posts.php 1 month ago package-lock.json 1 month ago package.json 1 year ago postcss.config.js 5 years ago readme.txt 1 month ago styles.css 1 month ago tailwind.config.js 2 years ago
styles.css
173 lines
1 @tailwind base;
2 @tailwind components;
3
4 :root {
5 --red: #cc1818;
6 }
7
8 body {
9 @apply bg-gray-100 text-gray-700;
10 }
11
12 img {
13 border-style: initial;
14 }
15
16 img, svg, video, canvas, audio, iframe, embed, object {
17 display: initial;
18 }
19
20 a {
21 text-decoration: underline;
22 }
23
24 .tblrow {
25 @apply p-3
26 }
27
28 .hide {
29 @apply hidden
30 }
31
32 .notice, div.error, div.updated {
33 @apply my-1
34 }
35
36 .dashicons-nametag {
37 @apply text-4xl
38 }
39
40 @screen sm {
41 .tblrow {
42 @apply mx-1
43 }
44 }
45
46 [x-cloak] {
47 @apply hidden !important;
48 }
49
50 .tooltip {
51 @apply invisible absolute;
52 }
53
54 .has-tooltip:hover .tooltip {
55 @apply visible z-50;
56 }
57
58 .absolute {
59 position: absolute;
60 }
61
62 .wp-list-table #id {
63 width: 6%;
64 }
65 .wp-list-table #check {
66 width: 20%;
67 }
68 .children {
69 @apply ml-8;
70 @apply mt-1;
71 }
72
73 /* The switch - the box around the slider */
74 .switch {
75 position: relative;
76 display: inline-block;
77 width: 60px;
78 height: 34px;
79 }
80
81 /* Hide default HTML checkbox */
82 .switch input {
83 opacity: 0;
84 width: 0;
85 height: 0;
86 }
87
88 /* The slider */
89 .slider {
90 position: absolute;
91 cursor: pointer;
92 top: 0;
93 left: 0;
94 right: 0;
95 bottom: 0;
96 background-color: #ccc;
97 -webkit-transition: .4s;
98 transition: .4s;
99 }
100
101 .slider:before {
102 position: absolute;
103 content: "";
104 height: 26px;
105 width: 26px;
106 left: 4px;
107 bottom: 4px;
108 background-color: white;
109 -webkit-transition: .4s;
110 transition: .4s;
111 }
112
113 input:checked + .slider {
114 background-color: #2196F3;
115 }
116
117 input:focus + .slider {
118 box-shadow: 0 0 1px #2196F3;
119 }
120
121 input:checked + .slider:before {
122 -webkit-transform: translateX(26px);
123 -ms-transform: translateX(26px);
124 transform: translateX(26px);
125 }
126
127 /* Rounded sliders */
128 .slider.round {
129 border-radius: 34px;
130 }
131
132 .slider.round:before {
133 border-radius: 50%;
134 }
135
136 /* remove list style */
137 .delop .delop-filter li, .delop .delop-filter label{
138 list-style: none;
139 @apply ml-0;
140 }
141
142 #delete-old-posts-redirects .delete-old-posts_page_delete-old-posts-redirects {
143 position: relative;
144 }
145 .delete-old-posts_page_delete-old-posts-redirects .no-vertical-align {
146 vertical-align: initial;
147 }
148 .global-redirect-url-input-wrapper {
149 position: relative;
150 display: inline-block;
151 width: 100%;
152 }
153 .global-redirect-url-input-wrapper label {
154 position: relative;
155 }
156 .global-redirect-url-input-wrapper label .after {
157 display: none;
158 }
159 .global-redirect-url-input-wrapper label:hover .after {
160 display: inline-block;
161 position: absolute;
162 right: 15px;
163 top: 50%;
164 transform: translateY(-50%);
165 color: var(--red);
166 width: 10px;
167 cursor: pointer;
168 }
169 .global-redirect-url-input-wrapper input[type="submit"] {
170 vertical-align: middle;
171 }
172
173 @tailwind utilities;