PluginProbe
Bubble Menu – Floating Button Menu with Sticky Navigation / 3.1
Bubble Menu – Floating Button Menu with Sticky Navigation v3.1
trunk 1.3 2.0 2.2 2.2.1 3.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1 3.1.1 4.0 4.0.1 4.0.2 4.0.3 4.0.4 4.0.5 4.0.6 4.0.7 4.1 4.1.1
bubble-menu / admin / assets / scss / _columns.scss

_columns.scss in Bubble Menu – Floating Button Menu with Sticky Navigation 3.1, at admin/assets/scss/_columns.scss

37 lines 499 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* Flexbox elements */
2
3 .columns {
4 display: flex;
5 &.is-multiline {
6 flex-wrap: wrap;
7 }
8 }
9
10 .column {
11 display: block;
12 flex-basis: 0;
13 flex-grow: 1;
14 flex-shrink: 1;
15 padding: 0.75rem;
16 @for $i from 0 through 12 {
17 &.is-#{$i} {
18 box-sizing: border-box;
19 flex: none;
20 width: percentage($i/12);
21 }
22 }
23 }
24
25
26 .wow-plugin label {
27 font-weight: 500;
28 cursor: default;
29 }
30 .checkbox.label,
31 .radio.label {
32 cursor: pointer;
33 }
34
35 .wow-plugin label[for]] {
36 cursor: pointer;
37 }