ad-types.js
3 months ago
code-highlighter.js
3 months ago
editing.css
3 months ago
editing.js
3 months ago
listing.css
1 week ago
listing.js
3 months ago
placement-box.js
3 months ago
quick-bulk-edit.js
1 week ago
listing.css
110 lines
| 1 | @import "../partials/tailwind.css"; |
| 2 | |
| 3 | .advads-page { |
| 4 | background-color: #f8f9fa; |
| 5 | } |
| 6 | /* stylelint-disable selector-class-pattern */ |
| 7 | |
| 8 | .column-ad_type { |
| 9 | /* stylelint-enable selector-class-pattern */ |
| 10 | width: 50px; |
| 11 | } |
| 12 | |
| 13 | .advads-datetime { |
| 14 | input, |
| 15 | select { |
| 16 | @apply leading-6 text-sm; |
| 17 | } |
| 18 | |
| 19 | @media screen and (min-width: 783px) { |
| 20 | select { |
| 21 | margin-top: -4px; |
| 22 | } |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | .inline-edit-col-left .inline-edit-group { |
| 27 | @apply hidden; |
| 28 | } |
| 29 | |
| 30 | #advads-ad-filter-customize { |
| 31 | @apply float-left mr-1 leading-7; |
| 32 | } |
| 33 | /* stylelint-disable selector-class-pattern */ |
| 34 | |
| 35 | .bulk-edit-advanced_ads .inline-edit-categories { |
| 36 | /* stylelint-enable selector-class-pattern */ |
| 37 | min-height: 23em; |
| 38 | } |
| 39 | |
| 40 | .advads-quick-edit, |
| 41 | .advads-bulk-edit { |
| 42 | .advads-help::before { |
| 43 | @apply align-middle; |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | .inline-edit-status, |
| 48 | .inline-edit-author, |
| 49 | .advads-bulk-edit-grid > label { |
| 50 | @apply !grid !float-none; |
| 51 | grid-template-columns: 6em auto 30px; |
| 52 | } |
| 53 | |
| 54 | .inline-edit-status { |
| 55 | @apply !max-w-full; |
| 56 | } |
| 57 | |
| 58 | .advads-bulk-edit-grid { |
| 59 | input[type="text"] { |
| 60 | @apply w-full; |
| 61 | max-width: 25rem; |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | /* stylelint-disable selector-id-pattern */ |
| 66 | |
| 67 | .advads-page { |
| 68 | #adv-settings .submit button { |
| 69 | @apply ml-2.5; |
| 70 | } |
| 71 | |
| 72 | #advads-show-filters span { |
| 73 | @apply leading-8; |
| 74 | } |
| 75 | |
| 76 | .button:not(.button-primary):not(.advads-button-primary):not(:hover) { |
| 77 | border-color: #0474a2; |
| 78 | color: #0474a2; |
| 79 | } |
| 80 | |
| 81 | .wp-list-table thead tr { |
| 82 | .dashicons-edit { |
| 83 | @apply float-right invisible cursor-pointer; |
| 84 | } |
| 85 | |
| 86 | &:hover .dashicons-edit { |
| 87 | @apply visible; |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary)::before { |
| 92 | @apply content-none; |
| 93 | } |
| 94 | |
| 95 | .advads-quick-edit, |
| 96 | .advads-bulk-edit { |
| 97 | .expiry-inputs { |
| 98 | @apply hidden; |
| 99 | } |
| 100 | |
| 101 | label { |
| 102 | @apply inline-block; |
| 103 | } |
| 104 | |
| 105 | input[type="text"] { |
| 106 | @apply align-middle p-0 px-1; |
| 107 | } |
| 108 | } |
| 109 | } |
| 110 |