alerts.less 492 B

1234567891011121314151617181920212223242526272829303132
  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. }