playing with tab styles

This commit is contained in:
sawka 2024-02-29 09:37:14 -08:00
parent 65fe908649
commit 8a92ea1857
2 changed files with 15 additions and 19 deletions

View File

@ -106,7 +106,7 @@
img {
filter: grayscale(1);
opacity: 0.2;
transition: filter 0.5s ease-in-out, opacity 0.5s ease-in-out;
transition: filter 1.5s ease-in-out, opacity 1.5s ease-in-out;
max-width: 200px;
}
}

View File

@ -102,13 +102,21 @@
// This applies a transparency mask to the background color, as set above, so that it will blend with whatever the theme's background color is.
z-index: 1;
width: var(--screen-tab-width);
mask-image: linear-gradient(
rgba(0, 0, 0, 1),
rgba(0, 0, 0, 0.7) 15%,
rgba(0, 0, 0, 0.5) 30%,
rgba(0, 0, 0, 0) 100%
);
mask-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0) 100%);
}
&.is-active {
border-top: 2px solid var(--tab-green);
opacity: 1;
font-weight: var(--screentabs-selected-font-weight);
}
&.is-archived {
.fa.fa-archive {
margin-right: 4px;
}
}
.screen-tab-inner {
display: flex;
flex-direction: row;
@ -127,18 +135,6 @@
flex-grow: 1;
}
&.is-active {
border-top: none;
opacity: 1;
font-weight: var(--screentabs-selected-font-weight);
}
&.is-archived {
.fa.fa-archive {
margin-right: 4px;
}
}
// Only one of these will be visible at a time
.end-icons {
// This adjusts the position of the icon to account for the default 8px margin on the parent. We want the positional calculations for this icon to assume it is flush with the edge of the screen tab.