Skip to content

Commit

Permalink
firefox css optimizations
Browse files Browse the repository at this point in the history
  • Loading branch information
ivosdc committed Jun 22, 2020
1 parent a1efc5b commit 4ca18d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "svelte-generic-crud-table",
"version": "1.5.16",
"version": "1.5.17",
"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",
"main": "dist/build/crud-table.js",
"module": "dist/build/crud-table.mjs",
Expand Down
3 changes: 3 additions & 0 deletions src/SvelteGenericCrudTable.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@
aria-label="Sort{elem.name}"
on:click={(e) => handleSort(elem.name, e)}>
<textarea class="sortable"
on:click={(e) => handleSort(elem.name, e)}
disabled>{genericCrudTable.makeCapitalLead(elem.name)}</textarea>
</td>
{/each}
Expand Down Expand Up @@ -298,6 +299,7 @@
.sortable {
cursor: pointer;
font-weight: 300;
}
tr {
Expand All @@ -321,6 +323,7 @@
min-height: 1.3em;
max-height: 1.3em;
height: 1.3em;
font-weight: 300;
}
#labelOptions {
Expand Down

0 comments on commit 4ca18d8

Please sign in to comment.