PluginProbe
King Addons for Elementor – 100+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce Builder, Mega Menu, Popup Builder / 51.1.63
King Addons for Elementor – 100+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce Builder, Mega Menu, Popup Builder v51.1.63
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.63, at includes/widgets/Woo_Product_Tabs/style.css

109 lines 1.8 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 .ka-woo-tabs__accordion-body {
71 display: none;
72 }
73
74 .ka-woo-tabs--accordion .ka-woo-tabs__panel.is-active .ka-woo-tabs__accordion-body {
75 display: block;
76 }
77
78 .ka-woo-tabs__placeholder {
79 min-height: 60px;
80 background: linear-gradient(90deg, #f5f5f5 25%, #ececec 37%, #f5f5f5 63%);
81 background-size: 400% 100%;
82 animation: ka-woo-tabs-shimmer 1.2s ease-in-out infinite;
83 border-radius: 4px;
84 }
85
86 .ka-woo-tabs__panel.is-loading {
87 opacity: 0.65;
88 }
89
90 .ka-woo-tabs__error {
91 color: #d63638;
92 font-size: 14px;
93 }
94
95 @keyframes ka-woo-tabs-shimmer {
96 0% {
97 background-position: 100% 0;
98 }
99 100% {
100 background-position: -100% 0;
101 }
102 }
103
104
105
106
107
108
109