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:
authorJulius Härtl <jus@bitgrid.net>2019-06-17 13:49:31 +0300
committerJulius Härtl <jus@bitgrid.net>2019-06-17 13:49:31 +0300
commit51ab3a78acf133b55822337228bb778fb5039914 (patch)
tree382abbc0f17f8bb05790da6d5c5cfbda70ce61b9 /css
parent07a650092db5ac7d4f762f5b9295ad59c4bdca81 (diff)
Cleanup appinfo and css
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'css')
-rw-r--r--css/icons.scss33
-rw-r--r--css/prosemirror.scss206
2 files changed, 106 insertions, 133 deletions
diff --git a/css/icons.scss b/css/icons.scss
index c1c62ac15..155944aee 100644
--- a/css/icons.scss
+++ b/css/icons.scss
@@ -1,36 +1,3 @@
-.icon-bold {
- background-image: url('./../../img/icons/bold.svg');
-}
-.icon-italic {
- background-image: url('./../../img/icons/italic.svg');
-}
-.icon-underline {
- background-image: url('./../../img/icons/underline.svg');
-}
-.icon-link {
- background-image: url('./../../img/icons/link.svg');
-}
-.icon-ol {
- background-image: url('./../../img/icons/ol.svg');
-}
-.icon-ul {
- background-image: url('./../../img/icons/ul.svg');
-}
-.icon-hr {
- background-image: url('./../../img/icons/hr.svg');
-}
-.icon-quote {
- background-image: url('./../../img/icons/quote.svg');
-}
-.icon-paragraph {
- background-image: url('./../../img/icons/paragraph.svg');
-}
-.icon-code {
- background-image: url('./../../img/icons/code.svg');
-}
-.icon-image {
- background-image: url('./../../img/icons/image.svg');
-}
@include icon-black-white('undo', 'text', 1);
@include icon-black-white('redo', 'text', 1);
@include icon-black-white('bold', 'text', 1);
diff --git a/css/prosemirror.scss b/css/prosemirror.scss
index 3072cdccb..36833ded5 100644
--- a/css/prosemirror.scss
+++ b/css/prosemirror.scss
@@ -1,5 +1,4 @@
/* Document rendering styles */
-
.ProseMirror {
margin-top: 44px;
height: 100%;
@@ -12,118 +11,125 @@
line-height: 150%;
font-size: 14px;
outline: none;
-}
-.ProseMirror p:first-child,
-.ProseMirror h1:first-child,
-.ProseMirror h2:first-child,
-.ProseMirror h3:first-child,
-.ProseMirror h4:first-child,
-.ProseMirror h5:first-child,
-.ProseMirror h6:first-child {
- margin-top: 10px;
-}
+ p:first-child,
+ h1:first-child,
+ h2:first-child,
+ h3:first-child,
+ h4:first-child,
+ h5:first-child,
+ h6:first-child {
+ margin-top: 10px;
+ }
-.ProseMirror a {
- color: var(--color-primary);
- text-decoration: underline;
- padding: .5em 0;
-}
+ a {
+ color: var(--color-primary);
+ text-decoration: underline;
+ padding: .5em 0;
+ }
-.ProseMirror p {
- margin-bottom: 1em;
- line-height: 150%;
-}
-.ProseMirror em {
- font-style: italic;
-}
+ p {
+ margin-bottom: 1em;
+ line-height: 150%;
+ }
-.ProseMirror h1 {
- font-size: 36px;
-}
-.ProseMirror h2 {
- font-size: 28px;
-}
-.ProseMirror h3 {
- font-size: 24px;
-}
-.ProseMirror h4 {
- font-size: 21px;
-}
-.ProseMirror h5 {
- font-size: 17px;
-}
-.ProseMirror h6 {
- font-size: 14px;
-}
-.ProseMirror h1,
-.ProseMirror h2,
-.ProseMirror h3,
-.ProseMirror h4,
-.ProseMirror h5,
-.ProseMirror h6 {
- font-weight: 600;
- line-height: 120%;
- margin-top: 24px;
- margin-bottom: 12px;
- color: var(--color-main-text);
-}
+ em {
+ font-style: italic;
+ }
-.ProseMirror img {
- cursor: default;
- max-height: 50vh;
- max-width: 100%;
-}
+ h1 {
+ font-size: 36px;
+ }
-.ProseMirror-focused .ProseMirror-gapcursor {
- display: block;
-}
-/* Add space around the hr to make clicking it easier */
+ h2 {
+ font-size: 28px;
+ }
-.ProseMirror hr {
- padding: 2px 0;
- border: none;
- margin: 1em 0;
- width: 100%;
-}
+ h3 {
+ font-size: 24px;
+ }
-.ProseMirror hr:after {
- content: "";
- display: block;
- height: 1px;
- background-color: var(--color-border-dark);
- line-height: 2px;
-}
+ h4 {
+ font-size: 21px;
+ }
-.ProseMirror pre {
- white-space: pre-wrap;
- background-color: var(--color-background-dark);
- border-radius: var(--border-radius);
- padding: 1em 1.3em;
- margin-bottom: 1em;
-}
+ h5 {
+ font-size: 17px;
+ }
-.ProseMirror p code {
- background-color: var(--color-background-dark);
- border-radius: var(--border-radius);
- padding: .1em .3em;
-}
+ h6 {
+ font-size: 14px;
+ }
-.ProseMirror li {
- position: relative;
-}
+ h1,
+ h2,
+ h3,
+ h4,
+ h5,
+ h6 {
+ font-weight: 600;
+ line-height: 120%;
+ margin-top: 24px;
+ margin-bottom: 12px;
+ color: var(--color-main-text);
+ }
-.ProseMirror ul, .ProseMirror ol {
- padding-left: 14px;
-}
+ img {
+ cursor: default;
+ max-height: 50vh;
+ max-width: 100%;
+ }
+
+ hr {
+ padding: 2px 0;
+ border: none;
+ margin: 1em 0;
+ width: 100%;
+ }
+
+ hr:after {
+ content: "";
+ display: block;
+ height: 1px;
+ background-color: var(--color-border-dark);
+ line-height: 2px;
+ }
+
+ pre {
+ white-space: pre-wrap;
+ background-color: var(--color-background-dark);
+ border-radius: var(--border-radius);
+ padding: 1em 1.3em;
+ margin-bottom: 1em;
+ }
+
+ p code {
+ background-color: var(--color-background-dark);
+ border-radius: var(--border-radius);
+ padding: .1em .3em;
+ }
+
+ li {
+ position: relative;
+ }
+
+ ul, ol {
+ padding-left: 14px;
+ }
+
+ ul li {
+ list-style-type: disc;
+ }
+
+ blockquote {
+ padding-left: 1em;
+ border-left: 4px solid var(--color-primary);
+ margin-left: 0;
+ margin-right: 0;
+ }
-.ProseMirror ul li {
- list-style-type: disc;
}
-.ProseMirror blockquote {
- padding-left: 1em;
- border-left: 4px solid var(--color-primary);
- margin-left: 0;
- margin-right: 0;
+.ProseMirror-focused .ProseMirror-gapcursor {
+ display: block;
}