Skip to content

Commit c757bd4

Browse files
committed
Fixed minor issues in Editor, Notification popup
1 parent 97e77d1 commit c757bd4

File tree

6 files changed

+46
-10
lines changed

6 files changed

+46
-10
lines changed

design/custom.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

design/custom.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/scss/components/_easymde.scss

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
.EasyMDEContainer {
2+
3+
.CodeMirror {
4+
}
5+
6+
.editor-toolbar {
7+
}
8+
9+
.editor-statusbar {
10+
display: flex;
11+
justify-content: flex-end;
12+
flex-wrap: wrap;
13+
14+
span {
15+
}
16+
.upload-image {
17+
text-align: left;
18+
order: 0;
19+
}
20+
.autosave {
21+
order: 1;
22+
}
23+
.lines {
24+
order: 2;
25+
}
26+
.words {
27+
order: 3;
28+
}
29+
.cursor {
30+
order: 4;
31+
}
32+
}
33+
}
34+

src/scss/components/_index.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
@import "flyouts";
2-
@import 'mebox';
2+
@import 'mebox';
3+
@import "lists";
4+
@import "easymde";

src/scss/components/_lists.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.Activities {
2+
.ItemContent {
3+
margin-left: #{$component-horizontal_padding};
4+
}
5+
}

src/scss/components/_mebox.scss

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,8 @@
5151
width: 30px;
5252

5353
.Alert {
54-
right: -7px;
55-
top: -8px;
56-
line-height: 16px;
57-
min-width: 16px;
58-
height: 16px;
54+
display: none;
5955
}
60-
6156
}
6257

6358
.MeButton-notifications {

0 commit comments

Comments
 (0)