wdk-tabs.scss in WP Directory Kit 1.3.3, at elementor-elements/assets/css/widgets/wdk-tabs.scss
| 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 | &.is_edit_mode { |
| 16 | overflow: visible; |
| 17 | display: block; |
| 18 | } |
| 19 | |
| 20 | .tab { |
| 21 | padding: 15px 15px; |
| 22 | display: inline-block; |
| 23 | transition: all .15s; |
| 24 | } |
| 25 | |
| 26 | .tab.active, |
| 27 | .tab:hover { |
| 28 | background: #224668; |
| 29 | color: #fff; |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | @media (max-width:767px) { |
| 34 | .wdk-tabs { |
| 35 | display: flex; |
| 36 | } |
| 37 | |
| 38 | .wdk_tab_mobile:not(.active) { |
| 39 | position: absolute; |
| 40 | visibility: hidden; |
| 41 | left: 0; |
| 42 | } |
| 43 | } |