Browse code

Removing old formstone libraries

Benjamin Roth authored on08/06/2016 14:32:18
Showing1 changed files
1 1
deleted file mode 100755
... ...
@@ -1,80 +0,0 @@
1
-/*! formstone v0.7.12 [upload.css] 2015-08-12 | 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
-.fs-upload {
22
-  overflow: hidden;
23
-  /**
24
-		 * @class
25
-		 * @name .fs-upload-input
26
-		 * @type element
27
-		 * @description Masked Input
28
-		 */
29
-  /**
30
-		 * @class
31
-		 * @name .fs-upload-target
32
-		 * @type element
33
-		 * @description Drop target
34
-		 */
35
-}
36
-.fs-upload,
37
-.fs-upload:after,
38
-.fs-upload:before,
39
-.fs-upload *,
40
-.fs-upload *:after,
41
-.fs-upload *:before {
42
-  box-sizing: border-box;
43
-  -webkit-transition: none;
44
-          transition: none;
45
-  -webkit-user-select: none !important;
46
-     -moz-user-select: none !important;
47
-      -ms-user-select: none !important;
48
-          user-select: none !important;
49
-}
50
-.fs-upload-input {
51
-  position: absolute;
52
-  left: 100%;
53
-  opacity: 0;
54
-}
55
-.no-opacity .fs-upload-input {
56
-  left: -999px;
57
-}
58
-.fs-upload-target {
59
-  background: #ffffff;
60
-  border: 3px dashed #cccccc;
61
-  border-radius: 3px;
62
-  color: #666666;
63
-  cursor: pointer;
64
-  font-size: 14px;
65
-  margin: 0;
66
-  padding: 25px;
67
-  text-align: center;
68
-  -webkit-transition: background 0.15s linear,
69
-				border 0.15s linear,
70
-				opacity 0.15s linear;
71
-          transition: background 0.15s linear,
72
-				border 0.15s linear,
73
-				opacity 0.15s linear;
74
-}
75
-.fs-upload.dropping .fs-upload-target,
76
-.no-touch .fs-upload:hover .fs-upload-target {
77
-  background: #eeeeee;
78
-  border-color: #999999;
79
-  color: #333333;
80
-}
Browse code

Initial commit

Benjamin Roth authored on13/08/2015 16:05:27
Showing1 changed files
1 1
new file mode 100755
... ...
@@ -0,0 +1,80 @@
1
+/*! formstone v0.7.12 [upload.css] 2015-08-12 | 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
+.fs-upload {
22
+  overflow: hidden;
23
+  /**
24
+		 * @class
25
+		 * @name .fs-upload-input
26
+		 * @type element
27
+		 * @description Masked Input
28
+		 */
29
+  /**
30
+		 * @class
31
+		 * @name .fs-upload-target
32
+		 * @type element
33
+		 * @description Drop target
34
+		 */
35
+}
36
+.fs-upload,
37
+.fs-upload:after,
38
+.fs-upload:before,
39
+.fs-upload *,
40
+.fs-upload *:after,
41
+.fs-upload *:before {
42
+  box-sizing: border-box;
43
+  -webkit-transition: none;
44
+          transition: none;
45
+  -webkit-user-select: none !important;
46
+     -moz-user-select: none !important;
47
+      -ms-user-select: none !important;
48
+          user-select: none !important;
49
+}
50
+.fs-upload-input {
51
+  position: absolute;
52
+  left: 100%;
53
+  opacity: 0;
54
+}
55
+.no-opacity .fs-upload-input {
56
+  left: -999px;
57
+}
58
+.fs-upload-target {
59
+  background: #ffffff;
60
+  border: 3px dashed #cccccc;
61
+  border-radius: 3px;
62
+  color: #666666;
63
+  cursor: pointer;
64
+  font-size: 14px;
65
+  margin: 0;
66
+  padding: 25px;
67
+  text-align: center;
68
+  -webkit-transition: background 0.15s linear,
69
+				border 0.15s linear,
70
+				opacity 0.15s linear;
71
+          transition: background 0.15s linear,
72
+				border 0.15s linear,
73
+				opacity 0.15s linear;
74
+}
75
+.fs-upload.dropping .fs-upload-target,
76
+.no-touch .fs-upload:hover .fs-upload-target {
77
+  background: #eeeeee;
78
+  border-color: #999999;
79
+  color: #333333;
80
+}