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 @@ -73,6 +73,7 @@
.item-content-begin-title {
padding-bottom: 0.25rem;
}

.status-error {color: #b00;}
.status-warning {color: #e9730c;}
.status-success {color: #107e3e;}
Expand Down Expand Up @@ -186,7 +187,7 @@ <h3>Card with Table</h3>
<ui5-label>6k USD</ui5-label>
</ui5-table-cell>
<ui5-table-cell data-ui5-slot="cells">
<ui5-label class="status-success">Aproved</ui5-label>
<span class="status-success">Aproved</span>
</ui5-table-cell>
</ui5-table-row>

Expand All @@ -201,7 +202,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>

Expand All @@ -216,7 +217,7 @@ <h3>Card with Table</h3>
<ui5-label>17k USD</ui5-label>
</ui5-table-cell>
<ui5-table-cell data-ui5-slot="cells">
<ui5-label class="status-warning">Pending</ui5-label>
<span class="status-warning">Pending</<span >
</ui5-table-cell>
</ui5-table-row>
</ui5-table>
Expand All @@ -225,6 +226,11 @@ <h3>Card with Table</h3>

<pre class="prettyprint lang-html">
<xmp>
<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 -->
Expand Down Expand Up @@ -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>
...
Expand Down