equal
deleted
inserted
replaced
1 //Bookmark dialogs |
|
2 |
|
3 #BookmarkDialogOverlay { |
|
4 background-color: #000; |
|
5 position: absolute; |
|
6 width: 100%; |
|
7 height: 100%; |
|
8 overflow:hidden; |
|
9 left: 0; |
|
10 right: 0; |
|
11 top: 0; |
|
12 opacity: 0.3; |
|
13 z-index:20; |
|
14 display: none; |
|
15 } |
|
16 |
|
17 |
|
18 #BookmarkDialogContainer{ |
|
19 background-image: url(icons/add_bookmark_bg.png); |
|
20 background-repeat: repeat; |
|
21 z-index:21; |
|
22 height: 1000px; |
|
23 position: absolute; |
|
24 left: 0; |
|
25 right: 0; |
|
26 display: none; |
|
27 } |
|
28 |
|
29 #bookmarkAddForm{ |
|
30 opacity: 1; |
|
31 |
|
32 width: 250px; |
|
33 font-family:arial; |
|
34 font-size:11px; |
|
35 padding: 5px; |
|
36 margin-right: auto; |
|
37 margin-bottom: 0px; |
|
38 margin-left: auto; |
|
39 z-index:22; |
|
40 display: none; |
|
41 } |
|
42 .bookmarkAddFormPortriat{ |
|
43 margin-top:200px; |
|
44 } |
|
45 .bookmarkAddFormLandScape{ |
|
46 margin-top:100px; |
|
47 } |
|
48 |
|
49 |
|
50 table.dialogBox |
|
51 { |
|
52 background-color: #2E3B57; |
|
53 width: 250px; |
|
54 border-radius: 10px; |
|
55 border-style: solid; |
|
56 border-width: 4px; |
|
57 border-color: #2A3447; |
|
58 |
|
59 } |
|
60 |
|
61 table.dialogBox tr td{ |
|
62 text-align: center; |
|
63 } |
|
64 |
|
65 input.doneButton{ |
|
66 background-color: #616D7E; |
|
67 color: #ffffff; |
|
68 |
|
69 width: 100px; |
|
70 height: 50px; |
|
71 font-weight:bold; |
|
72 font-size: 20px; |
|
73 padding: 5px; |
|
74 border-radius: 5px; |
|
75 } |
|
76 |
|
77 input.cancelButton{ |
|
78 background-color: #616D7E; |
|
79 color: #ffffff; |
|
80 |
|
81 width: 100px; |
|
82 height: 50px; |
|
83 font-weight:bold; |
|
84 font-size: 20px; |
|
85 padding: 5px; |
|
86 border-radius: 5px; |
|
87 } |
|
88 input.textInputUI { |
|
89 padding: 3px; |
|
90 width: 100%; |
|
91 height: 40px; |
|
92 font-size: 20px; |
|
93 font-weight: bold; |
|
94 background-color: #FFF; |
|
95 border-radius: 5px; |
|
96 } |
|
97 |
|
98 input.titleTextBoxId:focus{ |
|
99 background-color: #0000FF; |
|
100 color: #ffffff; |
|
101 } |
|