/home/suroeste/public_html/wp-content/plugins/woocommerce/assets/css
NameSizeModeActions
jquery-ui/-0755rm
photoswipe/-0755rm
activation-rtl.css9810644editdlrm
activation.css9800644editdlrm
activation.scss8930644editdlrm
admin-rtl.css3401330644editdlrm
admin.css3400130644editdlrm
admin.scss1332240644editdlrm
auth-rtl.css24450644editdlrm
auth.css24450644editdlrm
auth.scss20710644editdlrm
dashboard-rtl.css49220644editdlrm
dashboard-setup-rtl.css6610644editdlrm
dashboard-setup.css6600644editdlrm
dashboard-setup.scss7360644editdlrm
dashboard.css49190644editdlrm
dashboard.scss39520644editdlrm
helper-rtl.css168840644editdlrm
helper.css168840644editdlrm
helper.scss169140644editdlrm
marketplace-suggestions-rtl.css211070644editdlrm
marketplace-suggestions.css211080644editdlrm
marketplace-suggestions.scss87450644editdlrm
menu-rtl.css48190644editdlrm
menu.css48180644editdlrm
menu.scss28030644editdlrm
network-order-widget-rtl.css23760644editdlrm
network-order-widget.css23760644editdlrm
network-order-widget.scss14910644editdlrm
prettyPhoto-rtl.css90790644editdlrm
prettyPhoto.css90620644editdlrm
prettyPhoto.scss80280644editdlrm
privacy-rtl.css16460644editdlrm
privacy.css16450644editdlrm
privacy.scss20310644editdlrm
reports-print-rtl.css12750644editdlrm
reports-print.css12720644editdlrm
reports-print.scss15500644editdlrm
select2.css145520644editdlrm
select2.scss174790644editdlrm
twenty-nineteen-rtl.css207050644editdlrm
twenty-nineteen.css207010644editdlrm
twenty-nineteen.scss186910644editdlrm
twenty-seventeen-rtl.css187620644editdlrm
twenty-seventeen.css187550644editdlrm
twenty-seventeen.scss170360644editdlrm
twenty-twenty-one-admin-rtl.css1070644editdlrm
twenty-twenty-one-admin.css1070644editdlrm
twenty-twenty-one-admin.scss1720644editdlrm
twenty-twenty-one-rtl.css540300644editdlrm
twenty-twenty-one.css540190644editdlrm
twenty-twenty-one.scss434340644editdlrm
twenty-twenty-rtl.css409680644editdlrm
twenty-twenty-three-rtl.css286490644editdlrm
twenty-twenty-three.css286250644editdlrm
twenty-twenty-three.scss203830644editdlrm
twenty-twenty-two-rtl.css333100644editdlrm
twenty-twenty-two.css332880644editdlrm
twenty-twenty-two.scss208220644editdlrm
twenty-twenty.css409550644editdlrm
twenty-twenty.scss329930644editdlrm
wc-setup-rtl.css295100644editdlrm
wc-setup.css294950644editdlrm
wc-setup.scss246520644editdlrm
woocommerce-blocktheme-rtl.css89690644editdlrm
woocommerce-blocktheme.css89740644editdlrm
woocommerce-blocktheme.scss94270644editdlrm
woocommerce-layout-rtl.css176910644editdlrm
woocommerce-layout.css176880644editdlrm
woocommerce-layout.scss79000644editdlrm
woocommerce-rtl.css780230644editdlrm
woocommerce-smallscreen-rtl.css70460644editdlrm
woocommerce-smallscreen.css70430644editdlrm
woocommerce-smallscreen.scss30340644editdlrm
woocommerce.css779800644editdlrm
woocommerce.scss376830644editdlrm
_animation.scss1230644editdlrm
_fonts.scss5600644editdlrm
_mixins.scss54300644editdlrm
_variables.scss14730644editdlrm
Edit: /home/suroeste/public_html/wp-content/plugins/woocommerce/assets/css/_mixins.scss (5430B)
/** * Deprecated * Fallback for bourbon equivalent */ @mixin clearfix() { *zoom: 1; &::before, &::after { content: " "; display: table; } &::after { clear: both; } } /** * Deprecated * Vendor prefix no longer required. */ @mixin border_radius($radius: 4px) { border-radius: $radius; } /** * Deprecated * Vendor prefix no longer required. */ @mixin border_radius_right($radius: 4px) { border-top-right-radius: $radius; border-bottom-right-radius: $radius; } /** * Deprecated * Vendor prefix no longer required. */ @mixin border_radius_left($radius: 4px) { border-top-left-radius: $radius; border-bottom-left-radius: $radius; } /** * Deprecated * Vendor prefix no longer required. */ @mixin border_radius_bottom($radius: 4px) { border-bottom-left-radius: $radius; border-bottom-right-radius: $radius; } /** * Deprecated * Vendor prefix no longer required. */ @mixin border_radius_top($radius: 4px) { border-top-left-radius: $radius; border-top-right-radius: $radius; } /** * Deprecated * Vendor prefix no longer required. */ @mixin opacity( $opacity: 0.75 ) { opacity: $opacity; } /** * Deprecated * Vendor prefix no longer required. */ @mixin box_shadow($shadow_x: 3px, $shadow_y: 3px, $shadow_rad: 3px, $shadow_in: 3px, $shadow_color: #888) { box-shadow: $shadow_x $shadow_y $shadow_rad $shadow_in $shadow_color; } /** * Deprecated * Vendor prefix no longer required. */ @mixin inset_box_shadow($shadow_x: 3px, $shadow_y: 3px, $shadow_rad: 3px, $shadow_in: 3px, $shadow_color: #888) { box-shadow: inset $shadow_x $shadow_y $shadow_rad $shadow_in $shadow_color; } /** * Deprecated * Vendor prefix no longer required. */ @mixin text_shadow($shadow_x: 3px, $shadow_y: 3px, $shadow_rad: 3px, $shadow_color: #fff) { text-shadow: $shadow_x $shadow_y $shadow_rad $shadow_color; } /** * Deprecated * Vendor prefix no longer required. */ @mixin vertical_gradient($from: #000, $to: #fff) { background-color: $from; background: -webkit-linear-gradient($from, $to); } /** * Deprecated * Vendor prefix no longer required. */ @mixin transition($selector: all, $animation: ease-in-out, $duration: 0.2s) { transition: $selector $animation $duration; } /** * Deprecated * Use bourbon mixin instead `@include transform(scale(1.5));` */ @mixin scale($ratio: 1.5) { -webkit-transform: scale($ratio); transform: scale($ratio); } /** * Deprecated * Use bourbon mixin instead `@include box-sizing(border-box);` */ @mixin borderbox() { box-sizing: border-box; } @mixin darkorlighttextshadow($a, $opacity: 0.8) { @if lightness($a) >= 65% { @include text_shadow(0, -1px, 0, rgba(0, 0, 0, $opacity)); } @else { @include text_shadow(0, 1px, 0, rgba(255, 255, 255, $opacity)); } } /** * Objects */ @mixin menu() { @include clearfix(); li { display: inline-block; } } @mixin mediaright() { @include clearfix(); img { float: right; height: auto; } } @mixin medialeft() { @include clearfix(); img { float: right; height: auto; } } @mixin ir() { display: block; text-indent: -9999px; position: relative; height: 1em; width: 1em; } @mixin icon( $glyph: "\e001" ) { font-family: "WooCommerce"; speak: never; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; margin: 0; text-indent: 0; position: absolute; top: 0; left: 0; width: 100%; height: 100%; text-align: center; content: $glyph; } @mixin icon_dashicons( $glyph: "\f333" ) { font-family: "Dashicons"; speak: never; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; -webkit-font-smoothing: antialiased; margin: 0; text-indent: 0; position: absolute; top: 0; left: 0; width: 100%; height: 100%; text-align: center; content: $glyph; } @mixin iconbefore( $glyph: "\e001" ) { font-family: "WooCommerce"; speak: never; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; -webkit-font-smoothing: antialiased; margin-right: 0.618em; content: $glyph; text-decoration: none; } @mixin iconbeforedashicons( $glyph: "\f333" ) { font-family: "Dashicons"; speak: never; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; -webkit-font-smoothing: antialiased; content: $glyph; text-decoration: none; } @mixin iconafter( $glyph: "\e001" ) { font-family: "WooCommerce"; speak: never; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; -webkit-font-smoothing: antialiased; margin-left: 0.618em; content: $glyph; text-decoration: none; } @mixin loader() { &::before { height: 1em; width: 1em; display: block; position: absolute; top: 50%; left: 50%; margin-left: -0.5em; margin-top: -0.5em; content: ""; animation: spin 1s ease-in-out infinite; background: url("../images/icons/loader.svg") center center; background-size: cover; line-height: 1; text-align: center; font-size: 2em; color: rgba(#000, 0.75); } } @mixin inversebuttoncolors { background-color: transparent !important; color: var(--button--color-text-hover) !important; &:hover { background-color: var(--button--color-background) !important; color: var(--button--color-text) !important; text-decoration: none !important; } } @mixin table-marks() { mark { background: transparent none; } mark.yes { color: var(--wc-green); } mark.no { color: #999; } }