wp-dashboard.css
149 lines
| 1 | @import "../partials/tailwind.css"; |
| 2 | |
| 3 | .advads-logo { |
| 4 | &--icon { |
| 5 | @apply mr-3 h-5 w-5; |
| 6 | } |
| 7 | |
| 8 | &--text { |
| 9 | @apply flex-grow; |
| 10 | } |
| 11 | } |
| 12 | |
| 13 | #advads-dashboard-widget { |
| 14 | &-hide + span { |
| 15 | @apply hidden; |
| 16 | } |
| 17 | |
| 18 | .advads-widget-wrapper { |
| 19 | @apply mb-6; |
| 20 | |
| 21 | .section-title { |
| 22 | @apply bg-gray-50/70 px-3 py-2.5 my-3; |
| 23 | @apply !-mx-3; |
| 24 | border: solid #c3c4c7; |
| 25 | border-width: 1px 0; |
| 26 | |
| 27 | h3 { |
| 28 | @apply m-0 font-semibold; |
| 29 | } |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | .advads-widget-header { |
| 34 | font-size: 13px; |
| 35 | |
| 36 | a { |
| 37 | @apply px-1; |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | .advads-widget-buttons { |
| 42 | @apply py-1; |
| 43 | } |
| 44 | |
| 45 | a { |
| 46 | @apply no-underline; |
| 47 | } |
| 48 | |
| 49 | .dashicons-external { |
| 50 | @apply align-[-4px] ml-1; |
| 51 | } |
| 52 | |
| 53 | .inside { |
| 54 | padding: 0; |
| 55 | |
| 56 | // Entfernt den inneren Abstand |
| 57 | |
| 58 | > div { |
| 59 | padding-left: 12px; |
| 60 | padding-right: 12px; |
| 61 | } |
| 62 | |
| 63 | > footer { |
| 64 | margin: 0; |
| 65 | padding: 12px; |
| 66 | margin-bottom: 0; |
| 67 | border-top: 1px solid #c3c4c7; |
| 68 | |
| 69 | a { |
| 70 | @apply px-2.5 no-underline; |
| 71 | margin: 0; |
| 72 | padding: 0; |
| 73 | text-decoration-line: none; |
| 74 | |
| 75 | // Entfernt die Text-Dekoration |
| 76 | |
| 77 | &:not(:last-child)::after { |
| 78 | content: " | "; |
| 79 | color: #c3c4c7; |
| 80 | font-weight: 300; |
| 81 | } |
| 82 | } |
| 83 | |
| 84 | a.go-pro { |
| 85 | @apply font-semibold; |
| 86 | } |
| 87 | |
| 88 | .dashicons-external { |
| 89 | @apply text-lg; |
| 90 | line-height: unset; |
| 91 | } |
| 92 | } |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | .index-php { |
| 97 | div.advads-stats-box { |
| 98 | margin: 0; |
| 99 | flex: 0 0 calc(33.33% - 8pt); |
| 100 | |
| 101 | .advads-stats-age { |
| 102 | @apply clear-left float-left text-left; |
| 103 | } |
| 104 | } |
| 105 | |
| 106 | div.advads-stats-dd-container { |
| 107 | @apply float-left text-left; |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | .advads-performing-ads-track { |
| 112 | @apply flex justify-between; |
| 113 | |
| 114 | ul { |
| 115 | @apply list-none m-0; |
| 116 | } |
| 117 | |
| 118 | li { |
| 119 | @apply inline cursor-pointer; |
| 120 | color: #0474a2; |
| 121 | |
| 122 | &.active { |
| 123 | @apply text-black; |
| 124 | } |
| 125 | |
| 126 | &:not(:last-child)::after { |
| 127 | content: "|"; |
| 128 | @apply ml-1 text-gray-400; |
| 129 | } |
| 130 | } |
| 131 | |
| 132 | &.disabled { |
| 133 | @apply pointer-events-none text-gray-400; |
| 134 | |
| 135 | a, |
| 136 | li { |
| 137 | @apply text-gray-400; |
| 138 | } |
| 139 | } |
| 140 | } |
| 141 | |
| 142 | .advads-custom-period-wrapper { |
| 143 | @apply hidden; |
| 144 | } |
| 145 | |
| 146 | .advads-widget-buttons .dashicons { |
| 147 | line-height: 1 !important; |
| 148 | } |
| 149 |