70 lines
1001 B
CSS
70 lines
1001 B
CSS
.card-note {
|
|
color: #718092;
|
|
font-size: 14px;
|
|
line-height: 1.8;
|
|
margin: 0;
|
|
}
|
|
|
|
.card-batch-actions {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.card-batch-actions span {
|
|
color: #718092;
|
|
font-size: 12px;
|
|
min-width: 62px;
|
|
text-align: right;
|
|
}
|
|
|
|
.card-batch-actions button:disabled {
|
|
cursor: not-allowed;
|
|
opacity: .45;
|
|
}
|
|
|
|
.card-check {
|
|
padding-left: 18px;
|
|
padding-right: 6px;
|
|
width: 42px;
|
|
}
|
|
|
|
.card-check input {
|
|
accent-color: #0878b9;
|
|
height: 17px;
|
|
margin: 0;
|
|
width: 17px;
|
|
}
|
|
|
|
.card-new-batch {
|
|
background: #f2faf7;
|
|
}
|
|
|
|
.badge.shared {
|
|
background: #e8f1fb;
|
|
color: #235f92;
|
|
}
|
|
|
|
[data-card-count][readonly] {
|
|
background: #f3f6f8;
|
|
color: #718092;
|
|
}
|
|
|
|
@media (max-width: 720px) {
|
|
.card-manager .panel-head {
|
|
align-items: flex-start;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.card-batch-actions {
|
|
justify-content: flex-start;
|
|
width: 100%;
|
|
}
|
|
|
|
.card-batch-actions span {
|
|
margin-left: auto;
|
|
}
|
|
}
|