delete-old-posts-programmatically
Last commit date
assets
2 years ago
freemius
2 years ago
inc
2 years ago
languages
3 years ago
README.md
2 years 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
2 years ago
package-lock.json
2 years ago
package.json
2 years ago
postcss.config.js
5 years ago
readme.txt
2 years ago
styles.css
3 years ago
tailwind.config.js
2 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; |