mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-31 20:22:27 +08:00
style(next): promoted attributes widget: tweak buttons
This commit is contained in:
parent
0c88c4c3ee
commit
e93d47f664
@ -272,7 +272,7 @@ export default class PromotedAttributesWidget extends NoteContextAwareWidget {
|
|||||||
|
|
||||||
if (definition.multiplicity === "multi") {
|
if (definition.multiplicity === "multi") {
|
||||||
const $addButton = $("<span>")
|
const $addButton = $("<span>")
|
||||||
.addClass("bx bx-plus pointer")
|
.addClass("bx bx-plus pointer tn-tool-button")
|
||||||
.prop("title", t("promoted_attributes.add_new_attribute"))
|
.prop("title", t("promoted_attributes.add_new_attribute"))
|
||||||
.on("click", async () => {
|
.on("click", async () => {
|
||||||
const $new = await this.createPromotedAttributeCell(
|
const $new = await this.createPromotedAttributeCell(
|
||||||
@ -292,7 +292,7 @@ export default class PromotedAttributesWidget extends NoteContextAwareWidget {
|
|||||||
});
|
});
|
||||||
|
|
||||||
const $removeButton = $("<span>")
|
const $removeButton = $("<span>")
|
||||||
.addClass("bx bx-trash pointer")
|
.addClass("bx bx-trash pointer tn-tool-button")
|
||||||
.prop("title", t("promoted_attributes.remove_this_attribute"))
|
.prop("title", t("promoted_attributes.remove_this_attribute"))
|
||||||
.on("click", async () => {
|
.on("click", async () => {
|
||||||
const attributeId = $input.attr("data-attribute-id");
|
const attributeId = $input.attr("data-attribute-id");
|
||||||
|
@ -1877,3 +1877,10 @@ div.promoted-attribute-cell input {
|
|||||||
padding: 2px 8px;
|
padding: 2px 8px;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.promoted-attribute-cell .multiplicity {
|
||||||
|
--icon-button-size: 28px;
|
||||||
|
|
||||||
|
margin-left: 8px;
|
||||||
|
font-size: 0; /* Prevent whitespaces creating a gap between buttons */
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user