blob: 11a141420f776b5f85f22dc6ba0a01d95a413094 (
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
|
input[type=file] {
opacity: 0;
position: relative;
z-index: 1;
width: 0.5px;
height: 0.5px;
display: inline-block;
input {
display: none;
}
}
.dynamicFileName {
width: 100%;
height: 34px;
background: #FFFFFF;
border: 1px solid #D2D2D2;
border-radius: 2px;
display: inline-block;
line-height: 34px;
font-weight: normal !important;
padding-left: 3px;
border-bottom-right-radius: 0;
border-top-right-radius: 0;
}
.labelForImage {
background: #F2F2F2;
border-left: 1px solid #D2D2D2;
float: right;
height: 32px;
}
.icon-browse:before {
content: "\e90d";
color: #5A5A5A;
font-size: 15px;
cursor: pointer;
width: 34px;
height: 100%;
line-height: 34px;
text-align: center;
display: inline-block;
vertical-align: super;
border-radius: 2px;
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
.icon-browse:hover::before {
background-color: #E6F6FB;
color: #009FDB;
}
.icon-browse:active::before {
background-color: #E6F6FB;
color: #009FDB;
}
|