diff --git a/app/assets/stylesheets/mobile/topic-post.css.scss b/app/assets/stylesheets/mobile/topic-post.css.scss index 1cbb2ce8655..51af12953e9 100644 --- a/app/assets/stylesheets/mobile/topic-post.css.scss +++ b/app/assets/stylesheets/mobile/topic-post.css.scss @@ -415,4 +415,58 @@ iframe { span.btn-text {display: none;} - \ No newline at end of file + + +.read-icon { + &:before { + font-family: "FontAwesome"; + content: "\f02e"; + } + &.unseen { + &:before { + content: "\f097"; + } + } + &.last-read { + color: #770000; + } + &.bookmarked { + &:before { + color: #0088CC; + } + } +} + +blockquote { + margin: 0; +} + +.quote-controls { + float: right; + color: #323232; + a { + margin: 0; + } + + .back:before, + .quote-other-topic:before { + display: inline-block; + margin-left: 8px; + color: #323232; + font-family: "FontAwesome"; + } + .back:before { + content: "\f062"; + } + .quote-other-topic:before { + content: "\f061"; + } +} + + +.quote .title { +border-left: 5px solid #bebebe; +background-color: #f1f1f1; +padding: 10px 10px 0 12px; + .avatar {margin-right: 7px;} +}