| 1 |
#ep-ordering { |
| 2 |
border-left-width: 0; |
| 3 |
border-right-width: 0; |
| 4 |
|
| 5 |
& .inside { |
| 6 |
background-color: #f1f1f1; |
| 7 |
margin: 0; |
| 8 |
padding: 0; |
| 9 |
} |
| 10 |
|
| 11 |
& .pointers, |
| 12 |
& .pointer-search, |
| 13 |
& .loading { |
| 14 |
background-color: #fff; |
| 15 |
border-left: 1px solid #eee; |
| 16 |
border-right: 1px solid #eee; |
| 17 |
} |
| 18 |
|
| 19 |
& .new-post { |
| 20 |
background: #fff; |
| 21 |
padding: 0 1em; |
| 22 |
} |
| 23 |
|
| 24 |
& .loading { |
| 25 |
padding: 1em; |
| 26 |
|
| 27 |
& .spinner { |
| 28 |
float: left; |
| 29 |
margin-left: 0; |
| 30 |
margin-top: 0; |
| 31 |
} |
| 32 |
} |
| 33 |
|
| 34 |
& .pointer-type { |
| 35 |
border: 2px solid #0073aa; |
| 36 |
border-radius: 2px; |
| 37 |
color: #0073aa; |
| 38 |
display: inline-block; |
| 39 |
font-size: 0.75em; |
| 40 |
font-weight: 700; |
| 41 |
margin-right: 8px; |
| 42 |
padding: 1px 2px; |
| 43 |
} |
| 44 |
|
| 45 |
& .pointers { |
| 46 |
|
| 47 |
& .pointer, |
| 48 |
& .post { |
| 49 |
padding: 1em; |
| 50 |
|
| 51 |
&:nth-child(odd) { |
| 52 |
background-color: #f9f9f9; |
| 53 |
} |
| 54 |
} |
| 55 |
|
| 56 |
& .title { |
| 57 |
color: #0073aa; |
| 58 |
} |
| 59 |
|
| 60 |
& .pointer-actions { |
| 61 |
float: right; |
| 62 |
|
| 63 |
& .handle { |
| 64 |
cursor: move; |
| 65 |
} |
| 66 |
|
| 67 |
& .delete-pointer { |
| 68 |
margin-left: 10px; |
| 69 |
} |
| 70 |
} |
| 71 |
|
| 72 |
& .next-page-notice { |
| 73 |
background-color: #fdeeca; |
| 74 |
padding: 1em 0; |
| 75 |
text-align: center; |
| 76 |
} |
| 77 |
} |
| 78 |
|
| 79 |
& .legend { |
| 80 |
background: #fff; |
| 81 |
border-bottom: 1px solid #eee; |
| 82 |
padding: 1em 0; |
| 83 |
text-align: center; |
| 84 |
} |
| 85 |
|
| 86 |
& .legend-item { |
| 87 |
display: inline-block; |
| 88 |
font-size: 0.875em; |
| 89 |
font-style: italic; |
| 90 |
margin: 0 0.5em; |
| 91 |
} |
| 92 |
|
| 93 |
& .pointer-search { |
| 94 |
margin-top: 2em; |
| 95 |
|
| 96 |
& .no-results { |
| 97 |
padding: 1em; |
| 98 |
} |
| 99 |
|
| 100 |
& .section-title { |
| 101 |
border-bottom: 1px solid #eee; |
| 102 |
border-top: 1px solid #eee; |
| 103 |
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); |
| 104 |
font-weight: 700; |
| 105 |
} |
| 106 |
|
| 107 |
& .search-wrapper { |
| 108 |
padding: 1em 0; |
| 109 |
} |
| 110 |
|
| 111 |
& .input-wrap { |
| 112 |
padding: 0 1em; |
| 113 |
} |
| 114 |
|
| 115 |
& .search-pointers { |
| 116 |
font-size: 18px; |
| 117 |
height: 1.7em; |
| 118 |
line-height: 100%; |
| 119 |
padding: 3px 8px; |
| 120 |
} |
| 121 |
|
| 122 |
& .pointer-results { |
| 123 |
padding: 1em 0 0; |
| 124 |
} |
| 125 |
|
| 126 |
& .pointer-result { |
| 127 |
padding: 10px 2em; |
| 128 |
|
| 129 |
& .dashicons { |
| 130 |
float: right; |
| 131 |
} |
| 132 |
|
| 133 |
&:hover { |
| 134 |
background-color: #f9f9f9; |
| 135 |
} |
| 136 |
} |
| 137 |
} |
| 138 |
|
| 139 |
& .delete-pointer, |
| 140 |
& .add-pointer { |
| 141 |
cursor: pointer; |
| 142 |
} |
| 143 |
} |
| 144 |
|