-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: adicionado a possibilidade de configurar plugins
- Loading branch information
marcelino.braga
committed
Jul 31, 2024
1 parent
c66621c
commit 27e5006
Showing
10 changed files
with
152 additions
and
95 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
.colar-questao { | ||
border: 2px solid #009688; | ||
border-radius: 0.5rem; | ||
margin: 2rem 0; | ||
position: relative; | ||
} | ||
.colar-questao label { | ||
background-color: #009688; | ||
border-radius: 0 0 0.5rem 0; | ||
color: #fff; | ||
font-size: 0.75rem; | ||
font-weight: bold; | ||
padding: 0.25rem 0.5rem; | ||
position: absolute; | ||
top: 0; | ||
} | ||
|
||
.colar-questao .close-colar { | ||
display: inline-flex; | ||
align-items: center; | ||
justify-content: center; | ||
background-color: #009688; | ||
border-radius: 50%; | ||
border: none; | ||
width: 20px; | ||
height: 20px; | ||
cursor: pointer; | ||
color: white; | ||
font-size: 15px; | ||
font-weight: 700; | ||
position: absolute; | ||
margin: 0.25rem; | ||
top: 0; | ||
right: 0; | ||
} | ||
|
||
.colar-questao > .content { | ||
margin-top: 1.5rem; | ||
padding: 1rem; | ||
} | ||
|
||
.colar-questao > .content.is-editable { | ||
background-color: rgba(0, 0, 0, .1); | ||
border: 2px dashed rgba(61, 37, 20, .12); | ||
border-radius: 0.5rem; | ||
margin: 2.5rem 1rem 1rem; | ||
padding: 0.5rem; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,76 @@ | ||
.tiptap .latex-editor { | ||
border-radius: 0.25rem; | ||
background: #202020; | ||
color: #fff; | ||
caret-color: white; | ||
font-family: monospace; | ||
padding: 0.2rem 0.5rem; | ||
min-width: 30px; | ||
} | ||
|
||
.tiptap .latex-editor:hover { | ||
cursor: text; | ||
} | ||
|
||
.math-tex-error { | ||
color: red; | ||
} | ||
|
||
.math-tex { | ||
display: inline-block; | ||
} | ||
|
||
.math-tex .katex { | ||
white-space: nowrap; | ||
} | ||
|
||
.latex .katex { | ||
white-space: nowrap; | ||
} | ||
|
||
.latex-editting-container { | ||
display: flex; | ||
margin: 5px; | ||
flex-direction: column; | ||
} | ||
|
||
.latex-editting-input { | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: space-around; | ||
} | ||
|
||
.latex-editting-input > input { | ||
margin: 0 var(--spacing-sm); | ||
outline: none; | ||
border: 1px solid var(--active-blue); | ||
} | ||
|
||
.latex-input-text { | ||
min-width: 250px; | ||
padding: var(--spacing-lg); | ||
line-height: 20px; | ||
} | ||
|
||
.latex-editting-preview { | ||
display: flex; | ||
min-height: 30px; | ||
padding: var(--spacing-md); | ||
margin: var(--spacing-md); | ||
border: 1px solid; | ||
background-color: rgb(244, 244, 244); | ||
} | ||
|
||
.latex-editting-footer { | ||
display: flex; | ||
flex-direction: row; | ||
min-height: 30px; | ||
justify-content: space-around; | ||
} | ||
|
||
.latex-editting-displayCheckbox { | ||
display: flex; | ||
justify-items: start; | ||
margin-left: var(--spacing-sm); | ||
margin-top: var(--spacing-sm); | ||
} |
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