mirror of https://github.com/mthenw/frontail.git
fix: ellipsis in title
parent
39f8410a2a
commit
0ceb864693
|
@ -13,23 +13,27 @@ body {
|
|||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.btn-pause {
|
||||
margin: 8px 0 8px;
|
||||
background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='%23999' viewBox='0 0 8 8'><path d='M1 1v6h2v-6h-2zm4 0v6h2v-6h-2z'></path></svg>") no-repeat center center;
|
||||
background-color: #e2e6ea;
|
||||
background-size: contain;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
height: 34px;
|
||||
width: 34px;
|
||||
border: 1px solid #ccc;
|
||||
margin: 8px 0 8px;
|
||||
background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='%23999' viewBox='0 0 8 8'><path d='M1 1v6h2v-6h-2zm4 0v6h2v-6h-2z'></path></svg>")
|
||||
no-repeat center center;
|
||||
background-color: #e2e6ea;
|
||||
background-size: contain;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
height: 34px;
|
||||
width: 34px;
|
||||
border: 1px solid #ccc;
|
||||
}
|
||||
|
||||
.btn-pause.play {
|
||||
background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='%23999' viewBox='0 0 8 8'><path d='M1 1v6l6-3-6-3z'></path></svg>") no-repeat center center;
|
||||
background-color: #e2e6ea;
|
||||
background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='%23999' viewBox='0 0 8 8'><path d='M1 1v6l6-3-6-3z'></path></svg>")
|
||||
no-repeat center center;
|
||||
background-color: #e2e6ea;
|
||||
}
|
||||
|
||||
.navbar-form-custom {
|
||||
|
|
|
@ -13,11 +13,11 @@
|
|||
<nav class="topbar navbar navbar-inverse navbar-fixed-top" role="navigation">
|
||||
<div class="container-fluid">
|
||||
<div class="row">
|
||||
<div class="col-sm-9">
|
||||
<span class="navbar-brand" title="__TITLE__">tail -f __TITLE__</span>
|
||||
<div class="text-right">
|
||||
<button type="button" class="btn btn-light btn-pause" data-toggle="button" aria-pressed="false" autocomplete="off"></button>
|
||||
</div>
|
||||
<div class="col-sm-8">
|
||||
<span class="navbar-brand text-overflow" title="__TITLE__">tail -f __TITLE__</span>
|
||||
</div>
|
||||
<div class="col-sm-1 text-right">
|
||||
<button type="button" class="btn btn-light btn-pause" data-toggle="button" aria-pressed="false" autocomplete="off"></button>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<form class="navbar-form-custom" role="search" onkeypress="return event.keyCode != 13;">
|
||||
|
|
Loading…
Reference in New Issue