/*
 * Copyright (c) 2021 Nordic Semiconductor ASA
 *
 * SPDX-License-Identifier: LicenseRef-Nordic-4-Clause
 */

@import '../../variables';

.core19-device-selector {
    .basic-device-info {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;

        .details {
            width: inherit;

            line-height: 1;

            .name {
                font-size: 14px;
                font-weight: $font-weight-bold;
                text-overflow: ellipsis;

                &:not(:focus) {
                    pointer-events: none;
                }
            }
            .reconnecting {
                border-bottom-style: solid;
                border-bottom-width: 1px;
                border-bottom-color: transparent;

                font-size: 14px;
                font-weight: $font-weight-bold;

                &:not(:focus) {
                    pointer-events: none;
                }
            }

            .serial-number {
                overflow-wrap: break-word;
                max-width: 155px;
                text-overflow: ellipsis;
            }
        }
    }
}
