* Fixed Styling
This commit is contained in:
parent
c8fa24f11c
commit
40e02abe87
|
@ -5,6 +5,7 @@
|
||||||
--bg1: #282d33;
|
--bg1: #282d33;
|
||||||
--bg2: #31373f;
|
--bg2: #31373f;
|
||||||
--bg3: #3e4248;
|
--bg3: #3e4248;
|
||||||
|
--bg4: #1a1c1f;
|
||||||
|
|
||||||
--fg0: #bbc0ca;
|
--fg0: #bbc0ca;
|
||||||
--fg1: #434c56;
|
--fg1: #434c56;
|
||||||
|
@ -88,6 +89,7 @@ input {
|
||||||
color: var(--fg0);
|
color: var(--fg0);
|
||||||
|
|
||||||
border: 1px solid var(--fg1);
|
border: 1px solid var(--fg1);
|
||||||
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn {
|
.btn {
|
||||||
|
@ -98,14 +100,14 @@ input {
|
||||||
border: 1px solid var(--fg1);
|
border: 1px solid var(--fg1);
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
|
|
||||||
background-color: var(--bg3);
|
background-color: var(--bg4);
|
||||||
color: var(--fg0);
|
color: var(--fg0);
|
||||||
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn:hover {
|
.btn:hover {
|
||||||
background-color: var(--bg2);
|
background-color: var(--bg3);
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-grp {
|
.input-grp {
|
||||||
|
@ -122,12 +124,13 @@ input {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-flow: wrap;
|
flex-flow: wrap;
|
||||||
|
|
||||||
align-items: center;
|
|
||||||
justify-content: space-evenly;
|
|
||||||
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.graph-controls input:nth-child(0) {
|
||||||
|
margin-right: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
.controls-panel {
|
.controls-panel {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-flow: column;
|
flex-flow: column;
|
||||||
|
|
|
@ -77,7 +77,7 @@
|
||||||
<span id="inp-older" style="display: none !important" hidden="true">{{ .older }}</span>
|
<span id="inp-older" style="display: none !important" hidden="true">{{ .older }}</span>
|
||||||
<span id="inp-newer" style="display: none !important" hidden="true">{{ .newer }}</span>
|
<span id="inp-newer" style="display: none !important" hidden="true">{{ .newer }}</span>
|
||||||
|
|
||||||
<div class="input-grp">
|
<div class="input-grp" style="margin-right: 1rem;">
|
||||||
<label for="olderThan">From Date</label>
|
<label for="olderThan">From Date</label>
|
||||||
<input id="olderThan" type="datetime-local" class="date-change-inp">
|
<input id="olderThan" type="datetime-local" class="date-change-inp">
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue