furatto 0.0.1

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.
Files changed (118) hide show
  1. data/.gitignore +18 -0
  2. data/Gemfile +4 -0
  3. data/LICENSE.txt +22 -0
  4. data/README.md +29 -0
  5. data/Rakefile +1 -0
  6. data/furatto.gemspec +21 -0
  7. data/lib/furatto.rb +16 -0
  8. data/lib/furatto/engine.rb +6 -0
  9. data/lib/furatto/version.rb +3 -0
  10. data/vendor/assets/fonts/fontawesome/FontAwesome.otf +0 -0
  11. data/vendor/assets/fonts/fontawesome/fontawesome-webfont.eot +0 -0
  12. data/vendor/assets/fonts/fontawesome/fontawesome-webfont.svg +399 -0
  13. data/vendor/assets/fonts/fontawesome/fontawesome-webfont.ttf +0 -0
  14. data/vendor/assets/fonts/fontawesome/fontawesome-webfont.woff +0 -0
  15. data/vendor/assets/fonts/meteocons-webfont.eot +0 -0
  16. data/vendor/assets/fonts/meteocons-webfont.svg +81 -0
  17. data/vendor/assets/fonts/meteocons-webfont.ttf +0 -0
  18. data/vendor/assets/fonts/meteocons-webfont.woff +0 -0
  19. data/vendor/assets/images/icheck/aero.png +0 -0
  20. data/vendor/assets/images/icheck/aero@2x.png +0 -0
  21. data/vendor/assets/images/icheck/blue.png +0 -0
  22. data/vendor/assets/images/icheck/blue@2x.png +0 -0
  23. data/vendor/assets/images/icheck/flat.png +0 -0
  24. data/vendor/assets/images/icheck/flat@2x.png +0 -0
  25. data/vendor/assets/images/icheck/green.png +0 -0
  26. data/vendor/assets/images/icheck/green@2x.png +0 -0
  27. data/vendor/assets/images/icheck/grey.png +0 -0
  28. data/vendor/assets/images/icheck/grey@2x.png +0 -0
  29. data/vendor/assets/images/icheck/orange.png +0 -0
  30. data/vendor/assets/images/icheck/orange@2x.png +0 -0
  31. data/vendor/assets/images/icheck/pink.png +0 -0
  32. data/vendor/assets/images/icheck/pink@2x.png +0 -0
  33. data/vendor/assets/images/icheck/purple.png +0 -0
  34. data/vendor/assets/images/icheck/purple@2x.png +0 -0
  35. data/vendor/assets/images/icheck/red.png +0 -0
  36. data/vendor/assets/images/icheck/red@2x.png +0 -0
  37. data/vendor/assets/images/icheck/yellow.png +0 -0
  38. data/vendor/assets/images/icheck/yellow@2x.png +0 -0
  39. data/vendor/assets/images/icons/customize-icon150.png +0 -0
  40. data/vendor/assets/images/icons/flexible-icon.png +0 -0
  41. data/vendor/assets/images/icons/github-128-black.png +0 -0
  42. data/vendor/assets/images/icons/iphone-icon150.png +0 -0
  43. data/vendor/assets/images/icons/lock-icon128.png +0 -0
  44. data/vendor/assets/images/icons/rocket-icon128.png +0 -0
  45. data/vendor/assets/images/icons/rocket-icon150.png +0 -0
  46. data/vendor/assets/images/icons/screen-icon.png +0 -0
  47. data/vendor/assets/images/icons/screens-icon.png +0 -0
  48. data/vendor/assets/images/icons/screens2-icon.png +0 -0
  49. data/vendor/assets/images/next.png +0 -0
  50. data/vendor/assets/images/previous.png +0 -0
  51. data/vendor/assets/images/themes.gif +0 -0
  52. data/vendor/assets/images/toggle.png +0 -0
  53. data/vendor/assets/javascripts/dropdown.js +169 -0
  54. data/vendor/assets/javascripts/furatto.js +15 -0
  55. data/vendor/assets/javascripts/jpanel.js +547 -0
  56. data/vendor/assets/javascripts/jquery.avgrund.js +127 -0
  57. data/vendor/assets/javascripts/jquery.dropkick-1.0.0.js +400 -0
  58. data/vendor/assets/javascripts/jquery.icheck.js +462 -0
  59. data/vendor/assets/javascripts/jquery.tagsinput.js +354 -0
  60. data/vendor/assets/javascripts/jquery.toolbar.js +242 -0
  61. data/vendor/assets/javascripts/legacy.js +140 -0
  62. data/vendor/assets/javascripts/picker.date.js +957 -0
  63. data/vendor/assets/javascripts/picker.js +785 -0
  64. data/vendor/assets/javascripts/picker.time.js +651 -0
  65. data/vendor/assets/javascripts/rainbow-custom.min.js +13 -0
  66. data/vendor/assets/javascripts/responsive-tables.js +67 -0
  67. data/vendor/assets/javascripts/responsiveslides.js +391 -0
  68. data/vendor/assets/javascripts/tooltip.js +353 -0
  69. data/vendor/assets/stylesheets/furatto.scss +101 -0
  70. data/vendor/assets/stylesheets/furatto/_alerts.scss +81 -0
  71. data/vendor/assets/stylesheets/furatto/_base.scss +187 -0
  72. data/vendor/assets/stylesheets/furatto/_buttons.scss +100 -0
  73. data/vendor/assets/stylesheets/furatto/_code.scss +66 -0
  74. data/vendor/assets/stylesheets/furatto/_date_picker.date.scss +266 -0
  75. data/vendor/assets/stylesheets/furatto/_date_picker.scss +158 -0
  76. data/vendor/assets/stylesheets/furatto/_date_picker.time.scss +122 -0
  77. data/vendor/assets/stylesheets/furatto/_dropdown.scss +261 -0
  78. data/vendor/assets/stylesheets/furatto/_font-awesome-ie7.scss +1953 -0
  79. data/vendor/assets/stylesheets/furatto/_fonts.scss +614 -0
  80. data/vendor/assets/stylesheets/furatto/_footer.scss +44 -0
  81. data/vendor/assets/stylesheets/furatto/_forms.scss +290 -0
  82. data/vendor/assets/stylesheets/furatto/_grid.scss +56 -0
  83. data/vendor/assets/stylesheets/furatto/_images.scss +44 -0
  84. data/vendor/assets/stylesheets/furatto/_labels.scss +43 -0
  85. data/vendor/assets/stylesheets/furatto/_layout.scss +0 -0
  86. data/vendor/assets/stylesheets/furatto/_left_navbar.scss +100 -0
  87. data/vendor/assets/stylesheets/furatto/_mixins.scss +283 -0
  88. data/vendor/assets/stylesheets/furatto/_modal.scss +103 -0
  89. data/vendor/assets/stylesheets/furatto/_nav.scss +106 -0
  90. data/vendor/assets/stylesheets/furatto/_navbar.scss +187 -0
  91. data/vendor/assets/stylesheets/furatto/_pagination.scss +158 -0
  92. data/vendor/assets/stylesheets/furatto/_responsive-1200px-min.scss +21 -0
  93. data/vendor/assets/stylesheets/furatto/_responsive-767px-max.scss +82 -0
  94. data/vendor/assets/stylesheets/furatto/_responsive-768px-979px.scss +23 -0
  95. data/vendor/assets/stylesheets/furatto/_responsive_navbar.scss +184 -0
  96. data/vendor/assets/stylesheets/furatto/_responsive_tables.scss +28 -0
  97. data/vendor/assets/stylesheets/furatto/_responsiveslides.scss +202 -0
  98. data/vendor/assets/stylesheets/furatto/_select.scss +191 -0
  99. data/vendor/assets/stylesheets/furatto/_tables.scss +90 -0
  100. data/vendor/assets/stylesheets/furatto/_tags.scss +107 -0
  101. data/vendor/assets/stylesheets/furatto/_toolbars.scss +116 -0
  102. data/vendor/assets/stylesheets/furatto/_tooltips.scss +143 -0
  103. data/vendor/assets/stylesheets/furatto/_typography.scss +266 -0
  104. data/vendor/assets/stylesheets/furatto/_variables.scss +628 -0
  105. data/vendor/assets/stylesheets/furatto/_vrt_navbar.scss +61 -0
  106. data/vendor/assets/stylesheets/furatto/icheck/_aero.scss +64 -0
  107. data/vendor/assets/stylesheets/furatto/icheck/_all.scss +20 -0
  108. data/vendor/assets/stylesheets/furatto/icheck/_blue.scss +64 -0
  109. data/vendor/assets/stylesheets/furatto/icheck/_flat.scss +64 -0
  110. data/vendor/assets/stylesheets/furatto/icheck/_green.scss +64 -0
  111. data/vendor/assets/stylesheets/furatto/icheck/_grey.scss +64 -0
  112. data/vendor/assets/stylesheets/furatto/icheck/_orange.scss +64 -0
  113. data/vendor/assets/stylesheets/furatto/icheck/_pink.scss +64 -0
  114. data/vendor/assets/stylesheets/furatto/icheck/_purple.scss +64 -0
  115. data/vendor/assets/stylesheets/furatto/icheck/_red.scss +64 -0
  116. data/vendor/assets/stylesheets/furatto/icheck/_yellow.scss +64 -0
  117. data/vendor/assets/stylesheets/normalize.scss +403 -0
  118. metadata +162 -0
@@ -0,0 +1,61 @@
1
+ /*------------------------------------*\
2
+ $VERTICAL NAVBAR
3
+ \*------------------------------------*/
4
+ /**
5
+ * Basic vertcial navbar structural styling.
6
+ *
7
+ * Designed and built @kurenn
8
+ */
9
+
10
+ .vrt-navbar {
11
+ position: fixed;
12
+ overflow: hidden;
13
+ top: 0;
14
+ left: 0;
15
+ height: 100%;
16
+ list-style-type: none;
17
+ margin: 0;
18
+ padding: 0;
19
+ background: $vrt-navbar-background;
20
+
21
+ li {
22
+ display: block;
23
+ /*width: $vrt-navbar-width;*/
24
+ /*height: $vrt-navbar-height;*/
25
+ text-align: center;
26
+ padding: 13px 16px;
27
+
28
+ [class*="icon"], [class^="icon-"], [class*="icon-"] {
29
+ font-size: 20px;
30
+ text-align: center;
31
+
32
+ &:before {
33
+ color: #999;
34
+ }
35
+ }
36
+ a {
37
+ text-transform: uppercase;
38
+ font-size: 10px;
39
+ color: #999;
40
+ border-bottom: 1px solid rgba($vrt-navbar-border, 0.05);
41
+ @include single-transition(background, 0.1s, ease-in-out);
42
+ }
43
+ }
44
+ }
45
+
46
+ .vrt-navbar li:hover {
47
+ background: $vrt-navbar-li-hover;
48
+
49
+ a, [class*='icon'] {
50
+ color: $vrt-navbar-links-color;
51
+ }
52
+ }
53
+
54
+ /* class for current item */
55
+ .vrt-navbar li.active {
56
+ border-right: 3px solid $vrt-navbar-links-bg;
57
+ }
58
+
59
+ .secundary-navbar {
60
+ top: $navbar-height + 7;
61
+ }
@@ -0,0 +1,64 @@
1
+ /*------------------------------------*\
2
+ $CHECKBOX AND RADIO BUTTONS AERO
3
+ \*------------------------------------*/
4
+ /**
5
+ * Skins for radio buttons and checkboxes based on:
6
+ * http://damirfoy.com/iCheck/
7
+ *
8
+ * Designed and built @kurenn
9
+ */
10
+
11
+ /* iCheck plugin Flat skin, aero
12
+ ----------------------------------- */
13
+ .icheckbox_flat-aero,
14
+ .iradio_flat-aero {
15
+ display: inline-block;
16
+ margin: 0;
17
+ padding: 0;
18
+ width: 20px;
19
+ height: 20px;
20
+ background: url(/assets/icheck/aero.png) no-repeat;
21
+ border: none;
22
+ cursor: pointer;
23
+ }
24
+
25
+ .icheckbox_flat-aero {
26
+ background-position: 0 0;
27
+ }
28
+ .icheckbox_flat-aero.checked {
29
+ background-position: -22px 0;
30
+ }
31
+ .icheckbox_flat-aero.disabled {
32
+ background-position: -44px 0;
33
+ cursor: default;
34
+ }
35
+ .icheckbox_flat-aero.checked.disabled {
36
+ background-position: -66px 0;
37
+ }
38
+
39
+ .iradio_flat-aero {
40
+ background-position: -88px 0;
41
+ }
42
+ .iradio_flat-aero.checked {
43
+ background-position: -110px 0;
44
+ }
45
+ .iradio_flat-aero.disabled {
46
+ background-position: -132px 0;
47
+ cursor: default;
48
+ }
49
+ .iradio_flat-aero.checked.disabled {
50
+ background-position: -154px 0;
51
+ }
52
+
53
+ /* Retina support */
54
+ @media only screen and (-webkit-min-device-pixel-ratio: 1.5),
55
+ only screen and (-moz-min-device-pixel-ratio: 1.5),
56
+ only screen and (-o-min-device-pixel-ratio: 3/2),
57
+ only screen and (min-device-pixel-ratio: 1.5) {
58
+ .icheckbox_flat-aero,
59
+ .iradio_flat-aero {
60
+ background-image: url(/assets/icheck/aero@2x.png);
61
+ -webkit-background-size: 176px 22px;
62
+ background-size: 176px 22px;
63
+ }
64
+ }
@@ -0,0 +1,20 @@
1
+ /*------------------------------------*\
2
+ $CHECKBOX AND RADIO BUTTONS SKINS
3
+ \*------------------------------------*/
4
+ /**
5
+ * Skins for radio buttons and checkboxes based on:
6
+ * http://damirfoy.com/iCheck/
7
+ *
8
+ * Designed and built @kurenn
9
+ */
10
+
11
+ @import 'aero';
12
+ @import 'blue';
13
+ @import 'flat';
14
+ @import 'green';
15
+ @import 'grey';
16
+ @import 'orange';
17
+ @import 'pink';
18
+ @import 'purple';
19
+ @import 'red';
20
+ @import 'yellow';
@@ -0,0 +1,64 @@
1
+ /*------------------------------------*\
2
+ $CHECKBOX AND RADIO BUTTONS BLUE
3
+ \*------------------------------------*/
4
+ /**
5
+ * Skins for radio buttons and checkboxes based on:
6
+ * http://damirfoy.com/iCheck/
7
+ *
8
+ * Designed and built @kurenn
9
+ */
10
+
11
+ /* iCheck plugin Flat skin, blue
12
+ ----------------------------------- */
13
+ .icheckbox_flat-blue,
14
+ .iradio_flat-blue {
15
+ display: inline-block;
16
+ margin: 0;
17
+ padding: 0;
18
+ width: 20px;
19
+ height: 20px;
20
+ background: url(/assets/icheck/blue.png) no-repeat;
21
+ border: none;
22
+ cursor: pointer;
23
+ }
24
+
25
+ .icheckbox_flat-blue {
26
+ background-position: 0 0;
27
+ }
28
+ .icheckbox_flat-blue.checked {
29
+ background-position: -22px 0;
30
+ }
31
+ .icheckbox_flat-blue.disabled {
32
+ background-position: -44px 0;
33
+ cursor: default;
34
+ }
35
+ .icheckbox_flat-blue.checked.disabled {
36
+ background-position: -66px 0;
37
+ }
38
+
39
+ .iradio_flat-blue {
40
+ background-position: -88px 0;
41
+ }
42
+ .iradio_flat-blue.checked {
43
+ background-position: -110px 0;
44
+ }
45
+ .iradio_flat-blue.disabled {
46
+ background-position: -132px 0;
47
+ cursor: default;
48
+ }
49
+ .iradio_flat-blue.checked.disabled {
50
+ background-position: -154px 0;
51
+ }
52
+
53
+ /* Retina support */
54
+ @media only screen and (-webkit-min-device-pixel-ratio: 1.5),
55
+ only screen and (-moz-min-device-pixel-ratio: 1.5),
56
+ only screen and (-o-min-device-pixel-ratio: 3/2),
57
+ only screen and (min-device-pixel-ratio: 1.5) {
58
+ .icheckbox_flat-blue,
59
+ .iradio_flat-blue {
60
+ background-image: url(/assets/icheck/blue@2x.png);
61
+ -webkit-background-size: 176px 22px;
62
+ background-size: 176px 22px;
63
+ }
64
+ }
@@ -0,0 +1,64 @@
1
+ /*------------------------------------*\
2
+ $CHECKBOX AND RADIO BUTTONS FLAT
3
+ \*------------------------------------*/
4
+ /**
5
+ * Skins for radio buttons and checkboxes based on:
6
+ * http://damirfoy.com/iCheck/
7
+ *
8
+ * Designed and built @kurenn
9
+ */
10
+
11
+ /* iCheck plugin flat skin, black
12
+ ----------------------------------- */
13
+ .icheckbox_flat-dark,
14
+ .iradio_flat-dark {
15
+ display: inline-block;
16
+ margin: 0;
17
+ padding: 0;
18
+ width: 20px;
19
+ height: 20px;
20
+ background: url(/assets/icheck/flat.png) no-repeat;
21
+ border: none;
22
+ cursor: pointer;
23
+ }
24
+
25
+ .icheckbox_flat-dark {
26
+ background-position: 0 0;
27
+ }
28
+ .icheckbox_flat-dark.checked {
29
+ background-position: -22px 0;
30
+ }
31
+ .icheckbox_flat-dark.disabled {
32
+ background-position: -44px 0;
33
+ cursor: default;
34
+ }
35
+ .icheckbox_flat-dark.checked.disabled {
36
+ background-position: -66px 0;
37
+ }
38
+
39
+ .iradio_flat-dark {
40
+ background-position: -88px 0;
41
+ }
42
+ .iradio_flat-dark.checked {
43
+ background-position: -110px 0;
44
+ }
45
+ .iradio_flat-dark.disabled {
46
+ background-position: -132px 0;
47
+ cursor: default;
48
+ }
49
+ .iradio_flat-dark.checked.disabled {
50
+ background-position: -154px 0;
51
+ }
52
+
53
+ /* Retina support */
54
+ @media only screen and (-webkit-min-device-pixel-ratio: 1.5),
55
+ only screen and (-moz-min-device-pixel-ratio: 1.5),
56
+ only screen and (-o-min-device-pixel-ratio: 3/2),
57
+ only screen and (min-device-pixel-ratio: 1.5) {
58
+ .icheckbox_flat-dark,
59
+ .iradio_flat-dark {
60
+ background-image: url(/assets/icheck/flat@2x.png);
61
+ -webkit-background-size: 176px 22px;
62
+ background-size: 176px 22px;
63
+ }
64
+ }
@@ -0,0 +1,64 @@
1
+ /*------------------------------------*\
2
+ $CHECKBOX AND RADIO BUTTONS GREEN
3
+ \*------------------------------------*/
4
+ /**
5
+ * Skins for radio buttons and checkboxes based on:
6
+ * http://damirfoy.com/iCheck/
7
+ *
8
+ * Designed and built @kurenn
9
+ */
10
+
11
+ /* iCheck plugin Flat skin, green
12
+ ----------------------------------- */
13
+ .icheckbox_flat-green,
14
+ .iradio_flat-green {
15
+ display: inline-block;
16
+ margin: 0;
17
+ padding: 0;
18
+ width: 20px;
19
+ height: 20px;
20
+ background: url(/assets/icheck/green.png) no-repeat;
21
+ border: none;
22
+ cursor: pointer;
23
+ }
24
+
25
+ .icheckbox_flat-green {
26
+ background-position: 0 0;
27
+ }
28
+ .icheckbox_flat-green.checked {
29
+ background-position: -22px 0;
30
+ }
31
+ .icheckbox_flat-green.disabled {
32
+ background-position: -44px 0;
33
+ cursor: default;
34
+ }
35
+ .icheckbox_flat-green.checked.disabled {
36
+ background-position: -66px 0;
37
+ }
38
+
39
+ .iradio_flat-green {
40
+ background-position: -88px 0;
41
+ }
42
+ .iradio_flat-green.checked {
43
+ background-position: -110px 0;
44
+ }
45
+ .iradio_flat-green.disabled {
46
+ background-position: -132px 0;
47
+ cursor: default;
48
+ }
49
+ .iradio_flat-green.checked.disabled {
50
+ background-position: -154px 0;
51
+ }
52
+
53
+ /* Retina support */
54
+ @media only screen and (-webkit-min-device-pixel-ratio: 1.5),
55
+ only screen and (-moz-min-device-pixel-ratio: 1.5),
56
+ only screen and (-o-min-device-pixel-ratio: 3/2),
57
+ only screen and (min-device-pixel-ratio: 1.5) {
58
+ .icheckbox_flat-green,
59
+ .iradio_flat-green {
60
+ background-image: url(/assets/icheck/green@2x.png);
61
+ -webkit-background-size: 176px 22px;
62
+ background-size: 176px 22px;
63
+ }
64
+ }
@@ -0,0 +1,64 @@
1
+ /*------------------------------------*\
2
+ $CHECKBOX AND RADIO BUTTONS GREY
3
+ \*------------------------------------*/
4
+ /**
5
+ * Skins for radio buttons and checkboxes based on:
6
+ * http://damirfoy.com/iCheck/
7
+ *
8
+ * Designed and built @kurenn
9
+ */
10
+
11
+ /* iCheck plugin Flat skin, grey
12
+ ----------------------------------- */
13
+ .icheckbox_flat-grey,
14
+ .iradio_flat-grey {
15
+ display: inline-block;
16
+ margin: 0;
17
+ padding: 0;
18
+ width: 20px;
19
+ height: 20px;
20
+ background: url(/assets/icheck/grey.png) no-repeat;
21
+ border: none;
22
+ cursor: pointer;
23
+ }
24
+
25
+ .icheckbox_flat-grey {
26
+ background-position: 0 0;
27
+ }
28
+ .icheckbox_flat-grey.checked {
29
+ background-position: -22px 0;
30
+ }
31
+ .icheckbox_flat-grey.disabled {
32
+ background-position: -44px 0;
33
+ cursor: default;
34
+ }
35
+ .icheckbox_flat-grey.checked.disabled {
36
+ background-position: -66px 0;
37
+ }
38
+
39
+ .iradio_flat-grey {
40
+ background-position: -88px 0;
41
+ }
42
+ .iradio_flat-grey.checked {
43
+ background-position: -110px 0;
44
+ }
45
+ .iradio_flat-grey.disabled {
46
+ background-position: -132px 0;
47
+ cursor: default;
48
+ }
49
+ .iradio_flat-grey.checked.disabled {
50
+ background-position: -154px 0;
51
+ }
52
+
53
+ /* Retina support */
54
+ @media only screen and (-webkit-min-device-pixel-ratio: 1.5),
55
+ only screen and (-moz-min-device-pixel-ratio: 1.5),
56
+ only screen and (-o-min-device-pixel-ratio: 3/2),
57
+ only screen and (min-device-pixel-ratio: 1.5) {
58
+ .icheckbox_flat-grey,
59
+ .iradio_flat-grey {
60
+ background-image: url(/assets/icheck/grey@2x.png);
61
+ -webkit-background-size: 176px 22px;
62
+ background-size: 176px 22px;
63
+ }
64
+ }
@@ -0,0 +1,64 @@
1
+ /*------------------------------------*\
2
+ $CHECKBOX AND RADIO BUTTONS ORANGE
3
+ \*------------------------------------*/
4
+ /**
5
+ * Skins for radio buttons and checkboxes based on:
6
+ * http://damirfoy.com/iCheck/
7
+ *
8
+ * Designed and built @kurenn
9
+ */
10
+
11
+ /* iCheck plugin Flat skin, orange
12
+ ----------------------------------- */
13
+ .icheckbox_flat-orange,
14
+ .iradio_flat-orange {
15
+ display: inline-block;
16
+ margin: 0;
17
+ padding: 0;
18
+ width: 20px;
19
+ height: 20px;
20
+ background: url(/assets/icheck/orange.png) no-repeat;
21
+ border: none;
22
+ cursor: pointer;
23
+ }
24
+
25
+ .icheckbox_flat-orange {
26
+ background-position: 0 0;
27
+ }
28
+ .icheckbox_flat-orange.checked {
29
+ background-position: -22px 0;
30
+ }
31
+ .icheckbox_flat-orange.disabled {
32
+ background-position: -44px 0;
33
+ cursor: default;
34
+ }
35
+ .icheckbox_flat-orange.checked.disabled {
36
+ background-position: -66px 0;
37
+ }
38
+
39
+ .iradio_flat-orange {
40
+ background-position: -88px 0;
41
+ }
42
+ .iradio_flat-orange.checked {
43
+ background-position: -110px 0;
44
+ }
45
+ .iradio_flat-orange.disabled {
46
+ background-position: -132px 0;
47
+ cursor: default;
48
+ }
49
+ .iradio_flat-orange.checked.disabled {
50
+ background-position: -154px 0;
51
+ }
52
+
53
+ /* Retina support */
54
+ @media only screen and (-webkit-min-device-pixel-ratio: 1.5),
55
+ only screen and (-moz-min-device-pixel-ratio: 1.5),
56
+ only screen and (-o-min-device-pixel-ratio: 3/2),
57
+ only screen and (min-device-pixel-ratio: 1.5) {
58
+ .icheckbox_flat-orange,
59
+ .iradio_flat-orange {
60
+ background-image: url(/assets/icheck/orange@2x.png);
61
+ -webkit-background-size: 176px 22px;
62
+ background-size: 176px 22px;
63
+ }
64
+ }