Compare commits
2 commits
8fe980c4be
...
320e2abac2
Author | SHA1 | Date | |
---|---|---|---|
320e2abac2 | |||
438f6e2384 |
3 changed files with 6 additions and 3 deletions
|
@ -34,7 +34,7 @@
|
|||
<button onclick="showAddInstanceDialog()">Add an instance</button>
|
||||
</center>
|
||||
</div>
|
||||
<div class="half-width">
|
||||
<div class="half-width align-self-start">
|
||||
<div class="flex-hcenter">
|
||||
<div class="flex-column buttonPanel">
|
||||
<button id="redirect">Redirect</button>
|
||||
|
@ -99,7 +99,6 @@ Unchecking this is not recommended, and this option only exists for exceptional
|
|||
<div>
|
||||
<label for="iconContainer">Instance icon</label>
|
||||
<div id="iconContainer" class="square iconContainer">
|
||||
<!-- This data URI is for a transparent gif image -->
|
||||
<img id="instanceIcon" alt="Icon for the selected instance" class="icon" />
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -44,7 +44,7 @@ export const {
|
|||
|
||||
findPreOrFail(document.body, "#path").innerText = getTargetPath();
|
||||
|
||||
return initializeAddInstanceFlow(detailsDialog, addDialog)
|
||||
return initializeAddInstanceFlow(detailsDialog, addDialog);
|
||||
})();
|
||||
|
||||
function updateNoInstanceHint() {
|
||||
|
|
|
@ -67,6 +67,10 @@ abbr[title] {
|
|||
align-items: center;
|
||||
}
|
||||
|
||||
.align-self-start {
|
||||
align-self: start;
|
||||
}
|
||||
|
||||
.flex-vcenter {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
|
Loading…
Add table
Reference in a new issue