46 lines
1.5 KiB
Vue
46 lines
1.5 KiB
Vue
<template>
|
|
<DocSectionText id="style" label="Style" v-bind="$attrs">
|
|
<p>Following is the list of structural style classes, for theming classes visit <PrimeVueNuxtLink to="/theming">theming</PrimeVueNuxtLink> page.</p>
|
|
</DocSectionText>
|
|
<div class="doc-tablewrapper">
|
|
<table class="doc-table">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Element</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>p-toast</td>
|
|
<td>Main container element.</td>
|
|
</tr>
|
|
<tr>
|
|
<td>p-toast-message</td>
|
|
<td>Container of a message item.</td>
|
|
</tr>
|
|
<tr>
|
|
<td>p-toast-icon-close</td>
|
|
<td>Close icon of a message.</td>
|
|
</tr>
|
|
<tr>
|
|
<td>p-toast-icon</td>
|
|
<td>Severity icon.</td>
|
|
</tr>
|
|
<tr>
|
|
<td>p-toast-message-content</td>
|
|
<td>Container of message texts.</td>
|
|
</tr>
|
|
<tr>
|
|
<td>p-toast-summary</td>
|
|
<td>Summary of the message.</td>
|
|
</tr>
|
|
<tr>
|
|
<td>p-toast-detail</td>
|
|
<td>Detail of the message.</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</template>
|