output-reconciliation-entities.less 1.48 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
@color-dxtreeview-item-selected: #f16100;

.output-reconciliation-entities {
    .add-keyword {
        display: inline-block;
        padding: 6px 1em 6px 0;
        cursor: pointer;

        i {
            color: #DC6700;
            margin-right: 0.5em;
            font-size: 15px;
        }
    }


    .ellipsis {
        white-space: nowrap !important;
        -ms-text-overflow: ellipsis !important;
        -o-text-overflow: ellipsis !important;
        text-overflow: ellipsis !important;
        overflow-x: hidden !important;
    }

    .item-keyword {
        display: inline-block;
        margin-right: 20px;
        vertical-align: bottom;
        position: relative;
        margin-bottom: 2px;
        width: 30%;
        white-space: nowrap;

        .dx-widget {
            width: calc(~'100% - 2px');
            display: inline-block;


            .dx-texteditor-input {
                display: inline-block;
            }
        }

        .delete-keywordi {
            position: absolute;
            right: -6px;
            top: -6px;
            font-size: 15px;
            cursor: pointer;
            background-color: white;
        }

        .read-keyword {
            .ellipsis;
            display: inline-block;
            padding: 6px 12px;
            background-color: #E4E4E4;
            width: calc(~'100% - 2px');
        }

        .suffix {
            display: inline-block;
            padding: 6px 0px;
            vertical-align: text-bottom;
        }
    }
}