output-reconciliation-keywords.less 1.38 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
@color-dxtreeview-item-selected: #f16100;

.output-reconciliation-keywords {
    .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: 0.5em;
        vertical-align: bottom;
        position: relative;

        .dx-widget {
            width: 120px;
            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 6px;
            background-color: #E4E4E4;
            max-width: 120px;
        }

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