Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,82 +4,117 @@
margin-bottom: 20px;
}

:host ::ng-deep {
.grid-area {
margin-top: 1rem;
overflow-y: hidden;
overflow-x: hidden;
width: 100%;
.finjs-icons {
display: flex;
align-items: center;
igx-icon {
font-size: 16px;
width: 16px;
height: 16px;
margin-left: 4px;
}
}

.finjs-icons {
display: flex;
align-items: center;
igx-icon {
font-size: 16px;
width: 16px;
height: 16px;
margin-left: 4px;
}
.changePos,
.changeNeg,
.strongPositive,
.strongNegative {
color: #fff !important;
.igx-grid__td-text {
padding: 2px 5px;
}

.changePos,
.changeNeg,
.strongPositive,
.strongNegative {
color: #fff !important;
.igx-grid__td-text {
padding: 2px 5px;
}
}
.positive {
color: #4eb862 !important;
}
.positive {
color: #4eb862 !important;
}
.positive.strongPositive {
.igx-grid__td-text {
color: rgba(78, 184, 98, 0.8) !important;
}
.positive.strongPositive {
.igx-grid__td-text {
color: rgba(78, 184, 98, 0.8) !important;
}
}
.negative {
color: #d31642 !important;
}
.negative.strongNegative {
.igx-grid__td-text {
color: rgba(255, 19, 74, 0.8) !important;
}
.negative {
color: #d31642 !important;
}
// NORMAL
// positive
.changePos {
.igx-grid__td-text {
background: #335e3b;
}
.negative.strongNegative {
.igx-grid__td-text {
color: rgba(255, 19, 74, 0.8) !important;
}
}
.changePos1 {
background: #335e3b;
color: #fff;
}
.changePos2 {
.igx-grid__td-text {
border-right: 4px solid #335e3b;
padding-right: 15px;
}
// NORMAL
// positive
.changePos {
.igx-grid__td-text {
background: #335e3b;
}
}
// negative
.changeNeg {
.igx-grid__td-text {
background: #7a1c32;
}
.changePos1 {
background: #335e3b;
color: #fff;
}
.changeNeg1 {
color: #fff;
background: #7a1c32;
}
.changeNeg2 {
.igx-grid__td-text {
border-right: 4px solid #7a1c32;
padding-right: 9px;
}
.changePos2 {
.igx-grid__td-text {
border-right: 4px solid #335e3b;
padding-right: 15px;
}
}

// STRONG
// positive
.strongPositive {
.igx-grid__td-text {
background: #459a55;
}
// negative
.changeNeg {
.igx-grid__td-text {
background: #7a1c32;
}
}
.strongPositive1 {
background: #459a55;
color: #fff;
}
.strongPositive2 {
.igx-grid__td-text {
border-right: 4px solid #459a55;
padding-right: 15px;
}
.changeNeg1 {
}
// negative
.strongNegative {
.igx-grid__td-text {
background: #d31642;
color: #fff;
background: #7a1c32;
}
.changeNeg2 {
.igx-grid__td-text {
border-right: 4px solid #7a1c32;
padding-right: 9px;
}
}
.strongNegative1 {
background: #d31642;
color: #fff;
}
.strongNegative2 {
.igx-grid__td-text {
border-right: 4px solid #d31642;
padding-right: 9px;
}
}

:host ::ng-deep {
.grid-area {
margin-top: 1rem;
overflow-y: hidden;
overflow-x: hidden;
width: 100%;
}

// selected
Expand All @@ -101,40 +136,7 @@
color: #fff;
}
}
// STRONG
// positive
.strongPositive {
.igx-grid__td-text {
background: #459a55;
}
}
.strongPositive1 {
background: #459a55;
color: #fff;
}
.strongPositive2 {
.igx-grid__td-text {
border-right: 4px solid #459a55;
padding-right: 15px;
}
}
// negative
.strongNegative {
.igx-grid__td-text {
background: #d31642;
color: #fff;
}
}
.strongNegative1 {
background: #d31642;
color: #fff;
}
.strongNegative2 {
.igx-grid__td-text {
border-right: 4px solid #d31642;
padding-right: 9px;
}
}

// selected
.igx-grid__td--column-selected.strongPositive1,
.igx-grid__td--column-selected.strongPositive2,
Expand Down