1
0
mirror of http://git.whoc.org.uk/git/password-manager.git synced 2025-10-29 10:27:35 +01:00

Fixed scroll issues in side panels

This commit is contained in:
Dario Chiappetta
2015-04-03 17:27:12 +02:00
parent fcfae5f4a4
commit d20d983e60
4 changed files with 19 additions and 39 deletions

View File

@@ -81,7 +81,7 @@ $transition-duration: 0.5s;
@mixin sliding-panel ($side, $size) {
position: fixed;
z-index: 20;
@include overflow-scroll;
// @include overflow-scroll;
@if $side == left {
@include sliding-panel-left($size);

View File

@@ -40,6 +40,7 @@ html {
.mainPage > #selectionPanel {
@include sliding-panel(left, $selectionPanelWidth);
overflow: auto;
&.open {
@include sliding-panel-open(left, $selectionPanelWidth);
@@ -100,8 +101,8 @@ html {
&.selection {
@include flex($selectionPanelFlexWidth, 0);
// height: 100%;
@include overflow-scroll;
// heig ht: 100%;
// @include overflow-scroll;
}
&.cardContent {
@@ -550,4 +551,4 @@ div.dialogBox {
}
}
}
}
}