mirror of
https://github.com/nextcloud/passman.git
synced 2025-11-08 13:11:31 +08:00
fix credential list scrolling
Signed-off-by: binsky <timo@binsky.org>
This commit is contained in:
parent
05eeec7456
commit
d5b95be223
4 changed files with 16 additions and 39 deletions
21
css/app.css
21
css/app.css
|
|
@ -738,7 +738,8 @@
|
|||
float: left;
|
||||
height: auto;
|
||||
overflow: auto;
|
||||
width: 100%; }
|
||||
width: 100%;
|
||||
margin-top: 55px; }
|
||||
#app-content .main_list .credential-table {
|
||||
width: 100%; }
|
||||
#app-content .main_list .credential-table tr:hover {
|
||||
|
|
@ -867,21 +868,11 @@
|
|||
margin-top: 1%;
|
||||
text-align: center; }
|
||||
#app-content .app_sidebar {
|
||||
height: auto;
|
||||
height: fit-content;
|
||||
top: 55px;
|
||||
float: right;
|
||||
padding: 10px;
|
||||
overflow-y: auto; }
|
||||
#app-content .app_sidebar .sidebar {
|
||||
display: inline-block; }
|
||||
#app-content .app_sidebar .sidebar .sidebar-icon {
|
||||
margin-right: 15px; }
|
||||
#app-content .app_sidebar .sidebar .sidebar-icon .icon-image-size {
|
||||
width: 44px; }
|
||||
#app-content .app_sidebar .sidebar .sidebar-icon i {
|
||||
width: 44px; }
|
||||
#app-content .app_sidebar .sidebar .sidebar-label {
|
||||
float: right;
|
||||
line-height: 44px; }
|
||||
#app-content .app_sidebar h2 {
|
||||
margin-bottom: 10px;
|
||||
font-weight: 400;
|
||||
|
|
@ -1442,8 +1433,8 @@ h3 {
|
|||
|
||||
#passman-controls {
|
||||
display: flow-root;
|
||||
position: sticky;
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
width: calc(100vw - 300px);
|
||||
box-sizing: border-box;
|
||||
border-bottom: 1px solid #c9c9c9;
|
||||
background-color: rgba(255, 255, 255, 0.95);
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -65,8 +65,8 @@
|
|||
|
||||
#passman-controls {
|
||||
display: flow-root;
|
||||
position: sticky;
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
width: calc(100vw - 300px);
|
||||
box-sizing: border-box;
|
||||
border-bottom: 1px solid #c9c9c9;
|
||||
background-color: rgba(255, 255, 255, .95);
|
||||
|
|
|
|||
|
|
@ -353,6 +353,7 @@
|
|||
height: auto;
|
||||
overflow: auto;
|
||||
width: 100%;
|
||||
margin-top: 55px;
|
||||
}
|
||||
|
||||
.credential-table {
|
||||
|
|
@ -533,26 +534,13 @@
|
|||
|
||||
.app_sidebar {
|
||||
|
||||
//this fixes the scrollbars, because passman-contols are shown above the sidebar.
|
||||
height: auto;
|
||||
.sidebar{
|
||||
display: inline-block;
|
||||
.sidebar-icon {
|
||||
margin-right: 15px;
|
||||
.icon-image-size{
|
||||
width: 44px;
|
||||
}
|
||||
i {
|
||||
width: 44px;
|
||||
}
|
||||
}
|
||||
.sidebar-label{
|
||||
float:right;
|
||||
line-height: 44px;
|
||||
}
|
||||
}
|
||||
|
||||
height: fit-content;
|
||||
top: 55px;
|
||||
float:right;
|
||||
padding: 10px;
|
||||
overflow-y: auto;
|
||||
|
||||
|
||||
h2 {
|
||||
margin-bottom: 10px;
|
||||
font-weight: 400;
|
||||
|
|
@ -567,12 +555,10 @@
|
|||
right: 10px;
|
||||
cursor: pointer;
|
||||
}
|
||||
padding: 10px;
|
||||
&.item_selected {
|
||||
height: 25%;
|
||||
display: inline-block;
|
||||
}
|
||||
overflow-y: auto;
|
||||
|
||||
.credential-data {
|
||||
.compromised-details{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue