Fix textarea

This commit is contained in:
DianaXWiki 2025-03-18 12:23:32 +02:00
parent fb0aae13c9
commit dc3b1c8574
3 changed files with 7 additions and 5 deletions

View File

@ -64,11 +64,10 @@
}
.cp-markdown-toolbar {
//height: @toolbar_line-height;
height: @toolbar_line-height;
background-color: @cp_toolbar-bg;
color: @cp_toolbar-fg;
display: flex;
flex-wrap: wrap;
display: none;
button {
height: @toolbar_line-height !important;
outline: 0;

View File

@ -168,10 +168,13 @@
#cp-app-profile-description {
position: relative;
font-size: 16px;
margin-bottom: 20px;
//margin-bottom: 20px;
.cp-app-profile-description-code {
display: none;
}
#cp-app-profile-description-info {
overflow-wrap: anywhere;
}
.cp-app-profile-description-ok, .cp-app-profile-description-spin {
position: absolute;
bottom: 2px;

View File

@ -119,7 +119,7 @@ define([
}
// Always create the description container
var $blockDescription = $('<div>', {class: DESCRIPTION_ID}).appendTo($container);
var $blockDescription = $('<div>', {id: DESCRIPTION_ID}).appendTo($container);
APP.$descriptionContainer = $blockDescription;
APP.$description = $('<div>', {
'id': 'cp-app-profile-description-info'