mirror of
https://github.com/nextcloud/passman.git
synced 2025-09-12 16:04:35 +08:00
Updated Css
Signed-off-by: fnuesse <felix.nuesse@t-online.de>
This commit is contained in:
parent
d90626bc8e
commit
3e050c9a15
3 changed files with 25 additions and 13 deletions
|
@ -42,8 +42,8 @@ For an demo of this app visit [https://demo.passman.cc](https://demo.passman.cc)
|
|||
<database>pgsql</database>
|
||||
<database min-version="5.5">mysql</database>
|
||||
<lib>openssl</lib>
|
||||
<owncloud min-version="9" max-version="11" />
|
||||
<nextcloud min-version="9" max-version="14" />
|
||||
<owncloud min-version="9" max-version="15" />
|
||||
<nextcloud min-version="9" max-version="15" />
|
||||
</dependencies>
|
||||
|
||||
<background-jobs>
|
||||
|
|
22
css/app.css
22
css/app.css
|
@ -275,7 +275,8 @@
|
|||
padding: 12px;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
z-index: 800;
|
||||
z-index: 18000;
|
||||
visibility: hidden; /* TODO remove */
|
||||
background-color: red;
|
||||
color: white; }
|
||||
.warning_bar .fa-times {
|
||||
|
@ -386,8 +387,11 @@
|
|||
@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 {
|
||||
#app-content #app-content-wrapper .breadcrumb {
|
||||
float: left;
|
||||
}
|
||||
#app-content #app-content-wrapper .actions.creatable {
|
||||
float: right;
|
||||
overflow: hidden; }
|
||||
#app-content #app-content-wrapper .actions.creatable .bubble {
|
||||
position: relative;
|
||||
|
@ -665,7 +669,7 @@
|
|||
cursor: pointer; }
|
||||
#app-content #app-content-wrapper .app_sidebar.item_selected {
|
||||
height: 25%;
|
||||
display: inline-block; }
|
||||
display: inline-block; }
|
||||
#app-content #app-content-wrapper .app_sidebar .credential-data .row {
|
||||
margin-bottom: 11px; }
|
||||
#app-content #app-content-wrapper .app_sidebar .credential-data .tags {
|
||||
|
@ -1004,7 +1008,9 @@
|
|||
margin-right: 0 !important; }
|
||||
|
||||
#app-content #app-content-wrapper #passman-controls {
|
||||
border-bottom: 1px solid #c9c9c9; }
|
||||
margin-top: 5px;
|
||||
border-bottom: 1px solid #c9c9c9;
|
||||
}
|
||||
|
||||
#passman-controls {
|
||||
box-sizing: border-box;
|
||||
|
@ -1027,8 +1033,12 @@
|
|||
width: 100%; } }
|
||||
@media only screen and (min-width: 768px) {
|
||||
#app-navigation + #app-content #passman-controls {
|
||||
left: 250px;
|
||||
width: calc( 100% - 250px ) !important; } }
|
||||
left: 300px;
|
||||
width: calc( 100% - 300px ) !important; }
|
||||
#passman-controls {
|
||||
right: 0px;
|
||||
width: 50%;}
|
||||
}
|
||||
#passman-controls .button, #passman-controls, #passman-controls input[type='submit'], #passman-controls input[type='text'], #passman-controls input[type='password'], #passman-controls select {
|
||||
box-sizing: border-box;
|
||||
display: inline-block;
|
||||
|
|
|
@ -11,10 +11,6 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="actions creatable">
|
||||
<span ng-click="addCredential()" class="button new">
|
||||
<span >+</span></span>
|
||||
</div>
|
||||
<div class="title" credential-counter="filtered_credentials" vault="active_vault" delete-time="delete_time" filters="filterOptions"></div>
|
||||
<!--<span class="title" ng-if="delete_time"><br />
|
||||
{{ 'deleted.since' | translate }}:
|
||||
|
@ -29,6 +25,12 @@
|
|||
<input type="checkbox" ng-model="filterOptions.useRegex"> {{ 'use.regex' | translate }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="actions creatable">
|
||||
<span ng-click="addCredential()" class="button new">
|
||||
<span >+</span></span>
|
||||
</div>
|
||||
|
||||
<div class="viewModes">
|
||||
<div class="view-mode" ng-class="{'active': view_mode === 'list' }"
|
||||
ng-click="switchViewMode('list')"><i class="fa fa-list"></i></div>
|
||||
|
@ -84,7 +86,7 @@
|
|||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="app-sidebar" class="detailsView scroll-container app_sidebar"
|
||||
<div id="app-sidebar" class="app-sidebar"
|
||||
ng-show="selectedCredential">
|
||||
<h2>{{selectedCredential.label}}</h2>
|
||||
<span class="close icon-close" ng-click="closeSelected()"
|
||||
|
|
Loading…
Add table
Reference in a new issue