better positionning of "remove column"
This commit is contained in:
parent
06982bd891
commit
af45279efa
|
@ -1,5 +1,7 @@
|
||||||
<div class="stream-edition">
|
<div class="stream-edition">
|
||||||
<button (click)="moveLeft()" class="stream-edition__button" title="move left"><fa-icon [icon]="faChevronLeft"></fa-icon></button>
|
<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" title="move right"><fa-icon [icon]="faChevronRight"></fa-icon></button>
|
|
||||||
<button (click)="delete()" class="stream-edition__button stream-edition__button--delete" title="remove column"><fa-icon [icon]="faTimes"></fa-icon></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)="moveLeft()" class="stream-edition__button stream-edition__button--move" title="move left"><fa-icon [icon]="faChevronLeft"></fa-icon></button>
|
||||||
|
|
||||||
</div>
|
</div>
|
|
@ -5,13 +5,29 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
// min-height: 50px;
|
// min-height: 50px;
|
||||||
background-color: #222736;
|
background-color: #222736;
|
||||||
|
|
||||||
&__button {
|
&__button {
|
||||||
@include clearButton;
|
@include clearButton;
|
||||||
padding: 5px 10px 5px 10px;
|
padding: 5px 10px 5px 10px;
|
||||||
margin: 3px 0;
|
margin: 3px 0;
|
||||||
&--delete{
|
|
||||||
|
&--delete {
|
||||||
|
// float: right;
|
||||||
|
margin-left: 5px;
|
||||||
|
|
||||||
|
&--label {
|
||||||
|
position: relative;
|
||||||
|
top: -1px;
|
||||||
|
left: 7px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&--move {
|
||||||
float: right;
|
float: right;
|
||||||
margin-right: 5px;
|
|
||||||
|
&--right {
|
||||||
|
margin-right: 5px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
|
|
Loading…
Reference in New Issue