.wrapper {
    .textbox {
        height: 100%;
        padding: 0;
    }
    .input {
        height: 100%;
        box-sizing: border-box;
        &.number-only-input {
            border-bottom-right-radius: 0;
            border-top-right-radius: 0;
            border-right: 0;
            padding: 0;
        }
    }
    .units-dropdown {
        height: 100%;
    }

    &:not(.compactVersion) {
        height: 35px;
        .input {
            &.number-only-input {
                width: 40px;
            }
            &:not(.number-only-input) {
                width: 55px;
            }
        }
        .units-dropdown {
            width: 25px;
            font-size: 12px;
        }
    }
    &.compactVersion {
        height: 25px;
        .input {
            font-size: 12px;
            &.number-only-input {
                width: 26px;
            }
            &:not(.number-only-input) {
                width: 41px;
                padding: 3px;
            }
        }
        .units-dropdown {
            width: 16px;
            font-size: 10px;
        }
    }
}
