mirror of
https://github.com/nextcloud/passman.git
synced 2025-12-09 05:05:51 +08:00
Fixed title bar
This commit is contained in:
parent
0304fdfd66
commit
0326a60069
5 changed files with 19 additions and 4 deletions
|
|
@ -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
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue