PluginProbe
WP Directory Kit / 1.3.4
WP Directory Kit v1.3.4
1.5.6 1.5.5 1.5.4 1.5.3 trunk 1.1.0 1.1.6 1.1.8 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.8 1.4.0 1.4.1 All 35 releases
wpdirectorykit / elementor-elements / assets / css / widgets / wdk-tabs.css

wdk-tabs.css in WP Directory Kit 1.3.4, at elementor-elements/assets/css/widgets/wdk-tabs.css

43 lines 694 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .wdk-tabs {
2 position: fixed;
3 bottom: 45px;
4 left: 50%;
5 transform: translateX(-50%);
6 border-radius: 4px;
7 background: #3C73A8;
8 z-index: 50;
9 display: flex;
10 overflow: hidden;
11 display: none;
12 color: #fff;
13 flex-wrap: wrap;
14 }
15
16 .wdk-tabs.is_edit_mode {
17 overflow: visible;
18 display: block;
19 }
20
21 .wdk-tabs .tab {
22 padding: 15px 15px;
23 display: inline-block;
24 transition: all .15s;
25 }
26
27 .wdk-tabs .tab.active,
28 .wdk-tabs .tab:hover {
29 background: #224668;
30 color: #fff;
31 }
32
33 @media (max-width: 767px) {
34 .wdk-tabs {
35 display: flex;
36 }
37 .wdk_tab_mobile:not(.active) {
38 position: absolute;
39 visibility: hidden;
40 left: 0;
41 }
42 }
43