Fix #112: Reorder Table Rows (#6473)

This commit is contained in:
yuriimaz 2023-08-01 17:42:46 +03:00 committed by GitHub
parent 1a8a92785b
commit cb52feb331
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 23 additions and 20 deletions

View File

@ -7,6 +7,7 @@ HumHub Changelog
- Fix #6471: Wording "Default Homepage" in Space Default Settings - Fix #6471: Wording "Default Homepage" in Space Default Settings
- Fix #6468: Module Administration - Marketplace Links broken without Pretty URLs - Fix #6468: Module Administration - Marketplace Links broken without Pretty URLs
- Enh #6469: Added Info text for Marketplace page - Enh #6469: Added Info text for Marketplace page
- Fix #112: Reorder Table Rows
1.15.0-beta.1 (July 31, 2023) 1.15.0-beta.1 (July 31, 2023)
----------------------------- -----------------------------

View File

@ -9,16 +9,15 @@
@md-block-spacing: 1.2em; @md-block-spacing: 1.2em;
.markdown-render, [data-ui-markdown], [data-ui-richtext] { .markdown-render, [data-ui-markdown], [data-ui-richtext] {
line-height: 1.57;
overflow: hidden; overflow: hidden;
overflow-wrap: break-word; overflow-wrap: break-word;
line-height: 1.57;
h1, h2, h3, h4, h5, h6 { h1, h2, h3, h4, h5, h6 {
text-align: start;
font-weight: normal;
margin: @md-block-spacing 0 0.8em; margin: @md-block-spacing 0 0.8em;
color: @text-color-main; color: @text-color-main;
font-weight: normal;
text-align: start;
} }
h1:first-child, h1:first-child,
@ -186,15 +185,21 @@
} }
table { table {
width: 100%;
font-size: 1em;
border: 1px solid @background3; border: 1px solid @background3;
margin-bottom: @md-block-spacing !important; margin-bottom: @md-block-spacing !important;
font-size: 1em;
width: 100%;
th, td {
border: 1px solid @background3 !important;
box-sizing: border-box;
position: relative;
}
th { th {
font-size: 1em;
color: @text-color-contrast !important;
background-color: @primary; background-color: @primary;
color: @text-color-contrast !important;
font-size: 1em;
p { p {
color: @text-color-contrast !important; color: @text-color-contrast !important;
@ -202,13 +207,11 @@
} }
td { td {
padding:15px; padding: 15px;
border: 1px solid @background3 !important;
} }
th { th {
padding: 10px 15px; padding: 10px 15px;
border: 1px solid @background3 !important;
} }
} }
} }

View File

@ -523,9 +523,8 @@
} }
/* Give selected cells a blue overlay */ /* Give selected cells a blue overlay */
.ProseMirror .selectedCell:after { .ProseMirror .selectedCell:after {
background: rgba(200, 200, 255, 0.4); background: rgba(200, 255, 255, 0.4);
content: ""; content: "";
pointer-events: none; pointer-events: none;
position: absolute; position: absolute;
@ -552,13 +551,13 @@
.ProseMirror-prompt { .ProseMirror-prompt {
background: white; background: white;
padding: 5px 10px 5px 15px;
border: 1px solid silver; border: 1px solid silver;
position: fixed;
border-radius: 3px; border-radius: 3px;
box-shadow: -.5px 2px 5px rgba(0, 0, 0, .2);
padding: 5px 10px 5px 15px;
position: fixed;
min-width: 300px; min-width: 300px;
z-index: 999999; z-index: 999999;
box-shadow: -.5px 2px 5px rgba(0, 0, 0, .2);
h5 { h5 {
font-weight: bold; font-weight: bold;
@ -572,13 +571,13 @@
} }
.ProseMirror-prompt-close { .ProseMirror-prompt-close {
background: transparent;
color: @text-color-soft;
padding: 0;
position: absolute; position: absolute;
left: 2px; left: 2px;
top: 1px; top: 1px;
color: @text-color-soft;
border: none; border: none;
background: transparent;
padding: 0;
} }
.ProseMirror-prompt-close:after { .ProseMirror-prompt-close:after {

File diff suppressed because one or more lines are too long