form-submission.js
3 months ago
frontend-picker.js
1 week ago
item-select.js
2 months ago
listing.css
3 months ago
listing.js
3 months ago
quick-edit.js
3 months ago
table.css
3 months ago
table.css
30 lines
| 1 | /* Table CSS */ |
| 2 | |
| 3 | .wp-list-table { |
| 4 | .column-type { |
| 5 | @apply w-24; |
| 6 | } |
| 7 | |
| 8 | .column-type img { |
| 9 | @apply w-auto h-14; |
| 10 | } |
| 11 | } |
| 12 | |
| 13 | .advads-placement-item-select { |
| 14 | @apply w-[80%]; |
| 15 | } |
| 16 | |
| 17 | .advads-placement-item-select-wrap { |
| 18 | @apply relative flex items-center gap-x-2; |
| 19 | |
| 20 | .advads-loader { |
| 21 | @apply absolute right-[30%] top-2.5 pointer-events-none; |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | /* Quick Edit */ |
| 26 | |
| 27 | .inline-edit-row[id^="edit-"] fieldset:not(.advanced-ads) { |
| 28 | @apply hidden; |
| 29 | } |
| 30 |