source: extensions/rv_gmaps/trunk/template/style.css @ 15907

Last change on this file since 15907 was 12706, checked in by rvelices, 12 years ago

rv_gmaps use places autocomplete + added new markers + better algo for displaying markers

  • Property svn:eol-style set to LF
File size: 2.0 KB
Line 
1
2HTML, BODY {
3        height: 100%;
4        max-height: 100%;
5        margin: 0;
6        padding: 0;
7        border: 0;
8}
9
10HTML {
11/* hide overflow:hidden from IE5/Mac */
12        overflow: hidden; /*get rid of scroll bars in IE */
13        /* */
14}
15
16BODY {
17        font-family: Verdana, Arial, Helvetica, sans-serif;
18        font-size: 12px;
19}
20
21
22#titlebar {
23        width: 100%;
24        height: 18px;
25        overflow: hidden;
26}
27
28
29#map {
30        overflow: auto;
31        position: absolute;
32        left: 0; width: 100%;
33        top: 18px; bottom: 0;
34}
35
36
37
38
39#titlebar .titlebar_links { float:right; }
40
41#titlebar .titlebar_title {
42  margin-left: 5px;
43  margin-right: 5px;
44}
45
46#titlebar .titlebar_title A {
47  font-size: 14px;
48  font-weight: bold;
49}
50
51#titlebar INPUT {
52  border: 1px solid gray;
53  font-size:80%;
54  color: #404040;
55  background-color: #dddddd;
56}
57
58
59#titlebar INPUT:focus {
60  color: black;
61  background-color: #ffffff;
62}
63
64#titlebar .titlebar_links A {
65  border: none;
66  text-decoration: none;
67}
68
69#titlebar .titlebar_links A SPAN {
70  text-decoration: underline;
71}
72
73#titlebar IMG {
74  border: none;
75  vertical-align: bottom;
76}
77
78
79#titlebar #dataLoadStatus {
80        min-width: 150px;
81        width: 150px;
82        margin-right: 10px;
83        margin-left: 5px;
84        font-weight: bold;
85}
86
87
88/* Info Window Structure is
89DIV.gmiw_header
90  SPAN#pwgImageCounters
91  A#gotoPrevImage
92  A#gotoNextImage
93  A#pwgImageBlowup
94DIV#pwgImageDetail
95  DIV.gmiw_imageTitle
96  DIV.gmiw_imageContent
97    DIV.gmiw_imageWrap
98      A IMG
99    DIV.gmiw_imageComment
100*/
101
102.gmiw_header A {
103        margin-left: 5px;
104        border: none;
105        text-decoration: none;
106}
107
108.gmiw_header IMG { vertical-align: bottom; }
109
110.gmiw_header A SPAN { text-decoration: underline; }
111
112.gmiw_header A#pwgImageBlowup {
113        margin-left: 15px;
114        font-weight: bold;
115}
116
117.gmiw_imageTitle {
118        font-size: 14px;
119        font-weight: bold;
120}
121
122.gmiw_imageContent {
123        min-width: 325px;
124        width: 325px;
125        min-height: 168px;
126        height: 168px;
127        overflow-y: auto;
128}
129
130.gmiw_imageWrap {
131        margin: 0 5px -3px 0; /* - for bottom something wrong with Geko and Opera ignored by IE6*/
132        float:left;
133        display:inline;
134}
135
136.gmiw_imageWrap A IMG { border-width: 1px; }
137
138.gmiw_imageComment {  display:inline; }
139
140
Note: See TracBrowser for help on using the repository browser.