File tree Expand file tree Collapse file tree 3 files changed +34
-11
lines changed Expand file tree Collapse file tree 3 files changed +34
-11
lines changed Original file line number Diff line number Diff line change 1+ /* Z-Index
2+
3+ 5000 NCDialog
4+ 3000 nc-savelert
5+ 2010 NCDialog .dialogWindow
6+ 2001 NCDialog .screen ==========
7+ 2000 comment-bar
8+ 1030 bootstrap .fixed-top
9+ 100 commentThread
10+ 15 NCAutoSuggest .matchlist
11+ 15 NCNode .ncedge
12+ 10 NCNode .nccomponent
13+ 1 NCNode .screen ============
14+ 1 ToolTip .modal, .tooltiptextabove, .tooltiptext
15+ 1 nc-navbar
16+ 0 NetCreate
17+ */
18+
19+ /* override bootstrap */
20+ nav .fixed-top {
21+ z-index : inherit;
22+ }
23+
124/* Base App: NetCrate.jsx */
225.nc-base {
326 display : flex;
2750 height : 38px ;
2851 display : flex;
2952 flex-flow : row-reverse;
30- z-index : 2000 ;
53+ z-index : 1 ;
3154}
3255/* Bootstrap override */
3356.nav-item {
Original file line number Diff line number Diff line change @@ -232,7 +232,7 @@ svg#comment-icon {
232232 max-height : calc (80% - 35px );
233233 font-size : 14px ;
234234 cursor : move;
235- z-index : 100 ;
235+ z-index : 2500 ;
236236 /* end floating */
237237}
238238.commentThread textarea .add {
Original file line number Diff line number Diff line change @@ -241,17 +241,17 @@ class NCNode extends UNISYS.Component {
241241 SetPermissions ( data ) {
242242 UDATA . NetCall ( 'SRV_GET_EDIT_STATUS' ) . then ( data => {
243243 // someone else might be editing a template or importing or editing node or edge
244- const { id } = this . state ;
245- const nodeIsLocked = data . lockedNodes . includes ( id ) ;
246- this . setState (
247- {
248- uIsLockedByDB : nodeIsLocked ,
249- uIsLockedByTemplate : data . templateBeingEdited ,
244+ const { id } = this . state ;
245+ const nodeIsLocked = data . lockedNodes . includes ( id ) ;
246+ this . setState (
247+ {
248+ uIsLockedByDB : nodeIsLocked ,
249+ uIsLockedByTemplate : data . templateBeingEdited ,
250250 uIsLockedByImport : data . importActive ,
251251 uIsLockedByComment : data . commentBeingEditedByMe
252- } ,
253- ( ) => this . UpdatePermissions ( )
254- ) ;
252+ } ,
253+ ( ) => this . UpdatePermissions ( )
254+ ) ;
255255 } ) ;
256256 }
257257 UpdatePermissions ( ) {
You can’t perform that action at this time.
0 commit comments