Update map control icons

This commit is contained in:
James Wilson 2017-01-18 18:14:27 -06:00
parent 6c86d4f276
commit cc75121d37
16 changed files with 57 additions and 19 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 329 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 494 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 629 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 700 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 699 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 914 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 439 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 705 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 917 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 379 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 598 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 834 B

View file

@ -35,49 +35,53 @@ html, body {
#toggle_sidebar_control { #toggle_sidebar_control {
display: block; display: block;
position: absolute; position: absolute;
top: 10px; top: 16px;
right: 10px; right: -3px;
} }
#toggle_sidebar_button { #toggle_sidebar_button {
cursor: pointer;
float: right; float: right;
width: 32px; width: 24px;
height: 28px; height: 25px;
background-size: 32px 28px; background-size: 24px 25px;
background-repeat: no-repeat; background-repeat: no-repeat;
background-position: 0px; background-position: 0px;
background-color: transparent; background-color: transparent;
border: none; border: none;
} }
#toggle_sidebar_button.show_sidebar { #toggle_sidebar_button.show_sidebar {
background-image: url("images/show_sidebar_inactive_48x40.png"); background-image: url("images/table-icon.png");
} }
#toggle_sidebar_button.show_sidebar:hover { #toggle_sidebar_button.show_sidebar:hover {
background-image: url("images/show_sidebar_active_48x40.png"); background-image: url("images/table-icon.png");
} }
#toggle_sidebar_button.hide_sidebar { #toggle_sidebar_button.hide_sidebar {
background-image: url("images/hide_sidebar_inactive_48x40.png"); background-image: url("images/map-icon.png");
} }
#toggle_sidebar_button.hide_sidebar:hover { #toggle_sidebar_button.hide_sidebar:hover {
background-image: url("images/hide_sidebar_active_48x40.png"); background-image: url("images/map-icon.png");
} }
#expand_sidebar_control { #expand_sidebar_control {
display: block; display: block;
position: absolute; position: absolute;
top: 48px; top: 48px;
right: 10px; right: -3px;
} }
#expand_sidebar_button { #expand_sidebar_button {
cursor: pointer;
float: right; float: right;
width: 32px; width: 24px;
height: 28px; height: 25px;
background-size: 32px 28px; background-size: 24px 25px;
background-repeat: no-repeat; background-repeat: no-repeat;
background-position: 0px; background-position: 0px;
background-color: transparent; background-color: transparent;
@ -85,11 +89,11 @@ html, body {
} }
#expand_sidebar_button { #expand_sidebar_button {
background-image: url("images/show_sidebar_inactive_48x40.png"); background-image: url("images/table-icon.png");
} }
#expand_sidebar_button:hover { #expand_sidebar_button:hover {
background-image: url("images/show_sidebar_active_48x40.png"); background-image: url("images/table-icon.png");
} }
#sidebar_container { #sidebar_container {
@ -98,11 +102,44 @@ html, body {
left: 0 !important; left: 0 !important;
} }
#splitter { #splitter {
flex: 0 0 6px;
cursor: col-resize; cursor: col-resize;
background-color: #bbbbbb; display: block;
left: 0 !important; position: absolute;
top: 125px;
left: -24px;
float: right;
width: 24px;
height: 25px;
background-size: 24px 25px;
background-repeat: no-repeat;
background-position: 0px;
background-color: transparent;
border: none;
background-image: url("images/column-adjust.png");
}
.ol-zoom-in {
background-image: url("images/zoom-in.png");
color:transparent !important;
width: 19px !important;
height: 19px !important;
background-color: transparent !important;
margin-bottom: 5px !important;
}
.ol-zoom-out {
background-image: url("images/zoom-out.png");
color:transparent !important;
width: 19px !important;
height: 19px !important;
background-color: transparent !important;
}
.ol-zoom {
background-color: transparent !important;
left: 10px !important;
} }
#sidebar_canvas { #sidebar_canvas {
@ -199,7 +236,8 @@ select.error, textarea.error, input.error {
} }
.layer-switcher { .layer-switcher {
top: 86px !important; bottom: 50px !important;
top: auto !important;
right: 10px !important; right: 10px !important;
} }