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
|
/* <copyright>
This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
(c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
</copyright> */
.saveAsDialog{
font-size:12px;
width:450px;
height:150px;
padding-left: 15px;
padding-right: 15px;
color: #ffffff;
background-color:#494949;
font-family: 'Droid Sans', sans-serif;
border-radius: 8px;
box-shadow: 0px 0px 8px rgba(0, 0, 0, .8);
text-shadow: 1px 1px 1px #000;
}
.saveAsDialog .title{
font-size:14px;
height:15px;
padding:5px;
text-align: center;
font-weight: bold;
color: #C1C1C1;
}
.saveAsDialog .locationSelection{
border: 1px solid #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;
}
.saveAsDialog .buttons button {
float: left;
width: 100px;
margin-top: 3px;
}
.saveAsDialog .okButton{
margin: 0px 5px 0px 5px;
/*margin-right:25px;*/
/*-webkit-box-align: center;*/
/*text-align: center;*/
/*cursor: default;*/
/*padding: 0px 6px 0px;*/
/*border:2px solid #d1d1d1;*/
/*background-color: #e1e1e1;*/
/*box-sizing: border-box;*/
/*border-radius:10px;*/
/*background-image: -webkit-linear-gradient(bottom, #e1e1e1 13%, #d1d1d1 58%, #e1e1e1 40%);*/
/*cursor:pointer;*/
}
.saveAsDialog .cancelButton{
/*-webkit-box-align: center;*/
/*text-align: center;*/
/*cursor: default;*/
/*padding: 0px 6px 0px;*/
/*border:2px solid #d1d1d1;*/
/*background-color: #e1e1e1;*/
/*box-sizing: border-box;*/
/*border-radius:10px;*/
/*background-image: -webkit-linear-gradient(bottom, #e1e1e1 13%, #d1d1d1 58%, #e1e1e1 40%);*/
/*cursor:pointer;*/
}
.saveAsDialog input[type="button"]:disabled{
background-color: #a1a1a1;
border:2px solid #a1a1a1;
background-image:none;
cursor:auto;
}
|