logo

searx

My custom branche(s) on searx, a meta-search engine git clone https://hacktivis.me/git/searx.git

badges.less (1069B)


  1. //
  2. // Badges
  3. // --------------------------------------------------
  4. // Base class
  5. .badge {
  6. display: inline-block;
  7. min-width: 10px;
  8. padding: 3px 7px;
  9. font-size: @font-size-small;
  10. font-weight: @badge-font-weight;
  11. color: @badge-color;
  12. line-height: @badge-line-height;
  13. vertical-align: baseline;
  14. white-space: nowrap;
  15. text-align: center;
  16. background-color: @badge-bg;
  17. border-radius: @badge-border-radius;
  18. // Empty badges collapse automatically (not available in IE8)
  19. &:empty {
  20. display: none;
  21. }
  22. // Quick fix for badges in buttons
  23. .btn & {
  24. position: relative;
  25. top: -1px;
  26. }
  27. .btn-xs & {
  28. top: 0;
  29. padding: 1px 5px;
  30. }
  31. // Hover state, but only for links
  32. a& {
  33. &:hover,
  34. &:focus {
  35. color: @badge-link-hover-color;
  36. text-decoration: none;
  37. cursor: pointer;
  38. }
  39. }
  40. // Account for badges in navs
  41. a.list-group-item.active > &,
  42. .nav-pills > .active > a > & {
  43. color: @badge-active-color;
  44. background-color: @badge-active-bg;
  45. }
  46. .nav-pills > li > a > & {
  47. margin-left: 3px;
  48. }
  49. }