added filters UI
This commit is contained in:
parent
af45279efa
commit
0fa56da2e4
|
@ -1,7 +1,30 @@
|
||||||
<div class="stream-edition">
|
<div class="stream-edition">
|
||||||
<button (click)="delete()" class="stream-edition__button stream-edition__button--delete" title="remove column"><fa-icon [icon]="faTimes"></fa-icon> <span class="stream-edition__button--delete--label">remove</span></button>
|
<div class="stream-edition__settings">
|
||||||
|
<div class="stream-edition__setting">
|
||||||
|
<input class="stream-edition__setting--checkbox" type="checkbox" id="hideBoost"> <label for="hideBoost" class="noselect">hide
|
||||||
|
boosts</label><br />
|
||||||
|
</div>
|
||||||
|
<div class="stream-edition__setting">
|
||||||
|
<input class="stream-edition__setting--checkbox" type="checkbox" id="hideReplies"> <label for="hideReplies" class="noselect">hide
|
||||||
|
replies</label><br />
|
||||||
|
</div>
|
||||||
|
<div class="stream-edition__setting">
|
||||||
|
<input class="stream-edition__setting--checkbox" type="checkbox" id="hideBots"> <label for="hideBots" class="noselect">hide
|
||||||
|
bots</label><br />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<button (click)="delete()" class="stream-edition__button stream-edition__button--delete" title="remove column">
|
||||||
|
<fa-icon [icon]="faTimes"></fa-icon> <span class="stream-edition__button--delete--label">remove</span>
|
||||||
|
</button>
|
||||||
|
|
||||||
<button (click)="moveRight()" class="stream-edition__button stream-edition__button--move stream-edition__button--move--right" title="move right"><fa-icon [icon]="faChevronRight"></fa-icon></button>
|
<button (click)="moveRight()"
|
||||||
<button (click)="moveLeft()" class="stream-edition__button stream-edition__button--move" title="move left"><fa-icon [icon]="faChevronLeft"></fa-icon></button>
|
class="stream-edition__button stream-edition__button--move stream-edition__button--move--right"
|
||||||
|
title="move right">
|
||||||
|
<fa-icon [icon]="faChevronRight"></fa-icon>
|
||||||
|
</button>
|
||||||
|
<button (click)="moveLeft()" class="stream-edition__button stream-edition__button--move" title="move left">
|
||||||
|
<fa-icon [icon]="faChevronLeft"></fa-icon>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
|
@ -1,10 +1,28 @@
|
||||||
@import "variables";
|
@import "variables";
|
||||||
|
@import "commons";
|
||||||
@import "mixins";
|
@import "mixins";
|
||||||
|
|
||||||
.stream-edition {
|
.stream-edition {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
// min-height: 50px;
|
// min-height: 50px;
|
||||||
background-color: #222736;
|
background-color: #222736;
|
||||||
|
border-bottom: 1px solid $color-secondary;
|
||||||
|
|
||||||
|
&__settings{
|
||||||
|
padding: 5px 5px 0 5px;
|
||||||
|
border-bottom: 1px solid $color-secondary;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__setting{
|
||||||
|
// outline: 1px solid greenyellow;
|
||||||
|
padding: 0 10px 0 10px;
|
||||||
|
|
||||||
|
&--checkbox {
|
||||||
|
position: relative;
|
||||||
|
top: 2px;
|
||||||
|
margin-right: 5px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
&__button {
|
&__button {
|
||||||
@include clearButton;
|
@include clearButton;
|
||||||
|
|
Loading…
Reference in New Issue