fontawesome-icon-list.less 695 B

123456789101112131415161718192021222324252627282930313233
  1. .fontawesome-icon-list {
  2. margin-top: 22px;
  3. .fa-hover {
  4. a {
  5. .text-ellipsis;
  6. display: block;
  7. color: @gray-darker;
  8. line-height: 32px;
  9. height: 32px;
  10. padding-left: 10px;
  11. border-radius: @border-radius-base;
  12. .fa {
  13. width: 32px;
  14. font-size: 14px;
  15. display: inline-block;
  16. text-align: right;
  17. margin-right: 10px;
  18. }
  19. &:hover {
  20. background-color: @fa-green;
  21. color: @jumbotron-color;
  22. text-decoration: none;
  23. .fa {
  24. font-size: 28px;
  25. vertical-align: -6px;
  26. }
  27. .text-muted { color: mix(@jumbotron-color, @fa-green, 70%); }
  28. }
  29. }
  30. }
  31. }