admin-dashboard.css
1 year ago
admin-dashboard.min.css
1 year ago
admin.css
1 year ago
admin.min.css
1 year ago
block-editor.min.css
4 years ago
frontend.css
1 year ago
frontend.min.css
1 year ago
page-reports.png
1 year ago
admin-dashboard.css
239 lines
| 1 | .pvc-dashboard-container { |
| 2 | min-height: 260px; |
| 3 | margin: 0 -4px; |
| 4 | position: relative; |
| 5 | display: flex; |
| 6 | flex-direction: column; |
| 7 | } |
| 8 | |
| 9 | .pvc-dashboard-container * { |
| 10 | box-sizing: border-box; |
| 11 | } |
| 12 | .pvc-dashboard-container .spinner { |
| 13 | position: absolute; |
| 14 | left: 50%; |
| 15 | top: 40%; |
| 16 | margin-left: -10px; |
| 17 | z-index: 10; |
| 18 | } |
| 19 | .pvc-dashboard-container.loading { |
| 20 | pointer-events: none; |
| 21 | } |
| 22 | .pvc-dashboard-container.loading:after { |
| 23 | position: absolute; |
| 24 | content: ''; |
| 25 | display: block; |
| 26 | height: 100%; |
| 27 | width: 100%; |
| 28 | top: 0; |
| 29 | left: 0; |
| 30 | background-color: rgba(255,255,255,0.8); |
| 31 | z-index: 1; |
| 32 | transition: all 0.2s; |
| 33 | } |
| 34 | .pvc-dashboard p.sub { |
| 35 | color: #8f8f8f; |
| 36 | font-size: 14px; |
| 37 | text-align: left; |
| 38 | padding-bottom: 3px; |
| 39 | border-bottom: 1px solid #ececec; |
| 40 | } |
| 41 | .pvc-dashboard-container .pvc-date-nav { |
| 42 | display: flex; |
| 43 | justify-content: space-between; |
| 44 | color: #aaa; |
| 45 | width: 100%; |
| 46 | } |
| 47 | .pvc-dashboard-container .pvc-date-nav .current { |
| 48 | color: #212529; |
| 49 | } |
| 50 | .pvc-dashboard-content-top { |
| 51 | padding: 0 6px; |
| 52 | } |
| 53 | .pvc-dashboard-content-bottom { |
| 54 | padding: 0 6px; |
| 55 | } |
| 56 | .pvc-data-container { |
| 57 | min-height: 230px; |
| 58 | } |
| 59 | .pvc-data-container a { |
| 60 | text-decoration: none; |
| 61 | } |
| 62 | .pvc-table-responsive { |
| 63 | overflow-x: auto; |
| 64 | -webkit-overflow-scrolling: touch; |
| 65 | } |
| 66 | .pvc-table { |
| 67 | caption-side: bottom; |
| 68 | border-collapse: collapse; |
| 69 | width: 100%; |
| 70 | margin-bottom: 1rem; |
| 71 | color: inherit; |
| 72 | vertical-align: top; |
| 73 | border-color: #dee2e6; |
| 74 | text-align: left; |
| 75 | } |
| 76 | .pvc-table > thead { |
| 77 | vertical-align: bottom; |
| 78 | color: #212529; |
| 79 | } |
| 80 | .pvc-table > tbody { |
| 81 | vertical-align: inherit; |
| 82 | } |
| 83 | .pvc-table tbody, |
| 84 | .pvc-table td, |
| 85 | .pvc-table tfoot, |
| 86 | .pvc-table th, |
| 87 | .pvc-table thead, |
| 88 | .pvc-table tr { |
| 89 | border-color: inherit; |
| 90 | border-style: solid; |
| 91 | border-width: 0; |
| 92 | } |
| 93 | .pvc-table th, |
| 94 | .pvc-table td { |
| 95 | text-align: inherit; |
| 96 | text-align: -webkit-match-parent; |
| 97 | } |
| 98 | .pvc-table th:first-child, |
| 99 | .pvc-table td:first-child { |
| 100 | width: 1px; |
| 101 | white-space: nowrap; |
| 102 | } |
| 103 | .pvc-table th:last-child, |
| 104 | .pvc-table td:last-child { |
| 105 | text-align: right; |
| 106 | } |
| 107 | .pvc-table .no-posts :last-child { |
| 108 | text-align: left; |
| 109 | } |
| 110 | .pvc-table > :not(caption) > * > * { |
| 111 | padding: .5rem .5rem; |
| 112 | background-color: transparent; |
| 113 | border-bottom-width: 1px; |
| 114 | box-shadow: inset 0 0 0 9999px transparent; |
| 115 | } |
| 116 | .pvc-table .cn-edit-link { |
| 117 | display: none; |
| 118 | } |
| 119 | .pvc-table .cn-edit-link:before { |
| 120 | content: '('; |
| 121 | display: inline-block; |
| 122 | } |
| 123 | .pvc-table .cn-edit-link:after { |
| 124 | content: ')'; |
| 125 | display: inline-block; |
| 126 | } |
| 127 | .pvc-table tr:hover .cn-edit-link { |
| 128 | display: inline-block; |
| 129 | } |
| 130 | #pvc_dashboard .inside { |
| 131 | margin: 0; |
| 132 | padding: 0; |
| 133 | } |
| 134 | .pvc-accordion-header { |
| 135 | display: flex; |
| 136 | align-items: center; |
| 137 | justify-content: space-between; |
| 138 | background-color: #fafafa; |
| 139 | border-bottom: 1px solid #eee; |
| 140 | } |
| 141 | .pvc-accordion-toggle { |
| 142 | cursor: pointer; |
| 143 | line-height: 1; |
| 144 | position: relative; |
| 145 | font-size: 14px; |
| 146 | font-weight: 400; |
| 147 | margin: 0; |
| 148 | padding: 11px 12px; |
| 149 | color: #23282c; |
| 150 | flex-grow: 1; |
| 151 | } |
| 152 | .pvc-accordion-title { |
| 153 | display: inline-block; |
| 154 | padding-right: 10px; |
| 155 | } |
| 156 | .pvc-accordion-actions { |
| 157 | z-index: 1; |
| 158 | height: 14px; |
| 159 | line-height: 1; |
| 160 | flex-shrink: 0; |
| 161 | padding: 11px 6px; |
| 162 | } |
| 163 | .pvc-accordion-actions .pvc-accordion-action { |
| 164 | width: 14px; |
| 165 | text-align: center; |
| 166 | } |
| 167 | .pvc-accordion-actions .pvc-accordion-action, |
| 168 | .pvc-accordion-actions .pvc-accordion-action::before { |
| 169 | font-size: 14px; |
| 170 | height: 14px; |
| 171 | line-height: 1; |
| 172 | color: #72777c; |
| 173 | display: inline-block; |
| 174 | text-decoration: none !important; |
| 175 | } |
| 176 | .pvc-accordion-actions .pvc-accordion-action::before { |
| 177 | width: 14px; |
| 178 | } |
| 179 | .pvc-accordion-actions .pvc-toggle-indicator::before { |
| 180 | color: #72777c; |
| 181 | content: "\f142"; |
| 182 | display: inline-block; |
| 183 | font-family: dashicons; |
| 184 | line-height: 1; |
| 185 | transform: rotate(0deg); |
| 186 | speak: none; |
| 187 | -webkit-font-smoothing: antialiased; |
| 188 | -moz-osx-font-smoothing: grayscale; |
| 189 | text-indent: -1px; |
| 190 | } |
| 191 | .pvc-tooltip { |
| 192 | position: relative; |
| 193 | } |
| 194 | .pvc-tooltip-icon { |
| 195 | display: inline-block; |
| 196 | width: 16px; |
| 197 | cursor: help; |
| 198 | } |
| 199 | .pvc-tooltip-icon::before { |
| 200 | color: #b4b9be; |
| 201 | content: "\f14c"; |
| 202 | display: inline-block; |
| 203 | font: normal 16px dashicons; |
| 204 | line-height: 1; |
| 205 | position: absolute; |
| 206 | text-decoration: none !important; |
| 207 | speak: none; |
| 208 | -webkit-font-smoothing: antialiased; |
| 209 | -moz-osx-font-smoothing: grayscale; |
| 210 | left: 0; |
| 211 | top: 2px; |
| 212 | } |
| 213 | .pvc-according-header { |
| 214 | display: flex; |
| 215 | align-items: center; |
| 216 | justify-content: space-between; |
| 217 | } |
| 218 | .pvc-accordion-content { |
| 219 | padding: 11px 12px; |
| 220 | border-bottom: 1px solid #eee; |
| 221 | height: 100%; |
| 222 | } |
| 223 | .pvc-collapsed .pvc-toggle-indicator::before { |
| 224 | transform: rotate(180deg); |
| 225 | } |
| 226 | .pvc-collapsed .pvc-accordion-content { |
| 227 | display: none; |
| 228 | } |
| 229 | .pvc-dashboard-block { |
| 230 | display: flex; |
| 231 | justify-content: center; |
| 232 | align-items: center; |
| 233 | background: #fafafa; |
| 234 | color: #787c82; |
| 235 | font-size: 13px; |
| 236 | font-style: italic; |
| 237 | padding: 13px; |
| 238 | margin-top: 0; |
| 239 | } |