customer-dashboard
2 years ago
admin-header.php
1 week ago
admin-index-header.php
2 years ago
admin-index-styles.php
1 year ago
admin-product-list-styles.php
4 days ago
admin-settings-header.php
10 months ago
admin-settings-notices.php
4 years ago
admin-settings-styles.php
2 months ago
enhanced-views-promo.php
1 week ago
store-logo.php
2 years ago
admin-settings-styles.php
169 lines
| 1 | <style> |
| 2 | #wpbody-content, #wpcontent { |
| 3 | padding: 0 !important; |
| 4 | font-size: 14px; |
| 5 | color: var(--sc-color-brand-body); |
| 6 | } |
| 7 | .sc-item-stick-bottom { |
| 8 | padding-top: var(--sc-spacing-large); |
| 9 | } |
| 10 | |
| 11 | @media screen and (min-width: 600px) { |
| 12 | .sc-item-stick-bottom { |
| 13 | position: sticky; |
| 14 | top: 135px; |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | #wpfooter { |
| 19 | display:none; |
| 20 | } |
| 21 | |
| 22 | body { |
| 23 | background: var(--sc-color-brand-main-background); |
| 24 | } |
| 25 | |
| 26 | #sc-settings-container { |
| 27 | min-height: calc(100vh - 66px); |
| 28 | top: 0; |
| 29 | width: 100% !important; |
| 30 | left: 0; |
| 31 | display: flex; |
| 32 | flex-direction: column; |
| 33 | } |
| 34 | |
| 35 | #sc-settings-content { |
| 36 | display: flex; |
| 37 | flex: 1; |
| 38 | } |
| 39 | |
| 40 | #sc-settings-content::before { |
| 41 | -webkit-animation-fill-mode: both; |
| 42 | animation-fill-mode: both; |
| 43 | background: #ffffff; |
| 44 | content: " "; |
| 45 | height: 100%; |
| 46 | position: fixed; |
| 47 | inset-block-start: 0; |
| 48 | inset-inline-start: 0; |
| 49 | transform-origin: inline-start; |
| 50 | width: 450px; |
| 51 | border-inline-end: 1px solid var(--sc-color-gray-200); |
| 52 | z-index: -1; |
| 53 | } |
| 54 | |
| 55 | #sc-nav { |
| 56 | padding: 20px; |
| 57 | display: flex; |
| 58 | flex-direction: column; |
| 59 | gap: 2px; |
| 60 | width: 100%; |
| 61 | max-width: 290px; |
| 62 | position: relative; |
| 63 | box-sizing: border-box; |
| 64 | } |
| 65 | |
| 66 | @media screen and (max-width:960px) { |
| 67 | #sc-settings-content::before { |
| 68 | width: 330px; |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | @media screen and (max-width:782px) { |
| 73 | #sc-settings-content { |
| 74 | flex-direction: column; |
| 75 | } |
| 76 | #sc-nav { |
| 77 | width: 100%; |
| 78 | max-width: none; |
| 79 | background: white; |
| 80 | border-bottom: 1px solid var(--sc-color-gray-200); |
| 81 | } |
| 82 | #sc-settings-content::before { |
| 83 | display: none; |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | #sc-settings { |
| 88 | flex: 1; |
| 89 | } |
| 90 | |
| 91 | .surecart-cta { |
| 92 | --sc-card-border-color: var(--sc-color-primary-500); |
| 93 | } |
| 94 | .sc-container { |
| 95 | width: 100%; |
| 96 | } |
| 97 | |
| 98 | .sc-content { |
| 99 | margin-left: auto; |
| 100 | margin-right: auto; |
| 101 | max-width: var(--sc-settings-content-width, 768px); |
| 102 | padding: 2rem; |
| 103 | display: flex; |
| 104 | flex-direction: column; |
| 105 | gap: var(--sc-spacing-large); |
| 106 | } |
| 107 | |
| 108 | /* .sc-container { |
| 109 | margin-left: auto; |
| 110 | margin-right: auto; |
| 111 | max-width: 768px; |
| 112 | padding: 2rem; |
| 113 | display: flex; |
| 114 | flex-direction: column; |
| 115 | gap: var(--sc-spacing-large); |
| 116 | } */ |
| 117 | |
| 118 | .sc-section-heading { |
| 119 | margin-bottom: 1.5rem; |
| 120 | display: flex; |
| 121 | align-items: center; |
| 122 | justify-content: space-between; |
| 123 | border-bottom: 1px solid rgba(229, 231, 235, 1); |
| 124 | padding-bottom: 1rem; |
| 125 | } |
| 126 | |
| 127 | .sc-section-heading h3 { |
| 128 | margin: 0; |
| 129 | overflow: hidden; |
| 130 | text-overflow: ellipsis; |
| 131 | white-space: nowrap; |
| 132 | font-size: 1rem; |
| 133 | line-height: 1.75rem; |
| 134 | font-weight: 600; |
| 135 | color: rgba(17, 24, 39, 1); |
| 136 | display: flex; |
| 137 | align-items: center; |
| 138 | gap: 0.5em; |
| 139 | color: var(--sc-color-gray-900); |
| 140 | } |
| 141 | |
| 142 | .sc-section-heading sc-icon { |
| 143 | font-size: 1.3rem; |
| 144 | } |
| 145 | |
| 146 | sc-icon { |
| 147 | width: 18px; |
| 148 | height: 18px; |
| 149 | } |
| 150 | |
| 151 | sc-tab, sc-icon, sc-breadcrumbs, sc-breadcrumb, sc-button, sc-card, sc-tag, sc-dashboard-module, sc-form { |
| 152 | visibility: hidden; |
| 153 | opacity: 0; |
| 154 | transition: opacity 0.2s ease-in-out; |
| 155 | } |
| 156 | sc-tab.hydrated, |
| 157 | sc-icon.hydrated, |
| 158 | sc-breadcrumbs.hydrated, |
| 159 | sc-breadcrumb.hydrated, |
| 160 | sc-button.hydrated, |
| 161 | sc-card.hydrated, |
| 162 | sc-tag.hydrated, |
| 163 | sc-dashboard-module.hydrated, |
| 164 | sc-form.hydrated { |
| 165 | visibility: inherit; |
| 166 | opacity: 1; |
| 167 | } |
| 168 | </style> |
| 169 |