-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #575 from IQSS/feat/568-featured-items
Featured Items - Collection Page
- Loading branch information
Showing
77 changed files
with
4,076 additions
and
196 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
@import 'fontcustom'; | ||
@import 'bootstrap-customized'; | ||
@import 'rich-text-editor-content'; |
49 changes: 49 additions & 0 deletions
49
packages/design-system/src/lib/assets/styles/rich-text-editor-content.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/* | ||
This file is used to style the content generated by the Rich Text Editor. | ||
It is used in the RichTextEditor component and should be used when rendering html content generated by the Rich Text Editor to keep the styling consistent. | ||
*/ | ||
|
||
.rte-blockquote { | ||
padding: 6px 10px; | ||
background-color: rgba(0 0 0 / 15%); | ||
border-left: solid 5px gray; | ||
border-radius: 4px; | ||
|
||
p { | ||
margin-bottom: 0.5rem; | ||
} | ||
} | ||
|
||
.rte-code-block { | ||
padding: 1rem; | ||
overflow: auto; | ||
font-size: 85%; | ||
line-height: 1.45; | ||
word-wrap: normal; | ||
background-color: rgba(0 0 0 / 10%); | ||
border-radius: 6px; | ||
} | ||
|
||
.rte-code { | ||
margin: 0; | ||
padding: 0.2em 0.4em; | ||
font-size: 85%; | ||
white-space: break-spaces; | ||
background-color: rgba(0 0 0 / 10%); | ||
border-radius: 0.375rem; | ||
} | ||
|
||
.rte-code-block code { | ||
display: inline; | ||
max-width: auto; | ||
margin: 0; | ||
padding: 0; | ||
overflow: visible; | ||
font-size: 100%; | ||
line-height: inherit; | ||
white-space: pre; | ||
word-wrap: normal; | ||
word-break: normal; | ||
background-color: transparent; | ||
border: 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.