Compare commits
3 Commits
211e4978f3
...
6629b834fd
Author | SHA1 | Date | |
---|---|---|---|
|
6629b834fd | ||
|
718610c3fb | ||
|
37c72f3ab1 |
2
go.mod
2
go.mod
@ -3,7 +3,7 @@ module smon
|
|||||||
go 1.22.0
|
go 1.22.0
|
||||||
|
|
||||||
require (
|
require (
|
||||||
git.gibonuddevalla.se/go/webservice v0.2.12
|
git.gibonuddevalla.se/go/webservice v0.2.15
|
||||||
git.gibonuddevalla.se/go/wrappederror v0.3.4
|
git.gibonuddevalla.se/go/wrappederror v0.3.4
|
||||||
github.com/expr-lang/expr v1.16.5
|
github.com/expr-lang/expr v1.16.5
|
||||||
)
|
)
|
||||||
|
@ -105,42 +105,36 @@ label {
|
|||||||
}
|
}
|
||||||
#menu {
|
#menu {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: min-content;
|
grid-template-columns: 1fr;
|
||||||
grid-template-rows: 38px
|
grid-template-rows: repeat(32, min-content);
|
||||||
48px
|
|
||||||
|
|
||||||
38px
|
|
||||||
48px
|
|
||||||
|
|
||||||
38px
|
|
||||||
48px
|
|
||||||
|
|
||||||
38px
|
|
||||||
48px
|
|
||||||
|
|
||||||
38px
|
|
||||||
48px
|
|
||||||
;
|
|
||||||
justify-items: center;
|
|
||||||
align-items: start;
|
align-items: start;
|
||||||
grid-area: menu;
|
grid-area: menu;
|
||||||
background: #202020;
|
background: #202020;
|
||||||
padding: 16px;
|
|
||||||
}
|
}
|
||||||
#menu img {
|
#menu .entry.selected {
|
||||||
|
background: #333;
|
||||||
|
}
|
||||||
|
#menu .entry.selected a {
|
||||||
|
color: #f7edd7 !important;
|
||||||
|
}
|
||||||
|
#menu .entry > a {
|
||||||
|
display: grid;
|
||||||
|
justify-items: center;
|
||||||
|
grid-template-rows: 38px
|
||||||
|
16px
|
||||||
|
;
|
||||||
|
padding: 16px;
|
||||||
|
color: #777;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
#menu .entry > a img {
|
||||||
display: block;
|
display: block;
|
||||||
width: 32px;
|
width: 32px;
|
||||||
}
|
}
|
||||||
#menu .label {
|
#menu .entry > a .label {
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
#menu .label a {
|
|
||||||
color: #777;
|
|
||||||
}
|
|
||||||
#menu .label.selected a {
|
|
||||||
color: #f7edd7;
|
|
||||||
}
|
|
||||||
#page {
|
#page {
|
||||||
grid-area: content;
|
grid-area: content;
|
||||||
padding: 32px;
|
padding: 32px;
|
||||||
@ -180,6 +174,11 @@ label {
|
|||||||
}
|
}
|
||||||
#areas .area .section {
|
#areas .area .section {
|
||||||
margin: 8px 16px;
|
margin: 8px 16px;
|
||||||
|
margin-top: 12px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
#areas .area .section:last-child {
|
||||||
|
margin-bottom: 12px;
|
||||||
}
|
}
|
||||||
#areas .area .section .create {
|
#areas .area .section .create {
|
||||||
display: grid;
|
display: grid;
|
||||||
|
@ -9,29 +9,29 @@
|
|||||||
|
|
||||||
#menu {
|
#menu {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: min-content;
|
grid-template-columns: 1fr;
|
||||||
grid-template-rows:
|
grid-template-rows: repeat(32, min-content);
|
||||||
38px
|
|
||||||
48px
|
|
||||||
|
|
||||||
38px
|
|
||||||
48px
|
|
||||||
|
|
||||||
38px
|
|
||||||
48px
|
|
||||||
|
|
||||||
38px
|
|
||||||
48px
|
|
||||||
|
|
||||||
38px
|
|
||||||
48px
|
|
||||||
;
|
|
||||||
justify-items: center;
|
|
||||||
align-items: start;
|
align-items: start;
|
||||||
|
|
||||||
grid-area: menu;
|
grid-area: menu;
|
||||||
background: @bg2;
|
background: @bg2;
|
||||||
|
|
||||||
|
.entry {
|
||||||
|
&.selected {
|
||||||
|
background: @bg3;
|
||||||
|
a { color: @text2 !important; }
|
||||||
|
}
|
||||||
|
|
||||||
|
&>a {
|
||||||
|
display: grid;
|
||||||
|
justify-items: center;
|
||||||
|
grid-template-rows:
|
||||||
|
38px
|
||||||
|
16px
|
||||||
|
;
|
||||||
padding: 16px;
|
padding: 16px;
|
||||||
|
color: #777;
|
||||||
|
text-decoration: none;
|
||||||
|
|
||||||
img {
|
img {
|
||||||
display: block;
|
display: block;
|
||||||
@ -41,11 +41,7 @@
|
|||||||
.label {
|
.label {
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
}
|
||||||
a { color: #777; }
|
|
||||||
|
|
||||||
&.selected {
|
|
||||||
a { color: @text2; }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -95,6 +91,12 @@
|
|||||||
|
|
||||||
.section {
|
.section {
|
||||||
margin: 8px 16px;
|
margin: 8px 16px;
|
||||||
|
margin-top: 12px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
|
||||||
|
&:last-child {
|
||||||
|
margin-bottom: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
.create {
|
.create {
|
||||||
display: grid;
|
display: grid;
|
||||||
|
@ -1,18 +1,38 @@
|
|||||||
{{ define "menu" }}
|
{{ define "menu" }}
|
||||||
<div id="menu">
|
<div id="menu">
|
||||||
<a href="/"><img src="/images/{{ .VERSION }}/logo{{ if eq .MENU "index" }}_selected{{ end }}.svg"></a>
|
<div class="entry {{ if eq .MENU "index" }}selected{{ end }}">
|
||||||
<div class="label {{ if eq .MENU "index" }}selected{{ end }}"><a href="/">Start</a></div>
|
<a href="/">
|
||||||
|
<img src="/images/{{ .VERSION }}/logo{{ if eq .MENU "index" }}_selected{{ end }}.svg">
|
||||||
|
<div class="label">Start</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
<a href="/problems"><img src="/images/{{ .VERSION }}/problems{{ if eq .MENU "problems" }}_selected{{ end }}.svg"></a>
|
<div class="entry {{ if eq .MENU "problems" }}selected{{ end }}">
|
||||||
<div class="label {{ if eq .MENU "problems" }}selected{{ end }}"><a href="/problems">Problems</a></div>
|
<a href="/problems">
|
||||||
|
<img src="/images/{{ .VERSION }}/problems{{ if eq .MENU "problems" }}_selected{{ end }}.svg">
|
||||||
|
<div class="label">Problems</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
<a href="/datapoints"><img src="/images/{{ .VERSION }}/datapoints{{ if eq .MENU "datapoints" }}_selected{{ end }}.svg"></a>
|
<div class="entry {{ if eq .MENU "datapoints" }}selected{{ end }}">
|
||||||
<div class="label {{ if eq .MENU "datapoints" }}selected{{ end }}"><a href="/datapoints">Datapoints</a></div>
|
<a href="/datapoints">
|
||||||
|
<img src="/images/{{ .VERSION }}/datapoints{{ if eq .MENU "datapoints" }}_selected{{ end }}.svg">
|
||||||
|
<div class="label">Datapoints</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
<a href="/triggers"><img src="/images/{{ .VERSION }}/triggers{{ if eq .MENU "triggers" }}_selected{{ end }}.svg"></a>
|
<div class="entry {{ if eq .MENU "triggers" }}selected{{ end }}">
|
||||||
<div class="label {{ if eq .MENU "triggers" }}selected{{ end }}"><a href="/triggers">Triggers</a></div>
|
<a href="/triggers">
|
||||||
|
<img src="/images/{{ .VERSION }}/triggers{{ if eq .MENU "triggers" }}_selected{{ end }}.svg">
|
||||||
|
<div class="label">Triggers</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
<a href="/configuration"><img src="/images/{{ .VERSION }}/configuration{{ if eq .MENU "configuration" }}_selected{{ end }}.svg"></a>
|
<div class="entry {{ if eq .MENU "configuration" }}selected{{ end }}">
|
||||||
<div class="label {{ if eq .MENU "configuration" }}selected{{ end }}"><a href="/configuration">Config</a></div>
|
<a href="/configuration">
|
||||||
|
<img src="/images/{{ .VERSION }}/configuration{{ if eq .MENU "configuration" }}_selected{{ end }}.svg">
|
||||||
|
<div class="label">Config</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
Loading…
Reference in New Issue
Block a user