Fix #79: Fix Headline HelpText Style (#6417)

Minor fix for the ProseMirror-menubar
This commit is contained in:
yuriimaz 2023-07-06 23:50:42 +03:00 committed by GitHub
parent 63264d79ce
commit 6b5462897e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 4 deletions

View File

@ -71,3 +71,4 @@ HumHub Changelog
- Enh #6411: Make invite by link from a space work for registered users
- Enh #6409: Redirect to the invited space after registration
- Enh #6386: Fix absolute base URL in console commands
- Fix #79: Fix Headline HelpText Style

View File

@ -114,12 +114,17 @@ textarea.placeholder {
font-size: 12px;
}
.hint-block, .help-block:not(.help-block-error) {
.help-block:not(.help-block-error) {
color: @text-color-soft;
font-size: 13px;
}
.hint-block {
color: @text-color-soft2 !important;
font-size: 12px;
}
.hint-block:hover, .help-block:not(.help-block-error):hover {
.hint-block:hover {
color: @text-color-secondary !important;
font-size: 12px;
}

View File

@ -309,12 +309,12 @@
border-top-right-radius: 4px;
box-sizing: border-box;
color: @text-color-soft;
display: table;
float: left;
margin-top: -27px;
min-height: 1em;
overflow: visible;
padding: 2px 0;
position: relative;
top: 0;
left: 0;
right: 0;

File diff suppressed because one or more lines are too long