We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac3a5d7 commit 132bf7dCopy full SHA for 132bf7d
vendor/assets/stylesheets/jquery.fileupload-ui.scss
@@ -9,6 +9,7 @@
9
* Licensed under the MIT license:
10
* http://www.opensource.org/licenses/MIT
11
*/
12
+@import "jquery.fileupload";
13
14
.fileupload-buttonbar .btn,
15
.fileupload-buttonbar .toggle {
vendor/assets/stylesheets/jquery.fileupload.scss
@@ -0,0 +1,24 @@
1
+.fileinput-button {
2
+ position: relative;
3
+ overflow: hidden;
4
+}
5
+.fileinput-button input {
6
+ position: absolute;
7
+ top: 0;
8
+ right: 0;
+ margin: 0;
+ opacity: 0;
+ -ms-filter: 'alpha(opacity=0)';
+ font-size: 200px;
+ direction: ltr;
+ cursor: pointer;
16
+
17
+/* Fixes for IE < 8 */
18
+@media screen\9 {
19
+ .fileinput-button input {
20
+ filter: alpha(opacity=0);
21
+ font-size: 100%;
22
+ height: 100%;
23
+ }
24
0 commit comments