delete-group.js
3 months ago
edit-group.js
3 months ago
form-submission.js
3 months ago
forms.css
3 months ago
icons.css
3 months ago
listShowMore.js
3 months ago
listing.css
3 months ago
listing.js
3 months ago
sort-ads.js
3 months ago
table.css
3 months ago
forms.css
62 lines
| 1 | /* New Form */ |
| 2 | |
| 3 | .advads-group-type-field { |
| 4 | .advads-selector-item { |
| 5 | @apply border-b-2 border-transparent !rounded-none; |
| 6 | } |
| 7 | |
| 8 | input:checked + .advads-selector-item { |
| 9 | @apply border-sky-600; |
| 10 | } |
| 11 | } |
| 12 | |
| 13 | /* Edit Form */ |
| 14 | |
| 15 | .advads-group-ads { |
| 16 | @apply !border-border; |
| 17 | |
| 18 | th.group-sort { |
| 19 | @apply cursor-pointer after:font-["dashicons"] after:ml-1 after:leading-0; |
| 20 | } |
| 21 | |
| 22 | th.asc { |
| 23 | @apply after:content-["\f142"]; |
| 24 | } |
| 25 | |
| 26 | th.desc { |
| 27 | @apply after:content-["\f140"]; |
| 28 | } |
| 29 | |
| 30 | tr td:last-child { |
| 31 | @apply align-middle text-center; |
| 32 | } |
| 33 | |
| 34 | tr:hover .advads-ad-status-icon { |
| 35 | background-image: var(--icon-color); |
| 36 | } |
| 37 | |
| 38 | .group-status { |
| 39 | @apply w-14; |
| 40 | } |
| 41 | |
| 42 | .group-weight { |
| 43 | @apply w-50; |
| 44 | } |
| 45 | |
| 46 | .advads-ad-status-icon { |
| 47 | @apply inline-block align-middle; |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | .advads-group-add-ad { |
| 52 | @apply bg-[#f4fbf5]; |
| 53 | |
| 54 | td { |
| 55 | @apply align-middle; |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | #the-list .advads-group-ads tr th { |
| 60 | @apply !border-b !border-b-border; |
| 61 | } |
| 62 |