1 | 1 |
deleted file mode 100755 |
... | ... |
@@ -1,154 +0,0 @@ |
1 |
-/*! formstone v0.8.29 [number.css] 2015-11-25 | MIT License | formstone.it */ |
|
2 |
- |
|
3 |
-/** |
|
4 |
- * @class |
|
5 |
- * @name .fs-number-element |
|
6 |
- * @type element |
|
7 |
- * @description Target elmement |
|
8 |
- */ |
|
9 |
-/** |
|
10 |
- * @class |
|
11 |
- * @name .fs-number |
|
12 |
- * @type element |
|
13 |
- * @description Base widget class |
|
14 |
- */ |
|
15 |
-/** |
|
16 |
- * @class |
|
17 |
- * @name .fs-number.fs-number-disabled |
|
18 |
- * @type modifier |
|
19 |
- * @description Indicates disabled state |
|
20 |
- */ |
|
21 |
-.fs-number { |
|
22 |
- position: relative; |
|
23 |
- border-radius: 3px; |
|
24 |
- margin: 0 0 10px 0; |
|
25 |
- overflow: hidden; |
|
26 |
- /** |
|
27 |
- * @class |
|
28 |
- * @name .fs-number-arrow |
|
29 |
- * @type element |
|
30 |
- * @description Arrow elmement |
|
31 |
- */ |
|
32 |
- /** |
|
33 |
- * @class |
|
34 |
- * @name .fs-number-arrow:after |
|
35 |
- * @type element |
|
36 |
- * @description Arrow icon |
|
37 |
- */ |
|
38 |
- /** |
|
39 |
- * @class |
|
40 |
- * @name .fs-number-arrow.fs-number-up |
|
41 |
- * @type modifier |
|
42 |
- * @description Indicates up state |
|
43 |
- */ |
|
44 |
- /** |
|
45 |
- * @class |
|
46 |
- * @name .fs-number-arrow.fs-number-down |
|
47 |
- * @type modifier |
|
48 |
- * @description Indicates up state |
|
49 |
- */ |
|
50 |
-} |
|
51 |
-.fs-number, |
|
52 |
-.fs-number:after, |
|
53 |
-.fs-number:before, |
|
54 |
-.fs-number *, |
|
55 |
-.fs-number *:after, |
|
56 |
-.fs-number *:before { |
|
57 |
- box-sizing: border-box; |
|
58 |
- -webkit-transition: none; |
|
59 |
- transition: none; |
|
60 |
-} |
|
61 |
-.fs-number-element { |
|
62 |
- width: 100%; |
|
63 |
- background: #ffffff; |
|
64 |
- border: 1px solid #cccccc; |
|
65 |
- border-radius: 3px; |
|
66 |
- color: #222222; |
|
67 |
- font-size: 15px; |
|
68 |
- line-height: 1; |
|
69 |
- overflow: hidden; |
|
70 |
- padding: 0 10px; |
|
71 |
- -moz-appearance: textfield; |
|
72 |
-} |
|
73 |
-.fs-number-element::-webkit-inner-spin-button, |
|
74 |
-.fs-number-element::-webkit-outer-spin-button { |
|
75 |
- margin: 0; |
|
76 |
- -webkit-appearance: none; |
|
77 |
-} |
|
78 |
-.fs-number-element::-ms-clear { |
|
79 |
- display: none; |
|
80 |
-} |
|
81 |
-.fs-number-element:focus { |
|
82 |
- background-color: #ffffff; |
|
83 |
-} |
|
84 |
-.fs-number-disabled .fs-number-element { |
|
85 |
- background: #ffffff; |
|
86 |
- border-color: #cccccc; |
|
87 |
- color: #cccccc; |
|
88 |
-} |
|
89 |
-.fs-number-arrow { |
|
90 |
- width: 25px; |
|
91 |
- height: 50%; |
|
92 |
- position: absolute; |
|
93 |
- right: 0; |
|
94 |
- z-index: 1; |
|
95 |
- background: #ffffff; |
|
96 |
- border: 1px solid #cccccc; |
|
97 |
- cursor: pointer; |
|
98 |
- display: block; |
|
99 |
- overflow: hidden; |
|
100 |
- text-indent: 200%; |
|
101 |
- white-space: nowrap; |
|
102 |
-} |
|
103 |
-.no-opacity .fs-number-arrow { |
|
104 |
- text-indent: -999999px; |
|
105 |
-} |
|
106 |
-.fs-number-arrow:focus { |
|
107 |
- outline: none; |
|
108 |
-} |
|
109 |
-.fs-number-arrow:after { |
|
110 |
- width: 0; |
|
111 |
- height: 0; |
|
112 |
- position: absolute; |
|
113 |
- top: 0; |
|
114 |
- right: 0; |
|
115 |
- bottom: 0; |
|
116 |
- left: 0; |
|
117 |
- border-left: 5px solid transparent; |
|
118 |
- border-right: 5px solid transparent; |
|
119 |
- content: ''; |
|
120 |
- display: block; |
|
121 |
- margin: auto; |
|
122 |
-} |
|
123 |
-.fs-number-arrow.fs-number-up { |
|
124 |
- top: 0; |
|
125 |
-} |
|
126 |
-.fs-number-arrow.fs-number-up:after { |
|
127 |
- border-bottom: 5px solid #666666; |
|
128 |
-} |
|
129 |
-.fs-number-arrow.fs-number-down { |
|
130 |
- bottom: 0; |
|
131 |
- border-top: none; |
|
132 |
-} |
|
133 |
-.fs-number-arrow.fs-number-down:after { |
|
134 |
- border-top: 5px solid #666666; |
|
135 |
-} |
|
136 |
-.fs-number-disabled .fs-number-arrow { |
|
137 |
- cursor: default; |
|
138 |
-} |
|
139 |
-.fs-number-disabled .fs-number-arrow:after { |
|
140 |
- border-top-color: #cccccc; |
|
141 |
- border-bottom-color: #cccccc; |
|
142 |
-} |
|
143 |
-/* |
|
144 |
- @media screen and (min-width: 740px) { |
|
145 |
- .stepper:hover .stepper-input { background-color: #fff; } |
|
146 |
- |
|
147 |
- .stepper .stepper-step:hover { background-color: #F9F9F9; } |
|
148 |
- |
|
149 |
- .stepper.disabled .stepper-arrow { background: #fff; border-color: #eee; cursor: default; } |
|
150 |
- } |
|
151 |
- |
|
152 |
- .stepper.disabled .stepper-input { background: #fff; border-color: #eee; color: #ccc; } |
|
153 |
- .stepper.disabled .stepper-arrow { background: #fff; border-color: #eee; cursor: default; } |
|
154 |
-*/ |
1 | 1 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,154 @@ |
1 |
+/*! formstone v0.8.29 [number.css] 2015-11-25 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+/** |
|
4 |
+ * @class |
|
5 |
+ * @name .fs-number-element |
|
6 |
+ * @type element |
|
7 |
+ * @description Target elmement |
|
8 |
+ */ |
|
9 |
+/** |
|
10 |
+ * @class |
|
11 |
+ * @name .fs-number |
|
12 |
+ * @type element |
|
13 |
+ * @description Base widget class |
|
14 |
+ */ |
|
15 |
+/** |
|
16 |
+ * @class |
|
17 |
+ * @name .fs-number.fs-number-disabled |
|
18 |
+ * @type modifier |
|
19 |
+ * @description Indicates disabled state |
|
20 |
+ */ |
|
21 |
+.fs-number { |
|
22 |
+ position: relative; |
|
23 |
+ border-radius: 3px; |
|
24 |
+ margin: 0 0 10px 0; |
|
25 |
+ overflow: hidden; |
|
26 |
+ /** |
|
27 |
+ * @class |
|
28 |
+ * @name .fs-number-arrow |
|
29 |
+ * @type element |
|
30 |
+ * @description Arrow elmement |
|
31 |
+ */ |
|
32 |
+ /** |
|
33 |
+ * @class |
|
34 |
+ * @name .fs-number-arrow:after |
|
35 |
+ * @type element |
|
36 |
+ * @description Arrow icon |
|
37 |
+ */ |
|
38 |
+ /** |
|
39 |
+ * @class |
|
40 |
+ * @name .fs-number-arrow.fs-number-up |
|
41 |
+ * @type modifier |
|
42 |
+ * @description Indicates up state |
|
43 |
+ */ |
|
44 |
+ /** |
|
45 |
+ * @class |
|
46 |
+ * @name .fs-number-arrow.fs-number-down |
|
47 |
+ * @type modifier |
|
48 |
+ * @description Indicates up state |
|
49 |
+ */ |
|
50 |
+} |
|
51 |
+.fs-number, |
|
52 |
+.fs-number:after, |
|
53 |
+.fs-number:before, |
|
54 |
+.fs-number *, |
|
55 |
+.fs-number *:after, |
|
56 |
+.fs-number *:before { |
|
57 |
+ box-sizing: border-box; |
|
58 |
+ -webkit-transition: none; |
|
59 |
+ transition: none; |
|
60 |
+} |
|
61 |
+.fs-number-element { |
|
62 |
+ width: 100%; |
|
63 |
+ background: #ffffff; |
|
64 |
+ border: 1px solid #cccccc; |
|
65 |
+ border-radius: 3px; |
|
66 |
+ color: #222222; |
|
67 |
+ font-size: 15px; |
|
68 |
+ line-height: 1; |
|
69 |
+ overflow: hidden; |
|
70 |
+ padding: 0 10px; |
|
71 |
+ -moz-appearance: textfield; |
|
72 |
+} |
|
73 |
+.fs-number-element::-webkit-inner-spin-button, |
|
74 |
+.fs-number-element::-webkit-outer-spin-button { |
|
75 |
+ margin: 0; |
|
76 |
+ -webkit-appearance: none; |
|
77 |
+} |
|
78 |
+.fs-number-element::-ms-clear { |
|
79 |
+ display: none; |
|
80 |
+} |
|
81 |
+.fs-number-element:focus { |
|
82 |
+ background-color: #ffffff; |
|
83 |
+} |
|
84 |
+.fs-number-disabled .fs-number-element { |
|
85 |
+ background: #ffffff; |
|
86 |
+ border-color: #cccccc; |
|
87 |
+ color: #cccccc; |
|
88 |
+} |
|
89 |
+.fs-number-arrow { |
|
90 |
+ width: 25px; |
|
91 |
+ height: 50%; |
|
92 |
+ position: absolute; |
|
93 |
+ right: 0; |
|
94 |
+ z-index: 1; |
|
95 |
+ background: #ffffff; |
|
96 |
+ border: 1px solid #cccccc; |
|
97 |
+ cursor: pointer; |
|
98 |
+ display: block; |
|
99 |
+ overflow: hidden; |
|
100 |
+ text-indent: 200%; |
|
101 |
+ white-space: nowrap; |
|
102 |
+} |
|
103 |
+.no-opacity .fs-number-arrow { |
|
104 |
+ text-indent: -999999px; |
|
105 |
+} |
|
106 |
+.fs-number-arrow:focus { |
|
107 |
+ outline: none; |
|
108 |
+} |
|
109 |
+.fs-number-arrow:after { |
|
110 |
+ width: 0; |
|
111 |
+ height: 0; |
|
112 |
+ position: absolute; |
|
113 |
+ top: 0; |
|
114 |
+ right: 0; |
|
115 |
+ bottom: 0; |
|
116 |
+ left: 0; |
|
117 |
+ border-left: 5px solid transparent; |
|
118 |
+ border-right: 5px solid transparent; |
|
119 |
+ content: ''; |
|
120 |
+ display: block; |
|
121 |
+ margin: auto; |
|
122 |
+} |
|
123 |
+.fs-number-arrow.fs-number-up { |
|
124 |
+ top: 0; |
|
125 |
+} |
|
126 |
+.fs-number-arrow.fs-number-up:after { |
|
127 |
+ border-bottom: 5px solid #666666; |
|
128 |
+} |
|
129 |
+.fs-number-arrow.fs-number-down { |
|
130 |
+ bottom: 0; |
|
131 |
+ border-top: none; |
|
132 |
+} |
|
133 |
+.fs-number-arrow.fs-number-down:after { |
|
134 |
+ border-top: 5px solid #666666; |
|
135 |
+} |
|
136 |
+.fs-number-disabled .fs-number-arrow { |
|
137 |
+ cursor: default; |
|
138 |
+} |
|
139 |
+.fs-number-disabled .fs-number-arrow:after { |
|
140 |
+ border-top-color: #cccccc; |
|
141 |
+ border-bottom-color: #cccccc; |
|
142 |
+} |
|
143 |
+/* |
|
144 |
+ @media screen and (min-width: 740px) { |
|
145 |
+ .stepper:hover .stepper-input { background-color: #fff; } |
|
146 |
+ |
|
147 |
+ .stepper .stepper-step:hover { background-color: #F9F9F9; } |
|
148 |
+ |
|
149 |
+ .stepper.disabled .stepper-arrow { background: #fff; border-color: #eee; cursor: default; } |
|
150 |
+ } |
|
151 |
+ |
|
152 |
+ .stepper.disabled .stepper-input { background: #fff; border-color: #eee; color: #ccc; } |
|
153 |
+ .stepper.disabled .stepper-arrow { background: #fff; border-color: #eee; cursor: default; } |
|
154 |
+*/ |