Fix editor text
This commit is contained in:
parent
4c839a899b
commit
c384da9df3
@ -726,7 +726,9 @@ export const ModalTiсket = ({
|
||||
editor={ClassicEditor}
|
||||
data={inputsValue.description}
|
||||
config={{
|
||||
toolbar: ["link"],
|
||||
toolbar: {
|
||||
shouldNotGroupWhenFull: true
|
||||
},
|
||||
removePlugins: [
|
||||
"CKFinderUploadAdapter",
|
||||
"CKFinder",
|
||||
|
@ -709,6 +709,9 @@ export const TicketFullScreen = () => {
|
||||
editor={ClassicEditor}
|
||||
data={inputsValue.description}
|
||||
config={{
|
||||
toolbar: {
|
||||
shouldNotGroupWhenFull: true
|
||||
},
|
||||
removePlugins: [
|
||||
"CKFinderUploadAdapter",
|
||||
"CKFinder",
|
||||
|
@ -616,15 +616,18 @@ export const TrackerModal = ({
|
||||
editor={ClassicEditor}
|
||||
data={descriptionTicket}
|
||||
config={{
|
||||
toolbar: [
|
||||
"heading",
|
||||
"|",
|
||||
"bold",
|
||||
"italic",
|
||||
"link",
|
||||
"bulletedList",
|
||||
"numberedList"
|
||||
],
|
||||
toolbar: {
|
||||
items: [
|
||||
"heading",
|
||||
"|",
|
||||
"bold",
|
||||
"italic",
|
||||
"link",
|
||||
"bulletedList",
|
||||
"numberedList"
|
||||
],
|
||||
shouldNotGroupWhenFull: true
|
||||
},
|
||||
removePlugins: ["BlockQuote"],
|
||||
placeholder: "Описание задачи",
|
||||
link: {
|
||||
|
@ -107,6 +107,12 @@
|
||||
.ck-toolbar {
|
||||
border: none !important;
|
||||
border-radius: 8px 8px 0 0 !important;
|
||||
|
||||
&__items {
|
||||
@media (max-width: 424px) {
|
||||
flex-wrap: wrap !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.ck-placeholder {
|
||||
@ -363,6 +369,10 @@
|
||||
grid-template-columns: 55% 45%;
|
||||
column-gap: 20px;
|
||||
|
||||
@media (max-width: 725px) {
|
||||
display: block;
|
||||
}
|
||||
|
||||
&__left {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
Loading…
Reference in New Issue
Block a user