blob: 75f57125e2cbf476c6e0f6e3d5c6e44b62adcf78 (
plain)
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
|
.saveAsDialog{
font-size:12px;
width:450px;
height:150px;
padding-left: 15px;
padding-right: 15px;
background-color:#313131;
color: #ffffff;
}
.saveAsDialog .title{
font-size:14px;
height:15px;
padding:5px;
text-align: center;
font-weight: bold;
color: #C1C1C1;
}
.saveAsDialog .locationSelection{
border: 1px groove #000000;
overflow: auto;
height:38%;
padding: 15px;
background-color:#5f5f5f;
}
.saveAsDialog .newFileName{
width:80%;
margin-left:5px;
}
.saveAsDialog .fileInputField .newFileDirectory{
width: 80%;
}
.saveAsDialog .nameText{
margin-right:10px;
}
.saveAsDialog .buttons{
float:right;
margin-top: 10px;
}
.saveAsDialog .filename{
margin-bottom: 10px;
}
.saveAsDialog .errorMsg{
float:left;
margin-top: 7px;
}
.saveAsDialog .errorMsg span{
color: #BF3B3B;
}
.saveAsDialog .fileInputField{
margin-left:3px;
}
|