12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- // Watched threads
- // -------------------------
- .watched-threads {
- .table {
- td {
- vertical-align: middle;
- }
- .watched-thread-flags {
- overflow: auto;
- width: 118px;
- form {
- display: inline-block;
- float: left;
- margin: 0px;
- .btn {
- padding: 3px 5px;
- padding-bottom: 0px;
- margin-right: @baseFontSize + 2px;
- }
- }
- .label {
- border: 1px solid @gray;
- float: left;
- padding: 1px 5px;
- padding-bottom: 2px;
- line-height: @baseLineHeight;
- i {
- background-image: url("@{iconWhiteSpritePath}");
- }
- &.thread-read {
- border-color: darken(@grayLight, 15%);
- background-color: @grayLight;
- }
- &.thread-new {
- border-color: darken(@bluePale, 15%);
- background-color: @bluePale;
- }
- }
- }
- .thread-title {
- &:link, &:visited {
- color: @gray;
- }
- &:active, &:hover {
- color: @textColor;
- }
- &.thread-title-new {
- font-weight: bold;
- }
- }
- .thread-replies {
- color: @grayLight;
- text-align: right;
- }
- .thread-forum {
- a:link, a:visited {
- color: @gray;
- }
- a:active, a:hover {
- color: @textColor;
- }
- }
- }
- }
|