diff --git a/packages/main/test/sap/ui/webcomponents/main/samples/Card.sample.html b/packages/main/test/sap/ui/webcomponents/main/samples/Card.sample.html index 388d3ae3433d..ff174250cdb8 100644 --- a/packages/main/test/sap/ui/webcomponents/main/samples/Card.sample.html +++ b/packages/main/test/sap/ui/webcomponents/main/samples/Card.sample.html @@ -73,6 +73,7 @@ .item-content-begin-title { padding-bottom: 0.25rem; } + .status-error {color: #b00;} .status-warning {color: #e9730c;} .status-success {color: #107e3e;} @@ -186,7 +187,7 @@

Card with Table

6k USD - Aproved + Aproved @@ -201,7 +202,7 @@

Card with Table

2k USD - Rejected + Rejected @@ -216,7 +217,7 @@

Card with Table

17k USD - Pending + Pending @@ -225,6 +226,11 @@

Card with Table

 
+<style>
+.status-error {color: #b00;}
+.status-warning {color: #e9730c;}
+.status-success {color: #107e3e;}
+</style>
 <ui5-card heading="New Purchase Orders" subtitle="Today" status="3 of 15" class="medium">
 	<ui5-table class="demo-table content-padding">
 		<!-- Columns -->
@@ -264,7 +270,7 @@ <h3>Card with Table</h3>
 					<ui5-label>2k USD</ui5-label>
 			</ui5-table-cell>
 			<ui5-table-cell data-ui5-slot="cells">
-				<ui5-label class="status-error">Rejected</ui5-label>
+				<span class="status-error">Rejected</span>
 			</ui5-table-cell>
 		</ui5-table-row>
 		...