aboutsummaryrefslogtreecommitdiff
path: root/js/io/ui/save-as-dialog.reel/save-as-dialog.css
diff options
context:
space:
mode:
Diffstat (limited to 'js/io/ui/save-as-dialog.reel/save-as-dialog.css')
-rw-r--r--js/io/ui/save-as-dialog.reel/save-as-dialog.css111
1 files changed, 111 insertions, 0 deletions
diff --git a/js/io/ui/save-as-dialog.reel/save-as-dialog.css b/js/io/ui/save-as-dialog.reel/save-as-dialog.css
new file mode 100644
index 00000000..92970706
--- /dev/null
+++ b/js/io/ui/save-as-dialog.reel/save-as-dialog.css
@@ -0,0 +1,111 @@
1/* <copyright>
2 This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
3 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
4 (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
5 </copyright> */
6
7.saveAsDialog{
8 font-size:12px;
9 width:450px;
10 height:150px;
11 padding-left: 15px;
12 padding-right: 15px;
13 color: #ffffff;
14 background-color:#494949;
15 font-family: 'Droid Sans', sans-serif;
16 border-radius: 8px;
17 box-shadow: 0px 0px 8px rgba(0, 0, 0, .8);
18 text-shadow: 1px 1px 1px #000;
19}
20
21.saveAsDialog .title{
22 font-size:14px;
23 height:15px;
24 padding:5px;
25 text-align: center;
26 font-weight: bold;
27 color: #C1C1C1;
28}
29
30.saveAsDialog .locationSelection{
31 border: 1px solid #000000;
32 overflow: auto;
33 height:38%;
34 padding: 15px;
35 background-color:#5f5f5f;
36}
37
38.saveAsDialog .newFileName{
39 width:80%;
40 margin-left:5px;
41}
42
43.saveAsDialog .fileInputField .newFileDirectory{
44 width: 80%;
45}
46
47.saveAsDialog .nameText{
48 margin-right:10px;
49}
50
51.saveAsDialog .buttons{
52 float:right;
53 margin-top: 10px;
54}
55
56.saveAsDialog .filename{
57 margin-bottom: 10px;
58}
59
60.saveAsDialog .errorMsg{
61 float:left;
62 margin-top: 7px;
63}
64.saveAsDialog .errorMsg span{
65 color: #BF3B3B;
66}
67
68.saveAsDialog .fileInputField{
69 margin-left:3px;
70}
71
72.saveAsDialog .buttons button {
73 float: left;
74 width: 100px;
75 margin-top: 3px;
76}
77
78.saveAsDialog .okButton{
79 margin: 0px 5px 0px 5px;
80 /*margin-right:25px;*/
81 /*-webkit-box-align: center;*/
82 /*text-align: center;*/
83 /*cursor: default;*/
84 /*padding: 0px 6px 0px;*/
85 /*border:2px solid #d1d1d1;*/
86 /*background-color: #e1e1e1;*/
87 /*box-sizing: border-box;*/
88 /*border-radius:10px;*/
89 /*background-image: -webkit-linear-gradient(bottom, #e1e1e1 13%, #d1d1d1 58%, #e1e1e1 40%);*/
90 /*cursor:pointer;*/
91}
92
93.saveAsDialog .cancelButton{
94 /*-webkit-box-align: center;*/
95 /*text-align: center;*/
96 /*cursor: default;*/
97 /*padding: 0px 6px 0px;*/
98 /*border:2px solid #d1d1d1;*/
99 /*background-color: #e1e1e1;*/
100 /*box-sizing: border-box;*/
101 /*border-radius:10px;*/
102 /*background-image: -webkit-linear-gradient(bottom, #e1e1e1 13%, #d1d1d1 58%, #e1e1e1 40%);*/
103 /*cursor:pointer;*/
104}
105
106.saveAsDialog input[type="button"]:disabled{
107 background-color: #a1a1a1;
108 border:2px solid #a1a1a1;
109 background-image:none;
110 cursor:auto;
111} \ No newline at end of file