watchedthreads.less 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. // Watched threads
  2. // -------------------------
  3. .watched-threads {
  4. .table {
  5. td {
  6. vertical-align: middle;
  7. }
  8. .watched-thread-flags {
  9. overflow: auto;
  10. width: 118px;
  11. form {
  12. display: inline-block;
  13. float: left;
  14. margin: 0px;
  15. .btn {
  16. padding: 3px 5px;
  17. padding-bottom: 0px;
  18. margin-right: @baseFontSize + 2px;
  19. }
  20. }
  21. .label {
  22. border: 1px solid @gray;
  23. float: left;
  24. padding: 1px 5px;
  25. padding-bottom: 2px;
  26. line-height: @baseLineHeight;
  27. i {
  28. background-image: url("@{iconWhiteSpritePath}");
  29. }
  30. &.thread-read {
  31. border-color: darken(@grayLight, 15%);
  32. background-color: @grayLight;
  33. }
  34. &.thread-new {
  35. border-color: darken(@bluePale, 15%);
  36. background-color: @bluePale;
  37. }
  38. }
  39. }
  40. .thread-title {
  41. &:link, &:visited {
  42. color: @gray;
  43. }
  44. &:active, &:hover {
  45. color: @textColor;
  46. }
  47. &.thread-title-new {
  48. font-weight: bold;
  49. }
  50. }
  51. .thread-replies {
  52. color: @grayLight;
  53. text-align: right;
  54. }
  55. .thread-forum {
  56. a:link, a:visited {
  57. color: @gray;
  58. }
  59. a:active, a:hover {
  60. color: @textColor;
  61. }
  62. }
  63. }
  64. }