-.fund-balance-state-stop {
- color: #c00;
- font-weight: bold;
+button.dropdown-item {
+ padding: 0;
}
-.fund-balance-state-warning {
- color: #c93;
+
+button.dropdown-item span {
+ display: block;
+ padding: .25rem 1.5rem;
+}
+
+button.dropdown-item .fund-balance-state-stop {
+ background: #f8d7da;
+ color: #58151c;
+ font-weight: 600;
+ padding-left: .2rem;
+}
+
+button.dropdown-item.active .fund-balance-state-stop {
+ background-color: #F1AFB5;
+}
+
+/* show octagon/stop ! ("report") icon */
+.fund-balance-state-stop::before {
+ content: "\e160";
+ font-family: "Material Icons";
+ font-weight: normal;
+ margin-right: .3ch;
+}
+
+button.dropdown-item .fund-balance-state-warning {
+ background-color: #ffe69c;
+ color: #723809;
+ font-weight: 600;
+ padding-left: .2rem;
+}
+
+button.dropdown-item.active .fund-balance-state-warning {
+ background-color: #FFDA6A;
+}
+
+/* show triangle ! ("warning") icon */
+.fund-balance-state-warning::before {
+ content: "\e002";
+ font-family: "Material Icons";
+ font-weight: normal;
+ margin-right: .3ch;
}
--- /dev/null
+.text-danger {
+ background-color: #f8d7da;
+ color: #58151c !important;
+ font-weight: 600;
+ padding: 0 .25rem;
+}
+
+.text-danger::before {
+ content: "\e160";
+ font-family: "Material Icons";
+ font-weight: normal;
+ vertical-align: sub;
+}
+
+.bg-warning {
+ background-color: #ffe69c !important;
+ color: #723809;
+ font-weight: 600;
+}
+
+.bg-warning::before {
+ content: "\e002";
+ font-family: "Material Icons";
+ font-weight: normal;
+ vertical-align: sub;
+}
@Component({
templateUrl: 'summary.component.html',
+ styleUrls: ['./summary.component.css'],
selector: 'eg-acq-po-summary'
})
export class PoSummaryComponent implements OnInit, OnDestroy {