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