Skip to content

Commit

Permalink
Fixed plus not becoming a - when expanded
Browse files Browse the repository at this point in the history
  • Loading branch information
Aboisier committed Jan 30, 2019
1 parent 4138767 commit 11334c4
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ScoutSuite/output/data/html/partials/dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<a href="#services.{{../service_name}}.findings.{{key}}.items">{{description}}</a>
</div>
<div class="col-sm-1">
<button class="btn fa fa-plus" style="background-color:transparent" data-toggle="collapse" data-target="#item-{{key}}" aria-expanded="false" aria-controls="item-{{key}}"></button>
<button class="finding btn fa collapsed" style="background-color:transparent" data-toggle="collapse" data-target="#item-{{key}}" aria-expanded="false" aria-controls="item-{{key}}"></button>
</div>
</div>
</div>
Expand Down
19 changes: 19 additions & 0 deletions ScoutSuite/output/data/inc-scoutsuite/scoutsuite.css
Original file line number Diff line number Diff line change
Expand Up @@ -252,4 +252,23 @@ input:checked + .slider:before {

.std-size {
font-size: 18px;
}

.finding {
position: relative;
}

.finding:before {
content: "\f068";
left:-5px;
position:absolute;
top:0;
}


.collapsed.finding:before {
content: "\f067";
left:-5px;
position:absolute;
top:0;
}

0 comments on commit 11334c4

Please sign in to comment.