hyperlink.less 814 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .btn-group-vertical {
  2. vertical-align: middle;
  3. margin: 5px;
  4. .hyperlink, .hyperlink-caption {
  5. width: 40px;
  6. margin: 0;
  7. padding: 0;
  8. border: none!important;
  9. border-radius: 0!important;
  10. &:hover {
  11. background-color: @tool-hover;
  12. }
  13. &:active {
  14. background-color: @tool-active;
  15. }
  16. &.active {
  17. box-shadow: none;
  18. background-color: @tool-hover;
  19. }
  20. }
  21. .hyperlink {
  22. height: 25px;
  23. background: url(images/icons.png) no-repeat center -100px;
  24. }
  25. .hyperlink-caption {
  26. height: 20px;
  27. .caption {
  28. font-size: 12px;
  29. }
  30. }
  31. }
  32. //override bootstrap
  33. .open > .dropdown-toggle.btn-default {
  34. background-color: @tool-hover;
  35. }