upload-file-modal.less 1.21 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
#upload-file-modal-wrapper {
    .modal-body {
        .row {
            margin-bottom: 20px;
        }

        .btn-default {
            background-color: #aaa;
            color: #fff;
            border: 0;
        }

        .file-container {
            height:200px;
            overflow-y:auto;
            border: #ccc 1px solid;
            border-radius: 4px;
            width: 100%;
            color: #777;
            line-height: 27px;

            .file-line {
                display: inline-block;
                width: 100%;

                /*.file-name {
                    color: #44b;
                    cursor: pointer;
                }*/

                .delete-file {
                    color: #f44;
                    cursor: pointer;
                    text-align: right;
                }
            }
        }
    }

    .modal-footer {
        .btn {
            height: 28px;
        }

        .btn-first {
            color: #fff;
            background-color: #a22;
            width: 100px;
            margin-left: 30px;
        }

        .btn-second {
            color: #fff;
            background-color: #999;
            width: 100px;
            margin-left: 30px;
        }
    }
}