mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-29 11:02:08 +00:00
fix layout issues in dashboard.html
This commit is contained in:
parent
49330b373c
commit
d9cff3a5e8
@ -116,21 +116,29 @@
|
|||||||
width: 50%;
|
width: 50%;
|
||||||
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-flow: row wrap;
|
flex-flow: column nowrap;
|
||||||
}
|
}
|
||||||
.unconnected #url {
|
.unconnected #url {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
.unconnected #user {
|
#user {
|
||||||
|
margin-right: 0.25rem;
|
||||||
width: 50%;
|
width: 50%;
|
||||||
}
|
}
|
||||||
.unconnected #password {
|
#password {
|
||||||
width: 49.5%;
|
width: 49.5%;
|
||||||
}
|
}
|
||||||
.unconnected input {
|
.unconnected input {
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#username-password {
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
flex-flow: row nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
.inputs #chart-params {
|
.inputs #chart-params {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
@ -142,7 +150,7 @@
|
|||||||
#connection-params {
|
#connection-params {
|
||||||
margin-bottom: 0.5rem;
|
margin-bottom: 0.5rem;
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: auto 15% 15%;
|
grid-template-columns: 69.77% 30%;
|
||||||
column-gap: 0.25rem;
|
column-gap: 0.25rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -339,8 +347,10 @@
|
|||||||
<form id="params">
|
<form id="params">
|
||||||
<div id="connection-params">
|
<div id="connection-params">
|
||||||
<input spellcheck="false" id="url" type="text" value="" placeholder="URL" />
|
<input spellcheck="false" id="url" type="text" value="" placeholder="URL" />
|
||||||
<input spellcheck="false" id="user" type="text" value="" placeholder="user" />
|
<div id="username-password">
|
||||||
<input spellcheck="false" id="password" type="password" placeholder="password" />
|
<input spellcheck="false" id="user" type="text" value="" placeholder="user" />
|
||||||
|
<input spellcheck="false" id="password" type="password" placeholder="password" />
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<input id="reload" type="button" value="Reload">
|
<input id="reload" type="button" value="Reload">
|
||||||
|
Loading…
Reference in New Issue
Block a user