forked from GMOD/jbrowse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
file_dialog.css
141 lines (125 loc) · 2.59 KB
/
file_dialog.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
@import url("src/dojox/form/resources/UploaderFileList.css");
.fileDialog {
color: #333;
}
.fileDialog label {
font-weight: bold;
padding: 0 0.5em;
}
.fileDialog th {
font-weight: bold;
border-bottom: 2px solid black;
}
.fileDialog .dijitDialogPaneContent > div.intro {
width: 27em;
text-align: justify;
position: relative;
left: 12%;
margin: 1.4em 0 2.4em 0;
}
.fileDialog .connector {
background: #333;
height: 6px;
width: 12px;
position: absolute;
bottom: -6px;
left: 50%;
margin-left: -6px;
}
.fileDialog h2, .fileDialog h3 {
margin: 0;
padding: 0;
font-size: 125%;
}
.fileDialog .dijitDialogPaneContent > div {
position: relative;
width: 40em;
padding: 0 0 0.75em 0;
margin: 6px 0;
}
.fileDialog div.aux {
text-align: center;
margin-bottom: 1em;
}
.fileDialog .resourceControls {
height: 10em;
position: relative;
}
.fileDialog .resourceControls > div {
width: 19.5em;
box-sizing: border-box;
height: 100%;
}
.fileDialog .resourceControls > div > h3 {
height: 19%;
}
.fileDialog .localFilesControl {
position: absolute;
top: 0;
left: 0;
}
.fileDialog .dijitUploader {
position: absolute;
margin: 0;
}
.fileDialog .remoteURLsControl textarea,
.fileDialog .localFilesControl .dragArea {
height: 81%;
position: relative;
border: 1px solid #b3b3b3;
width: 100%;
box-sizing: border-box;
}
.fileDialog .localFilesControl .dragArea:hover {
border: 1px dashed green;
}
.fileDialog .localFilesControl .dragArea .dragMessage {
height: 2em;
position: absolute;
top: 60%;
font-weight: bold;
margin-top: -1em;
text-align: center;
width: 100%;
}
.fileDialog .remoteURLsControl textarea {
font-size: 10px;
background: #f2f2f2;
}
.fileDialog .remoteURLsControl textarea:hover {
background: white;
border-color: #333;
}
.fileDialog .remoteURLsControl {
position: absolute;
top: 0;
right: 0;
}
.fileDialog .resourceList {
background: #bcd3ef;
}
.fileDialog .dijitSelect td.dijitStretch {
width: 6em;
}
.fileDialog .resourceList > h3, .fileDialog .trackList > h3 {
padding: 0 0.6em;
line-height: 2.1;
margin-bottom: 0.5em;
}
.fileDialog .emptyMessage {
width: 100%;
font-size: 110%;
color: #686868;
font-weight: bold;
text-align: center;
line-height: 4;
}
.fileDialog .trackList {
background: #8cb1dd;
}
.fileDialog .resourceList > table, .fileDialog .trackList > table {
width: 95%;
padding: 0 0.75em 0.5em 0.75em;
margin: 0 auto;
border-collapse: collapse;
}