2020-05-29 19:31:19 +05:00
|
|
|
:global(#app) {
|
|
|
|
.addCardButton {
|
|
|
|
background: #dfe3e6;
|
|
|
|
border: none;
|
|
|
|
color: #6b808c;
|
|
|
|
cursor: pointer;
|
|
|
|
display: block;
|
|
|
|
fill: #6b808c;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
font-weight: normal;
|
|
|
|
height: 36px;
|
|
|
|
outline: none;
|
|
|
|
padding: 8px;
|
|
|
|
text-align: left;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: #c3cbd0;
|
|
|
|
color: #17394d;
|
|
|
|
fill: #17394d;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.addCardButtonIcon {
|
|
|
|
height: 20px;
|
|
|
|
padding: 0.64px;
|
|
|
|
width: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.addCardButtonText {
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 20px;
|
|
|
|
margin-left: 2px;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cards {
|
|
|
|
min-height: 1px;
|
|
|
|
}
|
|
|
|
|
2021-06-24 01:05:22 +05:00
|
|
|
.cardsInnerWrapper {
|
|
|
|
max-height: calc(100vh - 268px);
|
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: auto;
|
|
|
|
width: 290px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
width: 272px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
width: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-webkit-scrollbar-track {
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.cardsInnerWrapperFull {
|
|
|
|
max-height: calc(100vh - 232px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.cardsOuterWrapper {
|
|
|
|
padding: 0 8px;
|
|
|
|
white-space: normal;
|
|
|
|
width: 272px;
|
|
|
|
}
|
|
|
|
|
2020-05-29 19:31:19 +05:00
|
|
|
.header {
|
|
|
|
outline: none;
|
|
|
|
padding: 6px 36px 4px 8px;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&:hover .target {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2024-07-26 19:02:13 +02:00
|
|
|
|
|
|
|
@media only screen and (max-width: 797px) {
|
|
|
|
.target {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
2020-05-29 19:31:19 +05:00
|
|
|
}
|
|
|
|
|
2021-06-24 01:05:22 +05:00
|
|
|
.headerEditable {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2020-05-29 19:31:19 +05:00
|
|
|
.headerButton {
|
|
|
|
background: none;
|
|
|
|
box-shadow: none;
|
|
|
|
color: #798d99;
|
|
|
|
line-height: 32px;
|
|
|
|
margin: 0;
|
|
|
|
opacity: 0;
|
|
|
|
padding: 0;
|
|
|
|
position: absolute;
|
|
|
|
right: 2px;
|
|
|
|
top: 2px;
|
|
|
|
width: 32px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: rgba(9, 30, 66, 0.13);
|
|
|
|
color: #516b7a;
|
|
|
|
}
|
2024-07-26 19:02:13 +02:00
|
|
|
|
|
|
|
@media only screen and (max-width: 797px) {
|
2024-09-16 00:18:08 +02:00
|
|
|
|
2024-07-26 20:51:59 +02:00
|
|
|
&:focus,
|
|
|
|
&:active {
|
2024-07-26 19:02:13 +02:00
|
|
|
background: rgba(9, 30, 66, 0.13);
|
|
|
|
color: #516b7a;
|
|
|
|
}
|
|
|
|
}
|
2020-05-29 19:31:19 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
.headerName {
|
|
|
|
color: #17394d;
|
|
|
|
font-weight: bold;
|
|
|
|
line-height: 20px;
|
|
|
|
max-height: 256px;
|
|
|
|
outline: none;
|
|
|
|
overflow: hidden;
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
padding: 4px 8px;
|
|
|
|
word-break: break-word;
|
|
|
|
}
|
|
|
|
|
2021-06-24 01:05:22 +05:00
|
|
|
.innerWrapper {
|
|
|
|
margin-right: 8px;
|
2020-05-29 19:31:19 +05:00
|
|
|
width: 272px;
|
|
|
|
}
|
|
|
|
|
2021-06-24 01:05:22 +05:00
|
|
|
.outerWrapper {
|
2020-05-29 19:31:19 +05:00
|
|
|
background: #dfe3e6;
|
|
|
|
border-radius: 3px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
}
|