blob: 43d68b709a060a5d84e60ee1f8511c57eca221f9 (
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
110
111
112
113
|
#theming input {
width: 230px;
}
#theming input:focus,
#theming input:active {
padding-right: 30px;
}
#theming .upload-logo-field {
display: none;
}
#theming div > label {
position: relative;
}
#theming .theme-undo {
position: absolute;
top: -7px;
right: 7px;
cursor: pointer;
opacity: .3;
padding: 7px;
vertical-align: top;
display: inline-block;
visibility: hidden;
}
form.uploadButton {
width: 356px;
}
#theming form .theme-undo,
#theming .theme-remove-bg {
cursor: pointer;
opacity: .3;
padding: 7px;
vertical-align: top;
display: inline-block;
float: right;
position: relative;
top: 4px;
right: 0px;
visibility: visible;
}
#theming input[type='text']:hover + .theme-undo,
#theming input[type='text'] + .theme-undo:hover,
#theming input[type='text']:focus + .theme-undo,
#theming input[type='text']:active + .theme-undo {
visibility: visible;
}
#theming .icon-loading-small:after {
margin: -10px 0 0 -10px;
}
#theming label span {
display: inline-block;
min-width: 120px;
padding: 8px 0px;
vertical-align: top;
}
#theming .icon-loading-small {
display: inline-flex;
padding: 8px;
margin: 2px 0px;
}
#theming .icon-upload,
#theming .icon-loading-small {
padding: 8px 20px;
width: 20px;
margin: 2px 0px;
min-height: 32px;
display: inline-block;
}
#theming_settings_status {
height: 26px;
margin: 10px;
}
#theming_settings_loading.icon-loading-small {
float: left;
padding: 0;
margin-right: 10px;
}
div#theming_settings_msg {
margin: 8px;
margin-left:20px;
display: inline-block;
}
#theming-preview-logo {
cursor: pointer;
}
#theming-preview {
width: 230px;
height: 140px;
background-size: cover;
background-position: center center;
text-align: center;
margin-left: 123px;
margin-top: 10px;
cursor: pointer;
}
#theming-preview img {
max-width: 20%;
max-height: 20%;
margin-top: 20px;
}
|