_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
_sticky-views.scss
49 lines
| 1 | /* -------------------------------------------------- |
| 2 | Views list table sticky |
| 3 | -------------------------------------------------- */ |
| 4 | |
| 5 | .wp-list-table-wrap { |
| 6 | position: relative; |
| 7 | } |
| 8 | |
| 9 | .stickit, .stickit:before { |
| 10 | cursor: pointer; |
| 11 | content: "\f154"; |
| 12 | display: inline-block; |
| 13 | width: 20px; |
| 14 | height: 20px; |
| 15 | color: #aaa; |
| 16 | font-size: 20px; |
| 17 | line-height: 1; |
| 18 | font-family: dashicons; |
| 19 | text-decoration: inherit; |
| 20 | font-weight: normal; |
| 21 | font-style: normal; |
| 22 | vertical-align: top; |
| 23 | text-align: center; |
| 24 | -webkit-transition: color .1s ease-in; |
| 25 | transition: color .1s ease-in; |
| 26 | -webkit-font-smoothing: antialiased; |
| 27 | -moz-osx-font-smoothing: grayscale; |
| 28 | } |
| 29 | |
| 30 | .stickit { |
| 31 | &.stuck:before { |
| 32 | content: "\f155"; |
| 33 | color: #0073aa; |
| 34 | } |
| 35 | &:hover:before { |
| 36 | content: "\f155"; |
| 37 | color: #0096dd; |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | .overlay { |
| 42 | position: absolute; |
| 43 | top: 0; |
| 44 | left: 0; |
| 45 | bottom: 0; |
| 46 | right: 0; |
| 47 | background: rgba(255, 255, 255, 0.7); |
| 48 | } |
| 49 |