active_s95 1.0.0

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 (71) hide show
  1. checksums.yaml +7 -0
  2. data/LICENCE.txt +24 -0
  3. data/README.md +120 -0
  4. data/app/assets/fonts/Lato-Bold.eot +0 -0
  5. data/app/assets/fonts/Lato-Bold.ttf +0 -0
  6. data/app/assets/fonts/Lato-Bold.woff +0 -0
  7. data/app/assets/fonts/Lato-Bold.woff2 +0 -0
  8. data/app/assets/fonts/Lato-BoldItalic.eot +0 -0
  9. data/app/assets/fonts/Lato-BoldItalic.ttf +0 -0
  10. data/app/assets/fonts/Lato-BoldItalic.woff +0 -0
  11. data/app/assets/fonts/Lato-BoldItalic.woff2 +0 -0
  12. data/app/assets/fonts/Lato-Italic.eot +0 -0
  13. data/app/assets/fonts/Lato-Italic.ttf +0 -0
  14. data/app/assets/fonts/Lato-Italic.woff +0 -0
  15. data/app/assets/fonts/Lato-Italic.woff2 +0 -0
  16. data/app/assets/fonts/Lato-Regular.eot +0 -0
  17. data/app/assets/fonts/Lato-Regular.ttf +0 -0
  18. data/app/assets/fonts/Lato-Regular.woff +0 -0
  19. data/app/assets/fonts/Lato-Regular.woff2 +0 -0
  20. data/app/assets/javascripts/arctic_admin/base.js +2 -0
  21. data/app/assets/javascripts/arctic_admin/main.js +105 -0
  22. data/app/assets/stylesheets/arctic_admin/_base.scss +30 -0
  23. data/app/assets/stylesheets/arctic_admin/_buttons.scss +80 -0
  24. data/app/assets/stylesheets/arctic_admin/_common.scss +101 -0
  25. data/app/assets/stylesheets/arctic_admin/_custom_enhancements.scss +275 -0
  26. data/app/assets/stylesheets/arctic_admin/_fonts.scss +47 -0
  27. data/app/assets/stylesheets/arctic_admin/_grid.scss +4 -0
  28. data/app/assets/stylesheets/arctic_admin/_main.scss +57 -0
  29. data/app/assets/stylesheets/arctic_admin/_mobile_utilities.scss +212 -0
  30. data/app/assets/stylesheets/arctic_admin/_reset.scss +41 -0
  31. data/app/assets/stylesheets/arctic_admin/components/_columns.scss +4 -0
  32. data/app/assets/stylesheets/arctic_admin/components/_comments.scss +49 -0
  33. data/app/assets/stylesheets/arctic_admin/components/_date_picker.scss +38 -0
  34. data/app/assets/stylesheets/arctic_admin/components/_dialogs.scss +23 -0
  35. data/app/assets/stylesheets/arctic_admin/components/_flash.scss +32 -0
  36. data/app/assets/stylesheets/arctic_admin/components/_form.scss +182 -0
  37. data/app/assets/stylesheets/arctic_admin/components/_inputs.scss +218 -0
  38. data/app/assets/stylesheets/arctic_admin/components/_pagination.scss +80 -0
  39. data/app/assets/stylesheets/arctic_admin/components/_panel_contents.scss +126 -0
  40. data/app/assets/stylesheets/arctic_admin/components/_select2.scss +50 -0
  41. data/app/assets/stylesheets/arctic_admin/components/_status_tag.scss +41 -0
  42. data/app/assets/stylesheets/arctic_admin/components/_tables.scss +434 -0
  43. data/app/assets/stylesheets/arctic_admin/components/_tabs.scss +51 -0
  44. data/app/assets/stylesheets/arctic_admin/components/_toggle.scss +77 -0
  45. data/app/assets/stylesheets/arctic_admin/layouts/_filter.scss +142 -0
  46. data/app/assets/stylesheets/arctic_admin/layouts/_footer.scss +4 -0
  47. data/app/assets/stylesheets/arctic_admin/layouts/_header.scss +444 -0
  48. data/app/assets/stylesheets/arctic_admin/layouts/_main_content.scss +47 -0
  49. data/app/assets/stylesheets/arctic_admin/layouts/_sidebar.scss +150 -0
  50. data/app/assets/stylesheets/arctic_admin/layouts/_wrapper.scss +8 -0
  51. data/app/assets/stylesheets/arctic_admin/mixins/_buttons_mixins.scss +142 -0
  52. data/app/assets/stylesheets/arctic_admin/mixins/_forms.scss +9 -0
  53. data/app/assets/stylesheets/arctic_admin/mixins/_mixins.scss +4 -0
  54. data/app/assets/stylesheets/arctic_admin/mixins/_prefix_mixins.scss +63 -0
  55. data/app/assets/stylesheets/arctic_admin/mixins/_sidebar_mixins.scss +24 -0
  56. data/app/assets/stylesheets/arctic_admin/pages/_form.scss +124 -0
  57. data/app/assets/stylesheets/arctic_admin/pages/_index.scss +207 -0
  58. data/app/assets/stylesheets/arctic_admin/pages/_login.scss +65 -0
  59. data/app/assets/stylesheets/arctic_admin/pages/_show.scss +3 -0
  60. data/app/assets/stylesheets/arctic_admin/variables/_borders.scss +7 -0
  61. data/app/assets/stylesheets/arctic_admin/variables/_box_shadows.scss +6 -0
  62. data/app/assets/stylesheets/arctic_admin/variables/_colors.scss +59 -0
  63. data/app/assets/stylesheets/arctic_admin/variables/_fonts.scss +10 -0
  64. data/app/assets/stylesheets/arctic_admin/variables/_icons.scss +17 -0
  65. data/app/assets/stylesheets/arctic_admin/variables/_media_queries.scss +41 -0
  66. data/app/assets/stylesheets/arctic_admin/variables/_size.scss +15 -0
  67. data/app/assets/stylesheets/arctic_admin/variables/_spaces.scss +31 -0
  68. data/app/assets/stylesheets/arctic_admin/variables/_variables.scss +7 -0
  69. data/lib/active_s95/version.rb +3 -0
  70. data/lib/arctic_admin.rb +9 -0
  71. metadata +171 -0
@@ -0,0 +1,207 @@
1
+ @use "sass:math";
2
+
3
+ body.index {
4
+
5
+ .resource_selection_toggle_cell,
6
+ .resource_selection_cell {
7
+ display: flex;
8
+ }
9
+
10
+ .table_tools {
11
+ margin-bottom: 20px;
12
+ font-size: $font-size;
13
+
14
+ @media screen and (max-width: $sm-width) {
15
+ margin-bottom: 16px;
16
+ }
17
+
18
+ &:after {
19
+ content: '';
20
+ display: block;
21
+ clear: both;
22
+ }
23
+
24
+ input[type='checkbox'] {
25
+ display: flex;
26
+
27
+ @media screen and (max-width: $sm-width) {
28
+ min-width: 24px;
29
+ min-height: 24px;
30
+ }
31
+ }
32
+
33
+ .collection_selection_toggle_all {
34
+ display: flex !important;
35
+ }
36
+
37
+ .batch_actions_selector {
38
+ display: inline-block;
39
+
40
+ @media screen and (max-width: $sm-width) {
41
+ display: block;
42
+ width: 100%;
43
+ margin-bottom: 12px;
44
+ }
45
+ }
46
+
47
+ .dropdown_menu_button {
48
+ @include secondary-dropdown($button-primary-color);
49
+
50
+ @media screen and (max-width: $sm-width) {
51
+ @include touch-button();
52
+ width: 100%;
53
+ min-height: 48px;
54
+ }
55
+ }
56
+
57
+ .dropdown_menu_list {
58
+ background-color: #fff;
59
+ padding: 10px 15px;
60
+ border-radius: $border-radius;
61
+ @include box-shadow($box-shadow);
62
+ display: inline-block;
63
+ position: absolute;
64
+ z-index: 1;
65
+
66
+ @media screen and (max-width: $sm-width) {
67
+ left: 0;
68
+ right: 0;
69
+ width: calc(100% - 32px);
70
+ margin: 0 16px;
71
+ }
72
+ }
73
+
74
+ .indexes.table_tools_segmented_control {
75
+ display: flex;
76
+ justify-content: right;
77
+
78
+ @media screen and (max-width: $sm-width) {
79
+ flex-direction: column;
80
+ gap: 8px;
81
+ }
82
+
83
+ a {
84
+ @include secondary-button($button-primary-color);
85
+
86
+ @media screen and (max-width: $sm-width) {
87
+ width: 100%;
88
+ text-align: center;
89
+ @include touch-button();
90
+ }
91
+ }
92
+
93
+ .index {
94
+ margin-right: 4px;
95
+
96
+ @media screen and (max-width: $sm-width) {
97
+ margin-right: 0;
98
+ }
99
+
100
+ &:last-child {
101
+ margin-right: 0;
102
+ }
103
+ }
104
+ }
105
+ }
106
+
107
+ .paginated_collection_contents {
108
+ margin-bottom: 20px;
109
+ overflow-x: auto;
110
+ }
111
+
112
+ #index_footer {
113
+ font-size: $font-size;
114
+ }
115
+
116
+ .sortable {
117
+ position: relative;
118
+
119
+ &:after {
120
+ @include icon($icon-sort);
121
+ font-size: 12px;
122
+ position: absolute;
123
+ top: 50%;
124
+ right: 5px;
125
+ @include transform(translateY(-50%));
126
+
127
+ @media screen and (min-width: $md-width) {
128
+ // font-size: math.div($font-size, 1px);
129
+ }
130
+ }
131
+
132
+ &.sorted-desc:after {
133
+ content: "\f0dd";
134
+ }
135
+
136
+ &.sorted-asc:after {
137
+ content: "\f0de";
138
+ }
139
+ }
140
+
141
+ .table_actions {
142
+ margin-bottom: -4px;
143
+
144
+ .member_link {
145
+ @include primary-button($button-primary-color, white);
146
+ padding: 4px 8px;
147
+ margin-right: 4px;
148
+ margin-bottom: 4px;
149
+ }
150
+ }
151
+
152
+ .scopes {
153
+ .scope {
154
+ @include group-button($button-primary-color);
155
+
156
+ a {
157
+ margin-right: .25rem;
158
+
159
+ @media screen and (max-width: $sm-width) {
160
+ @include touch-button();
161
+ min-height: 44px;
162
+ margin-bottom: .25rem;
163
+ }
164
+ }
165
+ }
166
+ }
167
+
168
+ #sidebar {
169
+ position: fixed;
170
+ transition: .5s;
171
+ transition-timing-function: ease-in-out;
172
+ right: - $filter-width;
173
+
174
+ &.sidebar_open {
175
+ right: 0;
176
+ }
177
+
178
+ @media screen and (min-width: $x-lg-width) {
179
+ right: - $lg-filter-width;
180
+ }
181
+
182
+ &:before {
183
+ cursor: pointer;
184
+ position: absolute;
185
+ top: 30px;
186
+ left: -40px;
187
+ width: 40px;
188
+ height: 50px;
189
+ background-color: #fff;
190
+ @include box-shadow(-1px 0 4px 0 rgba(0, 0, 0, .04));
191
+ border-top-left-radius: $border-radius;
192
+ border-bottom-left-radius: $border-radius;
193
+ @include icon($icon-filter);
194
+ font-size: 20px;
195
+ padding: 15px 10px;
196
+ @include no-tap-highlight;
197
+
198
+ @media screen and (max-width: $sm-width) {
199
+ width: 48px;
200
+ height: 56px;
201
+ font-size: 22px;
202
+ padding: 17px 12px;
203
+ left: -48px;
204
+ }
205
+ }
206
+ }
207
+ }
@@ -0,0 +1,65 @@
1
+ body.logged_out {
2
+ .flash {
3
+ position: fixed;
4
+ }
5
+
6
+ #active_admin_content {
7
+ height: 100vh;
8
+ width: 100%;
9
+ display: flex;
10
+ align-items: center;
11
+ }
12
+ }
13
+
14
+ #login {
15
+ width: 100%;
16
+ margin: auto;
17
+ background-color: white;
18
+ border-top: $border-radius solid $primary-color;
19
+ @include box-shadow($box-shadow);
20
+ color: $text-color;
21
+ padding: 20px;
22
+
23
+ @media screen and (min-width: 400px) {
24
+ border-radius: $border-radius;
25
+ width: 400px;
26
+ padding: 30px;
27
+ }
28
+
29
+ h2 {
30
+ text-align: center;
31
+ }
32
+
33
+ .label {
34
+ display: inline-block;
35
+ max-width: 100%;
36
+ margin-bottom: 5px;
37
+ }
38
+
39
+ .input.boolean {
40
+ @include disable-user-select();
41
+ label {
42
+ font-size: 15px;
43
+ cursor: pointer;
44
+ padding: 5px 5px 5px 0;
45
+ }
46
+
47
+ input[type='checkbox'] {
48
+ width: 15px;
49
+ margin: 0 5px -2px 0;
50
+ }
51
+ }
52
+
53
+ a {
54
+ margin-top: 10px;
55
+ display: inline-block;
56
+ }
57
+
58
+ .input_action {
59
+ min-width: 50%;
60
+ }
61
+
62
+ input[type="submit"] {
63
+ line-height: 43px;
64
+ }
65
+ }
@@ -0,0 +1,3 @@
1
+ body.show {
2
+ @include sidebar-container();
3
+ }
@@ -0,0 +1,7 @@
1
+ // BORDER RADIUS - MODERN ROUNDED DESIGN
2
+ $border-radius: 20px !default;
3
+ $border-radius-card: 20px !default;
4
+ $border-radius-button: 12px !default;
5
+ $border-radius-badge: 15px !default;
6
+ $border-radius-input: 8px !default;
7
+ $border-radius-small: 6px !default;
@@ -0,0 +1,6 @@
1
+ // BOX SHADOWS - COLORED INDIGO GLOW
2
+ $box-shadow: 0 2px 8px rgba(102, 16, 242, 0.1) !default;
3
+ $box-shadow-hover: 0 8px 24px rgba(102, 16, 242, 0.25) !default;
4
+ $box-shadow-card: 0 2px 12px rgba(102, 16, 242, 0.12) !default;
5
+ $box-shadow-strong: 0 4px 16px rgba(102, 16, 242, 0.2) !default;
6
+ $box-shadow-button: 0 4px 12px rgba(102, 16, 242, 0.3) !default;
@@ -0,0 +1,59 @@
1
+ // BRAND COLORS - INDIGO THEME
2
+ $indigo: #6610f2;
3
+ $indigo-dark: #520dc2;
4
+ $indigo-light: #8540f5;
5
+ $teal: #00bfa5;
6
+ $coral: #ff6b6b;
7
+
8
+ // LEGACY COLORS (kept for compatibility)
9
+ $red: #B02B2C;
10
+ $green: #00897B;
11
+ $blue: $indigo; // REDIRECTED TO INDIGO
12
+ $black: #36393D;
13
+ $grey: #76838f;
14
+
15
+ // flash
16
+ $error: $coral !default;
17
+ $warning: #f2a654 !default;
18
+ $success: $teal !default;
19
+ $info: #57c7d4 !default;
20
+ $flash-text-color: #fff !default;
21
+ $flash-background-color: $grey !default;
22
+
23
+ // status_tag - PASTEL BACKGROUNDS
24
+ $status-tag-text-color: $indigo-dark !default;
25
+ $status-tag-background-color: rgba($indigo, 0.15) !default;
26
+ $status-tag-background-valid-color: rgba($teal, 0.15) !default;
27
+ $status-tag-background-error-color: rgba($coral, 0.15) !default;
28
+
29
+ $border-color: #e4eaec !default;
30
+
31
+ // body - LIGHT GREY BACKGROUND
32
+ $body-background: #f4f5f7 !default;
33
+
34
+ // header
35
+ $header-border-color: #e6e6e6 !default;
36
+ $header-background: #fff !default;
37
+
38
+ // nav action
39
+ $header-nav-action-hover-background: rgba($indigo, 0.05) !default;
40
+ $header-nav-action-active-background: rgba($indigo, 0.1) !default;
41
+
42
+ //sidebar - INDIGO THEME
43
+ $sidebar-border-color: $header-border-color !default;
44
+ $sidebar-background: #f9f9fb !default;
45
+
46
+ $sidebar-item-hover-background: rgba($indigo, 0.08) !default;
47
+ $sidebar-nested-item-hover-background: rgba($indigo, 0.12) !default;
48
+ $sidebar-active-background: rgba($indigo, 0.12) !default;
49
+
50
+ // text
51
+ $text-color: #5a5a5a !default;
52
+ $text-color-important: #526069 !default;
53
+
54
+ // PRIMARY COLORS - INDIGO SYSTEM
55
+ $primary-color: $indigo !default;
56
+ $link-primary-color: $indigo !default;
57
+ $button-primary-color: $indigo !default;
58
+ $accent-teal: $teal !default;
59
+ $accent-coral: $coral !default;
@@ -0,0 +1,10 @@
1
+ // FONT FAMILIES - MODERN SPORT THEME
2
+ @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Exo+2:wght@400;500;600;700;800&family=Roboto+Mono:wght@400;500;600;700&family=Chakra+Petch:wght@400;500;600;700&display=swap');
3
+
4
+ $font-family-fallback: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !default;
5
+ $font-family-body: 'Montserrat', $font-family-fallback !default;
6
+ $font-family-accent: 'Exo 2', $font-family-fallback !default;
7
+ $font-family-mono: 'Roboto Mono', 'Chakra Petch', Consolas, monospace !default;
8
+
9
+ $font-size: 14px !default;
10
+ $font-size-heading: 16px !default;
@@ -0,0 +1,17 @@
1
+ // you can customise any icons
2
+ // you need to use unicode of the icon font
3
+ // the unicode of fontawesome can be found here : https://fontawesome.com/
4
+
5
+ $font-icon: 'Font Awesome 6 Free', 'Font Awesome 6 Pro' !default;
6
+
7
+ $icon-user: "\f007" !default;
8
+ $icon-logout: "\f2f5" !default;
9
+
10
+ $icon-menu: "\f0c9" !default;
11
+
12
+ $icon-down: "\f0d7" !default;
13
+ $icon-up: "\f0d8" !default;
14
+
15
+ $icon-sort: "\f0dc" !default;
16
+ $icon-sort-down: "\f0dd" !default;
17
+ $icon-filter: "\f0b0" !default;
@@ -0,0 +1,41 @@
1
+ // Enhanced breakpoint system for smart mobile adaptation
2
+ $xs-width: 375px !default; // Small phones (iPhone SE, etc)
3
+ $sm-width: 576px !default; // Large phones
4
+ $md-tablet: 640px !default; // Tablets portrait
5
+ $md-width: 768px !default; // Tablets landscape
6
+ $lg-width: 992px !default; // Desktop
7
+ $x-lg-width: 1400px !default; // Large desktop
8
+
9
+ // Breakpoint reference:
10
+ // <375px Extra extra small (very small phones)
11
+ // ≥375px Extra small (most phones)
12
+ // ≥576px Small (large phones)
13
+ // ≥640px Medium tablet (tablets portrait)
14
+ // ≥768px Medium (tablets landscape)
15
+ // ≥992px Large (desktop)
16
+ // ≥1400px Extra large (large desktop)
17
+
18
+ // Mobile-first mixins for easier responsive development
19
+ @mixin mobile-only {
20
+ @media screen and (max-width: #{$sm-width - 1}) {
21
+ @content;
22
+ }
23
+ }
24
+
25
+ @mixin tablet-portrait {
26
+ @media screen and (min-width: $md-tablet) and (max-width: #{$md-width - 1}) {
27
+ @content;
28
+ }
29
+ }
30
+
31
+ @mixin tablet-and-below {
32
+ @media screen and (max-width: #{$md-width - 1}) {
33
+ @content;
34
+ }
35
+ }
36
+
37
+ @mixin desktop-and-up {
38
+ @media screen and (min-width: $lg-width) {
39
+ @content;
40
+ }
41
+ }
@@ -0,0 +1,15 @@
1
+ $header-width: 200px !default;
2
+ $screen-header-width: calc(100% - 200px) !default;
3
+ $lg-header-width: 250px !default;
4
+ $lg-screen-header-width: calc(100% - 250px) !default;
5
+
6
+ $filter-width: 230px !default;
7
+ $screen-filter-width: calc(100% - 230px) !default;
8
+ $lg-filter-width: 270px !default;
9
+ $lg-screen-filter-width: calc(100% - 270px) !default;
10
+
11
+ $input-height: 36px !default;
12
+
13
+ // Forms
14
+ $form-margin-left: 25%;
15
+ $form-input-width: 50%;
@@ -0,0 +1,31 @@
1
+ $space-0: 0;
2
+ $space-0-1: 0.125rem; /* 2px */
3
+ $space-1: 0.25rem; /* 4px */
4
+ $space-2: 0.5rem; /* 8px */
5
+ $space-3: 0.75rem; /* 12px */
6
+ $space-4: 1rem; /* 16px */
7
+ $space-5: 1.25rem; /* 20px */
8
+ $space-6: 1.5rem; /* 24px */
9
+ $space-7: 1.75rem; /* 28px */
10
+ $space-8: 2rem; /* 32px */
11
+ $space-9: 2.25rem; /* 36px */
12
+ $space-10: 2.5rem; /* 40px */
13
+ $space-11: 2.75rem; /* 44px */
14
+ $space-12: 3rem; /* 48px */
15
+ $space-14: 3.5rem; /* 56px */
16
+ $space-16: 4rem; /* 64px */
17
+ $space-20: 5rem; /* 80px */
18
+ $space-24: 6rem; /* 96px */
19
+ $space-28: 7rem; /* 112px */
20
+ $space-32: 8rem; /* 128px */
21
+ $space-36: 9rem; /* 144px */
22
+ $space-40: 10rem; /* 160px */
23
+ $space-44: 11rem; /* 176px */
24
+ $space-48: 12rem; /* 192px */
25
+ $space-52: 13rem; /* 208px */
26
+ $space-56: 14rem; /* 224px */
27
+ $space-60: 15rem; /* 240px */
28
+ $space-64: 16rem; /* 256px */
29
+ $space-72: 18rem; /* 288px */
30
+ $space-80: 20rem; /* 320px */
31
+ $space-96: 24rem; /* 384px */
@@ -0,0 +1,7 @@
1
+ @import "colors";
2
+ @import "size";
3
+ @import "icons";
4
+ @import "media_queries";
5
+ @import "fonts";
6
+ @import "spaces";
7
+ @import "borders";
@@ -0,0 +1,3 @@
1
+ module S95Admin
2
+ VERSION = "1.0.0"
3
+ end
@@ -0,0 +1,9 @@
1
+ require "active_s95/version"
2
+ require 'font-awesome-sass'
3
+
4
+ module s95Admin
5
+ module Rails
6
+ class Engine < ::Rails::Engine
7
+ end
8
+ end
9
+ end
metadata ADDED
@@ -0,0 +1,171 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: active_s95
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Clément Prod'homme
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: bundler
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - "~>"
17
+ - !ruby/object:Gem::Version
18
+ version: '1.5'
19
+ type: :development
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - "~>"
24
+ - !ruby/object:Gem::Version
25
+ version: '1.5'
26
+ - !ruby/object:Gem::Dependency
27
+ name: rake
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ - !ruby/object:Gem::Dependency
41
+ name: activeadmin
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: 1.1.0
47
+ - - "<"
48
+ - !ruby/object:Gem::Version
49
+ version: '4.0'
50
+ type: :runtime
51
+ prerelease: false
52
+ version_requirements: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ version: 1.1.0
57
+ - - "<"
58
+ - !ruby/object:Gem::Version
59
+ version: '4.0'
60
+ - !ruby/object:Gem::Dependency
61
+ name: font-awesome-sass
62
+ requirement: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - "~>"
65
+ - !ruby/object:Gem::Version
66
+ version: '6.0'
67
+ type: :runtime
68
+ prerelease: false
69
+ version_requirements: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - "~>"
72
+ - !ruby/object:Gem::Version
73
+ version: '6.0'
74
+ description: A responsive theme for Active Admin
75
+ executables: []
76
+ extensions: []
77
+ extra_rdoc_files: []
78
+ files:
79
+ - LICENCE.txt
80
+ - README.md
81
+ - app/assets/fonts/Lato-Bold.eot
82
+ - app/assets/fonts/Lato-Bold.ttf
83
+ - app/assets/fonts/Lato-Bold.woff
84
+ - app/assets/fonts/Lato-Bold.woff2
85
+ - app/assets/fonts/Lato-BoldItalic.eot
86
+ - app/assets/fonts/Lato-BoldItalic.ttf
87
+ - app/assets/fonts/Lato-BoldItalic.woff
88
+ - app/assets/fonts/Lato-BoldItalic.woff2
89
+ - app/assets/fonts/Lato-Italic.eot
90
+ - app/assets/fonts/Lato-Italic.ttf
91
+ - app/assets/fonts/Lato-Italic.woff
92
+ - app/assets/fonts/Lato-Italic.woff2
93
+ - app/assets/fonts/Lato-Regular.eot
94
+ - app/assets/fonts/Lato-Regular.ttf
95
+ - app/assets/fonts/Lato-Regular.woff
96
+ - app/assets/fonts/Lato-Regular.woff2
97
+ - app/assets/javascripts/arctic_admin/base.js
98
+ - app/assets/javascripts/arctic_admin/main.js
99
+ - app/assets/stylesheets/arctic_admin/_base.scss
100
+ - app/assets/stylesheets/arctic_admin/_buttons.scss
101
+ - app/assets/stylesheets/arctic_admin/_common.scss
102
+ - app/assets/stylesheets/arctic_admin/_custom_enhancements.scss
103
+ - app/assets/stylesheets/arctic_admin/_fonts.scss
104
+ - app/assets/stylesheets/arctic_admin/_grid.scss
105
+ - app/assets/stylesheets/arctic_admin/_main.scss
106
+ - app/assets/stylesheets/arctic_admin/_mobile_utilities.scss
107
+ - app/assets/stylesheets/arctic_admin/_reset.scss
108
+ - app/assets/stylesheets/arctic_admin/components/_columns.scss
109
+ - app/assets/stylesheets/arctic_admin/components/_comments.scss
110
+ - app/assets/stylesheets/arctic_admin/components/_date_picker.scss
111
+ - app/assets/stylesheets/arctic_admin/components/_dialogs.scss
112
+ - app/assets/stylesheets/arctic_admin/components/_flash.scss
113
+ - app/assets/stylesheets/arctic_admin/components/_form.scss
114
+ - app/assets/stylesheets/arctic_admin/components/_inputs.scss
115
+ - app/assets/stylesheets/arctic_admin/components/_pagination.scss
116
+ - app/assets/stylesheets/arctic_admin/components/_panel_contents.scss
117
+ - app/assets/stylesheets/arctic_admin/components/_select2.scss
118
+ - app/assets/stylesheets/arctic_admin/components/_status_tag.scss
119
+ - app/assets/stylesheets/arctic_admin/components/_tables.scss
120
+ - app/assets/stylesheets/arctic_admin/components/_tabs.scss
121
+ - app/assets/stylesheets/arctic_admin/components/_toggle.scss
122
+ - app/assets/stylesheets/arctic_admin/layouts/_filter.scss
123
+ - app/assets/stylesheets/arctic_admin/layouts/_footer.scss
124
+ - app/assets/stylesheets/arctic_admin/layouts/_header.scss
125
+ - app/assets/stylesheets/arctic_admin/layouts/_main_content.scss
126
+ - app/assets/stylesheets/arctic_admin/layouts/_sidebar.scss
127
+ - app/assets/stylesheets/arctic_admin/layouts/_wrapper.scss
128
+ - app/assets/stylesheets/arctic_admin/mixins/_buttons_mixins.scss
129
+ - app/assets/stylesheets/arctic_admin/mixins/_forms.scss
130
+ - app/assets/stylesheets/arctic_admin/mixins/_mixins.scss
131
+ - app/assets/stylesheets/arctic_admin/mixins/_prefix_mixins.scss
132
+ - app/assets/stylesheets/arctic_admin/mixins/_sidebar_mixins.scss
133
+ - app/assets/stylesheets/arctic_admin/pages/_form.scss
134
+ - app/assets/stylesheets/arctic_admin/pages/_index.scss
135
+ - app/assets/stylesheets/arctic_admin/pages/_login.scss
136
+ - app/assets/stylesheets/arctic_admin/pages/_show.scss
137
+ - app/assets/stylesheets/arctic_admin/variables/_borders.scss
138
+ - app/assets/stylesheets/arctic_admin/variables/_box_shadows.scss
139
+ - app/assets/stylesheets/arctic_admin/variables/_colors.scss
140
+ - app/assets/stylesheets/arctic_admin/variables/_fonts.scss
141
+ - app/assets/stylesheets/arctic_admin/variables/_icons.scss
142
+ - app/assets/stylesheets/arctic_admin/variables/_media_queries.scss
143
+ - app/assets/stylesheets/arctic_admin/variables/_size.scss
144
+ - app/assets/stylesheets/arctic_admin/variables/_spaces.scss
145
+ - app/assets/stylesheets/arctic_admin/variables/_variables.scss
146
+ - lib/active_s95/version.rb
147
+ - lib/arctic_admin.rb
148
+ homepage: https://github.com/SomeoneUnlicensed/active_s95
149
+ licenses:
150
+ - MIT
151
+ metadata:
152
+ source_code_uri: https://github.com/SomeoneUnlicensed/active_s95
153
+ changelog_uri: https://github.com/SomeoneUnlicensed/active_s95/releases
154
+ rdoc_options: []
155
+ require_paths:
156
+ - lib
157
+ required_ruby_version: !ruby/object:Gem::Requirement
158
+ requirements:
159
+ - - ">="
160
+ - !ruby/object:Gem::Version
161
+ version: '0'
162
+ required_rubygems_version: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ">="
165
+ - !ruby/object:Gem::Version
166
+ version: '0'
167
+ requirements: []
168
+ rubygems_version: 3.6.9
169
+ specification_version: 4
170
+ summary: s95 Admin theme for ActiveAdmin
171
+ test_files: []