Skip to content
Snippets Groups Projects
Commit 4f67c0c4 authored by Hamza HRAMCHI's avatar Hamza HRAMCHI
Browse files

FIX #19700 TIME 0:15 set button type + fix css

parent 3648e8a8
No related branches found
No related tags found
No related merge requests found
<form (ngSubmit)="getCurrentCriteriaValues()" #criteriaFormUp="ngForm">
<div class="row">
<div class="col-md-8">
<div class="col-md-8" style="padding-right: 10px;">
<mat-form-field *ngIf="!adminMode" floatLabel="never" class="basket-search">
<input class="metaSearch" type="text" matInput [formControl]="searchTermControl" [title]="'lang.quickSearchTarget' | translate"
[placeholder]="'lang.quickSearchTarget' | translate">
......@@ -9,7 +9,7 @@
</button>
</mat-form-field>
</div>
<div class="col-md-4" style="display: flex;">
<div class="col-md-4" style="display: flex; padding-left: 10px;">
<div class="orderTool">
<mat-form-field class="basket-order">
<mat-icon matPrefix class="fa fa-list"></mat-icon>
......@@ -22,7 +22,7 @@
</mat-form-field>
</div>
<div class="ascDescTool">
<button [disabled]="this.listProperties.order == '' || data.length == 0"
<button type="button" [disabled]="this.listProperties.order == '' || data.length == 0"
[style.opacity]="this.listProperties.order == '' ? '0.2' : '1'" mat-fab
[title]="this.listProperties.orderDir == 'DESC' ? ('lang.descOrder' | translate) : ('lang.ascOrder' | translate)"
style="color: rgba(0,0,0,0.38);" (click)="changeOrderDir();">
......
......@@ -45,16 +45,6 @@
cursor: pointer;
}
.filtersContent {
width: 100%;
display: flex;
.orderTool {
flex: 1;
}
}
.basket-order {
color: white;
width: 300px;
......@@ -102,15 +92,6 @@
}
}
.ascDescTool {
.mat-fab {
background: #135F7F;
border: solid 2px white;
color: white !important;
box-shadow: none;
}
}
.integratedContent {
height: 90%;
overflow: auto;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment