Merge remote-tracking branch 'origin/master' into user-icons
commit
8e439e0b8c
File diff suppressed because one or more lines are too long
@ -1,3 +1,2 @@
|
|||||||
@import "modules/taskbar";
|
@import "modules/taskbar";
|
||||||
@import "modules/alerts";
|
@import "modules/alerts";
|
||||||
@import "modules/paginator";
|
|
@ -1,41 +0,0 @@
|
|||||||
.topic {
|
|
||||||
.page-number {
|
|
||||||
position: absolute;
|
|
||||||
bottom: 6px;
|
|
||||||
background: rgb(219, 68, 55);
|
|
||||||
padding: 4px;
|
|
||||||
width: 26px;
|
|
||||||
height: 26px;
|
|
||||||
text-align: center;
|
|
||||||
border-radius: 50%;
|
|
||||||
color: white;
|
|
||||||
font-size: 11px;
|
|
||||||
z-index: 1;
|
|
||||||
|
|
||||||
.user-select(none);
|
|
||||||
|
|
||||||
&.animated {
|
|
||||||
-webkit-animation-name: bounceIn;
|
|
||||||
animation-name: bounceIn;
|
|
||||||
-webkit-animation-duration: 0.5s;
|
|
||||||
animation-duration: 0.5s;
|
|
||||||
-webkit-animation-fill-mode: both;
|
|
||||||
animation-fill-mode: both;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.shadow.active {
|
|
||||||
border-radius: 50%;
|
|
||||||
width: 13px;
|
|
||||||
height: 13px;
|
|
||||||
border: 1px solid #333;
|
|
||||||
position: absolute;
|
|
||||||
bottom: 13px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (min-width: @screen-md-min) {
|
|
||||||
.page-number {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -0,0 +1,8 @@
|
|||||||
|
<div class="stats hidden-xs">
|
||||||
|
<span component="topic/post-count" class="human-readable-number" title="{postcount}">{postcount}</span><br />
|
||||||
|
<small>[[global:posts]]</small>
|
||||||
|
</div>
|
||||||
|
<div class="stats hidden-xs">
|
||||||
|
<span class="human-readable-number" title="{viewcount}">{viewcount}</span><br />
|
||||||
|
<small>[[global:views]]</small>
|
||||||
|
</div>
|
@ -0,0 +1,7 @@
|
|||||||
|
<button component="topic/follow" class="btn btn-info <!-- IF isFollowing -->hidden<!-- ENDIF isFollowing -->">
|
||||||
|
<span class="visible-sm-inline visible-md-inline visible-lg-inline">[[topic:watch]]</span> <i class="fa fa-eye"></i>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<button component="topic/unfollow" class="btn btn-warning <!-- IF !isFollowing -->hidden<!-- ENDIF !isFollowing -->">
|
||||||
|
<span class="visible-sm-inline visible-md-inline visible-lg-inline">[[topic:unwatch]]</span> <i class="fa fa-eye-slash"></i>
|
||||||
|
</button>
|
Loading…
Reference in New Issue