_background.scss
1 year ago
_category-checkboxes.scss
1 year ago
_category-filter.scss
1 year ago
_checkbox-icons.scss
1 year ago
_custom-fields.scss
1 year ago
_elements.scss
1 year ago
_form-table.scss
1 year ago
_help-tab.scss
1 year ago
_inner-table.scss
1 year ago
_inputs.scss
1 year ago
_layout-example-columns.scss
1 year ago
_layout-example-grid.scss
1 year ago
_layout-example-masonry.scss
1 year ago
_layout-examples.scss
1 year ago
_layout.scss
1 year ago
_list-radio-buttons.scss
1 year ago
_misc.scss
1 year ago
_screenshots.scss
1 year ago
_sticky-views.scss
1 year ago
_structure.scss
1 year ago
_template.scss
1 year ago
_view-info.scss
1 year ago
_layout-example-columns.scss
43 lines
| 1 | /* -------------------------------------------------- |
| 2 | Columns |
| 3 | -------------------------------------------------- */ |
| 4 | |
| 5 | .view-layout-columns .example-container { |
| 6 | padding-bottom: 15px; |
| 7 | text-align: center; |
| 8 | |
| 9 | /* a minimum width fallback */ |
| 10 | -webkit-column-width: 25px; |
| 11 | -moz-column-width: 25px; |
| 12 | column-width: 25px; |
| 13 | |
| 14 | -webkit-column-gap: 10px; |
| 15 | -moz-column-gap: 10px; |
| 16 | column-gap: 10px; |
| 17 | |
| 18 | /* chrome does not repaint column-rule when switching classes in js :( */ |
| 19 | /*-webkit-column-rule: 1px dashed #999;*/ |
| 20 | /*-moz-column-rule: 1px dashed #999;*/ |
| 21 | /*column-rule: 1px dashed #999;*/ |
| 22 | |
| 23 | -webkit-margin-bottom-collapse: separate; |
| 24 | |
| 25 | &.col-2 { |
| 26 | -webkit-column-count: 2; |
| 27 | -moz-column-count: 2; |
| 28 | column-count: 2; |
| 29 | } |
| 30 | |
| 31 | &.col-3 { |
| 32 | -webkit-column-count: 3; |
| 33 | -moz-column-count: 3; |
| 34 | column-count: 3; |
| 35 | } |
| 36 | |
| 37 | &.col-4 { |
| 38 | -webkit-column-count: 4; |
| 39 | -moz-column-count: 4; |
| 40 | column-count: 4; |
| 41 | } |
| 42 | } |
| 43 |