| 123456789101112131415161718192021222324 | .tool-group {    padding: 0;    &[disabled] {        opacity: 0.5;    }    .tool-group-item {        display: inline-block;        border-radius: 4px;        .tool-group-icon {            width: 20px;            height: 20px;            padding: 2px;            margin: 1px;        }        &:hover {background-color: @button-hover;}        &:active {background-color: @button-active;}        &.active {background-color: @button-active;}    }}
 |