mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-05 14:04:46 +00:00
Initial attempts to understand list views
This commit is contained in:
parent
c900f71117
commit
ec6e995987
2 changed files with 8 additions and 2 deletions
|
|
@ -434,7 +434,7 @@ table.listing {
|
|||
font-size: 1em;
|
||||
opacity: 1;
|
||||
position: absolute;
|
||||
right: 5%;
|
||||
right: 10%;
|
||||
top: 2em;
|
||||
}
|
||||
|
||||
|
|
@ -673,6 +673,9 @@ table.listing {
|
|||
.children,
|
||||
.no-children {
|
||||
@include transition(background-color 0.2s ease);
|
||||
@media screen and (min-width: $breakpoint-desktop-larger) {
|
||||
padding-right: 19em
|
||||
}
|
||||
}
|
||||
|
||||
.children a,
|
||||
|
|
|
|||
|
|
@ -71,6 +71,8 @@ body {
|
|||
|
||||
.wrapper {
|
||||
@include clearfix();
|
||||
height: 100vh;
|
||||
min-height: 800px;
|
||||
transition: transform 0.2s ease;
|
||||
}
|
||||
|
||||
|
|
@ -113,6 +115,7 @@ body {
|
|||
@include row();
|
||||
background: $color-white;
|
||||
border-top: 0 solid $color-grey-5; // this top border provides space for the floating logo to toggle the menu
|
||||
height: 100%;
|
||||
padding-bottom: 4em;
|
||||
position: relative; // yuk. necessary for positions for jquery ui widgets
|
||||
}
|
||||
|
|
@ -490,7 +493,7 @@ footer,
|
|||
|
||||
@media screen and (min-width: 90em) {
|
||||
.wrapper {
|
||||
max-width: $breakpoint-desktop-larger;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
footer {
|
||||
|
|
|
|||
Loading…
Reference in a new issue