indifex / hydroscope

The Hydroscope Project.

Clone this repository (size: 5.3 MB): HTTPS / SSH
$ hg clone http://bitbucket.org/indifex/hydroscope/

Changed (Δ8.1 KB):

raw changeset »

hydroscope/site_media/css/base.css (6 lines added, 4 lines removed)

hydroscope/site_media/css/map_page.css (4 lines added, 5 lines removed)

hydroscope/site_media/images/bg-clouds.png (binary file changed)

hydroscope/templates/hcore/station_map.html (2 lines added, 1 lines removed)

Up to file-list hydroscope/site_media/css/base.css:

@@ -13,6 +13,7 @@ body {
13
13
  color: #333;
14
14
  padding: 0;
15
15
  margin: 0;
16
  background: #C0DEED url(../images/bg-clouds.png) no-repeat fixed 0 0;
16
17
}
17
18
18
19
input,select{
@@ -38,8 +39,8 @@ div#wrapper {
38
39
	height: 100%;
39
40
	margin: 0 auto;
40
41
	min-width: 1000px;
41
    background-color: #DDD;
42
42
    padding: 0 4em; 
43
    max-width: 1200px;
43
44
}
44
45
45
46
div#header {
@@ -69,7 +70,7 @@ div#header div#navmenu {
69
70
70
71
71
72
div#content {
72
	background-color: #666;
73
    padding-top: 48px;
73
74
	padding-bottom: 0.1em;
74
75
    -webkit-border-bottom-left-radius: 5px;
75
76
    -webkit-border-bottom-right-radius: 5px;
@@ -80,8 +81,9 @@ div#content {
80
81
div#body {
81
82
  clear: both;
82
83
  background-color: white;
83
  -moz-border-radius: 5px;
84
  -webkit-border-radius: 5px;
84
  -moz-border-radius: 10px;
85
  -webkit-border-radius: 10px;
86
  border: 1px solid #AAAAAA;
85
87
  margin: 1em;
86
88
  min-height: 40em;
87
89
  padding: 0.5em 3em 3em 3em;

Up to file-list hydroscope/site_media/css/map_page.css:

9
9
10
10
#leftofmap{
11
11
    float: left;
12
    padding: 1em;
12
    padding: 1em 60px 1em 1em;
13
13
    border-right: 1px solid #FFF; 
14
14
    overflow:hidden;
15
15
}
17
17
    height: 700px;
18
18
    margin: 10px 10px 10px 10px;
19
19
    padding: 1em 1em 1em 1em;
20
21
20
}
22
21
23
22
#map_data{
24
23
    height: 100%;
25
24
    padding: 1em;
26
-moz-border-radius: 50px;
27
-webkit-border-radius: 50px;
25
    border: 2px solid #999999;
28
26
}
29
27
30
28
.hide_extra{ 
60
58
}
61
59
62
60
#station_table{
61
    min-width: 300px;
63
62
}
64
63
65
64
.pagination{
66
65
    font-size: 0.8em;
67
66
    float: left;
68
    margin-top: 0px;
67
    margin-top: 2px;
69
68
}

Up to file-list hydroscope/site_media/images/bg-clouds.png:

Binary file has changed or diff was empty.

Up to file-list hydroscope/templates/hcore/station_map.html:

128
128
        {% autosort station_list %}
129
129
        {% autopaginate station_list 15 %}
130
130
        {% block filters %}
131
        {% comment %}
131
132
          <h3>{% trans 'Filter' %}
132
133
            <sup>
133
134
                <a id="help_trigger" style="cursor:pointer">
138
139
          <fieldset class="ui-corner-all" style="padding-top:1em;border-style:solid;border-color:#DDD;max-width:520px;">
139
140
          {% filter_table request "False" %}
140
141
          </fieldset>
142
        {% endcomment %}
141
143
        {% endblock %}
142
144
        <h3>{% trans 'Station Catalogue' %}</h3>
143
145
        {% if station_list %}
176
178
          <p>{% trans "No entries found." %}</p>
177
179
          <p>{% trans "You may want to try again with a different filter." %}</p>
178
180
        {% endif %}
179
		<br />
180
181
        {% paginate %}
181
182
        {% endwith %} 
182
183
    </div>