[Frontend] Tweaks to splitter-related SASS

open #90
New splitterHandleInset function;
Removed padding from Inspector pane;
This commit is contained in:
Charles Hacskaylo
2015-10-29 10:09:47 -07:00
parent 11ca39b94c
commit 59b24d91bb
9 changed files with 136 additions and 130 deletions

View File

@@ -61,6 +61,7 @@
}
.split-layout {
$inset: splitterHandleInset($splitterD,$splitterHandleD);
&.horizontal {
// Slides vertically up and down, splitting the element horizontally
overflow: hidden; // Suppress overall scroll; each internal pane handles its own overflow
@@ -80,7 +81,7 @@
right: 0;
height: $splitterD;
&:after {
top: $splitterHandleInset; bottom: $splitterHandleInset;
top: $inset; bottom: $inset;
}
}
}
@@ -103,7 +104,7 @@
bottom: 0;
width: $splitterD;
&:after {
left: $splitterHandleInset; right: $splitterHandleInset;
left: $inset; right: $inset;
}
}
}