activeadmin_blaze_theme 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +3 -0
- data/Gemfile +3 -0
- data/LICENSE.txt +22 -0
- data/README.md +55 -0
- data/Rakefile +2 -0
- data/activeadmin_blaze_theme.gemspec +20 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/blaze.colors.scss +14 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/blaze.scss +41 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.addresses.scss +12 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.alerts.scss +59 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.avatars.scss +36 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.badges.scss +60 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.breadcrumbs.scss +20 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.bubbles.scss +49 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.buttons.scss +77 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.calendars.scss +69 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.cards.scss +200 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.headings.scss +38 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.hints.scss +27 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.input-groups.scss +163 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.inputs.scss +138 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.links.scss +31 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.lists.scss +60 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.navs.scss +126 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.overlays.scss +26 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.pagination.scss +42 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.progress.scss +51 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.ranges.scss +114 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.tables.scss +88 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.tabs.scss +57 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.tags.scss +42 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.toggles.scss +74 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.tooltips.scss +96 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.trees.scss +39 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.typography.scss +94 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/generics.global.scss +13 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_components.alerts.scss +6 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_components.badges.scss +8 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_components.buttons.scss +83 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_components.inputs.scss +45 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_components.links.scss +22 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_components.lists.scss +10 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_components.navs.scss +29 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_components.ranges.scss +89 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_components.tabs.scss +5 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_components.toggles.scss +6 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_components.typography.scss +25 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_objects.containers.scss +10 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_objects.grid.scss +112 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_settings.global.scss +864 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_tools.mediaqueries.scss +73 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_utilities.alignment.scss +24 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_utilities.boxing.scss +125 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/objects.containers.scss +31 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/objects.drawers.scss +88 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/objects.forms.scss +25 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/objects.grid.responsive.scss +124 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/objects.grid.scss +62 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/objects.images.scss +5 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/objects.media.scss +36 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/objects.modals.scss +55 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/objects.panels.scss +27 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/themes/blaze.example.scss +7 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/utilities.alignment.scss +22 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/utilities.boxing.scss +101 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/utilities.elevation.scss +19 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/blaze/utilities.sizes.scss +25 -0
- data/app/assets/stylesheets/activeadmin_blaze_theme/theme.scss +365 -0
- data/lib/activeadmin_blaze_theme/version.rb +3 -0
- data/lib/activeadmin_blaze_theme.rb +8 -0
- data/screenshot1.jpg +0 -0
- data/screenshot2.jpg +0 -0
- metadata +116 -0
@@ -0,0 +1,101 @@
|
|
1
|
+
@import "mixins/utilities.boxing";
|
2
|
+
|
3
|
+
.u-no-overflow {
|
4
|
+
@include no-overflow;
|
5
|
+
}
|
6
|
+
|
7
|
+
.u-letter-box--super {
|
8
|
+
@include letter-box--super;
|
9
|
+
}
|
10
|
+
|
11
|
+
.u-letter-box--xlarge {
|
12
|
+
@include letter-box--xlarge;
|
13
|
+
}
|
14
|
+
|
15
|
+
.u-letter-box--large {
|
16
|
+
@include letter-box--large;
|
17
|
+
}
|
18
|
+
|
19
|
+
.u-letter-box--medium {
|
20
|
+
@include letter-box--medium;
|
21
|
+
}
|
22
|
+
|
23
|
+
.u-letter-box--small {
|
24
|
+
@include letter-box--small;
|
25
|
+
}
|
26
|
+
|
27
|
+
.u-letter-box--xsmall {
|
28
|
+
@include letter-box--xsmall;
|
29
|
+
}
|
30
|
+
|
31
|
+
.u-letter-box--tiny {
|
32
|
+
@include letter-box--tiny;
|
33
|
+
}
|
34
|
+
|
35
|
+
.u-letter-box--none {
|
36
|
+
@include letter-box--none;
|
37
|
+
}
|
38
|
+
|
39
|
+
.u-pillar-box--super {
|
40
|
+
@include pillar-box--super;
|
41
|
+
}
|
42
|
+
|
43
|
+
.u-pillar-box--xlarge {
|
44
|
+
@include pillar-box--xlarge;
|
45
|
+
}
|
46
|
+
|
47
|
+
.u-pillar-box--large {
|
48
|
+
@include pillar-box--large;
|
49
|
+
}
|
50
|
+
|
51
|
+
.u-pillar-box--medium {
|
52
|
+
@include pillar-box--medium;
|
53
|
+
}
|
54
|
+
|
55
|
+
.u-pillar-box--small {
|
56
|
+
@include pillar-box--small;
|
57
|
+
}
|
58
|
+
|
59
|
+
.u-pillar-box--xsmall {
|
60
|
+
@include pillar-box--xsmall;
|
61
|
+
}
|
62
|
+
|
63
|
+
.u-pillar-box--tiny {
|
64
|
+
@include pillar-box--tiny;
|
65
|
+
}
|
66
|
+
|
67
|
+
.u-pillar-box--none {
|
68
|
+
@include pillar-box--none;
|
69
|
+
}
|
70
|
+
|
71
|
+
.u-window-box--super {
|
72
|
+
@include window-box--super;
|
73
|
+
}
|
74
|
+
|
75
|
+
.u-window-box--xlarge {
|
76
|
+
@include window-box--xlarge;
|
77
|
+
}
|
78
|
+
|
79
|
+
.u-window-box--large {
|
80
|
+
@include window-box--large;
|
81
|
+
}
|
82
|
+
|
83
|
+
.u-window-box--medium {
|
84
|
+
@include window-box--medium;
|
85
|
+
}
|
86
|
+
|
87
|
+
.u-window-box--small {
|
88
|
+
@include window-box--small;
|
89
|
+
}
|
90
|
+
|
91
|
+
.u-window-box--xsmall {
|
92
|
+
@include window-box--xsmall;
|
93
|
+
}
|
94
|
+
|
95
|
+
.u-window-box--tiny {
|
96
|
+
@include window-box--tiny;
|
97
|
+
}
|
98
|
+
|
99
|
+
.u-window-box--none {
|
100
|
+
@include window-box--none;
|
101
|
+
}
|
@@ -0,0 +1,19 @@
|
|
1
|
+
@import "mixins/settings.global";
|
2
|
+
|
3
|
+
.u-high,
|
4
|
+
.u-higher,
|
5
|
+
.u-highest {
|
6
|
+
border: 0;
|
7
|
+
}
|
8
|
+
|
9
|
+
.u-high {
|
10
|
+
box-shadow: $box-shadow-high;
|
11
|
+
}
|
12
|
+
|
13
|
+
.u-higher {
|
14
|
+
box-shadow: $box-shadow-higher;
|
15
|
+
}
|
16
|
+
|
17
|
+
.u-highest {
|
18
|
+
box-shadow: $box-shadow-highest;
|
19
|
+
}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
@import "mixins/settings.global";
|
2
|
+
|
3
|
+
.u-super {
|
4
|
+
font-size: $text-font-size-super;
|
5
|
+
}
|
6
|
+
|
7
|
+
.u-xlarge {
|
8
|
+
font-size: $text-font-size-xlarge;
|
9
|
+
}
|
10
|
+
|
11
|
+
.u-large {
|
12
|
+
font-size: $text-font-size-large;
|
13
|
+
}
|
14
|
+
|
15
|
+
.u-medium {
|
16
|
+
font-size: $text-font-size-medium;
|
17
|
+
}
|
18
|
+
|
19
|
+
.u-small {
|
20
|
+
font-size: $text-font-size-small;
|
21
|
+
}
|
22
|
+
|
23
|
+
.u-xsmall {
|
24
|
+
font-size: $text-font-size-xsmall;
|
25
|
+
}
|
@@ -0,0 +1,365 @@
|
|
1
|
+
@import 'blaze/blaze';
|
2
|
+
@import url('https://fonts.googleapis.com/css?family=Roboto');
|
3
|
+
|
4
|
+
// main variables
|
5
|
+
$bg-form1: #f4f4f4 !default;
|
6
|
+
$bg-form2: darken($bg-form1, 3%) !default;
|
7
|
+
$bg-form3: darken($bg-form1, 6%) !default;
|
8
|
+
$bg-form4: darken($bg-form1, 9%) !default;
|
9
|
+
$bg-header: $color-brand !default;
|
10
|
+
$bg-inputs: #fff !default;
|
11
|
+
$fg-box-title: #fff !default;
|
12
|
+
$fg-link2: #eee !default;
|
13
|
+
$fg-table-borders: #e4e4e4 !default;
|
14
|
+
|
15
|
+
// other variables
|
16
|
+
$height-inputs: 25px !default;
|
17
|
+
$text-shadow: #000 !default;
|
18
|
+
|
19
|
+
// active_admin theme styles
|
20
|
+
body.active_admin {
|
21
|
+
font-family: 'Roboto', sans-serif;
|
22
|
+
|
23
|
+
// generics
|
24
|
+
.button-base {
|
25
|
+
@extend .c-button;
|
26
|
+
// @extend .c-button--rounded;
|
27
|
+
background-image: none;
|
28
|
+
box-shadow: initial;
|
29
|
+
text-shadow: $text-shadow 0 1px 0;
|
30
|
+
}
|
31
|
+
|
32
|
+
// forms
|
33
|
+
form {
|
34
|
+
// inputs
|
35
|
+
input[type='number'],
|
36
|
+
input[type='text'],
|
37
|
+
select,
|
38
|
+
textarea {
|
39
|
+
@extend .c-field;
|
40
|
+
background-color: $bg-inputs;
|
41
|
+
display: inline-block;
|
42
|
+
height: $height-inputs;
|
43
|
+
}
|
44
|
+
|
45
|
+
// buttons
|
46
|
+
button,
|
47
|
+
input[type='button'],
|
48
|
+
input[type='submit'],
|
49
|
+
&.filter_form a.clear_filters_btn,
|
50
|
+
fieldset.buttons li.cancel a,
|
51
|
+
fieldset.actions li.cancel a {
|
52
|
+
@extend .button-base;
|
53
|
+
}
|
54
|
+
.buttons, .actions {
|
55
|
+
button,
|
56
|
+
input[type='button'],
|
57
|
+
input[type='submit'] {
|
58
|
+
margin-right: 10px;
|
59
|
+
}
|
60
|
+
}
|
61
|
+
button:hover,
|
62
|
+
input[type='button']:hover,
|
63
|
+
input[type='submit']:hover,
|
64
|
+
&.filter_form a.clear_filters_btn:hover,
|
65
|
+
fieldset.buttons li.cancel a:hover,
|
66
|
+
fieldset.actions li.cancel a:hover {
|
67
|
+
background-image: none;
|
68
|
+
}
|
69
|
+
|
70
|
+
// submits
|
71
|
+
input[type='submit'] {
|
72
|
+
@extend .c-button--success;
|
73
|
+
}
|
74
|
+
|
75
|
+
// filter forms
|
76
|
+
&.filter_form {
|
77
|
+
.filter_form_field.filter_date_range {
|
78
|
+
input[type='number'],
|
79
|
+
input[type='text'] {
|
80
|
+
max-width: 100px;
|
81
|
+
width: auto;
|
82
|
+
}
|
83
|
+
}
|
84
|
+
.filter_form_field.select_and_search select {
|
85
|
+
background-color: $bg-inputs;
|
86
|
+
}
|
87
|
+
}
|
88
|
+
|
89
|
+
// fieldsets
|
90
|
+
fieldset {
|
91
|
+
&.buttons li, &.actions li {
|
92
|
+
float: initial;
|
93
|
+
display: inline-block;
|
94
|
+
}
|
95
|
+
&.inputs {
|
96
|
+
@extend .c-card;
|
97
|
+
@extend .u-high;
|
98
|
+
background-color: $bg-form1;
|
99
|
+
padding: 0;
|
100
|
+
input[type='number'],
|
101
|
+
input[type='text'],
|
102
|
+
select,
|
103
|
+
textarea {
|
104
|
+
background-color: $bg-inputs;
|
105
|
+
width: calc(80% - 22px);
|
106
|
+
}
|
107
|
+
select {
|
108
|
+
background-image: none;
|
109
|
+
}
|
110
|
+
label {
|
111
|
+
line-height: 26px;
|
112
|
+
}
|
113
|
+
> ol > .has_many_container > fieldset.inputs {
|
114
|
+
background-color: $bg-form2;
|
115
|
+
> ol > .has_many_container > fieldset.inputs {
|
116
|
+
background-color: $bg-form3;
|
117
|
+
> ol > .has_many_container > fieldset.inputs {
|
118
|
+
background-color: $bg-form4;
|
119
|
+
}
|
120
|
+
}
|
121
|
+
}
|
122
|
+
> legend {
|
123
|
+
@extend .c-card__item;
|
124
|
+
@extend .c-card__item--brand;
|
125
|
+
color: $fg-box-title;
|
126
|
+
padding: 8px 11px;
|
127
|
+
text-shadow: $text-shadow 0 1px 0;
|
128
|
+
> span {
|
129
|
+
background-color: transparent;
|
130
|
+
background-image: none;
|
131
|
+
border: 0 none;
|
132
|
+
box-shadow: initial;
|
133
|
+
color: inherit;
|
134
|
+
margin: 0;
|
135
|
+
padding: 0;
|
136
|
+
text-shadow: inherit;
|
137
|
+
}
|
138
|
+
}
|
139
|
+
// .boolean > label { // not working
|
140
|
+
// @extend .c-field;
|
141
|
+
// @extend .c-field--choice;
|
142
|
+
// }
|
143
|
+
.button {
|
144
|
+
@extend .button-base;
|
145
|
+
&.has_many_add {
|
146
|
+
@extend .c-button--info;
|
147
|
+
display: inline-block;
|
148
|
+
&:hover {
|
149
|
+
background-image: none;
|
150
|
+
}
|
151
|
+
}
|
152
|
+
&.has_many_remove {
|
153
|
+
@extend .c-button--error;
|
154
|
+
display: inline-block;
|
155
|
+
&:hover {
|
156
|
+
background-image: none;
|
157
|
+
}
|
158
|
+
}
|
159
|
+
}
|
160
|
+
.fragment {
|
161
|
+
input[type='number'],
|
162
|
+
input[type='text'],
|
163
|
+
select {
|
164
|
+
width: auto;
|
165
|
+
}
|
166
|
+
}
|
167
|
+
}
|
168
|
+
ol {
|
169
|
+
padding: 1px;
|
170
|
+
> li {
|
171
|
+
padding: 1px;
|
172
|
+
> label {
|
173
|
+
margin-left: 10px;
|
174
|
+
}
|
175
|
+
}
|
176
|
+
}
|
177
|
+
}
|
178
|
+
}
|
179
|
+
|
180
|
+
// header
|
181
|
+
#header {
|
182
|
+
background-color: $bg-header;
|
183
|
+
background-image: none;
|
184
|
+
border-bottom: 0 none;
|
185
|
+
padding: 0;
|
186
|
+
position: relative;
|
187
|
+
.header-item {
|
188
|
+
top: 0;
|
189
|
+
}
|
190
|
+
}
|
191
|
+
|
192
|
+
// navbar / menu
|
193
|
+
#tabs, #utility_nav {
|
194
|
+
@extend .c-nav;
|
195
|
+
@extend .c-nav--inline;
|
196
|
+
background-color: $bg-header;
|
197
|
+
> li {
|
198
|
+
@extend .c-nav__item;
|
199
|
+
float: left;
|
200
|
+
margin: 0;
|
201
|
+
&.current {
|
202
|
+
@extend .c-nav__item--active;
|
203
|
+
> a {
|
204
|
+
background: transparent;
|
205
|
+
}
|
206
|
+
}
|
207
|
+
> a {
|
208
|
+
display: block;
|
209
|
+
padding: 0;
|
210
|
+
}
|
211
|
+
> a:hover {
|
212
|
+
background: transparent;
|
213
|
+
}
|
214
|
+
}
|
215
|
+
> li:hover > a {
|
216
|
+
background: transparent;
|
217
|
+
}
|
218
|
+
}
|
219
|
+
#utility_nav {
|
220
|
+
position: absolute;
|
221
|
+
right: 0;
|
222
|
+
width: auto;
|
223
|
+
}
|
224
|
+
|
225
|
+
// sidebars
|
226
|
+
.sidebar_section {
|
227
|
+
@extend .c-card;
|
228
|
+
@extend .u-high;
|
229
|
+
.filter_form_field {
|
230
|
+
input[type='number'],
|
231
|
+
input[type='text'],
|
232
|
+
select,
|
233
|
+
textarea {
|
234
|
+
background-color: $bg-inputs;
|
235
|
+
background-image: none;
|
236
|
+
}
|
237
|
+
}
|
238
|
+
.panel_contents {
|
239
|
+
@extend .c-card__item;
|
240
|
+
padding: 5px 10px 10px 10px;
|
241
|
+
}
|
242
|
+
> h3 {
|
243
|
+
@extend .c-card__item;
|
244
|
+
@extend .c-card__item--brand;
|
245
|
+
background-image: none;
|
246
|
+
border: 0 none !important;
|
247
|
+
color: $fg-box-title;
|
248
|
+
padding: 8px 11px;
|
249
|
+
text-shadow: $text-shadow 0 1px 0;
|
250
|
+
}
|
251
|
+
input[type='submit'] {
|
252
|
+
@extend .c-button--info;
|
253
|
+
}
|
254
|
+
}
|
255
|
+
|
256
|
+
// tables
|
257
|
+
.table_tools {
|
258
|
+
a {
|
259
|
+
@extend .button-base;
|
260
|
+
margin-right: 10px;
|
261
|
+
span {
|
262
|
+
color: $fg-link2;
|
263
|
+
}
|
264
|
+
}
|
265
|
+
a:hover,
|
266
|
+
a.table_tools_button:hover,
|
267
|
+
.dropdown_menu_button:hover {
|
268
|
+
background-image: none;
|
269
|
+
}
|
270
|
+
.dropdown_menu_list a {
|
271
|
+
width: 100%;
|
272
|
+
}
|
273
|
+
}
|
274
|
+
.index_table {
|
275
|
+
@extend .c-table;
|
276
|
+
// @extend .c-table--striped;
|
277
|
+
// @extend .c-table--condensed;
|
278
|
+
> thead {
|
279
|
+
@extend .c-table__head;
|
280
|
+
> tr {
|
281
|
+
@extend .c-table__row;
|
282
|
+
@extend .c-table__row--heading;
|
283
|
+
> th {
|
284
|
+
@extend .c-table__cell;
|
285
|
+
margin-bottom: 0;
|
286
|
+
&.col-selectable > div {
|
287
|
+
margin-left: auto;
|
288
|
+
margin-right: auto;
|
289
|
+
}
|
290
|
+
}
|
291
|
+
}
|
292
|
+
}
|
293
|
+
> tbody {
|
294
|
+
@extend .c-table__body;
|
295
|
+
border-left: 1px solid $fg-table-borders;
|
296
|
+
border-right: 1px solid $fg-table-borders;
|
297
|
+
> tr {
|
298
|
+
@extend .c-table__row;
|
299
|
+
> td {
|
300
|
+
@extend .c-table__cell;
|
301
|
+
&.col-selectable > div {
|
302
|
+
margin-left: auto;
|
303
|
+
margin-right: auto;
|
304
|
+
}
|
305
|
+
}
|
306
|
+
}
|
307
|
+
}
|
308
|
+
}
|
309
|
+
|
310
|
+
// title bar
|
311
|
+
#title_bar {
|
312
|
+
.action_items span.action_item {
|
313
|
+
> a,
|
314
|
+
> .dropdown_menu > a {
|
315
|
+
@extend .button-base;
|
316
|
+
@extend .c-button--info;
|
317
|
+
}
|
318
|
+
> a:hover,
|
319
|
+
> .dropdown_menu > a:hover {
|
320
|
+
background-image: none;
|
321
|
+
}
|
322
|
+
a[data-method='delete'] {
|
323
|
+
@extend .c-button--error;
|
324
|
+
}
|
325
|
+
}
|
326
|
+
}
|
327
|
+
|
328
|
+
// main content
|
329
|
+
#main_content {
|
330
|
+
> .panel {
|
331
|
+
@extend .c-card;
|
332
|
+
@extend .u-high;
|
333
|
+
> h3 {
|
334
|
+
@extend .c-card__item;
|
335
|
+
@extend .c-card__item--brand;
|
336
|
+
background-image: none;
|
337
|
+
border: 0 none !important;
|
338
|
+
color: $fg-box-title;
|
339
|
+
padding: 8px 11px;
|
340
|
+
text-shadow: $text-shadow 0 1px 0;
|
341
|
+
}
|
342
|
+
> .panel_contents .actions {
|
343
|
+
margin: 0;
|
344
|
+
}
|
345
|
+
table {
|
346
|
+
margin: 0;
|
347
|
+
}
|
348
|
+
}
|
349
|
+
}
|
350
|
+
|
351
|
+
// dialogs
|
352
|
+
.ui-dialog > .ui-dialog-buttonpane button.ui-button {
|
353
|
+
@extend .button-base;
|
354
|
+
margin-right: 10px;
|
355
|
+
&:hover {
|
356
|
+
background-image: none;
|
357
|
+
}
|
358
|
+
}
|
359
|
+
|
360
|
+
// footer
|
361
|
+
#footer {
|
362
|
+
padding: 10px 0 0 0;
|
363
|
+
text-align: center;
|
364
|
+
}
|
365
|
+
}
|
data/screenshot1.jpg
ADDED
Binary file
|
data/screenshot2.jpg
ADDED
Binary file
|
metadata
ADDED
@@ -0,0 +1,116 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: activeadmin_blaze_theme
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Mattia Roccoberton
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-05-14 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: An ActiveAdmin theme which use Blaze CSS toolkit
|
14
|
+
email:
|
15
|
+
- mat@blocknot.es
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- ".gitignore"
|
21
|
+
- Gemfile
|
22
|
+
- LICENSE.txt
|
23
|
+
- README.md
|
24
|
+
- Rakefile
|
25
|
+
- activeadmin_blaze_theme.gemspec
|
26
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/blaze.colors.scss
|
27
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/blaze.scss
|
28
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.addresses.scss
|
29
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.alerts.scss
|
30
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.avatars.scss
|
31
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.badges.scss
|
32
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.breadcrumbs.scss
|
33
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.bubbles.scss
|
34
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.buttons.scss
|
35
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.calendars.scss
|
36
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.cards.scss
|
37
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.headings.scss
|
38
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.hints.scss
|
39
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.input-groups.scss
|
40
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.inputs.scss
|
41
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.links.scss
|
42
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.lists.scss
|
43
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.navs.scss
|
44
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.overlays.scss
|
45
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.pagination.scss
|
46
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.progress.scss
|
47
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.ranges.scss
|
48
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.tables.scss
|
49
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.tabs.scss
|
50
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.tags.scss
|
51
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.toggles.scss
|
52
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.tooltips.scss
|
53
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.trees.scss
|
54
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/components.typography.scss
|
55
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/generics.global.scss
|
56
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_components.alerts.scss
|
57
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_components.badges.scss
|
58
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_components.buttons.scss
|
59
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_components.inputs.scss
|
60
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_components.links.scss
|
61
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_components.lists.scss
|
62
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_components.navs.scss
|
63
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_components.ranges.scss
|
64
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_components.tabs.scss
|
65
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_components.toggles.scss
|
66
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_components.typography.scss
|
67
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_objects.containers.scss
|
68
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_objects.grid.scss
|
69
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_settings.global.scss
|
70
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_tools.mediaqueries.scss
|
71
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_utilities.alignment.scss
|
72
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_utilities.boxing.scss
|
73
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/objects.containers.scss
|
74
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/objects.drawers.scss
|
75
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/objects.forms.scss
|
76
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/objects.grid.responsive.scss
|
77
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/objects.grid.scss
|
78
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/objects.images.scss
|
79
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/objects.media.scss
|
80
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/objects.modals.scss
|
81
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/objects.panels.scss
|
82
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/themes/blaze.example.scss
|
83
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/utilities.alignment.scss
|
84
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/utilities.boxing.scss
|
85
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/utilities.elevation.scss
|
86
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/blaze/utilities.sizes.scss
|
87
|
+
- app/assets/stylesheets/activeadmin_blaze_theme/theme.scss
|
88
|
+
- lib/activeadmin_blaze_theme.rb
|
89
|
+
- lib/activeadmin_blaze_theme/version.rb
|
90
|
+
- screenshot1.jpg
|
91
|
+
- screenshot2.jpg
|
92
|
+
homepage: https://github.com/blocknotes/activeadmin_blaze_theme
|
93
|
+
licenses:
|
94
|
+
- MIT
|
95
|
+
metadata: {}
|
96
|
+
post_install_message:
|
97
|
+
rdoc_options: []
|
98
|
+
require_paths:
|
99
|
+
- lib
|
100
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - ">="
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '0'
|
105
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - ">="
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '0'
|
110
|
+
requirements: []
|
111
|
+
rubyforge_project:
|
112
|
+
rubygems_version: 2.5.2
|
113
|
+
signing_key:
|
114
|
+
specification_version: 4
|
115
|
+
summary: ActiveAdmin Blaze Theme
|
116
|
+
test_files: []
|