aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/directives/file-upload/file-upload.less
blob: 1c4b0108536d0bb08ece6ea29361507827fca25c (plain)
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
68
69
70
71
72
73
74
75
.i-sdc-form-file-upload {

    display: flex;
    margin-top: 0;
    width: 100%;
    .p_1;
    .bg_c;
    .border-radius(2px);
    border: solid 1px @border_color_f;
    height: 30px;

    input[type="file"] {
        cursor: inherit;
        display: block;
        filter: alpha(opacity=0);
        width: 100px;
        height: 30px;
        opacity: 0;
        position: absolute;
        right: 0;
        text-align: right;
        top: 0;
    }

    .i-sdc-form-file-name{
        flex-grow: 999;
        text-align: left;
        padding: 3px 10px;
        opacity: 0.6;
        width: 80%;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;

    }

    .i-sdc-form-file-upload-x-btn{
        flex-grow: 1;
        .sprite;
        .sprite.small-x-btn-black;
        cursor: pointer;
        top: 10px;
        right: 9px;
        width: 10px;
        position: relative;
    }
    .i-sdc-form-file-upload-label {
        float: right;
        width: 100px;
        height: 100%;
        .bg_n;
        .b_9;

        .file-upload-browse-btn {
            .noselect;
            padding: 4px 6px;
            cursor: pointer;
            z-index: 999;
            position: absolute;
            width: 100px;
            height: 28px;
            text-align: center;

            &.disabled {
                cursor: default;
            }
        }
    }

    &.error {
        border-color: #da1f3d;
        outline: none;
        box-sizing: border-box;
    }
}