2019-08-31 04:07:25 +05:00
|
|
|
.addCardButton {
|
2020-05-16 04:09:46 +05:00
|
|
|
background: #dfe3e6 !important;
|
2019-08-31 04:07:25 +05:00
|
|
|
border: none !important;
|
2020-05-16 04:09:46 +05:00
|
|
|
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;
|
2020-05-16 04:09:46 +05:00
|
|
|
outline: none !important;
|
2019-08-31 04:07:25 +05:00
|
|
|
padding: 8px !important;
|
|
|
|
text-align: left !important;
|
2020-05-16 04:09:46 +05:00
|
|
|
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;
|
2020-05-16 04:09:46 +05:00
|
|
|
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;
|
2020-05-16 04:09:46 +05:00
|
|
|
width: 272px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.listWrapper {
|
|
|
|
background: #dfe3e6;
|
|
|
|
max-height: calc(100vh - 300px);
|
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: auto;
|
2020-05-22 16:59:22 +05:00
|
|
|
scrollbar-width: thin;
|
2020-05-16 04:09:46 +05:00
|
|
|
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 {
|
2020-05-16 04:09:46 +05:00
|
|
|
border-radius: 3px;
|
2019-08-31 04:07:25 +05:00
|
|
|
flex: 0 0 auto;
|
|
|
|
margin: 0 4px !important;
|
2020-05-16 04:09:46 +05:00
|
|
|
overflow: hidden;
|
2019-08-31 04:07:25 +05:00
|
|
|
vertical-align: top !important;
|
|
|
|
width: 272px !important;
|
|
|
|
}
|