Skip to content

Commit

Permalink
2.6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
MuiseDestiny committed May 3, 2023
1 parent ace859d commit 83a9e75
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/modules/tags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,12 @@ export class Tags {
.nested-search-box .icon:hover {
opacity: 1
}
#zotero-editpane-notes row {
margin-left: 1em;
}
#zotero-editpane-notes * {
transition: background-color .1s linear, opacity .1s linear;
}
`
},
});
Expand Down Expand Up @@ -1301,7 +1307,7 @@ export class Tags {
const parent = document.querySelector("rows#zotero-editpane-dynamic-notes")! as any
parent.style.paddingBottom = ".5em";
(document.querySelector("#zotero-editpane-notes hbox") as any).style.margin = "0 .5em"
parent.querySelectorAll("row").forEach((e: any) => e.style.marginLeft = "5px")
// parent.querySelectorAll("row").forEach((e: any) => e.style.marginLeft = "1em")
parent.querySelectorAll(".annotation").forEach((e: any)=>e.remove())
bindZoomOutEvent(parent)
let render = (annoItems: Zotero.Item[]) => {
Expand Down

0 comments on commit 83a9e75

Please sign in to comment.