Fixed title bar

This commit is contained in:
brantje 2016-10-07 13:56:17 +02:00
parent 0304fdfd66
commit 0326a60069
No known key found for this signature in database
GPG key ID: 5FF1D117F918687F
5 changed files with 19 additions and 4 deletions

View file

@ -160,11 +160,17 @@
#app-content #app-content-wrapper #passman-controls {
border-bottom: 1px solid #c9c9c9; }
#app-content #app-content-wrapper .title {
width: calc(100% - 380px);
width: calc(100% - 400px);
text-align: center;
display: inline-block;
font-weight: bold;
margin-top: 10px; }
@media screen and (max-width: 575px) {
#app-content #app-content-wrapper .title {
display: none; } }
@media screen and (min-width: 769px) and (max-width: 820px) {
#app-content #app-content-wrapper .title {
display: none; } }
#app-content #app-content-wrapper .actions.creatable {
float: left;
overflow: hidden; }

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -6,11 +6,17 @@
border-bottom: 1px solid #c9c9c9
}
.title {
width: calc(100% - 380px);
width: calc(100% - 400px);
text-align: center;
display: inline-block;
font-weight: bold;
margin-top: 10px;
@media screen and (max-width: 575px){
display: none;
}
@media screen and (min-width: 769px) and (max-width: 820px){
display: none;
}
}
.actions.creatable {
float: left;

View file

@ -19,6 +19,9 @@
<span ng-click="addCredential()" class="button new">
<span >+</span></span>
</div>
<div class="title" ng-show="filtered_credentials.length > 0">
Showing {{filtered_credentials.length}} of {{active_vault.credentials.length - 1}} credentials
</div>
<div class="searchboxContainer">
<input type="text" ng-model="filterOptions.filterText" class="searchbox"
placeholder="Search credential..." select-on-click>