_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
_inner-table.scss
32 lines
| 1 | /* ------------------------------------------------- |
| 2 | Inner table |
| 3 | ------------------------------------------------- */ |
| 4 | |
| 5 | .inner-table { |
| 6 | display: table; |
| 7 | } |
| 8 | |
| 9 | .inner-table-row { |
| 10 | display: table-row; |
| 11 | |
| 12 | &.bordered { |
| 13 | border: 1px solid #DDD; |
| 14 | } |
| 15 | |
| 16 | &.header { |
| 17 | .inner-table-cell { |
| 18 | text-align: center; |
| 19 | padding: 0 10px; |
| 20 | background: #f6f6f6; |
| 21 | } |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | .inner-table-cell { |
| 26 | display: table-cell; |
| 27 | padding: 5px 10px; |
| 28 | |
| 29 | &:not(:last-child) { |
| 30 | border-right: 1px dashed #e2e2e2; |
| 31 | } |
| 32 | } |