wdk-tabs.css in WP Directory Kit 1.3.4, at elementor-elements/assets/css/widgets/wdk-tabs.css
| 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 |