123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- //
- // Threads Lists
- // --------------------------------------------------
- .threads-list {
- margin-bottom: @line-height-computed;
- }
- // Thread layout
- // --------------------------------------------------
- .threads-list .thread-title {
- &, &:link, &:active, &:visited, &:focus, &:hover {
- font-size: @font-size-large;
- font-weight: normal;
- }
- }
- .threads-list .thread-last-action {
- padding-top: @padding-large-vertical + 2px;
- }
- .threads-list .thread-options {
- padding-top: @padding-base-vertical - 1px;
- }
- // Thread details
- // --------------------------------------------------
- .threads-list .thread-details-top {
- overflow-x: auto;
- white-space: nowrap;
- }
- .threads-list .thread-details-bottom div,
- .threads-list .thread-details-top {
- &>a, &>span {
- margin-right: @padding-large-horizontal;
- font-size: @font-size-small;
- font-weight: normal;
- &>.material-icon {
- position: relative;
- top: -1px;
- }
- .detail-text {
- margin-left: 2px;
- }
- @media screen and (max-width: @screen-sm-max) {
- margin-right: @padding-base-horizontal;
- }
- }
- }
- @media screen and (max-width: @screen-xs-max) {
- .threads-list .thread-details-bottom {
- margin-top: @padding-large-vertical - 2px;
- }
- .threads-list .thread-details-top {
- margin-bottom: @padding-base-vertical;
- }
- }
- // Thread options
- // --------------------------------------------------
- .thread-options-xs {
- margin-top: @line-height-computed * -0.5;
- margin-bottom: @line-height-computed * -1;
- position: relative;
- top: @padding-base-vertical - 1px;
- .btn {
- padding: 0px 2px;
- font-size: @font-size-small;
- .material-icon {
- width: 14px;
- height: 14px;
- font-size: 14px;
- line-height: 14px;
- }
- }
- }
- // Threads diff message
- // --------------------------------------------------
- .threads-diff-message {
- padding: 0px;
- }
- .threads-diff-message .btn {
- border: none;
- border-bottom-left-radius: 0px;
- border-bottom-right-radius: 0px;
- padding: @padding-large-vertical @padding-large-horizontal;
- width: 100%;
- overflow: none;
- text-align: left;
- .material-icon {
- margin-right: 4px;
- width: 24px;
- height: 24px;
- font-size: 24px;
- height: 24px;
- }
- @media screen and (max-width: @screen-sm-max) {
- text-align: center;
- white-space: normal;
- word-wrap: break-word;
- .material-icon {
- display: none;
- }
- }
- }
- // Pulse busy threads
- // --------------------------------------------------
- .threads-list .thread-busy {
- .thread-row {
- .animation(thread-busy-animation 600ms linear infinite);
- }
- }
- @keyframes thread-busy-animation {
- 0% {
- .opacity(0.2);
- }
- 50% {
- .opacity(0.5);
- }
- 100% {
- .opacity(0.2);
- }
- }
|