blob: ff06addbb61069773e5e3b4a9e8236969f839e5b (
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
.modal-header {
border: none!important;
padding: 10px 20px 0px 20px!important;
font-family: "OpenSans-Light";
font-size: 22px;
color: #000000;
}
.modal-header h3 {
font-family: "OpenSans-Light";
color: #000000;
color: #000000;
font-size: 22px;
font-weight: 300;
line-height: 16px;
padding-bottom: 20px;
border-bottom: 3px solid #009fdb;
}
.control-label {
font-family: "OpenSans-Light";
color: #5a5a5a;
font-size: 13px;
font-weight: 400;
}
.modal-content {
width: 468px;
height: 242px;
border-radius: 8px;
background-color: #ffffff;
}
body .modal-body {
padding-bottom: 0;
padding-top: 0;
padding-left: 20px;
padding-right: 20px;
width: 468px;
height: 91px;
}
.modal-footer {
margin-top: 0;
background-color: #fff;
}
.modal-close {
margin: -60px 5px 0 0;
color: #5a5a5a;
font-size: 20px;
cursor: pointer;
}
.inputfile {
width: 0.1px;
height: 0.1px;
opacity: 0;
overflow: hidden;
position: absolute;
z-index: -1;
}
.manifestName{
font-family: OpenSans-Semibold;
font-size: 12px;
color: #191919;
}
.manifestFileName {
width: 389px;
height: 37px;
background: #FFFFFF;
border: 1px solid #D2D2D2;
border-radius: 2px;
display: inline-block;
line-height: 37px;
font-weight: normal !important;
padding-left: 3px;
border-bottom-right-radius: 0;
border-top-right-radius: 0;
}
.elipsisImg {
width: 37px;
padding: 10px;
background: #FFFFFF;
border: 1px solid #D2D2D2;
display: inline-block;
cursor: pointer;
vertical-align: top;
border-radius: 2px;
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
.labelForImage {
vertical-align: top;
}
.errorLabel {
color: red;
}
|