Skip to content

Commit

Permalink
Fix layout
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeininger committed Dec 18, 2023
1 parent c03608f commit 0af4a7d
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 615 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Changelog
---------

2.1.1
*****

https://github.com/openoereb/oereb_client/milestone/14

- Small fixes in UI

2.1.0
*****

Expand Down
2 changes: 1 addition & 1 deletion oereb_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from pyramid_mako import add_mako_renderer


__version__ = '2.1.0'
__version__ = '2.1.1'


log = logging.getLogger('oereb_client')
Expand Down
2 changes: 2 additions & 0 deletions oereb_client/static/src/component/legend/legend.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ table.oereb-client-legend {
th {
font-style: oblique;
font-weight: normal;
border-bottom-width: 2px;
border-bottom-color: #000000;
}

td.oereb-client-legend-text {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ const OerebToggleBackground = function () {

let buttonClass;
if (background) {
buttonClass = "btn btn-outline-secondary";
buttonClass = "btn btn-outline-secondary oereb-client-toggle-background";
}
else {
buttonClass = "btn btn-secondary";
buttonClass = "btn btn-secondary oereb-client-toggle-background";
}

return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ const OerebToggleHighlight = function () {

let buttonClass;
if (highlight) {
buttonClass = "btn btn-outline-secondary";
buttonClass = "btn btn-outline-secondary oereb-client-toggle-highlight";
}
else {
buttonClass = "btn btn-secondary";
buttonClass = "btn btn-secondary oereb-client-toggle-highlight";
}

return (
Expand Down
Loading

0 comments on commit 0af4a7d

Please sign in to comment.