Bug #319 Arreglar colores segun nuevas directivas de paco

This commit is contained in:
gerard 2018-06-04 11:57:27 +02:00
parent 89c9af878f
commit 689a04e21e
6 changed files with 9 additions and 8 deletions

View File

@ -4,7 +4,7 @@
<vn-title vn-one>Addresses</vn-title> <vn-title vn-one>Addresses</vn-title>
<vn-horizontal ng-repeat="address in index.model.items track by address.id" class="pad-medium-top" style="align-items: center;"> <vn-horizontal ng-repeat="address in index.model.items track by address.id" class="pad-medium-top" style="align-items: center;">
<vn-one border-radius class="pad-small border-solid" <vn-one border-radius class="pad-small border-solid"
ng-class="{'bg-dark-item': address.isDefaultAddress,'bg-opacity-item': !address.isActive && !address.isDefaultAddress}"> ng-class="{'bg-main': address.isDefaultAddress,'bg-opacity-item': !address.isActive && !address.isDefaultAddress}">
<vn-horizontal style="align-items: center;"> <vn-horizontal style="align-items: center;">
<vn-none pad-medium-h> <vn-none pad-medium-h>
<i class="material-icons" <i class="material-icons"

View File

@ -2,9 +2,9 @@
<vn-card pad-large> <vn-card pad-large>
<vn-title vn-one>Contract credit insurance</vn-title> <vn-title vn-one>Contract credit insurance</vn-title>
<vn-horizontal ng-repeat="classification in $ctrl.classifications track by classification.id" class="pad-medium-top" style="align-items: center;"> <vn-horizontal ng-repeat="classification in $ctrl.classifications track by classification.id" class="pad-medium-top" style="align-items: center;">
<vn-one border-radius class="pad-small border-solid" ng-class="{'bg-dark-item': !classification.finished,'bg-opacity-item': classification.finished}"> <vn-one border-radius class="pad-small border-solid" ng-class="{'bg-main': !classification.finished,'bg-opacity-item': classification.finished}">
<vn-horizontal style="align-items: center;"> <vn-horizontal style="align-items: center;">
<vn-none pad-medium-h style="color:#FFA410;"> <vn-none pad-medium-h orange>
<i class="material-icons pointer" <i class="material-icons pointer"
ng-if="!classification.finished" ng-if="!classification.finished"
vn-tooltip="Close contract" vn-tooltip="Close contract"

View File

@ -1,7 +1,7 @@
@import "colors"; @import "colors";
vn-grid-header { vn-grid-header {
border-bottom: 3px solid $main-header; border-bottom: 3px solid $lines;
font-weight: bold; font-weight: bold;
.orderly{ .orderly{
text-align: center; text-align: center;

View File

@ -19,10 +19,10 @@
} }
} }
& > thead, & > tbody { & > thead, & > tbody {
border-bottom: 3px solid $main-header; border-bottom: 3px solid $lines;
} }
& > tbody > tr { & > tbody > tr {
border-bottom: 1px solid $main-header; border-bottom: 1px solid $lines;
transition: background-color 200ms ease-in-out; transition: background-color 200ms ease-in-out;
&.clickable { &.clickable {

View File

@ -10,6 +10,7 @@ $main-01-03: rgba($main-01, 0.3);
$main-02: #a3d131; $main-02: #a3d131;
$main-02-05: rgba($main-02, 0.5); $main-02-05: rgba($main-02, 0.5);
$main-02-03: rgba($main-02, 0.3); $main-02-03: rgba($main-02, 0.3);
$lines: #9b9b9b;
$color-green: #a3d131; $color-green: #a3d131;
$color-orange: #f7931e; $color-orange: #f7931e;

View File

@ -64,7 +64,7 @@ html [vn-center], .vn-center{
.list-element{ .list-element{
padding: 8px 0 0 0; padding: 8px 0 0 0;
border-bottom: 1px solid $main-header; border-bottom: 1px solid $lines;
i { i {
color: $main-01; color: $main-01;
} }
@ -81,7 +81,7 @@ html [vn-center], .vn-center{
} }
.list-footer{ .list-footer{
font-family: vn-font-bold; font-family: vn-font-bold;
border-top: 3px solid $main-header; border-top: 3px solid $lines;
} }
.list-element.warning{ .list-element.warning{
background-color: $color-medium-orange; background-color: $color-medium-orange;