mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-27 12:36:14 +01:00
overflow y on control-sidebar sections
This commit is contained in:
parent
1efcd69148
commit
641c76ae62
@ -267,6 +267,7 @@
|
||||
<h3 class="control-sidebar-heading">
|
||||
<i class="fa fa-tag fa-fw"></i> Types
|
||||
</h3>
|
||||
<div class="control-sidebar-section">
|
||||
<ul class="control-sidebar-menu">
|
||||
<li>
|
||||
<a href="#" stop-click ng-click="filterType(constants.cipherType.login)">
|
||||
@ -293,12 +294,14 @@
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<h3 class="control-sidebar-heading">
|
||||
<i class="fa fa-folder fa-fw"></i> Folders
|
||||
</h3>
|
||||
<div ng-show="loading && !vaultFolders.length">
|
||||
<p>Loading...</p>
|
||||
</div>
|
||||
<div class="control-sidebar-section">
|
||||
<ul class="control-sidebar-menu" ng-show="!loading && vaultFolders.length">
|
||||
<li ng-repeat="folder in vaultFolders track by folder.id">
|
||||
<a href="#" stop-click ng-click="filterFolder(folder)">
|
||||
@ -309,4 +312,5 @@
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</aside>
|
||||
|
@ -159,6 +159,7 @@ body.skin-blue {
|
||||
li a {
|
||||
padding-top: 5px;
|
||||
padding-bottom: 5px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
li.active a {
|
||||
@ -166,6 +167,13 @@ body.skin-blue {
|
||||
}
|
||||
}
|
||||
|
||||
.control-sidebar-section {
|
||||
max-height: 350px;
|
||||
overflow-y: auto;
|
||||
padding-right: 15px;
|
||||
margin-right: -15px;
|
||||
}
|
||||
|
||||
.control-sidebar-open {
|
||||
@media (min-width: @screen-sm) {
|
||||
.main-footer {
|
||||
|
Loading…
Reference in New Issue
Block a user