Remplacer simpleMDE par un éditeur maison #110

Merged
Darks merged 34 commits from new_editor into dev 2022-12-18 00:08:52 +01:00
2 changed files with 7 additions and 5 deletions
Showing only changes of commit 896e799b97 - Show all commits

View File

@ -9,14 +9,15 @@
.editor .btn-group button {
width: 32px;
height: 32px;
padding: 4px;
padding: 6px;
background-color: var(--background);
}
.editor .btn-group button:hover {
background: var(--background-hover);
}
.editor .btn-group button > svg {
width: 25px;
width: 20px;
height: 20px;
}
.editor .btn-group button > svg > path,
.editor .btn-group button > svg > rect {

View File

@ -12,8 +12,8 @@
button {
width: 32px;
height: 32px;
/* This centers the 24x24 SVG in the button */
padding: 4px;
/* This centers the 20x20 SVG in the button */
padding: 6px;
background-color: var(--background);
&:hover {
@ -21,7 +21,8 @@
}
& > svg {
width: 25px;
width: 20px;
height: 20px;
& > path, & > rect {
fill: var(--icons);