Skip to content

Commit

Permalink
Add border to query panel widgets (fixes #225)
Browse files Browse the repository at this point in the history
Change-Id: If0ab213121e3551b1fa535563afcbf6cdda1029a
  • Loading branch information
Akron committed Nov 8, 2024
1 parent b161fcc commit aefecc0
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
0.58 2024-10-14
0.58 2024-10-28
- Fix meta table view for key value pairs (diewald)
- Fix warning on OAuth public clients (diewald)
- Introduce navi->list helper (diewald)
- Add border to query panel widgets (fixes #225; diewald)

0.57 2024-10-08
- Support VCs via URL without queries (diewald)
Expand Down
1 change: 1 addition & 0 deletions dev/scss/header/header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
@import "querylanguage"; // Query language
@import "pipe"; // Pipe
@import "state"; // State
@import "panel"; // Panel

header {
@include box-sizing-box();
Expand Down
11 changes: 11 additions & 0 deletions dev/scss/header/panel.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
@import "../util";

// In addition to main/panel.scss

div.panel.query div.view {
background-color: $dark-green;
border-left: $border-size solid $dark-green;
iframe {
background-color: $nearly-white;
}
}
5 changes: 3 additions & 2 deletions dev/scss/main/panel.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
@import "../util";

/**
* Base styles for all panels and views
* Base styles for all panels and views,
* Including head
*/

div.panel {
Expand All @@ -19,4 +20,4 @@ div.view {

div.view:not(.show) {
display: none;
}
}

0 comments on commit aefecc0

Please sign in to comment.