Remove fieldset from top level notes (#2048)

This commit is contained in:
Carlos Fernandez 2026-06-30 05:18:13 -04:00 committed by GitHub
parent 8c6a470d84
commit 2cc52fae1f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 49 additions and 23 deletions

View file

@ -54,6 +54,37 @@
}
}
.tab.notes.active {
padding: 0;
margin: 0;
margin-top: -10px; // will be removed once tab-navigation bottom margin is removed on all actor sheets
scrollbar-gutter: unset;
// Add padding around top level level prosemirrors used for note tabs
> prose-mirror {
@right-padding: calc(16px - var(--scrollbar-width));
.editor-content {
scrollbar-gutter: stable;
padding-right: @right-padding;
}
&.inactive {
button.toggle {
top: 16px;
}
.editor-content {
padding: 16px @right-padding 4px 16px;
}
}
&.active {
padding: 8px 0 4px 16px;
}
}
.artist-attribution {
padding-left: 16px;
}
}
.search-section {
display: flex;
gap: 10px;