dragdropzones.html
1.22 KB
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
<html>
<head>
<link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css" />
<!-- GC -->
<script type="text/javascript" src="../../ext-all.js"></script>
<script type="text/javascript" src="dragdropzones.js"></script>
<style type="text/css">
.app-header .x-panel-body {
background-color: #ddd;
padding-left: 5px;
}
.app-header h1 {
font-family: verdana,arial,sans-serif;
font-size: 20px;
color: #15428B;
}
.hospital-target {
border: 1px solid red;
margin: 5px;
padding: 5px;
font-size: small;
cursor: default;
}
.hospital-target.hospital-target-hover {
background-color: #C0C0C0;
}
.patient-source {
cursor: pointer;
}
.patient-view table {
border-collapse: separate;
border-spacing: 2px;
}
.patient-view td {
font-family: verdana,arial,sans-serif;
font-size: 12px;
}
td.patient-label {
background-color: #ddd;
border: 1px solid #bbb;
font-weight: bold;
text-align: right;
width: 100px;
padding: 0px 3px 0px 0px;
}
.patient-over {
background-color:#EFEFEF;
cursor: pointer;
}
.patient-selected {
background-color: #DFE8F6;
cursor: pointer;
}
</style>
<title>Ext Drag/Drop</title>
</head>
<body>
</body>
</html>