file-uploader.js
3 months ago
header-tabs.css
3 months ago
search-reulsts.js
3 months ago
tabs.css
3 months ago
tabs.js
3 months ago
tailwind.css
3 months ago
tabs.css
67 lines
| 1 | .advads-tabs-wrap { |
| 2 | @apply border border-border rounded-md; |
| 3 | |
| 4 | .advads-tab-content, |
| 5 | > input { |
| 6 | @apply hidden; |
| 7 | } |
| 8 | |
| 9 | .advads-tab-content-body { |
| 10 | @apply bg-white rounded-b-md py-4 px-5; |
| 11 | } |
| 12 | |
| 13 | .advads-tab-content-footer { |
| 14 | @apply border-t border-border py-4 px-5; |
| 15 | } |
| 16 | |
| 17 | .advads-tab-nav { |
| 18 | @apply flex border-b border-border; |
| 19 | } |
| 20 | |
| 21 | .advads-tab-nav label { |
| 22 | @apply relative flex items-center gap-x-2 py-3 px-5 cursor-pointer; |
| 23 | @apply font-medium border-r border-border bg-[#f5f4f4]; |
| 24 | |
| 25 | &:first-of-type { |
| 26 | @apply rounded-tl-md; |
| 27 | } |
| 28 | |
| 29 | &:hover, |
| 30 | &:focus { |
| 31 | @apply shadow-none outline-0 text-[#1a1e22] bg-white; |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | > [type="radio"]:nth-of-type(1):checked |
| 36 | ~ .advads-tab-nav |
| 37 | label:nth-of-type(1), |
| 38 | > [type="radio"]:nth-of-type(2):checked |
| 39 | ~ .advads-tab-nav |
| 40 | label:nth-of-type(2), |
| 41 | > [type="radio"]:nth-of-type(3):checked |
| 42 | ~ .advads-tab-nav |
| 43 | label:nth-of-type(3), |
| 44 | > [type="radio"]:nth-of-type(4):checked |
| 45 | ~ .advads-tab-nav |
| 46 | label:nth-of-type(4), |
| 47 | > [type="radio"]:nth-of-type(5):checked |
| 48 | ~ .advads-tab-nav |
| 49 | label:nth-of-type(5) { |
| 50 | @apply shadow-none outline-0 text-[#1a1e22] bg-white; |
| 51 | @apply border-b border-b-white -mb-px; |
| 52 | } |
| 53 | |
| 54 | > [type="radio"]:nth-of-type(1):checked |
| 55 | ~ .advads-tab-content:nth-of-type(1), |
| 56 | > [type="radio"]:nth-of-type(2):checked |
| 57 | ~ .advads-tab-content:nth-of-type(2), |
| 58 | > [type="radio"]:nth-of-type(3):checked |
| 59 | ~ .advads-tab-content:nth-of-type(3), |
| 60 | > [type="radio"]:nth-of-type(4):checked |
| 61 | ~ .advads-tab-content:nth-of-type(4), |
| 62 | > [type="radio"]:nth-of-type(4):checked |
| 63 | ~ .advads-tab-content:nth-of-type(5) { |
| 64 | @apply block; |
| 65 | } |
| 66 | } |
| 67 |