@worksafevictoria/wcl7.5 1.1.17 → 1.1.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -331,11 +331,15 @@ export default {
|
|
|
331
331
|
|
|
332
332
|
a {
|
|
333
333
|
color: $black;
|
|
334
|
-
|
|
335
|
-
|
|
334
|
+
text-decoration: none;
|
|
335
|
+
}
|
|
336
|
+
a:hover {
|
|
336
337
|
text-decoration: underline;
|
|
337
338
|
}
|
|
338
|
-
|
|
339
|
+
a:focus {
|
|
340
|
+
text-decoration: underline;
|
|
341
|
+
}
|
|
342
|
+
|
|
339
343
|
}
|
|
340
344
|
&__icon {
|
|
341
345
|
&--caret {
|
|
@@ -93,8 +93,8 @@ const DefaultPagination = (args) => ({
|
|
|
93
93
|
<h4>Sample Table data</h4>
|
|
94
94
|
<table id="no-more-tables" class="table-bordered border">
|
|
95
95
|
<tr v-for="(row, index) in items.slice(((cPage-1)*args.rows), ((cPage)*args.rows))" :key="index">
|
|
96
|
-
<td data-title="Name">{{row.name}}</td>
|
|
97
|
-
<td data-title="ID">{{row.id}}</td>
|
|
96
|
+
<td style="border-width: 1px" data-title="Name">{{row.name}}</td>
|
|
97
|
+
<td style="border-width: 1px" data-title="ID">{{row.id}}</td>
|
|
98
98
|
</tr>
|
|
99
99
|
</table>
|
|
100
100
|
<br/>
|