_columns.scss in Bubble Menu – Floating Button Menu with Sticky Navigation 3.1, at admin/assets/scss/_columns.scss
| 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 | } |