mirror of
https://github.com/nasa/openmct.git
synced 2025-06-13 12:48:14 +00:00
Pane padding WIP
- Adding resize handle direction to l-pane element;
This commit is contained in:
@ -3,9 +3,11 @@
|
|||||||
:class="{
|
:class="{
|
||||||
'l-pane--horizontal': type === 'horizontal',
|
'l-pane--horizontal': type === 'horizontal',
|
||||||
'l-pane--vertical': type === 'vertical',
|
'l-pane--vertical': type === 'vertical',
|
||||||
'l-pane--collapsed': collapsed
|
'l-pane--collapsed': collapsed,
|
||||||
|
'l-pane--resize-handle-before' : handle === 'before',
|
||||||
|
'l-pane--resize-handle-after' : handle === 'after'
|
||||||
}">
|
}">
|
||||||
|
<!-- TODO: move resize-handle styling from handle into pane, so that padding can be handled -->
|
||||||
<div v-if="handle"
|
<div v-if="handle"
|
||||||
class="l-pane__resize-handle"
|
class="l-pane__resize-handle"
|
||||||
:class="{
|
:class="{
|
||||||
|
Reference in New Issue
Block a user