customer-dashboard
2 years ago
admin-header.php
1 month ago
admin-index-header.php
2 years ago
admin-index-styles.php
1 year ago
admin-product-list-styles.php
1 month ago
admin-settings-header.php
11 months ago
admin-settings-notices.php
4 years ago
admin-settings-styles.php
3 months ago
enhanced-views-promo.php
1 month ago
store-logo.php
2 years ago
admin-product-list-styles.php
64 lines
| 1 | <style> |
| 2 | .wp-list-table .column-image { |
| 3 | width: 40px; |
| 4 | } |
| 5 | |
| 6 | .sc-product-name { |
| 7 | display: flex; |
| 8 | gap: 1em; |
| 9 | } |
| 10 | |
| 11 | .sc-product-name img { |
| 12 | width: 40px; |
| 13 | height: 40px; |
| 14 | border: var(--sc-input-border); |
| 15 | border-radius: var(--sc-border-radius-medium); |
| 16 | box-shadow: var(--sc-shadow-small); |
| 17 | flex: 1 0 40px; |
| 18 | object-fit: cover; |
| 19 | display: block; |
| 20 | flex: 0 0 40px; |
| 21 | } |
| 22 | |
| 23 | td.sync_status { |
| 24 | font-size: 16px; |
| 25 | line-height: 0; |
| 26 | color: var(--sc-color-gray-700); |
| 27 | } |
| 28 | |
| 29 | .syncing-wrapper { |
| 30 | display: flex; |
| 31 | align-items: center; |
| 32 | gap: 0.25em; |
| 33 | } |
| 34 | |
| 35 | .syncing-text { |
| 36 | font-size: 13px; |
| 37 | } |
| 38 | |
| 39 | td.sync_status .synced { |
| 40 | color: var(--sc-color-success-700); |
| 41 | } |
| 42 | |
| 43 | .sc-product-image-preview { |
| 44 | width: 40px; |
| 45 | height: 40px; |
| 46 | object-fit: cover; |
| 47 | background: #f3f3f3; |
| 48 | display: flex; |
| 49 | align-items: center; |
| 50 | justify-content: center; |
| 51 | border: var(--sc-input-border); |
| 52 | border-radius: var(--sc-border-radius-medium); |
| 53 | box-shadow: var(--sc-shadow-small); |
| 54 | flex: 0 0 40px; |
| 55 | } |
| 56 | |
| 57 | th#name { |
| 58 | width: 245px; |
| 59 | } |
| 60 | th#featured { |
| 61 | width: 60px; |
| 62 | } |
| 63 | </style> |
| 64 |