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
+
1
24
/* Base App: NetCrate.jsx */
2
25
.nc-base {
3
26
display : flex;
27
50
height : 38px ;
28
51
display : flex;
29
52
flex-flow : row-reverse;
30
- z-index : 2000 ;
53
+ z-index : 1 ;
31
54
}
32
55
/* Bootstrap override */
33
56
.nav-item {
Original file line number Diff line number Diff line change @@ -232,7 +232,7 @@ svg#comment-icon {
232
232
max-height : calc (80% - 35px );
233
233
font-size : 14px ;
234
234
cursor : move;
235
- z-index : 100 ;
235
+ z-index : 2500 ;
236
236
/* end floating */
237
237
}
238
238
.commentThread textarea .add {
Original file line number Diff line number Diff line change @@ -241,17 +241,17 @@ class NCNode extends UNISYS.Component {
241
241
SetPermissions ( data ) {
242
242
UDATA . NetCall ( 'SRV_GET_EDIT_STATUS' ) . then ( data => {
243
243
// 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 ,
250
250
uIsLockedByImport : data . importActive ,
251
251
uIsLockedByComment : data . commentBeingEditedByMe
252
- } ,
253
- ( ) => this . UpdatePermissions ( )
254
- ) ;
252
+ } ,
253
+ ( ) => this . UpdatePermissions ( )
254
+ ) ;
255
255
} ) ;
256
256
}
257
257
UpdatePermissions ( ) {
You can’t perform that action at this time.
0 commit comments