123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- //
- // Threads lists
- // --------------------------------------------------
- .threads-list {
- .table-panel {
- border: none;
- .list-group {
- margin: 0px;
- .list-group-item {
- padding-top: @padding-base-vertical + 1px;
- padding-bottom: @padding-base-vertical + 1px;
- &.active {
- background-color: @table-row-highlight;
- }
- // Thread icon
- //
- //==
- .thread-icon {
- display: block;
- float: left;
- position: relative;
- right: 5px;
- top: 5px;
- color: @state-default;
- }
- &.new {
- .thread-icon {
- color: @state-active;
- }
- }
- // Thread title
- //
- //==
- .item-title {
- display: block;
- margin-left: @font-size-large * 1.5;
- font-size: @font-size-large;
- .opacity(0.7);
- }
- &.new {
- .item-title {
- .opacity(1);
- }
- }
- // Thread last reply
- //
- //==
- .thread-stats {
- &>* {
- float: right;
- }
- .thread-flags {
- margin-right: @font-size-large;
- position: relative;
- top: 2px;
- li {
- float: left;
- overflow: visible;
- .label {
- border-radius: @border-radius-small;
- margin-left: @line-height-computed / 3;
- font-weight: normal;
- }
- .fa, .glyphicon {
- .opacity(0.5);
- transition-duration: 0.5s;
- &:hover, &:focus {
- .opacity(0.9);
- transition-duration: 0.05s;
- }
- }
- }
- }
- .thread-replies {
- display: inline-block;
- margin: 0px;
- margin-right: @font-size-large;
- margin-top: -2px;
- .opacity(0.6);
- transition-duration: 0.5s;
- width: @font-size-large * 4.5;
- font-size: @font-size-large;
- .label {
- display: inline;
- padding-left: 4px;
- font-size: @font-size-base;
- font-weight: normal !important;
- }
- &.new-replies {
- .opacity(1);
- }
- &.thread-read {
- padding-top: 2px;
- }
- }
- .thread-author {
- margin-right: @font-size-large / 2;
- img {
- border-radius: @border-radius-small;
- width: 25px;
- margin: -3px 0px;
- position: relative;
- top: 1px;
- }
- &:hover {
- text-decoration: none;
- }
- }
- a.last-post {
- display: block;
- width: 64px;
- position: relative;
- top: 3px;
- color: @state-default;
- &:hover {
- color: @state-hover;
- }
- &:active {
- color: @state-clicked;
- }
- }
- .thread-check {
- margin: 0px;
- color: @text-muted;
- font-size: 25px;
- text-decoration: none;
- line-height: 24px;
- cursor: pointer;
- &.active {
- color: @brand-success;
- }
- input {
- position: absolute;
- top: -9999px;
- left: -9999px;
- }
- }
- }
- // Empty list message
- //
- //==
- &.message-row {
- padding-top: @line-height-computed;
- padding-bottom: @line-height-computed;
- font-size: @font-size-large;
- }
- }
- }
- }
- }
|