select.less 701 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .btn-group-vertical {
  2. vertical-align: middle;
  3. margin: 5px;
  4. .select, .select-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. .select {
  22. height: 25px;
  23. background: url(images/icons.png) no-repeat 7px -1175px;
  24. }
  25. .select-caption {
  26. height: 20px;
  27. .caption {
  28. font-size: 12px;
  29. }
  30. }
  31. }