koel/resources/assets/sass/partials/_mixins.scss

290 lines
5.1 KiB
SCSS
Raw Normal View History

2022-04-15 14:24:30 +00:00
@mixin vertical-center() {
display: flex;
align-items: center;
justify-content: center;
}
@mixin artist-album-wrapper() {
display: grid !important;
2022-07-07 21:24:02 +00:00
gap: 16px;
2022-04-15 14:24:30 +00:00
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
&.as-list {
2022-07-07 21:24:02 +00:00
gap: 0.7em 1em;;
2022-04-15 14:24:30 +00:00
align-content: start;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
2022-06-10 10:47:46 +00:00
@media only screen and (max-width: 667px) {
2022-04-15 14:24:30 +00:00
display: block;
> * + * {
margin-top: .7rem;
}
}
}
}
@mixin artist-album-card() {
.item {
position: relative;
max-width: 256px;
background: var(--color-bg-secondary);
border: 1px solid var(--color-bg-secondary);
padding: 16px;
border-radius: 8px;
display: flex;
flex-direction: column;
gap: 1.5rem;
2022-04-15 14:24:30 +00:00
@media only screen and (max-width: 768px) {
max-width: 100%;
}
&:focus, &:focus-within {
box-shadow: 0 0 1px 1px var(--color-accent);
}
2022-04-15 14:24:30 +00:00
&:hover .right, &:focus-within .right {
display: flex !important;
2022-04-15 14:24:30 +00:00
}
&.compact {
gap: 1rem;
2022-04-15 14:24:30 +00:00
flex-direction: row;
align-items: center;
2022-04-15 14:24:30 +00:00
max-width: 100%;
padding: 10px;
border-radius: 5px;
2022-04-15 14:24:30 +00:00
2022-07-22 14:25:30 +00:00
.cover {
2022-04-15 14:24:30 +00:00
width: 80px;
border-radius: 5px;
2022-04-15 14:24:30 +00:00
}
}
footer {
flex: 1;
overflow: hidden;
display: flex;
flex-direction: column;
gap: .4rem;
2022-04-15 14:24:30 +00:00
}
.name {
font-weight: var(--font-weight-normal);
}
.meta {
color: var(--color-text-secondary);
font-size: .9rem;
display: flex;
gap: .3rem;
opacity: .7;
2022-04-15 14:24:30 +00:00
a {
border-radius: 3px;
& + a {
&::before {
content: '';
margin-right: .2rem;
color: var(--color-text-secondary);
font-weight: unset;
}
}
}
&:hover {
opacity: 1;
2022-04-15 14:24:30 +00:00
}
}
a.name, a.artist {
display: block;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
&:link, &:visited {
color: var(--color-text-primary);
}
&:focus, &:hover {
color: var(--color-accent);
2022-04-15 14:24:30 +00:00
}
}
.info {
.compact & {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
}
}
@mixin artist-album-info-wrapper() {
.loading {
@include vertical-center();
height: 100%;
}
.info-wrapper {
color: var(--color-text-secondary);
position: absolute;
top: 0;
left: 0;
background: var(--color-bg-primary);
width: 100%;
height: 100%;
z-index: 2;
.inner {
overflow: auto;
height: 100%;
padding: 24px 24px 48px;
@media only screen and (max-width: 768px) {
padding: 16px;
}
}
.close-modal {
display: none;
}
&:hover {
.close-modal {
display: block;
}
}
2022-04-15 14:24:30 +00:00
}
}
@mixin artist-album-info() {
color: var(--color-text-secondary);
2022-04-15 14:24:30 +00:00
h1 {
2022-06-10 10:47:46 +00:00
@include vertical-center();
2022-04-15 14:24:30 +00:00
font-weight: var(--font-weight-thin);
line-height: 2.8rem;
margin-bottom: 16px;
2022-04-15 14:24:30 +00:00
&.name {
font-size: 2rem;
margin-bottom: 2rem;
2022-04-15 14:24:30 +00:00
}
span {
flex: 1;
margin-right: 12px;
}
a {
font-size: 14px;
&:hover {
color: var(--color-highlight);
}
}
}
.bio, .wiki {
margin: 16px 0;
2022-04-15 14:24:30 +00:00
}
.more {
margin-top: .75rem;
border-radius: .23rem;
background: var(--color-blue);
color: var(--color-text-primary);
padding: .3rem .6rem;
display: inline-block;
text-transform: uppercase;
font-size: .8rem;
}
.cover, .cool-guys-posing {
2022-04-15 14:24:30 +00:00
width: 100%;
height: auto;
display: block;
border-radius: 8px;
overflow: hidden;
2022-04-15 14:24:30 +00:00
}
footer {
margin-top: 24px;
font-size: .9rem;
text-align: right;
a {
color: var(--color-text-primary);
font-weight: var(--font-weight-normal);
&:hover {
color: var(--color-text-secondary);
}
}
}
&.full {
.cover {
width: 300px;
max-width: 100%;
float: left;
margin: 0 16px 16px 0;
}
.bio, .wiki {
margin-top: 0;
}
2022-04-15 14:24:30 +00:00
h1.name {
font-size: 2.4rem;
a.shuffle {
display: none;
}
}
}
}
@mixin inset-when-pressed() {
&:active {
box-shadow: inset 0px 10px 10px -10px rgba(0, 0, 0, .6);
2022-04-15 14:24:30 +00:00
}
}
@mixin context-menu() {
padding: .4rem 0;
min-width: 144px;
background-color: var(--color-bg-primary);
position: fixed;
border-radius: 4px;
display: flex;
justify-content: center;
flex-direction: column;
z-index: 1001;
align-items: stretch;
text-align: left;
box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.3), 0 2px 15px 4px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.1);
2022-04-15 14:24:30 +00:00
input[type="search"], input[type="text"], input[type="email"], input[type="url"] {
background: var(--color-text-primary);
&:focus {
background: var(--color-text-primary);
}
}
}
@mixin themed-background() {
background-color: var(--color-bg-primary);
background-image: var(--bg-image);
background-attachment: var(--bg-attachment);
background-size: var(--bg-size);
background-position: var(--bg-position);
}