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
diff options
context:
space:
mode:
Diffstat (limited to 'css/style.scss')
-rw-r--r--css/style.scss40
1 files changed, 35 insertions, 5 deletions
diff --git a/css/style.scss b/css/style.scss
index 0a79fb5a6..d2ff4cf8a 100644
--- a/css/style.scss
+++ b/css/style.scss
@@ -1,8 +1,3 @@
-#app-content {
- // TODO: REMOVE TMP
- display: flex;
-}
-
.ProseMirror.ProseMirror-example-setup-style {
overflow: scroll;
}
@@ -434,3 +429,38 @@ div[contenteditable=false] {
margin-top: 10px;
margin-bottom: 20px;
}
+
+
+.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');
+}