aboutsummaryrefslogtreecommitdiff
path: root/js/io/ui/save-as-dialog.reel/save-as-dialog.css
diff options
context:
space:
mode:
authorAnanya Sen2012-02-02 12:37:29 -0800
committerAnanya Sen2012-02-02 12:37:29 -0800
commit0e595c4e11ce9b44eff157de8616ed15fcd5d6fc (patch)
treeaba0df7f15b631345b9c44b6b50884d06b7a803a /js/io/ui/save-as-dialog.reel/save-as-dialog.css
parent87e247e74040b5e80ff40003d233d5317881102a (diff)
downloadninja-0e595c4e11ce9b44eff157de8616ed15fcd5d6fc.tar.gz
refactoring some file names and locations,
change made to maintain only one codemirror div. Signed-off-by: Ananya Sen <Ananya.Sen@motorola.com>
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.css100
1 files changed, 100 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..40434c25
--- /dev/null
+++ b/js/io/ui/save-as-dialog.reel/save-as-dialog.css
@@ -0,0 +1,100 @@
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 background-color:#313131;
14 color: #ffffff;
15}
16
17.saveAsDialog .title{
18 font-size:14px;
19 height:15px;
20 padding:5px;
21 text-align: center;
22 font-weight: bold;
23 color: #C1C1C1;
24}
25
26.saveAsDialog .locationSelection{
27 border: 1px groove #000000;
28 overflow: auto;
29 height:38%;
30 padding: 15px;
31 background-color:#5f5f5f;
32}
33
34.saveAsDialog .newFileName{
35 width:80%;
36 margin-left:5px;
37}
38
39.saveAsDialog .fileInputField .newFileDirectory{
40 width: 80%;
41}
42
43.saveAsDialog .nameText{
44 margin-right:10px;
45}
46
47.saveAsDialog .buttons{
48 float:right;
49 margin-top: 10px;
50}
51
52.saveAsDialog .filename{
53 margin-bottom: 10px;
54}
55
56.saveAsDialog .errorMsg{
57 float:left;
58 margin-top: 7px;
59}
60.saveAsDialog .errorMsg span{
61 color: #BF3B3B;
62}
63
64.saveAsDialog .fileInputField{
65 margin-left:3px;
66}
67
68.saveAsDialog .okButton{
69 margin-right:25px;
70 -webkit-box-align: center;
71 text-align: center;
72 cursor: default;
73 padding: 0px 6px 0px;
74 border:2px solid #d1d1d1;
75 background-color: #e1e1e1;
76 box-sizing: border-box;
77 border-radius:10px;
78 background-image: -webkit-linear-gradient(bottom, #e1e1e1 13%, #d1d1d1 58%, #e1e1e1 40%);
79 cursor:pointer;
80}
81
82.saveAsDialog .cancelButton{
83 -webkit-box-align: center;
84 text-align: center;
85 cursor: default;
86 padding: 0px 6px 0px;
87 border:2px solid #d1d1d1;
88 background-color: #e1e1e1;
89 box-sizing: border-box;
90 border-radius:10px;
91 background-image: -webkit-linear-gradient(bottom, #e1e1e1 13%, #d1d1d1 58%, #e1e1e1 40%);
92 cursor:pointer;
93}
94
95.saveAsDialog input[type="button"]:disabled{
96 background-color: #a1a1a1;
97 border:2px solid #a1a1a1;
98 background-image:none;
99 cursor:auto;
100} \ No newline at end of file