Skip to content

Commit 4ca18d8

Browse files
committed
firefox css optimizations
1 parent a1efc5b commit 4ca18d8

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "svelte-generic-crud-table",
3-
"version": "1.5.16",
3+
"version": "1.5.17",
44
"description": "<crud-table> renders object-arrays with options-panel and inline edit per row. Dispatches events for ongoing data handling. As self-containing webcomponent or for Svelte in 60KB",
55
"main": "dist/build/crud-table.js",
66
"module": "dist/build/crud-table.mjs",

src/SvelteGenericCrudTable.svelte

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@
163163
aria-label="Sort{elem.name}"
164164
on:click={(e) => handleSort(elem.name, e)}>
165165
<textarea class="sortable"
166+
on:click={(e) => handleSort(elem.name, e)}
166167
disabled>{genericCrudTable.makeCapitalLead(elem.name)}</textarea>
167168
</td>
168169
{/each}
@@ -298,6 +299,7 @@
298299
299300
.sortable {
300301
cursor: pointer;
302+
font-weight: 300;
301303
}
302304
303305
tr {
@@ -321,6 +323,7 @@
321323
min-height: 1.3em;
322324
max-height: 1.3em;
323325
height: 1.3em;
326+
font-weight: 300;
324327
}
325328
326329
#labelOptions {

0 commit comments

Comments
 (0)