report.less 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. // Report view
  2. // ------------------------
  3. .report-view {
  4. .report-wrapper {
  5. background-color: @grayLighter;
  6. background-image: -webkit-gradient(linear, 0 0, 100% 100%,
  7. color-stop(.25, rgba(255, 255, 255, .2)), color-stop(.25, transparent),
  8. color-stop(.5, transparent), color-stop(.5, rgba(255, 255, 255, .2)),
  9. color-stop(.75, rgba(255, 255, 255, .2)), color-stop(.75, transparent),
  10. to(transparent));
  11. background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, .2) 25%, transparent 25%,
  12. transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%,
  13. transparent 75%, transparent);
  14. background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, .2) 25%, transparent 25%,
  15. transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%,
  16. transparent 75%, transparent);
  17. background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, .2) 25%, transparent 25%,
  18. transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%,
  19. transparent 75%, transparent);
  20. background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, .2) 25%, transparent 25%,
  21. transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%,
  22. transparent 75%, transparent);
  23. background-image: linear-gradient(-45deg, rgba(255, 255, 255, .2) 25%, transparent 25%,
  24. transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%,
  25. transparent 75%, transparent);
  26. -webkit-background-size: 10px 10px;
  27. -moz-background-size: 10px 10px;
  28. background-size: 10px 10px;
  29. .border-radius(6px);
  30. padding: 8px;
  31. margin-bottom: 8px;
  32. .post-body {
  33. margin-bottom: 0px;
  34. .report-actions {
  35. border-left: none !important;
  36. float: left !important;
  37. padding: 0px !important;
  38. form:first-child .btn {
  39. .border-radius(0px 0px 0px @baseBorderRadius) !important;
  40. }
  41. .btn {
  42. .opacity(90) !important;
  43. margin: 0px !important;
  44. padding: 8px 12px !important;
  45. color: @white !important;
  46. font-weight: bold !important;
  47. i {
  48. position: relative;
  49. top: 0px;
  50. }
  51. &:hover, &:active, &:focus {
  52. .opacity(100) !important;
  53. text-decoration: none !important;
  54. }
  55. &.btn-resolve {
  56. background-color: darken(@green, 5%);
  57. text-shadow: 0px 1px 0px darken(@green, 20%);
  58. }
  59. &.btn-bogus {
  60. background-color: @grayDark;
  61. text-shadow: 0px 1px 0px darken(@grayDark, 20%);
  62. }
  63. }
  64. }
  65. }
  66. }
  67. }