Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions content/_assets/styles/components/q-lightbox-slides.scss
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,13 @@
opacity: 1;
display: block;
transition: transform 0s, opacity 0.4s linear;

img.q-figure__image {
max-width: 100%;
max-height: 100%;
width: auto;
height: auto;
}
}
}

Expand Down
36 changes: 30 additions & 6 deletions content/_assets/styles/components/quire-page.scss
Original file line number Diff line number Diff line change
Expand Up @@ -599,8 +599,16 @@ html {

// Download link defaults
.quire-download__link {
color: if($theme == classic,$black,$accent-color);
fill: if($theme == classic,$black,$accent-color);
@if $theme == classic {
color: $black;
} @else {
color: $accent-color;
}
@if $theme == classic {
fill: $black;
} @else {
fill: $accent-color;
}
font-size: 0.875rem;

span {
Expand All @@ -620,8 +628,16 @@ html {
margin: 1.5rem auto 0;

&:hover {
color: if($theme == classic,$accent-color,link-hover-color($secondary-background-color));
fill: if($theme == classic,$accent-color,link-hover-color($secondary-background-color));
@if $theme == classic {
color: $accent-color;
} @else {
color: link-hover-color($secondary-background-color);
};
@if $theme == classic {
fill: $accent-color;
} @else {
fill: link-hover-color($secondary-background-color);
};
}
.quire-download__link__icon {
height: 1rem;
Expand Down Expand Up @@ -656,8 +672,16 @@ html {

.quire-download__link {
&:hover {
color: if($theme == classic,$accent-color,link-hover-color($content-background-color));
fill: if($theme == classic,$accent-color,link-hover-color($content-background-color));
@if $theme == classic {
color: $accent-color;
} @else {
color: link-hover-color($content-background-color);
};
@if $theme == classic {
fill: $accent-color;
} @else {
fill: link-hover-color($content-background-color);
};
}
.quire-download__link__icon {
height: 0.875rem;
Expand Down