1234567891011121314151617181920212223242526272829303132333435363738 |
- .btn-group-vertical {
- vertical-align: middle;
- margin: 5px;
- .select, .select-caption {
- width: 40px;
- margin: 0;
- padding: 0;
- border: none!important;
- border-radius: 0!important;
- &:hover {
- background-color: @tool-hover;
- }
- &:active {
- background-color: @tool-active;
- }
- &.active {
- box-shadow: none;
- background-color: @tool-hover;
- }
- }
- .select {
- height: 25px;
- background: url(images/icons.png) no-repeat 7px -1175px;
- }
- .select-caption {
- height: 20px;
- .caption {
- font-size: 12px;
- }
- }
- }
|