mechanize_store 0.0.6 → 0.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ZGQ3NmJmNmExMDhhYjlmZjdkYTMyZjM2NWYyNDdjMTAzMTk2MmIyMA==
4
+ ZDBjOTA4ZjRlNDY0YjNiNjNjOWYyMzc2YzZhNDU4MzFjODY4ZWY3Mw==
5
5
  data.tar.gz: !binary |-
6
- NDIyY2Y2ZGU2NWNiYmVhY2NhOTZmZDE5NGZhMTFhYjBmM2U4ZDQzYg==
6
+ N2YxMTJlZjI5Y2YxNmYzYTk4M2Y1MTRiMzgyNGZhMDAyNzhmYTk4Yw==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- ZDU4ZTI4ZWY3MGNkYmY0OTAyMjhjZjI0OTE4YjI4NmNmMjEzNmJkNGFjZjQx
10
- NTNhMDUxYmQ3YzhhZGZhNWQ5ZjE4NjYwOTg1YWNiNGFjOGFhZjAwMDExMjhj
11
- MTY2ZGI5MmYyNTQ2ZmNkNDk3MTc1Zjc1NzhjZmExZWVhNDM3OGM=
9
+ N2MzYTc4YTRlZDA1ZTY0OWM2MDgxNDFjZTI5NzdlYmYwYzhkNWY0M2UxMzAz
10
+ YmQ3YzRkNjlhMzkyMTUyMWM2ZjE5MTc1ZmE0NzI1OTRkMTYzNmMyODg2ZGRj
11
+ NjljZDc2NmVlNGQ3NjQxMTE2OTNlMWVlYmYwZDQxZGVjYjYwOTg=
12
12
  data.tar.gz: !binary |-
13
- MDI1M2E0Y2ViNTg4NmE2MjI1MGM0ZWNkOWMyYjU5ZTVlZTVkZGFkZWUyMjU0
14
- MTNjMzY2ZTAwYTc4ODBkZmJlNzczZDEzOWI4MzAwZDRjZDlmYWYyNmI5YmU1
15
- ZGI0YjJmNGY4MzU1YWUwNjVkYzVkYjM4ZTZhNTY3ZmY1ODZlMTA=
13
+ YWNmYTU0ZjZhOWMyZDRiN2EzNjhmOGYwMTdhOGZkN2I2OWVjOWQ0ZWI3YmFj
14
+ N2QxZDUxMDE1NjIxZWZlOWEwMjVhZjJiMWIzZmE0YzVhY2I0ZGEzNDJhZTU1
15
+ YmU1MTczZDU4Y2QyMjkwZTdmOTkxNmNkOWFlYzI3NzhjNzI4NzE=
@@ -11,6 +11,7 @@
11
11
  *= require_self
12
12
  *= require font-awesome
13
13
  *= require mechanize_store/sb-admin/bootstrap
14
+ *= require mechanize_store/sb-admin/jquery.fileupload
14
15
  *= require mechanize_store/sb-admin/sb-admin
15
16
  *= require mechanize_store/sb-admin/plugins/dataTables/dataTables.bootstrap
16
17
  *= require mechanize_store/sb-admin/plugins/morris/morris-0.4.3.min
@@ -0,0 +1,36 @@
1
+ @charset "UTF-8";
2
+ /*
3
+ * jQuery File Upload Plugin CSS 1.3.0
4
+ * https://github.com/blueimp/jQuery-File-Upload
5
+ *
6
+ * Copyright 2013, Sebastian Tschan
7
+ * https://blueimp.net
8
+ *
9
+ * Licensed under the MIT license:
10
+ * http://www.opensource.org/licenses/MIT
11
+ */
12
+
13
+ .fileinput-button {
14
+ position: relative;
15
+ overflow: hidden;
16
+ }
17
+ .fileinput-button input {
18
+ position: absolute;
19
+ top: 0;
20
+ right: 0;
21
+ margin: 0;
22
+ opacity: 0;
23
+ -ms-filter: 'alpha(opacity=0)';
24
+ font-size: 200px;
25
+ direction: ltr;
26
+ cursor: pointer;
27
+ }
28
+
29
+ /* Fixes for IE < 8 */
30
+ @media screen\9 {
31
+ .fileinput-button input {
32
+ filter: alpha(opacity=0);
33
+ font-size: 100%;
34
+ height: 100%;
35
+ }
36
+ }
@@ -1,3 +1,3 @@
1
1
  module MechanizeStore
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
3
3
  end