mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-28 00:17:06 +01:00
1746cdec58
This is the most sensible rendering when one cell's content is overly tall - see for example the thumb image column on the bakerydemo People listing.
92 lines
1.6 KiB
SCSS
92 lines
1.6 KiB
SCSS
.bulk-actions-filter-checkbox {
|
|
.table-headers & {
|
|
> div {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.bulk-actions-choices,
|
|
.bulk-actions-choices > ul {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.bulk-actions-choices li {
|
|
margin: 0 0.5em;
|
|
}
|
|
}
|
|
}
|
|
|
|
.listing:not(.full-width) {
|
|
thead th.bulk-actions-filter-checkbox,
|
|
td.bulk-action-checkbox-cell {
|
|
width: 50px;
|
|
text-align: center;
|
|
|
|
input[type='checkbox'] {
|
|
margin: 0;
|
|
}
|
|
|
|
+ th,
|
|
+ td {
|
|
padding-inline-start: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.bulk-actions-choices {
|
|
&.footer {
|
|
@include transition(transform 0.1s ease 0.1s);
|
|
|
|
&.hidden {
|
|
transform: translateY(200px);
|
|
visibility: hidden;
|
|
}
|
|
|
|
.button {
|
|
font-weight: 600;
|
|
}
|
|
}
|
|
|
|
.footer__container {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
width: 100%;
|
|
align-items: center;
|
|
padding: 1.25em;
|
|
border-radius: 4px 4px 0 0;
|
|
margin-inline-start: 30px;
|
|
|
|
input[type='checkbox'] {
|
|
margin-inline-end: 1.25em;
|
|
}
|
|
|
|
.bulk-actions-buttons {
|
|
border-inline-start: 1px solid theme('colors.icon-secondary');
|
|
padding-inline-start: 1.5em;
|
|
|
|
.bulk-action-btn {
|
|
max-width: 160px;
|
|
overflow-x: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
|
|
.num-objects {
|
|
margin: 0 5px;
|
|
}
|
|
|
|
.num-objects-in-listing {
|
|
color: theme('colors.text-link-default');
|
|
background-color: transparent;
|
|
border: 0;
|
|
font-family: $font-sans;
|
|
padding: 0;
|
|
}
|
|
|
|
.button:not(:hover) {
|
|
background-color: theme('colors.surface-page');
|
|
}
|
|
}
|
|
}
|