PluginProbe ʕ •ᴥ•ʔ
Auto Post Cleaner / 3.1.0
Auto Post Cleaner v3.1.0
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 3 years ago freemius 3 years ago inc 3 years ago composer.json 5 years ago delete-old-posts.php 3 years ago package-lock.json 3 years ago package.json 3 years ago postcss.config.js 5 years ago readme.txt 3 years ago styles.css 3 years ago tailwind.config.js 3 years ago
styles.css
138 lines
1 @tailwind base;
2 @tailwind components;
3
4 body {
5 @apply bg-gray-100 text-gray-700;
6 }
7
8 img {
9 border-style: initial;
10 }
11
12 img, svg, video, canvas, audio, iframe, embed, object {
13 display: initial;
14 }
15
16 a {
17 text-decoration: underline;
18 }
19
20 .tblrow {
21 @apply p-3
22 }
23
24 .hide {
25 @apply hidden
26 }
27
28 .notice, div.error, div.updated {
29 @apply my-1
30 }
31
32 .dashicons-nametag {
33 @apply text-4xl
34 }
35
36 @screen sm {
37 .tblrow {
38 @apply mx-1
39 }
40 }
41
42 [x-cloak] {
43 @apply hidden !important;
44 }
45
46 .tooltip {
47 @apply invisible absolute;
48 }
49
50 .has-tooltip:hover .tooltip {
51 @apply visible z-50;
52 }
53
54 .absolute {
55 position: absolute;
56 }
57
58 .wp-list-table #id {
59 width: 6%;
60 }
61 .wp-list-table #check {
62 width: 20%;
63 }
64 .children {
65 @apply ml-8;
66 @apply mt-1;
67 }
68
69 /* The switch - the box around the slider */
70 .switch {
71 position: relative;
72 display: inline-block;
73 width: 60px;
74 height: 34px;
75 }
76
77 /* Hide default HTML checkbox */
78 .switch input {
79 opacity: 0;
80 width: 0;
81 height: 0;
82 }
83
84 /* The slider */
85 .slider {
86 position: absolute;
87 cursor: pointer;
88 top: 0;
89 left: 0;
90 right: 0;
91 bottom: 0;
92 background-color: #ccc;
93 -webkit-transition: .4s;
94 transition: .4s;
95 }
96
97 .slider:before {
98 position: absolute;
99 content: "";
100 height: 26px;
101 width: 26px;
102 left: 4px;
103 bottom: 4px;
104 background-color: white;
105 -webkit-transition: .4s;
106 transition: .4s;
107 }
108
109 input:checked + .slider {
110 background-color: #2196F3;
111 }
112
113 input:focus + .slider {
114 box-shadow: 0 0 1px #2196F3;
115 }
116
117 input:checked + .slider:before {
118 -webkit-transform: translateX(26px);
119 -ms-transform: translateX(26px);
120 transform: translateX(26px);
121 }
122
123 /* Rounded sliders */
124 .slider.round {
125 border-radius: 34px;
126 }
127
128 .slider.round:before {
129 border-radius: 50%;
130 }
131
132 /* remove list style */
133 .delop .delop-filter li, .delop .delop-filter label{
134 list-style: none;
135 @apply ml-0;
136 }
137
138 @tailwind utilities;