#965 claim.index colores
This commit is contained in:
parent
b53dcc80be
commit
175926d7fb
|
@ -43,7 +43,7 @@
|
||||||
</vn-td>
|
</vn-td>
|
||||||
<vn-td>{{::claim.created | date:'dd/MM/yyyy'}}</vn-td>
|
<vn-td>{{::claim.created | date:'dd/MM/yyyy'}}</vn-td>
|
||||||
<vn-td>{{::claim.worker.firstName}} {{::claim.worker.name}}</vn-td>
|
<vn-td>{{::claim.worker.firstName}} {{::claim.worker.name}}</vn-td>
|
||||||
<vn-td>{{::claim.claimState.description}}</vn-td>
|
<vn-td class="{{::claim.claimState.description}}">{{::claim.claimState.description}}</vn-td>
|
||||||
<vn-td>
|
<vn-td>
|
||||||
<vn-icon-button
|
<vn-icon-button
|
||||||
ng-click="$ctrl.preview($event, claim)"
|
ng-click="$ctrl.preview($event, claim)"
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
import ngModule from '../module';
|
import ngModule from '../module';
|
||||||
|
import './style.scss';
|
||||||
|
|
||||||
export default class Controller {
|
export default class Controller {
|
||||||
constructor($scope) {
|
constructor($scope) {
|
||||||
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
@import 'colors';
|
||||||
|
|
||||||
|
vn-claim-index {
|
||||||
|
.Pendiente {
|
||||||
|
background-color: $main-01-05;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Gestionado {
|
||||||
|
background-color: $main-03-05;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Anulado, .Cuestionado {
|
||||||
|
background-color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Resuelto {
|
||||||
|
background-color: $main-02-05;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue