moved page actions to the top right

This commit is contained in:
Felix Hamann 2018-06-09 22:11:30 +02:00
parent d16ed578bf
commit 482ac4547a
2 changed files with 12 additions and 5 deletions

View File

@ -658,7 +658,7 @@ defaultLinks = -- Define the menu items of the header.
, NavbarAside $ MenuItem
{ menuItemLabel = "Semester"
, menuItemIcon = Nothing
, menuItemRoute = CourseListR -- should be TermListR ,,,
, menuItemRoute = TermShowR
, menuItemAccessCallback' = return True
}
, NavbarAside $ MenuItem

View File

@ -1,13 +1,20 @@
.page-nav-prime {
background-color: rgba(200, 200, 200, 0.2);
padding: 13px;
margin-top: 30px;
position: absolute;
right: 40px;
top: 40px;
}
.page-nav-prime .pagenav__list {
.pagenav__list {
display: block;
}
.page-nav-prime .pagenav__list-item {
.pagenav__list-item {
display: inline-block;
margin-right: 7px;
padding-right: 7px;
&:not(:last-child) {
border-right: 1px solid var(--color-primary);
}
}