reports.less 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. // Reports list
  2. // ------------------------
  3. .reports-list {
  4. .report-icon {
  5. padding-right: @fontSizeLarge;
  6. position: relative;
  7. bottom: 1px;
  8. width: 200px !important;
  9. text-align: right !important;
  10. a:link, a:active, a:visited, a:hover {
  11. font-size: @fontSizeLarge;
  12. }
  13. .report-open {
  14. &:link, &:active, &:visited, &:hover {
  15. color: @red;
  16. }
  17. }
  18. .report-resolved {
  19. &:link, &:active, &:visited, &:hover {
  20. color: @green;
  21. }
  22. }
  23. }
  24. .thread-new {
  25. .report-icon {
  26. a:link, a:active, a:visited, a:hover {
  27. border-radius: 3px;
  28. margin: -2px -6px;
  29. padding: 2px 6px;
  30. color: @white !important;
  31. }
  32. }
  33. .report-open {
  34. &:link, &:visited {
  35. background-color: @red;
  36. }
  37. &:active, &:hover {
  38. background-color: darken(@red, 15%);
  39. }
  40. }
  41. .report-resolved {
  42. &:link, &:visited {
  43. background-color: @green;
  44. }
  45. &:active, &:hover {
  46. background-color: darken(@green, 15%);
  47. }
  48. }
  49. .report-bogus {
  50. &:link, &:visited {
  51. background-color: @grayDarker;
  52. }
  53. &:active, &:hover {
  54. background-color: @grayDark;
  55. }
  56. }
  57. }
  58. }