mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
Merge d5f789798ee3a392356f38e78ebb46bdd4d63f11 into 8af821d380ddd6a3368dfa6705ba1e58c72bfba8
This commit is contained in:
commit
5f2f572c5e
@ -19,7 +19,7 @@
|
|||||||
top: 0px;
|
top: 0px;
|
||||||
right: 0px;
|
right: 0px;
|
||||||
bottom: 0px;
|
bottom: 0px;
|
||||||
width: 315px;
|
width: var(--red-ui-sidebar-width);
|
||||||
background: var(--red-ui-primary-background);
|
background: var(--red-ui-primary-background);
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
z-index: 10;
|
z-index: 10;
|
||||||
@ -43,7 +43,7 @@
|
|||||||
#red-ui-sidebar-separator {
|
#red-ui-sidebar-separator {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 5px;
|
top: 5px;
|
||||||
right: 315px;
|
right: var(--red-ui-sidebar-width);
|
||||||
bottom:10px;
|
bottom:10px;
|
||||||
width: 7px;
|
width: 7px;
|
||||||
// z-index: 11;
|
// z-index: 11;
|
||||||
|
@ -14,4 +14,5 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
**/
|
**/
|
||||||
|
|
||||||
$header-height: 48px;
|
$header-height: 48px;
|
||||||
|
$sidebar-width: 340px;
|
@ -19,6 +19,9 @@
|
|||||||
// Header Height
|
// Header Height
|
||||||
--red-ui-header-height: #{$header-height};
|
--red-ui-header-height: #{$header-height};
|
||||||
|
|
||||||
|
// Sidebar width
|
||||||
|
--red-ui-sidebar-width: #{$sidebar-width};
|
||||||
|
|
||||||
// Main body text
|
// Main body text
|
||||||
--red-ui-primary-text-color: #{$primary-text-color};
|
--red-ui-primary-text-color: #{$primary-text-color};
|
||||||
// UI control label text
|
// UI control label text
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
top:0px;
|
top:0px;
|
||||||
left:179px;
|
left:179px;
|
||||||
bottom: 0px;
|
bottom: 0px;
|
||||||
right: 322px;
|
right: calc(var(--red-ui-sidebar-width) + 7px);
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
@include component-border;
|
@include component-border;
|
||||||
transition: left 0.1s ease-in-out;
|
transition: left 0.1s ease-in-out;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user