Skip to content

Commit 4408621

Browse files
authored
Merge pull request #51 from topcoder-platform/issues-533
Issues-533:Added Post Count/Comment Count, Issues-535
2 parents 63f336e + bcbd771 commit 4408621

File tree

5 files changed

+29
-10
lines changed

5 files changed

+29
-10
lines changed

design/custom.css

Lines changed: 1 addition & 1 deletion
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/base/_editor.scss

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,3 @@
6464
border-right: 2px solid #EF476F;
6565
}
6666
}
67-
.DiscussionForm {
68-
.countOfRemainingChars {
69-
display: none;
70-
}
71-
}

src/scss/base/_formField.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ form {
5555
.Button.PreviewButton {
5656
border-color: $global-color_primary;
5757
color: $global-color_primary;
58-
5958
}
6059

6160
.Button.DraftButton {
@@ -74,10 +73,11 @@ form {
7473
border: 1px solid $global-color_grey_dark;
7574
}
7675

77-
a.Button.Disabled, a.Button.Disabled:hover,a.Button.Disabled:focus {
76+
a.Button.Disabled, a.Button.Disabled:hover,a.Button.Disabled:focus,
77+
.Button.PreviewButton[disabled=disabled]{
7878
border: 1px solid $global-color_grey_dark;
7979
color: $global-color_grey_dark;
80-
80+
background-color: transparent;
8181
}
8282
}
8383

src/scss/base/_messageList.scss

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,30 @@
222222
}
223223
}
224224

225+
.Item.ItemDiscussion, .Item.ItemComment {
226+
.Item-Header {
227+
@media screen and (min-width: 768px) {
228+
.MItem.AuthorProfileStats {
229+
padding-right: 0px;
230+
margin-right: 0px;
231+
}
232+
233+
.MItem.DateCreated {
234+
235+
padding-left: 0px;
236+
margin-left: 0px;
237+
238+
&::before {
239+
content: ' | ';
240+
font-family: $global-body_fontFamily;
241+
font-size: 12px;
242+
}
243+
}
244+
}
245+
}
246+
}
247+
248+
225249
.Message.userContent {
226250
a {
227251
color: $global-blue;

0 commit comments

Comments
 (0)