admin-menu.css
3 months ago
documentation.css
3 months ago
faq.css
3 months ago
import.css
3 months ago
settings.css
3 months ago
support.css
3 months ago
admin-menu.css
71 lines
| 1 | .helpdocs-sorter { |
| 2 | margin: 0; |
| 3 | padding: 0; |
| 4 | list-style: none; |
| 5 | } |
| 6 | |
| 7 | .helpdocs-sorter-item { |
| 8 | position: relative; |
| 9 | display: flex; |
| 10 | align-items: center; |
| 11 | gap: 10px; |
| 12 | padding: 8px 10px; |
| 13 | margin-bottom: 6px; |
| 14 | background: #ffffff; |
| 15 | border: 1px solid #ccd0d4; |
| 16 | cursor: grab; |
| 17 | |
| 18 | user-select: none; |
| 19 | -webkit-user-select: none; |
| 20 | -ms-user-select: none; |
| 21 | } |
| 22 | |
| 23 | .helpdocs-sorter-item:active { |
| 24 | cursor: grabbing; |
| 25 | } |
| 26 | |
| 27 | .helpdocs-sorter-item.is-dragging { |
| 28 | opacity: 0.4; |
| 29 | } |
| 30 | |
| 31 | .helpdocs-sorter-placeholder { |
| 32 | height: 42px; |
| 33 | margin-bottom: 6px; |
| 34 | border: 2px dashed #2271b1; |
| 35 | background: rgba( 34, 113, 177, 0.08 ); |
| 36 | } |
| 37 | |
| 38 | .helpdocs-sorter-item.drag-over { |
| 39 | border-color: #2271b1; |
| 40 | } |
| 41 | |
| 42 | .helpdocs-sort-handle { |
| 43 | flex-shrink: 0; |
| 44 | pointer-events: none; |
| 45 | } |
| 46 | |
| 47 | .helpdocs-sort-text { |
| 48 | display: flex; |
| 49 | flex-direction: column; |
| 50 | line-height: 1.2; |
| 51 | pointer-events: none; |
| 52 | } |
| 53 | |
| 54 | .helpdocs-sort-label { |
| 55 | font-weight: 500; |
| 56 | } |
| 57 | |
| 58 | .helpdocs-sort-sublabel { |
| 59 | font-size: 0.9em !important; |
| 60 | font-style: italic; |
| 61 | color: #000000; |
| 62 | opacity: 0.7; |
| 63 | margin-top: 2px; |
| 64 | position: absolute; |
| 65 | right: 10px; |
| 66 | pointer-events: none; |
| 67 | } |
| 68 | |
| 69 | html.helpdocs-view-sublabels .helpdocs-sort-sublabel { |
| 70 | display: block; |
| 71 | } |