jquery-ui
5 years ago
photoswipe
5 years ago
_animation.scss
3 years ago
_fonts.scss
3 years ago
_mixins.scss
3 years ago
_variables.scss
2 years ago
activation-rtl.css
2 years ago
activation.css
2 years ago
activation.scss
2 years ago
admin-rtl.css
2 years ago
admin.css
2 years ago
admin.scss
2 years ago
auth-rtl.css
2 years ago
auth.css
2 years ago
auth.scss
2 years ago
dashboard-rtl.css
2 years ago
dashboard-setup-rtl.css
4 years ago
dashboard-setup.css
4 years ago
dashboard-setup.scss
3 years ago
dashboard.css
2 years ago
dashboard.scss
3 years ago
helper-rtl.css
2 years ago
helper.css
2 years ago
helper.scss
2 years ago
marketplace-suggestions-rtl.css
2 years ago
marketplace-suggestions.css
2 years ago
marketplace-suggestions.scss
3 years ago
menu-rtl.css
2 years ago
menu.css
2 years ago
menu.scss
2 years ago
network-order-widget-rtl.css
4 years ago
network-order-widget.css
4 years ago
network-order-widget.scss
3 years ago
prettyPhoto-rtl.css
2 years ago
prettyPhoto.css
2 years ago
prettyPhoto.scss
3 years ago
privacy-rtl.css
6 years ago
privacy.css
6 years ago
privacy.scss
3 years ago
reports-print-rtl.css
3 years ago
reports-print.css
3 years ago
reports-print.scss
3 years ago
select2.css
3 years ago
select2.scss
3 years ago
twenty-nineteen-rtl.css
3 years ago
twenty-nineteen.css
3 years ago
twenty-nineteen.scss
3 years ago
twenty-seventeen-rtl.css
3 years ago
twenty-seventeen.css
3 years ago
twenty-seventeen.scss
3 years ago
twenty-twenty-one-admin-rtl.css
2 years ago
twenty-twenty-one-admin.css
2 years ago
twenty-twenty-one-admin.scss
2 years ago
twenty-twenty-one-rtl.css
2 years ago
twenty-twenty-one.css
2 years ago
twenty-twenty-one.scss
3 years ago
twenty-twenty-rtl.css
2 years ago
twenty-twenty-three-rtl.css
2 years ago
twenty-twenty-three.css
2 years ago
twenty-twenty-three.scss
2 years ago
twenty-twenty-two-rtl.css
2 years ago
twenty-twenty-two.css
2 years ago
twenty-twenty-two.scss
2 years ago
twenty-twenty.css
2 years ago
twenty-twenty.scss
2 years ago
wc-setup-rtl.css
2 years ago
wc-setup.css
2 years ago
wc-setup.scss
2 years ago
woocommerce-blocktheme-rtl.css
2 years ago
woocommerce-blocktheme.css
2 years ago
woocommerce-blocktheme.scss
2 years ago
woocommerce-layout-rtl.css
2 years ago
woocommerce-layout.css
2 years ago
woocommerce-layout.scss
2 years ago
woocommerce-rtl.css
2 years ago
woocommerce-smallscreen-rtl.css
2 years ago
woocommerce-smallscreen.css
2 years ago
woocommerce-smallscreen.scss
3 years ago
woocommerce.css
2 years ago
woocommerce.scss
2 years ago
menu.scss
191 lines
| 1 | /** |
| 2 | * menu.scss |
| 3 | * Styles applied to dashboard menu items added via WooCommerce. |
| 4 | * Adds icons to top level menu items, etc. |
| 5 | */ |
| 6 | |
| 7 | /** |
| 8 | * Imports |
| 9 | */ |
| 10 | @import "mixins"; |
| 11 | @import "variables"; |
| 12 | @import "fonts"; |
| 13 | |
| 14 | /** |
| 15 | * Styling begins |
| 16 | */ |
| 17 | span.mce_woocommerce_shortcodes_button { |
| 18 | background-image: none !important; |
| 19 | |
| 20 | @include ir(); |
| 21 | |
| 22 | &::before { |
| 23 | |
| 24 | @include icon("\e01d"); |
| 25 | font-size: 0.9em; |
| 26 | line-height: 1.2; |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | #woocommerce-update { |
| 31 | |
| 32 | .updating-message { |
| 33 | |
| 34 | .wc_plugin_upgrade_notice { |
| 35 | display: none; |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | .dummy { |
| 40 | display: none; |
| 41 | } |
| 42 | |
| 43 | .wc_plugin_upgrade_notice { |
| 44 | font-weight: normal; |
| 45 | background: #fff8e5 !important; |
| 46 | border-left: 4px solid #ffb900; |
| 47 | border-top: 1px solid #ffb900; |
| 48 | padding: 9px 0 9px 12px !important; |
| 49 | margin: 0 -12px 0 -16px !important; |
| 50 | |
| 51 | &::before { |
| 52 | content: "\f348"; |
| 53 | display: inline-block; |
| 54 | font: 400 18px/1 dashicons; |
| 55 | speak: never; |
| 56 | margin: 0 8px 0 -2px; |
| 57 | vertical-align: top; |
| 58 | } |
| 59 | |
| 60 | &.minor, |
| 61 | &.major { |
| 62 | padding: 20px 0 !important; |
| 63 | |
| 64 | &::before { |
| 65 | display: none; |
| 66 | } |
| 67 | |
| 68 | p { |
| 69 | padding: 0 20px; |
| 70 | margin: 0; |
| 71 | max-width: 700px; |
| 72 | line-height: 1.5em; |
| 73 | |
| 74 | &::before { |
| 75 | content: ""; |
| 76 | display: none; |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | table.plugin-details-table { |
| 81 | margin: 0.75em 0 0; |
| 82 | |
| 83 | tr { |
| 84 | background: transparent none !important; |
| 85 | border: 0 !important; |
| 86 | } |
| 87 | |
| 88 | th, |
| 89 | td { |
| 90 | background: transparent none !important; |
| 91 | margin: 0; |
| 92 | padding: 0.75em 20px 0; |
| 93 | border: 0 !important; |
| 94 | font-size: 1em; |
| 95 | box-shadow: none; |
| 96 | } |
| 97 | |
| 98 | th { |
| 99 | font-weight: bold; |
| 100 | } |
| 101 | } |
| 102 | } |
| 103 | } |
| 104 | } |
| 105 | |
| 106 | #wc_untested_extensions_modal { |
| 107 | display: none; |
| 108 | } |
| 109 | |
| 110 | .wc_untested_extensions_modal_container { |
| 111 | border-radius: 4px; |
| 112 | padding: 0; |
| 113 | |
| 114 | #TB_closeAjaxWindow { |
| 115 | display: none; |
| 116 | } |
| 117 | |
| 118 | #TB_title { |
| 119 | display: none; |
| 120 | } |
| 121 | |
| 122 | #TB_ajaxContent { |
| 123 | height: 100% !important; |
| 124 | padding: 0; |
| 125 | margin: 0; |
| 126 | width: 100% !important; |
| 127 | |
| 128 | p { |
| 129 | margin: 0 0 1em; |
| 130 | } |
| 131 | } |
| 132 | } |
| 133 | |
| 134 | .wc_untested_extensions_modal--content { |
| 135 | |
| 136 | h1 { |
| 137 | margin: 2px 2px 0.5em; |
| 138 | padding: 0.75em 1.154em; |
| 139 | line-height: 1.5em; |
| 140 | font-size: 1.6em; |
| 141 | border-bottom: 1px solid #eee; |
| 142 | background: #e9e9e9; |
| 143 | border-top-left-radius: 4px; |
| 144 | border-top-right-radius: 4px; |
| 145 | text-shadow: none; |
| 146 | } |
| 147 | |
| 148 | .extensions_warning { |
| 149 | padding: 0 2em; |
| 150 | } |
| 151 | |
| 152 | .plugin-details-table-container { |
| 153 | max-height: 40vh; |
| 154 | overflow-y: auto; |
| 155 | } |
| 156 | |
| 157 | table.plugin-details-table { |
| 158 | margin: 20px 0; |
| 159 | |
| 160 | th, |
| 161 | td { |
| 162 | background: transparent none !important; |
| 163 | margin: 0; |
| 164 | padding: 0.75em 20px 0; |
| 165 | border: 0 !important; |
| 166 | font-size: 1em; |
| 167 | box-shadow: none; |
| 168 | } |
| 169 | |
| 170 | th { |
| 171 | font-weight: bold; |
| 172 | margin-top: 0; |
| 173 | } |
| 174 | } |
| 175 | |
| 176 | .actions { |
| 177 | border-top: 1px solid #eee; |
| 178 | margin: 0; |
| 179 | padding: 1em 0 2em 0; |
| 180 | overflow: hidden; |
| 181 | |
| 182 | .woocommerce-actions { |
| 183 | display: inline-block; |
| 184 | } |
| 185 | |
| 186 | a.button-primary { |
| 187 | float: right; |
| 188 | } |
| 189 | } |
| 190 | } |
| 191 |