1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-29 01:59:42 +02:00
planka/client/src/components/Board/Board.module.css

53 lines
828 B
CSS
Raw Normal View History

2019-08-31 04:07:25 +05:00
.addListButton {
2020-05-26 00:46:04 +05:00
background: rgba(0, 0, 0, 0.24);
2019-08-31 04:07:25 +05:00
border: none;
border-radius: 3px;
2020-05-26 00:46:04 +05:00
color: rgba(255, 255, 255, 0.72);
2019-08-31 04:07:25 +05:00
cursor: pointer;
display: block;
2020-05-26 00:46:04 +05:00
fill: rgba(255, 255, 255, 0.72);
2019-08-31 04:07:25 +05:00
font-weight: normal;
height: 42px;
padding: 11px;
text-align: left;
transition: background 85ms ease-in, opacity 40ms ease-in,
border-color 85ms ease-in;
width: 100%;
}
.addListButton:active {
outline: none;
}
.addListButton:hover {
2020-05-26 00:46:04 +05:00
background: rgba(0, 0, 0, 0.32);
2019-08-31 04:07:25 +05:00
}
.addListButtonIcon {
height: 20px;
padding: 0.64px;
width: 20px;
}
.addListButtonText {
display: inline-block;
font-size: 14px;
line-height: 20px;
vertical-align: top;
}
.list {
margin: 0 20px 0 4px;
width: 272px;
}
.lists {
display: inline-flex;
height: 100%;
min-width: 100%;
}
.wrapper {
margin: 0 20px;
2019-08-31 04:07:25 +05:00
}