1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-19 05:09:43 +02:00

Transparent color scheme, preparing for custom backgrounds

This commit is contained in:
Maksim Eltyshev 2020-05-22 16:59:22 +05:00
parent 3a1929efba
commit 67dd13a11c
6 changed files with 25 additions and 16 deletions

View file

@ -1,11 +1,11 @@
.addListButton { .addListButton {
background-color: rgba(0, 0, 0, 0.12); background: hsla(0, 0%, 0%, 0.24);
border: none; border: none;
border-radius: 3px; border-radius: 3px;
color: hsla(0, 0%, 100%, 0.7); color: hsla(0, 0%, 100%, 0.72);
cursor: pointer; cursor: pointer;
display: block; display: block;
fill: hsla(0, 0%, 100%, 0.7); fill: hsla(0, 0%, 100%, 0.72);
font-weight: normal; font-weight: normal;
height: 42px; height: 42px;
padding: 11px; padding: 11px;
@ -20,7 +20,7 @@
} }
.addListButton:hover { .addListButton:hover {
background-color: rgba(0, 0, 0, 0.3); background: hsla(0, 0%, 0%, 0.32);
} }
.addListButtonIcon { .addListButtonIcon {

View file

@ -23,7 +23,7 @@
} }
.filterLabel { .filterLabel {
background: #2d3034; background: hsla(0, 0%, 0%, 0.24);
border-radius: 3px; border-radius: 3px;
color: #fff; color: #fff;
display: inline-block; display: inline-block;
@ -33,7 +33,7 @@
} }
.filterLabel:hover { .filterLabel:hover {
opacity: 0.75; background: hsla(0, 0%, 0%, 0.32);
} }
.filterTitle { .filterTitle {

View file

@ -11,6 +11,7 @@
.editButton { .editButton {
background: transparent !important; background: transparent !important;
box-shadow: none !important;
color: #fff !important; color: #fff !important;
line-height: 32px !important; line-height: 32px !important;
margin-right: 0 !important; margin-right: 0 !important;
@ -23,7 +24,7 @@
} }
.editButton:hover { .editButton:hover {
background: rgba(34, 36, 38, 0.3) !important; background: hsla(0, 0%, 100%, 0.08) !important;
} }
.link { .link {
@ -44,7 +45,7 @@
} }
.tab:hover { .tab:hover {
background: #353a3f !important; background: hsla(0, 0%, 0%, 0.24) !important;
} }
.tab:hover .target { .tab:hover .target {
@ -52,11 +53,11 @@
} }
.tabActive { .tabActive {
background: #2c3035 !important; background: hsla(0, 0%, 0%, 0.24) !important;
} }
.tabActive:hover { .tabActive:hover {
background: #353a3f !important; background: hsla(0, 0%, 0%, 0.32) !important;
} }
.tabWrapper { .tabWrapper {
@ -65,7 +66,7 @@
} }
.tabs { .tabs {
border-bottom: 2px solid #2c3035; border-bottom: 2px solid hsla(0, 0%, 0%, 0.24);
display: flex; display: flex;
height: 38px; height: 38px;
flex: 0 0 auto; flex: 0 0 auto;

View file

@ -2,8 +2,11 @@
background: none !important; background: none !important;
} }
.item:hover {
background: hsla(0, 0%, 0%, 0.32) !important;
}
.logo { .logo {
background: #2d3035;
color: #fff !important; color: #fff !important;
flex: 0 0 auto; flex: 0 0 auto;
font-size: 20px; font-size: 20px;
@ -20,7 +23,7 @@
} }
.menu { .menu {
background: #2d3035 !important; background: transparent !important;
border: none !important; border: none !important;
border-radius: 0 !important; border-radius: 0 !important;
box-shadow: none !important; box-shadow: none !important;
@ -49,6 +52,7 @@
} }
.wrapper { .wrapper {
background: hsla(0, 0%, 0%, 0.24);
display: flex; display: flex;
flex: 0 0 auto; flex: 0 0 auto;
} }

View file

@ -108,6 +108,7 @@
max-height: calc(100vh - 300px); max-height: calc(100vh - 300px);
overflow-x: hidden; overflow-x: hidden;
overflow-y: auto; overflow-y: auto;
scrollbar-width: thin;
width: 290px; width: 290px;
} }

View file

@ -1,6 +1,7 @@
.addUser { .addUser {
background: #2c3035 !important; background: hsla(0, 0%, 0%, 0.24) !important;
border-radius: 50% !important; border-radius: 50% !important;
box-shadow: none !important;
color: #fff !important; color: #fff !important;
line-height: 36px !important; line-height: 36px !important;
margin: 0 !important; margin: 0 !important;
@ -11,7 +12,7 @@
} }
.addUser:hover { .addUser:hover {
background: #4b4f53; background: hsla(0, 0%, 0%, 0.32) !important;
} }
.header { .header {
@ -21,6 +22,7 @@
.name { .name {
background: transparent !important; background: transparent !important;
box-shadow: none !important;
color: #fff !important; color: #fff !important;
display: inline-block !important; display: inline-block !important;
font-size: 32px !important; font-size: 32px !important;
@ -44,8 +46,9 @@
} }
.wrapper { .wrapper {
background: hsla(0, 0%, 0%, 0.08);
display: flex; display: flex;
flex-direction: column; flex-direction: column;
height: 100%; height: 100%;
margin: 0 20px; padding: 0 20px;
} }