1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-21 14:19:44 +02:00
planka/client/src/components/List/List.module.css

143 lines
2.8 KiB
CSS
Raw Normal View History

2019-08-31 04:07:25 +05:00
.addCardButton {
background: #dfe3e6 !important;
2019-08-31 04:07:25 +05:00
border: none !important;
border-radius: 0 0 3px 3px !important;
2019-08-31 04:07:25 +05:00
color: #6b808c !important;
cursor: pointer;
display: block !important;
fill: #6b808c !important;
flex: 0 0 auto;
font-weight: normal !important;
height: 36px !important;
outline: none !important;
2019-08-31 04:07:25 +05:00
padding: 8px !important;
text-align: left !important;
width: 100%;
2019-08-31 04:07:25 +05:00
}
.addCardButton:hover {
2020-05-26 00:46:04 +05:00
background: #c3cbd0 !important;
2019-08-31 04:07:25 +05:00
color: #17394d !important;
fill: #17394d !important;
}
.addCardButtonIcon {
height: 20px !important;
padding: 0.64px !important;
width: 20px !important;
}
.addCardButtonText {
display: inline-block !important;
font-size: 14px !important;
line-height: 20px !important;
margin-left: 2px;
vertical-align: top !important;
}
.cards {
flex: 1 1 auto;
min-height: 1px;
2019-08-31 04:07:25 +05:00
}
.header {
background: #dfe3e6 !important;
border-radius: 3px 3px 0 0 !important;
box-sizing: none;
flex: 0 0 auto;
margin-bottom: 0 !important;
outline: none !important;
padding: 6px 36px 4px 8px !important;
position: relative !important;
}
.header:hover .target {
opacity: 1 !important;
}
.headerButton {
background: none !important;
box-shadow: none !important;
color: #798d99 !important;
line-height: 32px !important;
margin: 0 !important;
opacity: 0;
padding: 0 !important;
position: absolute;
right: 2px;
top: 2px;
width: 32px;
}
.headerButton:hover {
2020-05-26 00:46:04 +05:00
background: rgba(9, 30, 66, 0.13) !important;
2019-08-31 04:07:25 +05:00
color: #516b7a !important;
}
.headerName {
background: transparent !important;
border-color: transparent !important;
border-radius: 3px !important;
color: #17394d !important;
font-weight: bold !important;
line-height: 20px !important;
margin: 0 !important;
max-height: 256px !important;
outline: none !important;
overflow: hidden !important;
overflow-wrap: break-word !important;
padding: 4px 8px !important;
resize: none !important;
width: 100% !important;
word-break: break-word !important;
}
.list {
background: #dfe3e6 !important;
box-sizing: border-box !important;
display: flex;
flex-direction: column;
padding: 0 8px !important;
position: relative !important;
white-space: normal !important;
width: 272px;
}
.listWrapper {
background: #dfe3e6;
max-height: calc(100vh - 300px);
overflow-x: hidden;
overflow-y: auto;
scrollbar-width: thin;
width: 290px;
}
.listWrapper:hover {
width: 272px;
}
.listWrapper::-webkit-scrollbar {
width: 5px;
}
.listWrapper::-webkit-scrollbar-track {
background: transparent;
}
.listWrapper::-webkit-scrollbar-thumb {
border-radius: 3px;
}
.listWrapperFull {
max-height: calc(100vh - 264px);
2019-08-31 04:07:25 +05:00
}
.wrapper {
border-radius: 3px;
2019-08-31 04:07:25 +05:00
flex: 0 0 auto;
margin: 0 4px !important;
overflow: hidden;
2019-08-31 04:07:25 +05:00
vertical-align: top !important;
width: 272px !important;
}