Skip to content

Commit

Permalink
#56 add: more popup styling
Browse files Browse the repository at this point in the history
  • Loading branch information
pbek committed Feb 5, 2024
1 parent 7332ab2 commit f923d0f
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions src/pages/PopupPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
:loading="loadingBookmarks"
accesskey="f"
dark
color="white"
dense
option-value="value"
option-label="text"
Expand All @@ -41,6 +42,7 @@
dense
clearable
dark
color="white"
v-model="search"
ref="searchInput"
accesskey="s"
Expand Down Expand Up @@ -101,7 +103,8 @@
</div>

<q-table
flat dense
flat
dense
:rows="filteredBookmarks"
:columns="columns"
:loading="loadingBookmarks"
Expand Down Expand Up @@ -133,7 +136,7 @@
</q-td>
<q-td key="tags" :props="props">
<div class="column-tags">
<q-badge color="purple" v-for="tag in props.row.tags" :key="tag" :label="tag" />
<q-badge v-for="tag in props.row.tags" :key="tag" :label="tag" />
</div>
</q-td>
</q-tr>
Expand Down Expand Up @@ -508,8 +511,10 @@ export default defineComponent({
}
}
.bookmark-list tr {
cursor: pointer;
.bookmark-list {
font-size: 1.5em;
tr { cursor: pointer; }
a { color: black; }
}
.q-table tbody td {
Expand Down

0 comments on commit f923d0f

Please sign in to comment.