mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Fix for unreachable menus - Fix to close Issue #7
This commit is contained in:
parent
ec5fc4fabd
commit
47c7656c2b
@ -142,7 +142,6 @@ a.brand img {
|
|||||||
background-color: #eee;
|
background-color: #eee;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#sidebar {
|
#sidebar {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
}
|
}
|
||||||
@ -315,19 +314,16 @@ a.brand img {
|
|||||||
.node_invalid {
|
.node_invalid {
|
||||||
stroke: #ff0000;
|
stroke: #ff0000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.node_selected {
|
.node_selected {
|
||||||
stroke: #ff7f0e;
|
stroke: #ff7f0e;
|
||||||
}
|
}
|
||||||
|
|
||||||
.node_highlighted {
|
.node_highlighted {
|
||||||
stroke: #ff0000;
|
stroke: #ff0000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.node_hovered {
|
.node_hovered {
|
||||||
dstroke: #ff7f0e;
|
dstroke: #ff7f0e;
|
||||||
}
|
}
|
||||||
|
|
||||||
.port_hovered {
|
.port_hovered {
|
||||||
stroke: #ff7f0e;
|
stroke: #ff7f0e;
|
||||||
fill: #ff7f0e;
|
fill: #ff7f0e;
|
||||||
@ -368,15 +364,16 @@ a.brand img {
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#dialog {
|
#dialog {
|
||||||
}
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
}
|
}
|
||||||
|
|
||||||
.notification {
|
.notification {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
}
|
}
|
||||||
|
|
||||||
#notifications {
|
#notifications {
|
||||||
z-index: 10000;
|
z-index: 10000;
|
||||||
width: 500px;
|
width: 500px;
|
||||||
@ -389,6 +386,7 @@ a.brand img {
|
|||||||
box-shadow: 0 0 1px 1px;
|
box-shadow: 0 0 1px 1px;
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-row {
|
.form-row {
|
||||||
clear: both;
|
clear: both;
|
||||||
margin-bottom: 7px;
|
margin-bottom: 7px;
|
||||||
@ -415,7 +413,6 @@ button.input-append-right {
|
|||||||
padding-right: 4px !important;
|
padding-right: 4px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.form-tips {
|
.form-tips {
|
||||||
background: lightgoldenrodyellow;
|
background: lightgoldenrodyellow;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
@ -472,16 +469,25 @@ div.node-info {
|
|||||||
.dropdown-menu * a.active > .icon-ok {
|
.dropdown-menu * a.active > .icon-ok {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
.dropdown-menu>li.disabled>a:hover>[class^="icon-"] {
|
||||||
|
background-image: url("bootstrap/img/glyphicons-halflings.png") !important;
|
||||||
|
}
|
||||||
|
/** Fix for unreachable dropdown menu **/
|
||||||
|
.dropdown-menu {
|
||||||
|
width: 200px !important;
|
||||||
|
}
|
||||||
|
.dropdown-menu > li > a {
|
||||||
|
padding-left: 28px ;
|
||||||
|
text-indent: -8px ;
|
||||||
|
white-space: normal !important;
|
||||||
|
}
|
||||||
|
|
||||||
.navbar-fixed-top, .navbar-fixed-bottom {
|
.navbar-fixed-top, .navbar-fixed-bottom {
|
||||||
z-index: 1000;
|
z-index: 1000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.popover-title { display: none; }
|
.popover-title { display: none; }
|
||||||
|
|
||||||
|
|
||||||
.dropdown-menu>li.disabled>a:hover>[class^="icon-"] {
|
|
||||||
background-image: url("bootstrap/img/glyphicons-halflings.png") !important;
|
|
||||||
}
|
|
||||||
.ui-autocomplete {
|
.ui-autocomplete {
|
||||||
max-height: 250px;
|
max-height: 250px;
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
@ -552,8 +558,3 @@ div.node-info {
|
|||||||
border-radius:5px;
|
border-radius:5px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Fix for unreachable dropdown menu **/
|
|
||||||
div.pull-right > ul.dropdown-menu > li.dropdown-submenu > ul {
|
|
||||||
margin-left: 20px;
|
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user