Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
Diffstat (limited to 'css')
-rw-r--r--css/icons.scss1
-rw-r--r--css/prosemirror.scss4
2 files changed, 3 insertions, 2 deletions
diff --git a/css/icons.scss b/css/icons.scss
index db6b3c7b3..781871aae 100644
--- a/css/icons.scss
+++ b/css/icons.scss
@@ -30,3 +30,4 @@
@include icon-black-white('add_row_after', 'text', 1);
@include icon-black-white('delete_col', 'text', 1);
@include icon-black-white('delete_row', 'text', 1);
+@include icon-black-white('table_settings', 'text', 1);
diff --git a/css/prosemirror.scss b/css/prosemirror.scss
index f43330e2f..c3190c520 100644
--- a/css/prosemirror.scss
+++ b/css/prosemirror.scss
@@ -255,7 +255,7 @@ div.ProseMirror {
// TODO: create new css variables to improve the theming capability.
table {
border-spacing: 0;
- width: 100%;
+ width: calc(100% - 50px);
table-layout: fixed;
white-space: normal; // force text to wrapping
margin-bottom: 1em;
@@ -287,7 +287,7 @@ div.ProseMirror {
tr {
background-color: var(--color-main-background);
&:hover, &:active, &:focus {
- background-color: var(--color-background-dark);
+ background-color: var(--color-primary-light);
}
}