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:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2019-06-13 00:39:25 +0300
committerJan-Christoph Borchardt <hey@jancborchardt.net>2019-06-13 00:39:25 +0300
commit1d358878efc83bce1fd04b5ecb657134135554c4 (patch)
tree8888997dba01eba627ce6d260a29d36f4a606b7c /css
parent780a3a183106073c7fa6c1f8682f79fbddaf8bfc (diff)
Adjust hr width and color
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'css')
-rw-r--r--css/prosemirror.scss4
1 files changed, 2 insertions, 2 deletions
diff --git a/css/prosemirror.scss b/css/prosemirror.scss
index 64e7c95cc..c0200af46 100644
--- a/css/prosemirror.scss
+++ b/css/prosemirror.scss
@@ -78,7 +78,7 @@
/* Add space around the hr to make clicking it easier */
.ProseMirror hr {
- padding: 2px 10px;
+ padding: 2px 0;
border: none;
margin: 1em 0;
width: 100%;
@@ -88,7 +88,7 @@
content: "";
display: block;
height: 1px;
- background-color: silver;
+ background-color: var(--color-border-dark);
line-height: 2px;
}