Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldin95 committed Mar 15, 2021
1 parent f23a3db commit 59220bd
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/http/static/css/boot.css
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ a:hover, a:focus {

.card-body-tbl {
overflow: auto;
min-height: 300px;
min-height: 200px;
max-height: 500px;
}

Expand Down
4 changes: 4 additions & 0 deletions src/http/static/css/instance.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
color: black;
}

.device .card-body-tbl {
min-height: 300px;
}

.modal-console {
min-width: 802px;
min-height: 660px;
Expand Down
15 changes: 14 additions & 1 deletion src/http/static/css/main.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
@media (min-width: 768px) {
.dl-horizontal dt {
float: left;
width: 180px;
overflow: hidden;
clear: left;
text-overflow: ellipsis;
white-space: nowrap;
font-weight: normal;
}
.dl-horizontal dd {
margin-left: 180px;
padding-left: 15px;
}
.dl-horizontal-center dt {
float: left;
width: 20%;
overflow: hidden;
Expand All @@ -9,7 +22,7 @@
font-weight: normal;
text-align: right;
}
.dl-horizontal dd {
.dl-horizontal-center dd {
margin-left: 20%;
padding-left: 15px;
}
Expand Down
2 changes: 1 addition & 1 deletion src/http/static/js/widget/container/guest.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ export class Guest extends Container {
</div>
</div>
<div class="col-sm-12 col-md-7 col-lg-8 mt-1">
<dl class="dl-horizontal">
<dl class="dl-horizontal dl-horizontal-center">
<dt>{{'name' | i}}:</dt>
<dd>&nbsp;{{name}}</dd>
<dt>{{'state' | i}}:</dt>
Expand Down

0 comments on commit 59220bd

Please sign in to comment.