This commit is contained in:
Roman Pyrih
2025-09-30 11:05:54 +02:00
parent a4c8195a42
commit d82df51678
3 changed files with 62 additions and 17 deletions

View File

@@ -75,21 +75,9 @@ body {
align-items: center;
padding: 2px 0;
&.has_infocloud {
&::after {
content: 'Więcej informacji';
color: #ba2c2c;
font-family: 'Open Sans', sans-serif;
font-weight: 400;
font-size: 13px;
line-height: 1;
letter-spacing: 0;
text-decoration: underline;
text-decoration-style: solid;
text-decoration-offset: 0;
text-decoration-thickness: 0;
text-decoration-skip-ink: auto;
}
&::before,
&::after {
display: none;
}
label {
font-weight: 700;
@@ -97,6 +85,63 @@ body {
line-height: 1;
letter-spacing: 0;
text-transform: uppercase;
display: flex;
align-items: center;
p {
span {
color: #ba2c2c;
}
}
}
.tag-sale {
color: #fff;
font-family: 'Open Sans', sans-serif;
font-weight: 600;
font-size: 13px;
line-height: 1;
letter-spacing: 0;
display: inline-block;
padding: 5px 6px 6px;
margin-left: 7px;
border-radius: 6px;
background: #ba2c2c;
}
.infocloud-box {
&:hover {
.infocloud-text {
opacity: 1;
visibility: visible;
}
}
.infocloud-title {
color: #ba2c2c;
font-family: 'Open Sans', sans-serif;
font-weight: 400;
font-size: 13px;
line-height: 1;
letter-spacing: 0;
text-decoration: underline;
}
.infocloud-text {
position: absolute;
top: 20px;
left: 0px;
min-width: 330px;
background: #f3f3f3;
padding: 10px 15px;
border-radius: 10px;
box-sizing: border-box;
border: solid 1px #bdbdbd;
transition: all 0.2s ease;
opacity: 0;
visibility: hidden;
z-index: 1;
}
}
}
> .stock-options {