1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-26 08:39:45 +02:00

Add project backgrounds

This commit is contained in:
Maksim Eltyshev 2020-05-26 00:46:04 +05:00
parent af4297ac62
commit 3bb68b0d4f
67 changed files with 774 additions and 210 deletions

View file

@ -22,7 +22,7 @@
}
.text {
background-color: #fff;
background: #fff;
border-radius: 0px 8px 8px;
box-shadow: 0 1px 2px -1px rgba(9, 30, 66, 0.25),
0 0 0 1px rgba(9, 30, 66, 0.08);

View file

@ -1,5 +1,5 @@
.divider {
background-color: #eee;
background: #eee;
border: 0;
height: 1px;
margin-bottom: 8px;

View file

@ -60,7 +60,7 @@ const Item = React.memo(
<div
className={styles.thumbnail}
style={{
backgroundImage: coverUrl && `url(${coverUrl}`,
background: coverUrl && `url("${coverUrl}") center / cover`,
}}
>
{coverUrl ? (

View file

@ -13,7 +13,7 @@
}
.button:hover {
background-color: rgba(9, 30, 66, 0.08) !important;
background: rgba(9, 30, 66, 0.08) !important;
}
.date {
@ -84,10 +84,7 @@
.thumbnail {
border-radius: 3px;
background-color: rgba(9, 30, 66, 0.04);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background: rgba(9, 30, 66, 0.04);
border-radius: 3px;
height: 80px;
left: 0;
@ -112,7 +109,7 @@
}
.wrapper:hover .details {
background-color: rgba(9, 30, 66, 0.04);
background: rgba(9, 30, 66, 0.04);
}
.wrapper:hover .target {
@ -120,5 +117,5 @@
}
.wrapperSubmitting {
background-color: rgba(9, 30, 66, 0.04);
background: rgba(9, 30, 66, 0.04);
}

View file

@ -100,7 +100,7 @@
}
.descriptionButton:hover {
background-color: rgba(9, 30, 66, 0.08);
background: rgba(9, 30, 66, 0.08);
color: #092d42;
}

View file

@ -13,7 +13,7 @@
}
.button:hover {
background-color: rgba(9, 30, 66, 0.08) !important;
background: rgba(9, 30, 66, 0.08) !important;
}
.checkboxWrapper {
@ -30,7 +30,7 @@
}
.content:hover {
background-color: rgba(9, 30, 66, 0.04);
background: rgba(9, 30, 66, 0.04);
}
.content:hover .target {

View file

@ -20,7 +20,7 @@
}
.taskButton:hover {
background-color: rgba(9, 30, 66, 0.04);
background: rgba(9, 30, 66, 0.04);
color: #092d42;
}