forked from isocra/TableDnD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tablednd.css
95 lines (76 loc) · 1.29 KB
/
tablednd.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
body {
color:#333333;
font-family:'Lucida Grande',Verdana,Arial,Sans-Serif;
font-size: 80%;
margin: 1em 9em;
background-color: #F0F0F0;
line-height: 1.4em;
}
p {
}
h1 {
color: #114477;
}
pre {
background-color:#F0F0F0;
font-weight:normal;
line-height:1.1;
padding:12px;
}
pre, code {
color:#264A94;
font-family:Monaco,Lucida Console,monospace;
font-size:90%;
}
div#page {
background-color: white;
padding: 1em;
}
.tableDemo {
background-color: white;
border: 1px solid #666699;
margin-right: 10px;
padding: 6px;
}
.tableDemo table {
border: 1px solid silver;
}
.tableDemo td {
padding: 2px 6px
}
.tableDemo th {
background-color:#29215A;
color:white;
}
#table-2 th {
background-color: #29215A;
color: white;
}
#table-2 td, th {
padding-right: 8px;
}
.category td {
background-color: #E4EBF3;
}
.tDnD_whileDrag {
background-color: #eee;
}
tr.alt td {
background-color: #ecf6fc;
}
tr.myDragClass td {
color: yellow;
background-color: black;
}
td.dragHandle {
}
td.showDragHandle {
background-image: url(images/updown2.gif);
background-repeat: no-repeat;
background-position: center center;
cursor: move;
}
.versionHistory td {
vertical-align: top;
padding: 0.3em;
}