Skip to content

Commit

Permalink
Fix css alignments in facets (#7111)
Browse files Browse the repository at this point in the history
  • Loading branch information
marthamareal authored Mar 19, 2021
1 parent 9d7f7f7 commit c1007fc
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
9 changes: 9 additions & 0 deletions geonode/static/geonode/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -7530,10 +7530,18 @@ article.tab-pane {
word-break: break-all;
padding-left: 0px;
padding-left: 12px;
display: flex;
}
.treeview .list-group-item .badge {
margin: auto;
margin-right: 0;
}
.treeview span.icon {
margin-right: 5px;
}
.treeview span.node-icon {
padding-right: 17px;
}
span.icon.node-icon:before {
font-family: FontAwesome;
content: "\f07b";
Expand Down Expand Up @@ -7641,6 +7649,7 @@ nav.filter h4 {
}
nav.filter h4 a {
color: white;
display: flex;
}
nav.filter h4 a.toggle {
text-decoration: none;
Expand Down
10 changes: 10 additions & 0 deletions geonode/static/geonode/less/base.less
Original file line number Diff line number Diff line change
Expand Up @@ -893,12 +893,21 @@ article.tab-pane {
word-break: break-all;
padding-left: 0px;
padding-left: 12px;
display: flex;
}
.treeview .list-group-item .badge{
margin: auto;
margin-right: 0;
}

.treeview span.icon {
margin-right: 5px;
}

.treeview span.node-icon {
padding-right: 17px;
}

span.icon.node-icon:before {
font-family: FontAwesome;
content: "\f07b";
Expand Down Expand Up @@ -1027,6 +1036,7 @@ nav.filter {

a {
color: white;
display: flex;
}

a.toggle {
Expand Down

0 comments on commit c1007fc

Please sign in to comment.