Skip to content

Commit

Permalink
fix(lexical-theme): change link color to Webiny primary color
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel910 committed Sep 14, 2024
1 parent ac9a5ef commit fb02a23
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions packages/lexical-theme/src/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,11 @@
border-bottom: 1px solid rgba(88, 144, 255, 0.3);
}
.WebinyLexical__link {
color: rgb(33, 111, 219);
color: #fa5723;
text-decoration: none;
> * {
color: inherit !important;
}
}
.WebinyLexical__link:hover {
text-decoration: underline;
Expand Down Expand Up @@ -319,7 +322,7 @@
}
.WebinyLexical__listItemUnchecked:before,
.WebinyLexical__listItemChecked:before {
content: '';
content: "";
width: 16px;
height: 16px;
top: 2px;
Expand All @@ -329,8 +332,8 @@
background-size: cover;
position: absolute;
}
.WebinyLexical__listItemUnchecked[dir='rtl']:before,
.WebinyLexical__listItemChecked[dir='rtl']:before {
.WebinyLexical__listItemUnchecked[dir="rtl"]:before,
.WebinyLexical__listItemChecked[dir="rtl"]:before {
left: auto;
right: 0;
}
Expand All @@ -350,7 +353,7 @@
background-repeat: no-repeat;
}
.WebinyLexical__listItemChecked:after {
content: '';
content: "";
cursor: pointer;
border-color: #fff;
border-style: solid;
Expand Down

0 comments on commit fb02a23

Please sign in to comment.