include a topbar with title
This commit is contained in:
parent
b6197ad4a7
commit
b40ff4fb43
2 changed files with 42 additions and 11 deletions
|
@ -89,7 +89,24 @@ input[type=text], input[type=password] {
|
|||
background: rgba(255,255,255,0.5);
|
||||
border-radius: 0;
|
||||
}
|
||||
#sidebar, .panel {
|
||||
#topbar {
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
height: 25px;
|
||||
z-index: 1;
|
||||
}
|
||||
#topbar .brand {
|
||||
height: 25px;
|
||||
padding-left: 5px;
|
||||
}
|
||||
#topbar .brand img {
|
||||
height: 25px;
|
||||
}
|
||||
#topbar .title {
|
||||
padding-left: 14%;
|
||||
}
|
||||
|
||||
#topbar, #sidebar, .panel {
|
||||
background: #282828;
|
||||
}
|
||||
#sidebar {
|
||||
|
@ -99,6 +116,10 @@ input[type=text], input[type=password] {
|
|||
height: 100%;
|
||||
min-width: 130px;
|
||||
overflow: auto;
|
||||
padding-top: 35px; /* topbar */
|
||||
}
|
||||
#sidebar form {
|
||||
padding-left: 5px;
|
||||
}
|
||||
.content {
|
||||
height: 100%;
|
||||
|
@ -111,7 +132,8 @@ input[type=text], input[type=password] {
|
|||
margin-left: 14%;
|
||||
width: auto;
|
||||
position: relative;
|
||||
padding-bottom: 55px;
|
||||
padding-bottom: 55px; /* bottom input */
|
||||
padding-top: 35px; /* topbar */
|
||||
}
|
||||
.bufferlines .btn {
|
||||
font-family: sans-serif;
|
||||
|
@ -125,6 +147,7 @@ input[type=text], input[type=password] {
|
|||
position: relative;
|
||||
min-height: 0;
|
||||
margin-left: 0;
|
||||
height: auto;
|
||||
max-width: 100%;
|
||||
border: 0;
|
||||
}
|
||||
|
|
20
index.html
20
index.html
|
@ -23,7 +23,7 @@
|
|||
<body ng-controller="WeechatCtrl" ng-keydown="handleKeyPress($event)">
|
||||
<div ng-hide="connected" class="container">
|
||||
<h2>
|
||||
<img src="img/favicon.png">
|
||||
<img alt="logo" src="img/favicon.png">
|
||||
glowing bear
|
||||
<small>
|
||||
WeeChat web frontend
|
||||
|
@ -125,12 +125,15 @@
|
|||
</div>
|
||||
</div>
|
||||
<div class="content" ng-show="connected">
|
||||
<div id="topbar">
|
||||
<div class="brand pull-left">
|
||||
<img alt="brand" src="img/favicon.png">
|
||||
</div>
|
||||
<div class="title">
|
||||
{{ pageTitle}}
|
||||
</div>
|
||||
</div>
|
||||
<div id="sidebar">
|
||||
<ul class="nav nav-pills nav-stacked">
|
||||
<li class="bufferfilter">
|
||||
<form role="form">
|
||||
<input class="form-control" type="text" id="bufferFilter" ng-model="search.$" placeholder="Search">
|
||||
</form>
|
||||
<form class="form-inline" role="form">
|
||||
<div class="checkbox">
|
||||
<label>
|
||||
|
@ -139,6 +142,11 @@
|
|||
</label>
|
||||
</div>
|
||||
</form>
|
||||
<ul class="nav nav-pills nav-stacked">
|
||||
<li class="bufferfilter">
|
||||
<form role="form">
|
||||
<input class="form-control" type="text" id="bufferFilter" ng-model="search.$" placeholder="Search">
|
||||
</form>
|
||||
</li>
|
||||
<li class="label" ng-class="{'active': content.active }" ng-repeat="(key, content) in buffers | toArray | filter:search | filter:hasUnread | orderBy:'content.number':true">
|
||||
<a href="#" ng-click="setActiveBuffer(content.id)" title="{{ content.fullName }}">
|
||||
|
|
Loading…
Reference in a new issue