diff --git a/ChangeLog.md b/ChangeLog.md index b1839a8b..0b74b8ce 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,4 +1,18 @@ # Changelog: +* **18.12.18** + - Added bookmarks and bookmarks management + - Added query user visibility button and creation (Query management will follow soon) + - Fixed overflow within the group assignment dialog + +* **17.12.18** + - Implemented group prefix and suffix + +* **15.12.18** + - Implemented a translation system with default translated language sets for + - German + - Turkish + - Russian + * **3.12.18** - Fixed url connect parameters diff --git a/shared/css/control_bar.scss b/shared/css/control_bar.scss index bad8261d..5b8188a3 100644 --- a/shared/css/control_bar.scss +++ b/shared/css/control_bar.scss @@ -103,9 +103,7 @@ $background:lightgray; background-color: $background; border-radius: 5px; align-items: center; - border: 2px solid rgba(0, 0, 0, 0); - - border-color: $border_color_activated; + border: 2px solid $border_color_activated; width: 230px; user-select: none; @@ -134,6 +132,10 @@ $background:lightgray; & > div:last-of-type { border-radius: 0 0 2px 2px; } + + &.display_left { + margin-left: -165px; + } } &:hover { @@ -142,4 +144,10 @@ $background:lightgray; } } } + + .bookmark-dropdown { + hr:last-child { + display: none; + } + } } \ No newline at end of file diff --git a/shared/css/modal-query.scss b/shared/css/modal-query.scss new file mode 100644 index 00000000..746b4512 --- /dev/null +++ b/shared/css/modal-query.scss @@ -0,0 +1,59 @@ +.query-create { + display: flex; + flex-direction: column; + + .row-name { + width: 100%; + + display: flex; + flex-direction: row; + justify-content: stretch; + + input { + flex-grow: 1; + flex-shrink: 1; + margin-left: 5px; + } + } + + .buttons { + margin-top: 5px; + text-align: right; + } +} + +.query-created { + display: flex; + flex-direction: column; + + .property-row { + width: 100%; + + display: flex; + flex-direction: row; + justify-content: stretch; + align-items: center; + + margin-top: 2px; + + input { + flex-grow: 1; + flex-shrink: 1; + margin-left: 5px; + } + + a:first-of-type { + width: 150px; + } + + div:last-of-type { + margin-left: 5px; + cursor: pointer; + } + } + + .buttons { + margin-top: 5px; + text-align: right; + } +} \ No newline at end of file diff --git a/shared/css/modals.scss b/shared/css/modals.scss index f69b52b5..4658a269 100644 --- a/shared/css/modals.scss +++ b/shared/css/modals.scss @@ -520,6 +520,7 @@ .group-list { border: lightgray solid 1px; padding: 3px; + overflow-y: auto; .group-entry { display: flex; diff --git a/shared/html/index.php b/shared/html/index.php index f30960aa..4a9ba89d 100644 --- a/shared/html/index.php +++ b/shared/html/index.php @@ -50,6 +50,7 @@ + diff --git a/shared/html/templates.html b/shared/html/templates.html index 15c92438..6e75362c 100644 --- a/shared/html/templates.html +++ b/shared/html/templates.html @@ -19,7 +19,24 @@
- + +