814f4e91f5
- mobilewizard rules both from toolbar.css and toolbar-mobile.css to mobilewizard.css - Hamburger menu rules from menubar.css to menubar-mobile.css - scrollbar rules from toolbar-mobile.css to scrollBar.css and add media query - and remove unecessary comments Change-Id: I5372455ba723d334472b14df556825b1a3734922 Reviewed-on: https://gerrit.libreoffice.org/82298 Reviewed-by: Pedro Pinto da Silva <pedro.silva@collabora.com> Tested-by: Pedro Pinto da Silva <pedro.silva@collabora.com>
40 lines
1.1 KiB
CSS
40 lines
1.1 KiB
CSS
.scroll-container {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
.scroll-container {
|
|
height: 100%;
|
|
width: 100%;
|
|
overflow: auto;
|
|
}
|
|
@media (max-width: 767px), (max-device-height: 767px) {
|
|
.mCSB_scrollTools_vertical{
|
|
width: 38px !important;
|
|
}
|
|
#mobile-wizard-header .mCSB_container {
|
|
top: 1px !important;
|
|
}
|
|
.mCSB_scrollTools_vertical .mCSB_dragger_bar {
|
|
position: fixed !important;
|
|
margin-top: 8px !important;
|
|
height: 48px !important;
|
|
width: 48px !important;
|
|
right: -16px;
|
|
border-radius: 100px !important;
|
|
background: url('images/lc_scrollbar_mobile.svg') no-repeat center #fff !important;
|
|
background-size: 24px !important;
|
|
box-shadow: 0 1px 3px 1px #00000050;
|
|
}
|
|
#mCSB_1_dragger_horizontal > .mCSB_dragger_bar, #mCSB_2_dragger_horizontal > .mCSB_dragger_bar, #mCSB_3_dragger_horizontal > .mCSB_dragger_bar {
|
|
height: 2px;
|
|
background-color: #bbb;
|
|
margin-top: 9px;
|
|
}
|
|
#mCSB_1_scrollbar_horizontal .mCSB_draggerRail, #mCSB_2_scrollbar_horizontal .mCSB_draggerRail, #mCSB_3_scrollbar_horizontal .mCSB_draggerRail{
|
|
background-color: #f2f2f2 !important;
|
|
}
|
|
}
|