alerts.less 930 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. // User Alerts
  2. // -------------------------
  3. .user-alerts {
  4. td {
  5. vertical-align: middle;
  6. &.alert-icon {
  7. color: @itemOldColor;
  8. font-size: @fontSizeLarge;
  9. &.alert-new {
  10. color: @itemNewColor;
  11. }
  12. }
  13. &.alert-message {
  14. color: @gray;
  15. font-size: @baseFontSize * 1.2;
  16. a:link, a:visited {
  17. color: @textColor;
  18. font-weight: bold;
  19. }
  20. }
  21. &.alert-date {
  22. color: @grayLight;
  23. text-align: right;
  24. }
  25. }
  26. }
  27. .midman-alerts {
  28. td {
  29. vertical-align: middle;
  30. &.alert-icon {
  31. width: 1%;
  32. font-size: @fontSizeLarge;
  33. text-align: center;
  34. &.alert-new {
  35. color: @itemNewColor;
  36. }
  37. }
  38. &.alert-message {
  39. color: @grayLight;
  40. a:link, a:visited {
  41. font-weight: bold;
  42. }
  43. }
  44. &.alert-date {
  45. color: @grayLight;
  46. font-size: @fontSizeSmall;
  47. text-align: right;
  48. }
  49. }
  50. }