Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
Fix #5032
Browse files Browse the repository at this point in the history
Auditors: @bsclifton

Test Plan:

* Open about:bookmarks
* Orange border spearating both columns should fill window height even with fewer bookmarks.
  • Loading branch information
cezaraugusto committed Oct 24, 2016
1 parent e6179d4 commit 1557fec
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions less/about/bookmarks.less
Original file line number Diff line number Diff line change
@@ -1,8 +1,25 @@
@import "./siteDetails.less";

#appContainer > div {
height: auto;
}

.siteDetailsPage {
display: flex;
padding: 0;
flex-direction: column;
height: 100%;
min-height: 100vh;

.siteDetailsPageHeader {
display: flex;
padding: 24px;
justify-content: space-between;

.headerActions {
float: none;
align-items: center;

input.searchInput {
margin-right: 0 !important;
}
Expand All @@ -13,6 +30,8 @@
display: flex;
flex-wrap: wrap;
height: 100%;
margin: 0;
flex: 1;

.folderView {
min-width: 220px;
Expand Down Expand Up @@ -42,7 +61,6 @@

> .bookmarkFolderList {
display: block;
height: 100%;

.listItem >* {
color: @buttonColor;
Expand All @@ -63,9 +81,10 @@
}
.organizeView {
flex-grow: 5;
border-left: 1px solid @braveOrange;

.sortableTable {
-webkit-user-select: none;
border-left: 1px solid @braveOrange;
// Custom title column (has add bookmark icon)
th:first-of-type > div { display: block; }
// Bookmark last visited column
Expand Down

0 comments on commit 1557fec

Please sign in to comment.