forked from glpunzi/nuBuilderPro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nudrag.css
97 lines (80 loc) · 1.7 KB
/
nudrag.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
.nuDragSelected {
outline:1px solid red;
}
.nuDragSelected:hover{
cursor:move;
}
.nuDragObject {
position:absolute;
border-style:none;
border-width:0px;
overflow:hidden;
}
.nuDragNoSelect {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.nuDragArea {
position:absolute;
top:0px;
left: 0px;
border-style:solid;
border-width:1px;
border-color:black;
-webkit-user-select:none;
overflow:visible;
background-color:white;
background-image: url("grid.png");
z-index: 1;
}
.nuDragDialog{
-webkit-box-shadow: 5px 5px 5px 0px rgba(150,147,150,1);
-moz-box-shadow: 5px 5px 5px 0px rgba(150,147,150,1);
box-shadow: 5px 5px 5px 0px rgba(150,147,150,1);
}
.nuSection{
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
border-width:1px;
font-size:12px;
font-family:Helvetica;
}
.nuDragLine{
position:absolute;
height:10px;
background-color:darkgrey;
border-style:none;
z-index:2000;
}
.nuDragLine:hover{
background-color:red;
cursor:ns-resize;
}
.nuDragToolbar {
cursor: pointer;
list-style-type: none;
text-align: center;
padding-top:4px;
font-family: Helvetica;
font-size: 14;
z-index: 1000;
}
.nuToolbar {
cursor: pointer;
text-align: center;
display: inline-block;
width:150px;
height:20px;
font-family: Helvetica;
}
.nuToolbar:hover{
color:red;
}