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