@import "../../../style/variables.less";

.selectFieldSpace() {
    @cmName: ~"@{prefix}-mk-select-field";

    .@{cmName} {
        :global {
            .ant-select-dropdown-menu-item {
                &:after {
                    display: none !important;
                }
            }
        }
        &.origin {
            :global {
                .ant-select {

                    .ant-select-selection__rendered {
                        margin: auto 11px;
                    }

                    .ant-select-arrow {
                        right: 11px;
                    }
                }

                .ant-select-selection:hover {
                    border-color: @maycur-color;
                }
            }

        }

        :global {
            .ant-select {
                display: block;

                .ant-select-selection__rendered {
                    margin: auto 0;
                }

                .ant-select-arrow {
                    right: 0;
                }
            }
        }

    }
}

.selectFieldSpace();