Skip to content

Commit

Permalink
fix: reset font weight in resetCss
Browse files Browse the repository at this point in the history
fixes #1380
  • Loading branch information
Alex-D committed Feb 22, 2023
1 parent bdda00f commit 7d7b29c
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions src/ui/sass/trumbowyg.scss
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,8 @@ body.trumbowyg-body-fullscreen {
font-family: "Trebuchet MS", Helvetica, Verdana, sans-serif !important;
font-size: 14px !important;
line-height: 1.45em !important;
color: #333;
color: #333 !important;
font-weight: normal !important;

a {
color: #15c !important;
Expand All @@ -616,7 +617,7 @@ body.trumbowyg-body-fullscreen {
line-height: 1.4em !important;
font-family: "Trebuchet MS", Helvetica, Verdana, sans-serif !important;
font-size: 14px !important;
border: none;
border: none !important;
}
iframe,
object,
Expand All @@ -626,13 +627,13 @@ body.trumbowyg-body-fullscreen {
blockquote {
margin-left: 32px !important;
font-style: italic !important;
color: #555;
color: #555 !important;
}
ul {
list-style: disc;
list-style: disc !important;
}
ol {
list-style: decimal;
list-style: decimal !important;
}
ul,
ol {
Expand All @@ -642,27 +643,27 @@ body.trumbowyg-body-fullscreen {
ol ol,
ul ol,
ol ul {
border: none;
border: none !important;
margin: 2px !important;
padding: 0 !important;
padding-left: 24px !important;
}
hr {
display: block;
height: 1px;
border: none;
border-top: 1px solid #CCC;
display: block !important;
height: 1px !important;
border: none !important;
border-top: 1px solid #CCC !important;
}

h1,
h2,
h3,
h4 {
color: #111;
background: none;
color: #111 !important;
background: none !important;
margin: 0 !important;
padding: 0 !important;
font-weight: bold;
font-weight: bold !important;
}

h1 {
Expand Down

0 comments on commit 7d7b29c

Please sign in to comment.