-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wall entry footer & compiled for 1.17.0
- Loading branch information
1 parent
01f93d7
commit 64042f7
Showing
4 changed files
with
90 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,66 +1,105 @@ | ||
.wall-entry [data-ui-richtext] { | ||
h1 { | ||
font-size: var(--hh-ct-h1-stream-font-size); | ||
} | ||
h1 { | ||
font-size: var(--hh-ct-h1-stream-font-size); | ||
} | ||
|
||
h2 { | ||
font-size: var(--hh-ct-h2-stream-font-size); | ||
} | ||
h2 { | ||
font-size: var(--hh-ct-h2-stream-font-size); | ||
} | ||
} | ||
|
||
.wall-entry-controls { | ||
a { | ||
color: var(--link); | ||
} | ||
|
||
// Replace the Comment text with an icon | ||
.wall-entry-controls a[data-action-click="comment.toggleComment"] { | ||
font-size: 0; | ||
// Replace the Comment text with an icon | ||
a[data-action-click="comment.toggleComment"] { | ||
font-size: 0; | ||
|
||
.comment-count { | ||
font-size: 11px; | ||
} | ||
.comment-count { | ||
font-size: 11px; | ||
} | ||
|
||
&:before { | ||
font: normal normal normal 14px/1 FontAwesome; | ||
-webkit-font-smoothing: antialiased; | ||
font-size: 18px; | ||
content: "\f0e5"; // https://fontawesome.com/v4/icon/comment-o | ||
display: inline-block; | ||
&:before { | ||
font: normal normal normal 14px/1 FontAwesome; | ||
-webkit-font-smoothing: antialiased; | ||
font-size: 18px; | ||
content: "\f0e5"; // https://fontawesome.com/v4/icon/comment-o | ||
display: inline-block; | ||
} | ||
} | ||
} | ||
|
||
// Replace the Like text with an icon | ||
.wall-entry-controls a[data-action-click="like.toggleLike"] { | ||
font-size: 0; | ||
// Replace the Like text with an icon | ||
a[data-action-click="like.toggleLike"] { | ||
font-size: 0; | ||
|
||
.comment-count { | ||
font-size: 11px; | ||
} | ||
.comment-count { | ||
font-size: 11px; | ||
} | ||
|
||
&:before { | ||
font: normal normal normal 14px/1 FontAwesome; | ||
-webkit-font-smoothing: antialiased; | ||
font-size: 18px; | ||
content: "\f087"; // https://fontawesome.com/v4/icon/thumbs-o-up | ||
display: inline-block; | ||
margin-right: 3px; | ||
} | ||
|
||
&:before { | ||
font: normal normal normal 14px/1 FontAwesome; | ||
-webkit-font-smoothing: antialiased; | ||
font-size: 18px; | ||
content: "\f087"; // https://fontawesome.com/v4/icon/thumbs-o-up | ||
display: inline-block; | ||
margin-right: 3px; | ||
&.unlike:before { | ||
content: "\f164"; // https://fontawesome.com/v4/icon/thumbs-up | ||
} | ||
} | ||
|
||
&.unlike:before { | ||
content: "\f164"; // https://fontawesome.com/v4/icon/thumbs-up | ||
// Replace the Calendar Event text with an icon | ||
a[data-action-click="comment.toggleComment"] { | ||
font-size: 0; | ||
|
||
.comment-count { | ||
font-size: 11px; | ||
} | ||
|
||
&:before { | ||
font: normal normal normal 14px/1 FontAwesome; | ||
-webkit-font-smoothing: antialiased; | ||
font-size: 18px; | ||
content: "\f0e5"; // https://fontawesome.com/v4/icon/comment-o | ||
display: inline-block; | ||
} | ||
} | ||
} | ||
|
||
// Replace the Calendar Event text with an icon | ||
.wall-entry-controls a[data-action-click="comment.toggleComment"] { | ||
font-size: 0; | ||
// Replace the Calendar Event text with an icon | ||
span.calendar-entry-ics-download a { | ||
font-size: 0; | ||
|
||
.comment-count { | ||
font-size: 11px; | ||
.comment-count { | ||
font-size: 11px; | ||
} | ||
|
||
&:before { | ||
font: normal normal normal 14px/1 FontAwesome; | ||
-webkit-font-smoothing: antialiased; | ||
font-size: 18px; | ||
content: "\f271"; // https://fontawesome.com/v4/icon/calendar-plus-o | ||
display: inline-block; | ||
} | ||
} | ||
|
||
&:before { | ||
font: normal normal normal 14px/1 FontAwesome; | ||
-webkit-font-smoothing: antialiased; | ||
font-size: 18px; | ||
content: "\f0e5"; // https://fontawesome.com/v4/icon/comment-o | ||
display: inline-block; | ||
// Replace the Calendar Event text with an icon | ||
span.calendar-entry-reminder a { | ||
font-size: 0; | ||
|
||
.comment-count { | ||
font-size: 11px; | ||
} | ||
|
||
&:before { | ||
font: normal normal normal 14px/1 FontAwesome; | ||
-webkit-font-smoothing: antialiased; | ||
font-size: 18px; | ||
content: "\f0a2"; // https://fontawesome.com/v4/icon/bell-o | ||
display: inline-block; | ||
} | ||
} | ||
} |