See description

- Made paste button disabled if the clipboard is empty
- Rework main page of the SAS, thus commented block to manage albums as there is currently no possibility to delete them from this page
This commit is contained in:
Julien Constant
2023-03-08 02:04:18 +01:00
parent 238d41b84c
commit f8903cbdca
3 changed files with 106 additions and 52 deletions

View File

@ -27,6 +27,11 @@
&:hover {
background-color: #d4d4d4;
}
&:disabled {
background-color: #f2f2f2;
color: #d4d4d4;
}
}
}
@ -144,6 +149,8 @@
padding: 0;
box-shadow: none;
border: 1px solid rgba(0, 0, 0, .3);
@media (max-width: 500px) {
width: 100%;
}
@ -162,7 +169,7 @@
color: white;
&:hover {
background: rgba(0, 0, 0, .7);
background: rgba(0, 0, 0, .5);
}
}
@ -192,8 +199,8 @@
}
> .album > div {
background: rgba(0, 0, 0, .3);
background: linear-gradient(0deg, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, 0) 100%);
background: rgba(0, 0, 0, .5);
background: linear-gradient(0deg, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, 0) 100%);
text-align: left;
word-break: break-word;
}