states.less 392 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // Activity States
  3. // --------------------------------------------------
  4. .user-online {
  5. color: @state-online;
  6. }
  7. .user-offline {
  8. color: @state-offline;
  9. }
  10. .user-banned {
  11. color: @state-banned;
  12. }
  13. // Icon states
  14. .fa, .glyphicon {
  15. &.text-success {
  16. color: @brand-success;
  17. }
  18. &.text-danger {
  19. color: @brand-danger;
  20. }
  21. &.text-warning {
  22. color: @brand-warning;
  23. }
  24. }