diff options
author | Noah Loomans <noahloomans@gmail.com> | 2017-01-29 15:09:26 +0100 |
---|---|---|
committer | Noah Loomans <noahloomans@gmail.com> | 2017-01-29 15:09:26 +0100 |
commit | 16f431f3a839a499cfeee070c97eef189c06f49c (patch) | |
tree | 5cd19ca45ed83e0016d2e46f33f572e50641a11b /public/stylesheets | |
parent | c3286dbef4648668979e04cc918e333dbdf1fb15 (diff) | |
parent | efcdf058485272102c9c0c75e3b7a4cec9f9e6db (diff) |
Merge branch 'beta'
Diffstat (limited to 'public/stylesheets')
-rw-r--r-- | public/stylesheets/print.css | 18 | ||||
-rw-r--r-- | public/stylesheets/style.css | 6 |
2 files changed, 21 insertions, 3 deletions
diff --git a/public/stylesheets/print.css b/public/stylesheets/print.css index b6c3110..0e09533 100644 --- a/public/stylesheets/print.css +++ b/public/stylesheets/print.css @@ -5,6 +5,7 @@ #search { border-bottom: 1px solid black; + position: absolute; } #search .top-bar, #week-selector .week-wrapper { @@ -18,7 +19,7 @@ } #search .fav { - display: none; + display: none !important; } #search #overflow-button { @@ -29,7 +30,7 @@ display: block; } -#week-selector input[type='button'] { +#week-selector button { display: none; } @@ -47,3 +48,16 @@ .mdl-menu__container { display: none !important; } + +#schedule { + padding-top: 16px; + width: 100%; +} + +.no-print { + display: none; +} + +.print { + display: initial; +} diff --git a/public/stylesheets/style.css b/public/stylesheets/style.css index 3dc309d..fd2bfb8 100644 --- a/public/stylesheets/style.css +++ b/public/stylesheets/style.css @@ -376,4 +376,8 @@ body.week-selector-not-visible #search { body.week-selector-not-visible #week-selector { box-shadow: inherit; -}
\ No newline at end of file +} + +.print { + display: none; +} |