Expose palette-paper-container styling

This commit is contained in:
BoykoAlex
2019-11-22 20:45:34 -05:00
parent 60b042a5ff
commit 46271e48e5
2 changed files with 4 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
<div id="palette-filter" class="palette-filter">
<input type="text" id="palette-filter-textfield" class="palette-filter-textfield" [(ngModel)]="filterText" (focus)="onFocus()"/>
<input type="search" id="palette-filter-textfield" class="palette-filter-textfield" [(ngModel)]="filterText" (focus)="onFocus()" placeholder="Search..."/>
</div>
<div id="palette-paper-container" style="height:calc(100% - 46px); width:100%;">
<div id="palette-paper-container">
<div id="palette-paper" class="palette-paper" style="overflow:hidden;"></div>
</div>

View File

@@ -25,6 +25,8 @@
overflow-x: hidden;
background-color: white;
color: white;
height:calc(100% - 46px);
width:100%;
}
/* Joint JS paper for drawing palette -> canvas DnD visual feedback END */