PluginProbe
Advanced Ads – Ad Manager & AdSense / 2.0.21
Advanced Ads – Ad Manager & AdSense v2.0.21
2.0.26 2.0.25 2.0.24 2.0.23 2.0.22 2.0.21 1.38.0 1.39.0 1.39.1 1.39.2 1.39.3 1.39.4 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.4.9 1.40.0 1.40.1 1.40.2 All 348 releases
advanced-ads / src / admin / partials / tabs.css
tabs.css
67 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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