active_frontend 11.1.0 → 12.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (53) hide show
  1. checksums.yaml +4 -4
  2. data/lib/active_frontend/version.rb +1 -1
  3. data/lib/generators/active_frontend/templates/install.scss +1 -12
  4. data/vendor/assets/javascripts/_animation.js +90 -32
  5. data/vendor/assets/javascripts/_chart.js +4 -4
  6. data/vendor/assets/javascripts/_file_input.js +3 -3
  7. data/vendor/assets/javascripts/_typeahead.js +0 -2
  8. data/vendor/assets/stylesheets/_ad.scss +5 -0
  9. data/vendor/assets/stylesheets/_alert.scss +12 -9
  10. data/vendor/assets/stylesheets/_animation.scss +217 -213
  11. data/vendor/assets/stylesheets/_breadcrumb.scss +29 -19
  12. data/vendor/assets/stylesheets/_button.scss +33 -58
  13. data/vendor/assets/stylesheets/_carousel.scss +14 -21
  14. data/vendor/assets/stylesheets/_chart.scss +5 -1
  15. data/vendor/assets/stylesheets/_color.scss +5 -5
  16. data/vendor/assets/stylesheets/_colorpicker.scss +0 -1
  17. data/vendor/assets/stylesheets/_datepicker.scss +11 -10
  18. data/vendor/assets/stylesheets/_dropdown.scss +50 -24
  19. data/vendor/assets/stylesheets/_footer.scss +11 -18
  20. data/vendor/assets/stylesheets/_form.scss +193 -208
  21. data/vendor/assets/stylesheets/_grid.scss +36 -23
  22. data/vendor/assets/stylesheets/_header.scss +27 -60
  23. data/vendor/assets/stylesheets/_icon.scss +5 -5
  24. data/vendor/assets/stylesheets/_image.scss +6 -2
  25. data/vendor/assets/stylesheets/_label_and_badge.scss +6 -1
  26. data/vendor/assets/stylesheets/_link.scss +1 -0
  27. data/vendor/assets/stylesheets/_list.scss +36 -43
  28. data/vendor/assets/stylesheets/_loader.scss +8 -2
  29. data/vendor/assets/stylesheets/_map.scss +4 -0
  30. data/vendor/assets/stylesheets/_missive.scss +4 -8
  31. data/vendor/assets/stylesheets/_mixin.scss +5 -0
  32. data/vendor/assets/stylesheets/_modal.scss +90 -40
  33. data/vendor/assets/stylesheets/_nav_and_tab.scss +40 -65
  34. data/vendor/assets/stylesheets/_navbar.scss +2 -1
  35. data/vendor/assets/stylesheets/_pagination.scss +8 -10
  36. data/vendor/assets/stylesheets/_panel.scss +23 -25
  37. data/vendor/assets/stylesheets/_placeholder.scss +13 -12
  38. data/vendor/assets/stylesheets/_progress.scss +3 -4
  39. data/vendor/assets/stylesheets/_reset.scss +1 -0
  40. data/vendor/assets/stylesheets/_sidebar.scss +30 -13
  41. data/vendor/assets/stylesheets/_slider.scss +2 -2
  42. data/vendor/assets/stylesheets/_spinner.scss +348 -236
  43. data/vendor/assets/stylesheets/_swoggle.scss +2 -2
  44. data/vendor/assets/stylesheets/_table.scss +137 -127
  45. data/vendor/assets/stylesheets/_timepicker.scss +8 -5
  46. data/vendor/assets/stylesheets/_toolbar.scss +10 -22
  47. data/vendor/assets/stylesheets/_tooltip.scss +21 -7
  48. data/vendor/assets/stylesheets/_trunk.scss +19 -36
  49. data/vendor/assets/stylesheets/_typography.scss +80 -82
  50. data/vendor/assets/stylesheets/_variable.scss +15 -0
  51. data/vendor/assets/stylesheets/active_frontend.scss +1 -12
  52. metadata +4 -4
  53. data/vendor/assets/stylesheets/_aside.scss +0 -127
@@ -1,10 +1,12 @@
1
1
  /* Table of Contents
2
2
  ==================================================
3
- # Tooltip */
3
+ # Tooltip
4
+ # Colors */
4
5
 
5
6
  /* # Tooltip
6
7
  ================================================== */
7
8
  .tooltip {
9
+ border-color: $color-black;
8
10
  color: $color-white;
9
11
  display: block;
10
12
  float: none;
@@ -45,7 +47,6 @@
45
47
  .tooltip-inner {
46
48
  background: $color-black;
47
49
  border-radius: 3px;
48
- color: $color-white;
49
50
  letter-spacing: 0;
50
51
  max-width: 200px;
51
52
  padding: 5px 10px;
@@ -61,30 +62,43 @@
61
62
  width: 0;
62
63
  }
63
64
  .tooltip.top > .tooltip-arrow {
64
- border-top-color: $color-black;
65
+ border-top-color: inherit;
65
66
  border-width: 5px 5px 0;
66
67
  bottom: 0;
67
68
  left: 50%;
68
69
  margin-left: -5px;
69
70
  }
70
71
  .tooltip.right > .tooltip-arrow {
71
- border-right-color: $color-black;
72
+ border-right-color: inherit;
72
73
  border-width: 5px 5px 5px 0;
73
74
  left: 0;
74
75
  margin-top: -5px;
75
76
  top: 50%;
76
77
  }
77
78
  .tooltip.left > .tooltip-arrow {
78
- border-left-color: $color-black;
79
+ border-left-color: inherit;
79
80
  border-width: 5px 0 5px 5px;
80
81
  margin-top: -5px;
81
82
  right: 0;
82
83
  top: 50%;
83
84
  }
84
85
  .tooltip.bottom > .tooltip-arrow {
85
- border-bottom-color: $color-black;
86
+ border-bottom-color: inherit;
86
87
  border-width: 0 5px 5px;
87
88
  left: 50%;
88
89
  margin-left: -5px;
89
90
  top: 0;
90
- }
91
+ }
92
+
93
+ /* # Colors
94
+ ================================================== */
95
+ .tooltip-light {
96
+ border-color: $color-light-haze;
97
+ color: $color-black;
98
+ }
99
+ .tooltip-white {
100
+ border-color: $color-white;
101
+ color: $color-black;
102
+ }
103
+ .tooltip-light > .tooltip-inner { background: $color-light-haze; }
104
+ .tooltip-white > .tooltip-inner { background: $color-white; }
@@ -8,17 +8,23 @@
8
8
  ================================================== */
9
9
  .trunk {
10
10
  background: $color-white;
11
- border-bottom: 1px solid $color-haze;
11
+ border-bottom: 1px solid;
12
+ border-color: $color-haze;
13
+ color: $color-gray;
12
14
  left: 0;
13
15
  position: fixed;
14
16
  right: 0;
15
17
  top: 50px;
16
18
  z-index: 1040;
17
19
  }
18
- .trunk-buffer { padding: 30px 0; }
20
+ .trunk-buffer {
21
+ border-color: inherit !important;
22
+ padding: 30px 0;
23
+ }
19
24
  .trunk-nav,
20
25
  .trunk-user {
21
- list-style-type: none;
26
+ border-color: inherit !important;
27
+ list-style: none;
22
28
  margin: 0;
23
29
  padding: 0;
24
30
  }
@@ -35,12 +41,14 @@
35
41
  margin: 5px;
36
42
  }
37
43
  .trunk-nav > li {
44
+ border-color: inherit;
38
45
  float: left;
39
46
  width: calc(33.333333% - 10px);
40
47
  }
41
48
  .trunk-nav > li.title,
42
49
  .trunk-nav > li.divider {
43
- border-top: 1px solid $color-haze;
50
+ border-top: 1px solid;
51
+ border-color: inherit;
44
52
  box-sizing: border-box;
45
53
  display: block;
46
54
  float: none;
@@ -49,8 +57,8 @@
49
57
  width: calc(100% - 10px);
50
58
  }
51
59
  .trunk-nav > li.title {
52
- border-bottom: 1px solid $color-haze;
53
- color: $color-primary;
60
+ border-bottom: 1px solid;
61
+ border-color: inherit;
54
62
  font-size: 12px;
55
63
  letter-spacing: 1px;
56
64
  padding: 8px 10px;
@@ -66,7 +74,6 @@
66
74
  .trunk-user > li > a {
67
75
  @include appearance(none);
68
76
  border-radius: 2px;
69
- color: $color-dark-gray;
70
77
  cursor: pointer;
71
78
  display: block;
72
79
  -webkit-font-smoothing: antialiased;
@@ -83,7 +90,10 @@
83
90
  vertical-align: middle;
84
91
  white-space: nowrap;
85
92
  }
86
- .trunk-nav > li > a { border: 1px solid $color-haze; }
93
+ .trunk-nav > li > a {
94
+ border: 1px solid;
95
+ border-color: inherit;
96
+ }
87
97
  .trunk-user > li > a { padding: 9px 0 8px 0; }
88
98
  .trunk-nav > li > a:hover,
89
99
  .trunk-nav > li > a:active,
@@ -118,39 +128,12 @@
118
128
  .trunk-dark {
119
129
  background: $color-black;
120
130
  border-color: $color-dark-black;
121
- }
122
- .trunk-dark .trunk-nav > li.title,
123
- .trunk-dark .trunk-nav > li > a,
124
- .trunk-dark .trunk-user > li > a { color: $color-gray; }
125
- .trunk-dark .trunk-nav > li.title,
126
- .trunk-dark .trunk-nav > li.divider,
127
- .trunk-dark .trunk-nav > li > a { border-color: $color-gray; }
128
- .trunk-dark .trunk-nav > li > a:hover,
129
- .trunk-dark .trunk-nav > li > a:active,
130
- .trunk-dark .trunk-nav > li > a.active,
131
- .trunk-dark .trunk-nav > li > a:focus,
132
- .trunk-dark .trunk-user > li > a:hover,
133
- .trunk-dark .trunk-user > li > a:active,
134
- .trunk-dark .trunk-user > li > a.active,
135
- .trunk-dark .trunk-user > li > a:focus {
136
- border-color: $color-primary;
137
- color: $color-primary;
131
+ color: $color-white;
138
132
  }
139
133
  .trunk-light {
140
134
  background: $color-light-haze;
141
135
  border-color: $color-dark-haze;
142
136
  }
143
- .trunk-light .trunk-nav > li.title,
144
- .trunk-light .trunk-nav > li.divider,
145
- .trunk-light .trunk-nav > li > a { border-color: $color-dark-haze; }
146
- .trunk-light .trunk-nav > li > a:hover,
147
- .trunk-light .trunk-nav > li > a:active,
148
- .trunk-light .trunk-nav > li > a.active,
149
- .trunk-light .trunk-nav > li > a:focus,
150
- .trunk-light .trunk-user > li > a:hover,
151
- .trunk-light .trunk-user > li > a:active,
152
- .trunk-light .trunk-user > li > a.active,
153
- .trunk-light .trunk-user > li > a:focus { border-color: $color-primary; }
154
137
 
155
138
  /* # Media Queries
156
139
  ================================================== */
@@ -42,88 +42,85 @@ $colors: (
42
42
 
43
43
  /* # Font-Face
44
44
  ================================================== */
45
- @if $typography-font == 'Gotham Round' {
46
- @font-face {
47
- font-family: 'Gotham Round';
48
- font-style: normal;
49
- font-weight: normal;
50
- src: url(font_path('gotham/round/gothamrnd-book.eot'));
51
- src: url(font_path('gotham/round/gothamrnd-book.eot')) format('embedded-opentype'),
52
- url(font_path('gotham/round/gothamrnd-book.woff')) format('woff'),
53
- url(font_path('gotham/round/gothamrnd-book.ttf')) format('truetype'),
54
- url(font_path('gotham/round/gothamrnd-book.svg#GothamrndBookRegular')) format('svg');
55
- }
56
- @font-face {
57
- font-family: 'Gotham Round';
58
- font-style: normal;
59
- font-weight: bold;
60
- src: url(font_path('gotham/round/gothamrnd-bold.eot'));
61
- src: url(font_path('gotham/round/gothamrnd-bold.eot')) format('embedded-opentype'),
62
- url(font_path('gotham/round/gothamrnd-bold.woff')) format('woff'),
63
- url(font_path('gotham/round/gothamrnd-bold.ttf')) format('truetype'),
64
- url(font_path('gotham/round/gothamrnd-bold.svg#GothamrndBoldRegular')) format('svg');
65
- }
66
- @font-face {
67
- font-family: 'Gotham Round';
68
- font-style: normal;
69
- font-weight: 500;
70
- src: url(font_path('gotham/round/gothamrnd-medium.eot'));
71
- src: url(font_path('gotham/round/gothamrnd-medium.eot')) format('embedded-opentype'),
72
- url(font_path('gotham/round/gothamrnd-medium.woff')) format('woff'),
73
- url(font_path('gotham/round/gothamrnd-medium.ttf')) format('truetype'),
74
- url(font_path('gotham/round/gothamrnd-medium.svg#GothamrndMediumRegular')) format('svg');
75
- }
76
- @font-face {
77
- font-family: 'Gotham Round';
78
- font-style: normal;
79
- font-weight: 200;
80
- src: url(font_path('gotham/round/gothamrnd-light.eot'));
81
- src: url(font_path('gotham/round/gothamrnd-light.eot')) format('embedded-opentype'),
82
- url(font_path('gotham/round/gothamrnd-light.woff')) format('woff'),
83
- url(font_path('gotham/round/gothamrnd-light.ttf')) format('truetype'),
84
- url(font_path('gotham/round/gothamrnd-light.svg#GothamrndLightRegular')) format('svg');
85
- }
86
- } @else {
87
- @font-face {
88
- font-family: 'Gotham';
89
- font-style: normal;
90
- font-weight: normal;
91
- src: url(font_path('gotham/regular/gotham-book.eot'));
92
- src: url(font_path('gotham/regular/gotham-book.eot')) format('embedded-opentype'),
93
- url(font_path('gotham/regular/gotham-book.woff')) format('woff'),
94
- url(font_path('gotham/regular/gotham-book.ttf')) format('truetype'),
95
- url(font_path('gotham/regular/gotham-book.svg#GothamBookRegular')) format('svg');
96
- }
97
- @font-face {
98
- font-family: 'Gotham';
99
- font-style: normal;
100
- font-weight: bold;
101
- src: url(font_path('gotham/regular/gotham-bold.eot'));
102
- src: url(font_path('gotham/regular/gotham-bold.eot')) format('embedded-opentype'),
103
- url(font_path('gotham/regular/gotham-bold.woff')) format('woff'),
104
- url(font_path('gotham/regular/gotham-bold.ttf')) format('truetype'),
105
- url(font_path('gotham/regular/gotham-bold.svg#GothamBoldRegular')) format('svg');
106
- }
107
- @font-face {
108
- font-family: 'Gotham';
109
- font-style: normal;
110
- font-weight: 500;
111
- src: url(font_path('gotham/regular/gotham-medium.eot'));
112
- src: url(font_path('gotham/regular/gotham-medium.eot')) format('embedded-opentype'),
113
- url(font_path('gotham/regular/gotham-medium.woff')) format('woff'),
114
- url(font_path('gotham/regular/gotham-medium.ttf')) format('truetype'),
115
- url(font_path('gotham/regular/gotham-medium.svg#GothamMediumRegular')) format('svg');
116
- }
117
- @font-face {
118
- font-family: 'Gotham';
119
- font-style: normal;
120
- font-weight: 200;
121
- src: url(font_path('gotham/regular/gotham-light.eot'));
122
- src: url(font_path('gotham/regular/gotham-light.eot')) format('embedded-opentype'),
123
- url(font_path('gotham/regular/gotham-light.woff')) format('woff'),
124
- url(font_path('gotham/regular/gotham-light.ttf')) format('truetype'),
125
- url(font_path('gotham/regular/gotham-light.svg#GothamLightRegular')) format('svg');
126
- }
45
+ @font-face {
46
+ font-family: 'Gotham Round';
47
+ font-style: normal;
48
+ font-weight: normal;
49
+ src: url(font_path('gotham/round/gothamrnd-book.eot'));
50
+ src: url(font_path('gotham/round/gothamrnd-book.eot')) format('embedded-opentype'),
51
+ url(font_path('gotham/round/gothamrnd-book.woff')) format('woff'),
52
+ url(font_path('gotham/round/gothamrnd-book.ttf')) format('truetype'),
53
+ url(font_path('gotham/round/gothamrnd-book.svg#GothamrndBookRegular')) format('svg');
54
+ }
55
+ @font-face {
56
+ font-family: 'Gotham Round';
57
+ font-style: normal;
58
+ font-weight: bold;
59
+ src: url(font_path('gotham/round/gothamrnd-bold.eot'));
60
+ src: url(font_path('gotham/round/gothamrnd-bold.eot')) format('embedded-opentype'),
61
+ url(font_path('gotham/round/gothamrnd-bold.woff')) format('woff'),
62
+ url(font_path('gotham/round/gothamrnd-bold.ttf')) format('truetype'),
63
+ url(font_path('gotham/round/gothamrnd-bold.svg#GothamrndBoldRegular')) format('svg');
64
+ }
65
+ @font-face {
66
+ font-family: 'Gotham Round';
67
+ font-style: normal;
68
+ font-weight: 500;
69
+ src: url(font_path('gotham/round/gothamrnd-medium.eot'));
70
+ src: url(font_path('gotham/round/gothamrnd-medium.eot')) format('embedded-opentype'),
71
+ url(font_path('gotham/round/gothamrnd-medium.woff')) format('woff'),
72
+ url(font_path('gotham/round/gothamrnd-medium.ttf')) format('truetype'),
73
+ url(font_path('gotham/round/gothamrnd-medium.svg#GothamrndMediumRegular')) format('svg');
74
+ }
75
+ @font-face {
76
+ font-family: 'Gotham Round';
77
+ font-style: normal;
78
+ font-weight: 200;
79
+ src: url(font_path('gotham/round/gothamrnd-light.eot'));
80
+ src: url(font_path('gotham/round/gothamrnd-light.eot')) format('embedded-opentype'),
81
+ url(font_path('gotham/round/gothamrnd-light.woff')) format('woff'),
82
+ url(font_path('gotham/round/gothamrnd-light.ttf')) format('truetype'),
83
+ url(font_path('gotham/round/gothamrnd-light.svg#GothamrndLightRegular')) format('svg');
84
+ }
85
+ @font-face {
86
+ font-family: 'Gotham';
87
+ font-style: normal;
88
+ font-weight: normal;
89
+ src: url(font_path('gotham/regular/gotham-book.eot'));
90
+ src: url(font_path('gotham/regular/gotham-book.eot')) format('embedded-opentype'),
91
+ url(font_path('gotham/regular/gotham-book.woff')) format('woff'),
92
+ url(font_path('gotham/regular/gotham-book.ttf')) format('truetype'),
93
+ url(font_path('gotham/regular/gotham-book.svg#GothamBookRegular')) format('svg');
94
+ }
95
+ @font-face {
96
+ font-family: 'Gotham';
97
+ font-style: normal;
98
+ font-weight: bold;
99
+ src: url(font_path('gotham/regular/gotham-bold.eot'));
100
+ src: url(font_path('gotham/regular/gotham-bold.eot')) format('embedded-opentype'),
101
+ url(font_path('gotham/regular/gotham-bold.woff')) format('woff'),
102
+ url(font_path('gotham/regular/gotham-bold.ttf')) format('truetype'),
103
+ url(font_path('gotham/regular/gotham-bold.svg#GothamBoldRegular')) format('svg');
104
+ }
105
+ @font-face {
106
+ font-family: 'Gotham';
107
+ font-style: normal;
108
+ font-weight: 500;
109
+ src: url(font_path('gotham/regular/gotham-medium.eot'));
110
+ src: url(font_path('gotham/regular/gotham-medium.eot')) format('embedded-opentype'),
111
+ url(font_path('gotham/regular/gotham-medium.woff')) format('woff'),
112
+ url(font_path('gotham/regular/gotham-medium.ttf')) format('truetype'),
113
+ url(font_path('gotham/regular/gotham-medium.svg#GothamMediumRegular')) format('svg');
114
+ }
115
+ @font-face {
116
+ font-family: 'Gotham';
117
+ font-style: normal;
118
+ font-weight: 200;
119
+ src: url(font_path('gotham/regular/gotham-light.eot'));
120
+ src: url(font_path('gotham/regular/gotham-light.eot')) format('embedded-opentype'),
121
+ url(font_path('gotham/regular/gotham-light.woff')) format('woff'),
122
+ url(font_path('gotham/regular/gotham-light.ttf')) format('truetype'),
123
+ url(font_path('gotham/regular/gotham-light.svg#GothamLightRegular')) format('svg');
127
124
  }
128
125
 
129
126
  /* # Typography
@@ -240,6 +237,7 @@ strong { font-weight: 500; }
240
237
 
241
238
  /* # Scripts
242
239
  ================================================== */
240
+ .text-heading { font-family: $typography-heading; }
243
241
  .text-monospace { font-family: $typography-monospace; }
244
242
  .text-sans-serif { font-family: $typography-sans-serif; }
245
243
  .text-serif { font-family: $typography-serif; }
@@ -0,0 +1,15 @@
1
+ /* Table of Contents
2
+ ==================================================
3
+ # Variable */
4
+
5
+ /* # Variable
6
+ ================================================== */
7
+ $color-primary: $color-blue;
8
+ $color-secondary: $color-green;
9
+ $color-tertiary: $color-red;
10
+ $typography-base-font: 'Gotham Round';
11
+ $typography-heading-font: 'Gotham';
12
+ $typography-heading: $typography-heading-font, 'Helvetica', Helvetica, Arial, sans-serif;
13
+ $typography-monospace: Monaco, Menlo, Consolas, 'Courier New', monospace;
14
+ $typography-sans-serif: $typography-base-font, 'Helvetica', Helvetica, Arial, sans-serif;
15
+ $typography-serif: 'Times New Roman', Times, serif;
@@ -1,23 +1,13 @@
1
1
  /* Table of Contents
2
2
  ==================================================
3
3
  # Required Imports
4
- # Required Variables
5
4
  # Optional Imports */
6
5
 
7
6
  /* # Required Imports
8
7
  ================================================== */
9
8
  @import 'mixin';
10
9
  @import 'color';
11
-
12
- /* # Required Variables
13
- ================================================== */
14
- $color-primary: $color-blue;
15
- $color-secondary: $color-green;
16
- $color-tertiary: $color-red;
17
- $typography-font: 'Gotham Round';
18
- $typography-monospace: Monaco, Menlo, Consolas, 'Courier New', monospace;
19
- $typography-sans-serif: $typography-font, 'Helvetica', Helvetica, Arial, sans-serif;
20
- $typography-serif: 'Times New Roman', Times, serif;
10
+ @import 'variable';
21
11
 
22
12
  /* # Optional Imports
23
13
  ================================================== */
@@ -49,7 +39,6 @@ $typography-serif: 'Times New Roman', Times, serif;
49
39
  @import 'map';
50
40
  @import 'missive';
51
41
  @import 'modal';
52
- @import 'aside';
53
42
  @import 'nav_and_tab';
54
43
  @import 'navbar';
55
44
  @import 'pagination';
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_frontend
3
3
  version: !ruby/object:Gem::Version
4
- version: 11.1.0
4
+ version: 12.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juan Gomez
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-11-04 00:00:00.000000000 Z
11
+ date: 2015-11-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -191,7 +191,6 @@ files:
191
191
  - vendor/assets/stylesheets/_affix.scss
192
192
  - vendor/assets/stylesheets/_alert.scss
193
193
  - vendor/assets/stylesheets/_animation.scss
194
- - vendor/assets/stylesheets/_aside.scss
195
194
  - vendor/assets/stylesheets/_breadcrumb.scss
196
195
  - vendor/assets/stylesheets/_button.scss
197
196
  - vendor/assets/stylesheets/_canvas.scss
@@ -237,6 +236,7 @@ files:
237
236
  - vendor/assets/stylesheets/_trunk.scss
238
237
  - vendor/assets/stylesheets/_typeahead.scss
239
238
  - vendor/assets/stylesheets/_typography.scss
239
+ - vendor/assets/stylesheets/_variable.scss
240
240
  - vendor/assets/stylesheets/active_frontend.scss
241
241
  homepage: https://github.com/drexed/active_frontend
242
242
  licenses:
@@ -258,7 +258,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
258
258
  version: '0'
259
259
  requirements: []
260
260
  rubyforge_project:
261
- rubygems_version: 2.4.8
261
+ rubygems_version: 2.5.0
262
262
  signing_key:
263
263
  specification_version: 4
264
264
  summary: ActiveFrontend Responsive Web Framework
@@ -1,127 +0,0 @@
1
- /* Table of Contents
2
- ==================================================
3
- # Aside
4
- # Colors
5
- # Media Queries */
6
-
7
- /* # Aside
8
- ================================================== */
9
- .aside {
10
- background: $color-white;
11
- background-clip: padding-box;
12
- box-shadow: 0 0 3px transparentize($color-dark-black, 0.7);
13
- display: none;
14
- height: 100%;
15
- left: initial;
16
- margin-left: 0;
17
- outline: 0;
18
- position: fixed;
19
- right: 0;
20
- top: 0;
21
- width: 560px;
22
- z-index: 1050;
23
- }
24
- .aside > form { height: 100%;}
25
- .aside-alt {
26
- left: 0;
27
- right: initial;
28
- }
29
- .aside.fade {
30
- right: -100%;
31
- @include transition((opacity 0.2s linear, right 0.4s ease-in-out));
32
- }
33
- .aside-alt.fade {
34
- left: -100%;
35
- right: 0;
36
- @include transition((opacity 0.2s linear, left 0.4s ease-in-out));
37
- }
38
- .aside.fade.in { right: 0; }
39
- .aside-alt.fade.in {
40
- left: 0;
41
- right: initial;
42
- }
43
- .aside-header {
44
- border-bottom: 1px solid $color-haze;
45
- padding: 21px 15px 19px 15px;
46
- }
47
- .aside-header > h3 {
48
- font-size: 14px;
49
- letter-spacing: 1px;
50
- line-height: 1;
51
- margin: 0;
52
- padding: 0;
53
- text-align: center;
54
- text-transform: uppercase;
55
- }
56
- .aside-body {
57
- display: block;
58
- height: calc(100% - 142px);
59
- overflow-y: auto;
60
- padding: 15px 18px;
61
- }
62
- .aside-body .container { width: 100%; }
63
- .aside-body p:last-child { margin-bottom: 0; }
64
- .aside-footer { border-top: 1px solid $color-haze; }
65
- .aside-footer:after { clear: both; }
66
- .aside-footer-btn {
67
- @include appearance(none);
68
- background: $color-transparent;
69
- border: 0;
70
- border-right: 1px solid $color-haze;
71
- box-sizing: border-box;
72
- color: inherit;
73
- cursor: pointer;
74
- float: left;
75
- -webkit-font-smoothing: antialiased;
76
- -moz-osx-font-smoothing: grayscale;
77
- font-size: 11px;
78
- font-weight: bold;
79
- line-height: 1;
80
- margin: 0;
81
- padding: 22px 0 23px 0;
82
- text-align: center;
83
- text-indent: 0;
84
- text-rendering: geometricPrecision;
85
- text-transform: uppercase;
86
- touch-action: manipulation;
87
- vertical-align: middle;
88
- width: 100%;
89
- }
90
- .aside-footer-btn:last-child { border-right: 0; }
91
- .aside-footer-btn[disabled] {
92
- color: $color-gray;
93
- cursor: not-allowed;
94
- }
95
- .aside-footer-btn-group > .aside-footer-btn { width: 50%; }
96
-
97
- /* # Colors
98
- ================================================== */
99
- .aside-dark {
100
- background: $color-black;
101
- color: $color-white;
102
- }
103
- .aside-light { background: $color-light-haze; }
104
- .aside-dark .aside-header,
105
- .aside-dark .aside-footer,
106
- .aside-dark .aside-footer-btn { border-color: $color-dark-black; }
107
- .aside-light .aside-header,
108
- .aside-light .aside-footer,
109
- .aside-light .aside-footer-btn { border-color: $color-dark-haze; }
110
-
111
- /* # Media Queries
112
- ================================================== */
113
- @media only screen and (max-width: 767px) {
114
- .aside { width: 300px; }
115
- }
116
- @media only screen and (min-width: 480px) and (max-width: 767px) {
117
- .aside { width: 460px; }
118
- }
119
- @media
120
- only screen and (-webkit-min-device-pixel-ratio: 2),
121
- only screen and ( min--moz-device-pixel-ratio: 2),
122
- only screen and ( -o-min-device-pixel-ratio: 2/1),
123
- only screen and ( min-device-pixel-ratio: 2),
124
- only screen and ( min-resolution: 192dpi),
125
- only screen and ( min-resolution: 2dppx) {
126
- .aside-header > h3 { letter-spacing: 0.5px; }
127
- }