PluginProbe
King Addons for Elementor – 100+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce Builder, Mega Menu, Popup Builder / 51.1.86
King Addons for Elementor – 100+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce Builder, Mega Menu, Popup Builder v51.1.86
51.1.86 51.1.84 51.1.85 51.1.83 51.1.82 51.1.81 51.1.79 51.1.78 51.1.77 51.1.76 51.1.74 51.1.75 51.1.65 51.1.64 51.1.63 trunk 51.1.14 51.1.2 51.1.35 51.1.36 51.1.37 51.1.38 51.1.39 51.1.44 51.1.45 All 40 releases
king-addons / includes / widgets / Woo_Product_Tabs / style.css

style.css in King Addons for Elementor – 100+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce Builder, Mega Menu, Popup Builder 51.1.86, at includes/widgets/Woo_Product_Tabs/style.css

111 lines 2.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .ka-woo-tabs {
2 display: grid;
3 gap: 12px;
4 }
5
6 .ka-woo-tabs--vertical {
7 grid-template-columns: minmax(180px, 1fr) 2fr;
8 align-items: flex-start;
9 }
10
11 .ka-woo-tabs__nav {
12 display: flex;
13 flex-wrap: wrap;
14 gap: 8px;
15 }
16
17 .ka-woo-tabs--vertical .ka-woo-tabs__nav {
18 flex-direction: column;
19 }
20
21 .ka-woo-tabs__tab {
22 border: 1px solid #e0e0e0;
23 background: #f8f8f8;
24 padding: 8px 12px;
25 cursor: pointer;
26 transition: all 0.2s ease;
27 }
28
29 .ka-woo-tabs__tab.is-active {
30 background: #fff;
31 border-color: #111;
32 }
33
34 .ka-woo-tabs__panels {
35 border: 1px solid #e0e0e0;
36 padding: 12px;
37 }
38
39 .ka-woo-tabs--vertical .ka-woo-tabs__panels {
40 width: 100%;
41 }
42
43 .ka-woo-tabs__panel {
44 display: none;
45 }
46
47 .ka-woo-tabs__panel.is-active {
48 display: block;
49 }
50
51 .ka-woo-tabs__accordion-toggle {
52 display: none;
53 width: 100%;
54 text-align: left;
55 padding: 10px 12px;
56 background: #f8f8f8;
57 border: 1px solid #e0e0e0;
58 cursor: pointer;
59 margin-bottom: 8px;
60 }
61
62 .ka-woo-tabs--accordion .ka-woo-tabs__nav {
63 display: none;
64 }
65
66 .ka-woo-tabs--accordion .ka-woo-tabs__accordion-toggle {
67 display: block;
68 }
69
70 /* An accordion has to keep every header on the page - the shared
71 .ka-woo-tabs__panel { display: none } rule hid the inactive panels
72 outright, which took their headers with them and left a single
73 section that could never be switched away from. */
74 .ka-woo-tabs--accordion .ka-woo-tabs__panel {
75 display: block;
76 }
77
78 .ka-woo-tabs__accordion-body {
79 display: none;
80 }
81
82 .ka-woo-tabs--accordion .ka-woo-tabs__panel.is-active .ka-woo-tabs__accordion-body {
83 display: block;
84 }
85
86 .ka-woo-tabs__placeholder {
87 min-height: 60px;
88 background: linear-gradient(90deg, #f5f5f5 25%, #ececec 37%, #f5f5f5 63%);
89 background-size: 400% 100%;
90 animation: ka-woo-tabs-shimmer 1.2s ease-in-out infinite;
91 border-radius: 4px;
92 }
93
94 .ka-woo-tabs__panel.is-loading {
95 opacity: 0.65;
96 }
97
98 .ka-woo-tabs__error {
99 color: #d63638;
100 font-size: 14px;
101 }
102
103 @keyframes ka-woo-tabs-shimmer {
104 0% {
105 background-position: 100% 0;
106 }
107 100% {
108 background-position: -100% 0;
109 }
110 }
111