2017-02-22 02:34:05 +01:00
|
|
|
.drafts-container {
|
2023-01-24 12:49:04 +01:00
|
|
|
.header-body {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
gap: 5px;
|
|
|
|
|
2023-06-27 19:33:25 +02:00
|
|
|
.removed-drafts-message {
|
2023-01-24 12:49:04 +01:00
|
|
|
text-align: left;
|
|
|
|
margin-left: 25px;
|
|
|
|
|
|
|
|
@media (width < $lg_min) {
|
|
|
|
text-align: center;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.delete-drafts-group {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
gap: 10px;
|
|
|
|
|
|
|
|
.delete-selected-drafts-button {
|
|
|
|
&:focus {
|
|
|
|
background-color: hsl(0deg 0% 93%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.select-drafts-button {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 5px;
|
|
|
|
margin-right: 25px;
|
|
|
|
padding-left: 15px;
|
|
|
|
padding-right: 15px;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background-color: hsl(0deg 0% 93%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.select-state-indicator {
|
|
|
|
width: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (width < $lg_min) {
|
|
|
|
margin-top: 5px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (width < $lg_min) {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-16 04:06:15 +02:00
|
|
|
.drafts-list {
|
2023-03-17 22:10:10 +01:00
|
|
|
& h2 {
|
2022-05-17 03:13:57 +02:00
|
|
|
font-size: 1.1em;
|
|
|
|
line-height: normal;
|
|
|
|
margin-bottom: 5px;
|
2024-06-21 17:21:09 +02:00
|
|
|
white-space: pre-wrap;
|
2022-05-17 03:13:57 +02:00
|
|
|
}
|
2019-08-16 03:23:11 +02:00
|
|
|
}
|
2023-01-24 12:49:04 +01:00
|
|
|
|
|
|
|
.draft-selection-checkbox {
|
|
|
|
margin-top: 5px;
|
|
|
|
/* Required to make sure that the checkbox icon stays inside
|
|
|
|
the grid. Any value greater than 13px (original width of
|
|
|
|
the checkbox icon) will work. */
|
|
|
|
width: 15px;
|
|
|
|
}
|
2018-02-15 17:38:31 +01:00
|
|
|
}
|