1 | 1 |
deleted file mode 100644 |
... | ... |
@@ -1,102 +0,0 @@ |
1 |
-/*! formstone v0.8.35 [upload.css] 2015-12-28 | MIT License | formstone.it */ |
|
2 |
- |
|
3 |
-/** |
|
4 |
- * @class |
|
5 |
- * @name .fs-upload-element |
|
6 |
- * @type element |
|
7 |
- * @description Target elmement |
|
8 |
- */ |
|
9 |
-/** |
|
10 |
- * @class |
|
11 |
- * @name .fs-upload |
|
12 |
- * @type element |
|
13 |
- * @description Base widget class |
|
14 |
- */ |
|
15 |
-/** |
|
16 |
- * @class |
|
17 |
- * @name .fs-upload.fs-upload-dropping |
|
18 |
- * @type modifier |
|
19 |
- * @description Indicates dropping state |
|
20 |
- */ |
|
21 |
-/** |
|
22 |
- * @class |
|
23 |
- * @name .fs-upload.fs-upload-disabled |
|
24 |
- * @type modifier |
|
25 |
- * @description Indicates disabled state |
|
26 |
- */ |
|
27 |
-.fs-upload { |
|
28 |
- overflow: hidden; |
|
29 |
- /** |
|
30 |
- * @class |
|
31 |
- * @name .fs-upload-input |
|
32 |
- * @type element |
|
33 |
- * @description Masked Input |
|
34 |
- */ |
|
35 |
- /** |
|
36 |
- * @class |
|
37 |
- * @name .fs-upload-target |
|
38 |
- * @type element |
|
39 |
- * @description Drop target |
|
40 |
- */ |
|
41 |
-} |
|
42 |
-.fs-upload, |
|
43 |
-.fs-upload:after, |
|
44 |
-.fs-upload:before, |
|
45 |
-.fs-upload *, |
|
46 |
-.fs-upload *:after, |
|
47 |
-.fs-upload *:before { |
|
48 |
- box-sizing: border-box; |
|
49 |
- -webkit-transition: none; |
|
50 |
- transition: none; |
|
51 |
- -webkit-user-select: none !important; |
|
52 |
- -moz-user-select: none !important; |
|
53 |
- -ms-user-select: none !important; |
|
54 |
- user-select: none !important; |
|
55 |
-} |
|
56 |
-.fs-upload-input { |
|
57 |
- position: absolute; |
|
58 |
- left: 100%; |
|
59 |
- opacity: 0; |
|
60 |
-} |
|
61 |
-.no-opacity .fs-upload-input { |
|
62 |
- left: -999px; |
|
63 |
-} |
|
64 |
-.fs-upload-target { |
|
65 |
- background: #ffffff; |
|
66 |
- border: 3px dashed #cccccc; |
|
67 |
- border-radius: 3px; |
|
68 |
- color: #666666; |
|
69 |
- cursor: pointer; |
|
70 |
- font-size: 14px; |
|
71 |
- margin: 0; |
|
72 |
- padding: 25px; |
|
73 |
- text-align: center; |
|
74 |
- -webkit-transition: background 0.15s linear, |
|
75 |
- border 0.15s linear, |
|
76 |
- color 0.15s linear, |
|
77 |
- opacity 0.15s linear; |
|
78 |
- transition: background 0.15s linear, |
|
79 |
- border 0.15s linear, |
|
80 |
- color 0.15s linear, |
|
81 |
- opacity 0.15s linear; |
|
82 |
-} |
|
83 |
-.fs-upload-dropping .fs-upload-target, |
|
84 |
-.no-touchevents .fs-upload:hover .fs-upload-target { |
|
85 |
- background: #eeeeee; |
|
86 |
- border-color: #999999; |
|
87 |
- color: #333333; |
|
88 |
-} |
|
89 |
-.fs-upload-disabled .fs-upload-target, |
|
90 |
-.no-touchevents .fs-upload-disabled:hover .fs-upload-target { |
|
91 |
- background: #ffffff; |
|
92 |
- border-color: #cccccc; |
|
93 |
- color: #666666; |
|
94 |
- cursor: default; |
|
95 |
- cursor: not-allowed; |
|
96 |
-} |
|
97 |
-.fs-upload-disabled.fs-upload-dropping .fs-upload-target, |
|
98 |
-.no-touchevents .fs-upload-disabled.fs-upload-dropping:hover .fs-upload-target { |
|
99 |
- background: #ffc7c6; |
|
100 |
- border-color: #ff6666; |
|
101 |
- color: #ff0000; |
|
102 |
-} |
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,102 @@ |
1 |
+/*! formstone v0.8.35 [upload.css] 2015-12-28 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+/** |
|
4 |
+ * @class |
|
5 |
+ * @name .fs-upload-element |
|
6 |
+ * @type element |
|
7 |
+ * @description Target elmement |
|
8 |
+ */ |
|
9 |
+/** |
|
10 |
+ * @class |
|
11 |
+ * @name .fs-upload |
|
12 |
+ * @type element |
|
13 |
+ * @description Base widget class |
|
14 |
+ */ |
|
15 |
+/** |
|
16 |
+ * @class |
|
17 |
+ * @name .fs-upload.fs-upload-dropping |
|
18 |
+ * @type modifier |
|
19 |
+ * @description Indicates dropping state |
|
20 |
+ */ |
|
21 |
+/** |
|
22 |
+ * @class |
|
23 |
+ * @name .fs-upload.fs-upload-disabled |
|
24 |
+ * @type modifier |
|
25 |
+ * @description Indicates disabled state |
|
26 |
+ */ |
|
27 |
+.fs-upload { |
|
28 |
+ overflow: hidden; |
|
29 |
+ /** |
|
30 |
+ * @class |
|
31 |
+ * @name .fs-upload-input |
|
32 |
+ * @type element |
|
33 |
+ * @description Masked Input |
|
34 |
+ */ |
|
35 |
+ /** |
|
36 |
+ * @class |
|
37 |
+ * @name .fs-upload-target |
|
38 |
+ * @type element |
|
39 |
+ * @description Drop target |
|
40 |
+ */ |
|
41 |
+} |
|
42 |
+.fs-upload, |
|
43 |
+.fs-upload:after, |
|
44 |
+.fs-upload:before, |
|
45 |
+.fs-upload *, |
|
46 |
+.fs-upload *:after, |
|
47 |
+.fs-upload *:before { |
|
48 |
+ box-sizing: border-box; |
|
49 |
+ -webkit-transition: none; |
|
50 |
+ transition: none; |
|
51 |
+ -webkit-user-select: none !important; |
|
52 |
+ -moz-user-select: none !important; |
|
53 |
+ -ms-user-select: none !important; |
|
54 |
+ user-select: none !important; |
|
55 |
+} |
|
56 |
+.fs-upload-input { |
|
57 |
+ position: absolute; |
|
58 |
+ left: 100%; |
|
59 |
+ opacity: 0; |
|
60 |
+} |
|
61 |
+.no-opacity .fs-upload-input { |
|
62 |
+ left: -999px; |
|
63 |
+} |
|
64 |
+.fs-upload-target { |
|
65 |
+ background: #ffffff; |
|
66 |
+ border: 3px dashed #cccccc; |
|
67 |
+ border-radius: 3px; |
|
68 |
+ color: #666666; |
|
69 |
+ cursor: pointer; |
|
70 |
+ font-size: 14px; |
|
71 |
+ margin: 0; |
|
72 |
+ padding: 25px; |
|
73 |
+ text-align: center; |
|
74 |
+ -webkit-transition: background 0.15s linear, |
|
75 |
+ border 0.15s linear, |
|
76 |
+ color 0.15s linear, |
|
77 |
+ opacity 0.15s linear; |
|
78 |
+ transition: background 0.15s linear, |
|
79 |
+ border 0.15s linear, |
|
80 |
+ color 0.15s linear, |
|
81 |
+ opacity 0.15s linear; |
|
82 |
+} |
|
83 |
+.fs-upload-dropping .fs-upload-target, |
|
84 |
+.no-touchevents .fs-upload:hover .fs-upload-target { |
|
85 |
+ background: #eeeeee; |
|
86 |
+ border-color: #999999; |
|
87 |
+ color: #333333; |
|
88 |
+} |
|
89 |
+.fs-upload-disabled .fs-upload-target, |
|
90 |
+.no-touchevents .fs-upload-disabled:hover .fs-upload-target { |
|
91 |
+ background: #ffffff; |
|
92 |
+ border-color: #cccccc; |
|
93 |
+ color: #666666; |
|
94 |
+ cursor: default; |
|
95 |
+ cursor: not-allowed; |
|
96 |
+} |
|
97 |
+.fs-upload-disabled.fs-upload-dropping .fs-upload-target, |
|
98 |
+.no-touchevents .fs-upload-disabled.fs-upload-dropping:hover .fs-upload-target { |
|
99 |
+ background: #ffc7c6; |
|
100 |
+ border-color: #ff6666; |
|
101 |
+ color: #ff0000; |
|
102 |
+} |