| Server IP : 85.158.181.41 / Your IP : 216.73.217.12 Web Server : Apache System : Linux cloud9-vm129 6.1.178+1-ph #ph SMP PREEMPT_DYNAMIC Wed Jul 29 09:00:54 UTC 2026 x86_64 User : moncbefd ( 1024) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/moncbefd/www.moneta.at/themes/Honeygrid_preview/styles/system/modules/ |
Upload File : |
/* Ribbons
========================================================================== */
.ribbons {
// positioning
position: absolute;
right: -30px;
top: 0px;
// general ribbon style
> div {
height: 20px;
width: 40px;
text-align: center;
display: table-cell;
vertical-align: middle;
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
border-right: 1px solid #FFFFFF;
padding-top: 2px;
&:last-of-type {
border-right: 0;
}
&.ribbon-sold-out {
width: 70px;
}
}
// ribbon styles
@mixin ribbon-style($title, $code, $active, $bgcolor, $color) {
> .ribbon-#{$title} {
@if $active == false {
display: none;
}
background: $bgcolor;
color: $color;
}
}
@include ribbon-style("new", "\e814", $gx-ribbon-new-active, $gx-ribbon-new-bg, $gx-ribbon-new-color);
@include ribbon-style("special", "\e817", $gx-ribbon-special-active, $gx-ribbon-special-bg, $gx-ribbon-special-color);
@include ribbon-style("available", "\e817", $gx-ribbon-available-active, $gx-ribbon-available-bg, $gx-ribbon-available-color);
@include ribbon-style("recommendation", "\e817", $gx-ribbon-recommendation-active, $gx-ribbon-recommendation-bg, $gx-ribbon-recommendation-color);
@include ribbon-style("sold-out", "\e817", $gx-ribbon-sold-out-active, $gx-ribbon-sold-out-bg, $gx-ribbon-sold-out-color);
// positioning on product listing as list
.productlist-viewmode-list & {
left: 0;
right: auto;
top: 0;
}
// positioning on product-info page
.product-info-details & {
right: 15px;
top: 15px;
}
}