arctic_admin 4.3.1 → 4.4.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.
- checksums.yaml +4 -4
- data/app/assets/javascripts/arctic_admin/main.js +9 -3
- data/app/assets/stylesheets/arctic_admin/_buttons.scss +1 -1
- data/app/assets/stylesheets/arctic_admin/components/_comments.scss +2 -2
- data/app/assets/stylesheets/arctic_admin/components/_date_picker.scss +3 -3
- data/app/assets/stylesheets/arctic_admin/components/_dialogs.scss +4 -4
- data/app/assets/stylesheets/arctic_admin/components/_form.scss +2 -2
- data/app/assets/stylesheets/arctic_admin/components/_inputs.scss +4 -4
- data/app/assets/stylesheets/arctic_admin/components/_tabs.scss +4 -4
- data/app/assets/stylesheets/arctic_admin/layouts/_header.scss +3 -3
- data/app/assets/stylesheets/arctic_admin/mixins/_buttons_mixins.scss +8 -5
- data/app/assets/stylesheets/arctic_admin/pages/_form.scss +108 -104
- data/app/assets/stylesheets/arctic_admin/pages/_index.scss +1 -1
- data/app/assets/stylesheets/arctic_admin/variables/_borders.scss +1 -0
- data/app/assets/stylesheets/arctic_admin/variables/_box_shadows.scss +1 -0
- data/app/assets/stylesheets/arctic_admin/variables/_colors.scss +1 -3
- data/app/assets/stylesheets/arctic_admin/variables/_fonts.scss +4 -0
- data/app/assets/stylesheets/arctic_admin/variables/_size.scss +4 -1
- data/app/assets/stylesheets/arctic_admin/variables/_spaces.scss +31 -0
- data/app/assets/stylesheets/arctic_admin/variables/_variables.scss +3 -3
- data/lib/arctic_admin/version.rb +1 -1
- metadata +11 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 88627d337b8e78f39d8a9103b80b04c4387eaf218c82c4d30bc9bdb378e21133
|
|
4
|
+
data.tar.gz: 5972254cc502fd17e2ff6af3add87a01b35d1841cc2b127dda33fe0a8abe0568
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b8c93cdef676d3a1f54a71e554d92028ed4deab42a250bbaaa5f32c33ac95711fa08b4d99cf7c28a3fd35fbdbc562d4c53f5d0c8231ec3dcd99a4c409f46379a
|
|
7
|
+
data.tar.gz: 3e01acbde79f22e4e376ff63aa13302b8b31a6cf744c2389e1064ee72e557f81894d827513010383bb69985840fb2b954505b7e05b3ee58f9417e05c2c68d2a9
|
|
@@ -59,7 +59,9 @@ function addListeners() {
|
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
// left menu sidebar close on any click outside
|
|
62
|
-
|
|
62
|
+
if (menu()) {
|
|
63
|
+
document.body.addEventListener('click', menuClose)
|
|
64
|
+
}
|
|
63
65
|
|
|
64
66
|
// nested menu items toggle
|
|
65
67
|
nestedMenuItems().forEach(
|
|
@@ -81,10 +83,14 @@ function removeListeners() {
|
|
|
81
83
|
}
|
|
82
84
|
|
|
83
85
|
// left menu sidebar toggle with menu button
|
|
84
|
-
menuButton()
|
|
86
|
+
if (menuButton()) {
|
|
87
|
+
menuButton().removeEventListener('click', menuToggle)
|
|
88
|
+
}
|
|
85
89
|
|
|
86
90
|
// left menu sidebar close on any click outside
|
|
87
|
-
|
|
91
|
+
if (menu()) {
|
|
92
|
+
document.body.removeEventListener('click', menuClose)
|
|
93
|
+
}
|
|
88
94
|
|
|
89
95
|
// nested menu items toggle
|
|
90
96
|
nestedMenuItems().forEach(
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
h3 {
|
|
6
6
|
margin: 0 0 10px 0;
|
|
7
7
|
}
|
|
8
|
-
|
|
8
|
+
|
|
9
9
|
.panel_contents .empty {
|
|
10
10
|
margin-bottom: 10px;
|
|
11
11
|
display: inline-block;
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
a[data-method="delete"] {
|
|
34
|
-
@include primary-button($primary-color, white);
|
|
35
34
|
padding: 2px 9px;
|
|
36
35
|
font-size: 12px;
|
|
37
36
|
float: right;
|
|
37
|
+
@include primary-button($primary-color, white);
|
|
38
38
|
}
|
|
39
39
|
}
|
|
40
40
|
|
|
@@ -2,18 +2,18 @@
|
|
|
2
2
|
background-color: #fff;
|
|
3
3
|
padding: 5px;
|
|
4
4
|
border-radius: $border-radius;
|
|
5
|
-
@include box-shadow(0 0 4px 0 rgba(0,0,0,.1));
|
|
6
5
|
z-index: 3!important;
|
|
7
6
|
padding: 8px 10px;
|
|
7
|
+
@include box-shadow($box-shadow);
|
|
8
8
|
|
|
9
9
|
.ui-datepicker-header {
|
|
10
|
-
@include clear-fix();
|
|
11
10
|
margin-bottom: 10px;
|
|
11
|
+
@include clear-fix();
|
|
12
12
|
|
|
13
13
|
.ui-datepicker-prev, .ui-datepicker-next {
|
|
14
|
-
@include primary-button($button-primary-color, #fff);
|
|
15
14
|
padding: 2px 5px;
|
|
16
15
|
font-size: 14px;
|
|
16
|
+
@include primary-button($button-primary-color, #fff);
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
.ui-datepicker-prev {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
.ui-dialog {
|
|
2
2
|
background-color: #fff;
|
|
3
|
-
@include box-shadow($box-shadow);
|
|
4
3
|
border-radius: $border-radius;
|
|
5
4
|
padding: 15px 10px;
|
|
6
5
|
z-index: 1;
|
|
6
|
+
@include box-shadow($box-shadow);
|
|
7
7
|
|
|
8
8
|
&:focus, &:active {
|
|
9
9
|
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
|
@@ -11,13 +11,13 @@
|
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
.ui-button {
|
|
14
|
-
|
|
15
|
-
border: 0;
|
|
14
|
+
border: none;
|
|
16
15
|
margin-right: 5px;
|
|
17
16
|
padding: 5px 10px;
|
|
17
|
+
@include primary-button($primary-color, #fff);
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
.ui-dialog-titlebar-close {
|
|
21
21
|
display: none;
|
|
22
22
|
}
|
|
23
|
-
}
|
|
23
|
+
}
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
.inline-hints {
|
|
42
|
-
margin: 5px 0 20px
|
|
42
|
+
margin: 5px 0 20px $form-margin-left;
|
|
43
43
|
font-size: $font-size;
|
|
44
44
|
font-style: italic;
|
|
45
45
|
}
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
|
|
54
54
|
label.error {
|
|
55
55
|
display: block;
|
|
56
|
-
margin-left:
|
|
56
|
+
margin-left: $form-margin-left;
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
.button.has_many_remove {
|
|
@@ -38,7 +38,6 @@ input[type="number"], textarea {
|
|
|
38
38
|
|
|
39
39
|
input[type="submit"] {
|
|
40
40
|
@include appearance();
|
|
41
|
-
@include primary-button($button-primary-color, white);
|
|
42
41
|
width: 100%;
|
|
43
42
|
padding: 0 12px;
|
|
44
43
|
font-size: 15px;
|
|
@@ -46,6 +45,7 @@ input[type="submit"] {
|
|
|
46
45
|
@include box-shadow(0 1px 0 rgba(0,0,0,.05));
|
|
47
46
|
border: none;
|
|
48
47
|
cursor: pointer;
|
|
48
|
+
@include primary-button($button-primary-color, white);
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
input[type="checkbox"] {
|
|
@@ -56,9 +56,9 @@ input[type="checkbox"] {
|
|
|
56
56
|
border: 1px solid #e6e6e6;
|
|
57
57
|
border-radius: $border-radius;
|
|
58
58
|
box-sizing: border-box;
|
|
59
|
-
@include outline();
|
|
60
|
-
@include transition-button();
|
|
61
59
|
cursor: pointer;
|
|
60
|
+
@include transition-button();
|
|
61
|
+
@include outline();
|
|
62
62
|
|
|
63
63
|
&:checked {
|
|
64
64
|
border-color: $primary-color;
|
|
@@ -74,8 +74,8 @@ input[type="radio"] {
|
|
|
74
74
|
border-radius: 50%;
|
|
75
75
|
margin: 1px 5px 1px 1px;
|
|
76
76
|
display: inline-flex;
|
|
77
|
-
@include outline();
|
|
78
77
|
@include transition-button();
|
|
78
|
+
@include outline();
|
|
79
79
|
|
|
80
80
|
&:checked {
|
|
81
81
|
background-color: $primary-color;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
.nav {
|
|
5
5
|
border-bottom: 1px solid $border-color;
|
|
6
|
-
|
|
6
|
+
|
|
7
7
|
li {
|
|
8
8
|
display: inline-block;
|
|
9
9
|
text-align: center;
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
color: $text-color;
|
|
14
14
|
display: inline-block;
|
|
15
15
|
padding: 15px 25px;
|
|
16
|
-
@include outline();
|
|
17
16
|
@include transition-button();
|
|
17
|
+
@include outline();
|
|
18
18
|
}
|
|
19
|
-
|
|
19
|
+
|
|
20
20
|
&.ui-tabs-active {
|
|
21
21
|
border-bottom: 2px solid $link-primary-color;
|
|
22
22
|
|
|
@@ -30,4 +30,4 @@
|
|
|
30
30
|
.tab-content {
|
|
31
31
|
padding: 10px 20px;
|
|
32
32
|
}
|
|
33
|
-
}
|
|
33
|
+
}
|
|
@@ -47,7 +47,7 @@ body.active_admin.logged_in {
|
|
|
47
47
|
@media screen and (min-width: $x-lg-width) {
|
|
48
48
|
width: $lg-header-width;
|
|
49
49
|
}
|
|
50
|
-
|
|
50
|
+
|
|
51
51
|
#site_title_image {
|
|
52
52
|
height: 100%;
|
|
53
53
|
padding: 6px 0;
|
|
@@ -180,7 +180,7 @@ body.active_admin.logged_in {
|
|
|
180
180
|
}
|
|
181
181
|
|
|
182
182
|
}
|
|
183
|
-
|
|
183
|
+
|
|
184
184
|
@media screen and (min-width: $sm-width) {
|
|
185
185
|
min-width: 60px;
|
|
186
186
|
min-height: 59px;
|
|
@@ -228,8 +228,8 @@ body.active_admin.logged_in {
|
|
|
228
228
|
float: right;
|
|
229
229
|
|
|
230
230
|
.action_item a {
|
|
231
|
-
@include primary-button($button-primary-color, #fff);
|
|
232
231
|
padding: 5px 8px;
|
|
232
|
+
@include primary-button($button-primary-color, #fff);
|
|
233
233
|
}
|
|
234
234
|
}
|
|
235
235
|
|
|
@@ -20,7 +20,7 @@ $bg-tertiary-button-hover: rgba($border-color, .3);;
|
|
|
20
20
|
@mixin primary-button($background-color, $color) {
|
|
21
21
|
background-color: $background-color;
|
|
22
22
|
color: $color;
|
|
23
|
-
border: none;
|
|
23
|
+
border: none;
|
|
24
24
|
@include button();
|
|
25
25
|
|
|
26
26
|
&:hover {
|
|
@@ -28,7 +28,7 @@ $bg-tertiary-button-hover: rgba($border-color, .3);;
|
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
&:active, &:focus {
|
|
31
|
-
background-color: darken($background-color, 10%);
|
|
31
|
+
background-color: darken($background-color, 10%);
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
&:disabled {
|
|
@@ -73,9 +73,12 @@ $bg-tertiary-button-hover: rgba($border-color, .3);;
|
|
|
73
73
|
}
|
|
74
74
|
|
|
75
75
|
@mixin secondary-dropdown($color) {
|
|
76
|
-
@include secondary-button($color);
|
|
77
|
-
padding: 6px 25px 6px 10px;
|
|
78
76
|
position: relative;
|
|
77
|
+
@include secondary-button($color);
|
|
78
|
+
|
|
79
|
+
& {
|
|
80
|
+
padding: 6px 25px 6px 10px; // Preserve padding on Sass > 1.77.6 (See cprodhomme/arctic_admin#123)
|
|
81
|
+
}
|
|
79
82
|
|
|
80
83
|
&:after {
|
|
81
84
|
@include icon($icon-sort-down);
|
|
@@ -84,7 +87,7 @@ $bg-tertiary-button-hover: rgba($border-color, .3);;
|
|
|
84
87
|
}
|
|
85
88
|
|
|
86
89
|
&:active, &:focus {
|
|
87
|
-
background-color: darken($color, 10%);
|
|
90
|
+
background-color: darken($color, 10%);
|
|
88
91
|
color: #fff;
|
|
89
92
|
}
|
|
90
93
|
|
|
@@ -1,120 +1,124 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
@mixin arctic-admin-form() {
|
|
2
|
+
@include sidebar-container();
|
|
3
|
+
|
|
4
|
+
form legend {
|
|
5
|
+
font-weight: normal;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
fieldset.inputs {
|
|
9
|
+
margin-bottom: 20px;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.input {
|
|
13
|
+
.label {
|
|
14
|
+
padding-bottom: 5px;
|
|
15
|
+
text-align: left;
|
|
16
|
+
margin: auto 0;
|
|
17
|
+
padding-top: 8px;
|
|
18
|
+
text-align: right;
|
|
19
|
+
font-size: $font-size;
|
|
20
|
+
|
|
21
|
+
@media screen and (min-width: $sm-width) {
|
|
22
|
+
padding-bottom: 0;
|
|
23
|
+
height: 25px;
|
|
24
|
+
width: $form-margin-left;
|
|
25
|
+
float: left;
|
|
26
|
+
padding-right: 20px;
|
|
27
|
+
}
|
|
11
28
|
}
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
padding-bottom: 5px;
|
|
16
|
-
text-align: left;
|
|
17
|
-
margin: auto 0;
|
|
18
|
-
padding-top: 8px;
|
|
19
|
-
text-align: right;
|
|
20
|
-
font-size: $font-size;
|
|
21
|
-
|
|
22
|
-
@media screen and (min-width: $sm-width) {
|
|
23
|
-
padding-bottom: 0;
|
|
24
|
-
height: 25px;
|
|
25
|
-
width: 25%;
|
|
26
|
-
float: left;
|
|
27
|
-
padding-right: 20px;
|
|
28
|
-
}
|
|
29
|
+
input, textarea {
|
|
30
|
+
@media screen and (min-width: $sm-width) {
|
|
31
|
+
width: $form-input-width;
|
|
29
32
|
}
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
&[type='radio'] {
|
|
36
|
-
width: 15px;
|
|
37
|
-
float: left;
|
|
38
|
-
margin-top: 3px;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
&[type='checkbox'] {
|
|
42
|
-
width: 15px;
|
|
43
|
-
margin: 0 5px -2px 0;
|
|
44
|
-
}
|
|
33
|
+
|
|
34
|
+
&[type='radio'] {
|
|
35
|
+
width: 15px;
|
|
36
|
+
float: left;
|
|
37
|
+
margin-top: 3px;
|
|
45
38
|
}
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
a {
|
|
53
|
-
height: 30px;
|
|
54
|
-
line-height: 30px;
|
|
55
|
-
}
|
|
39
|
+
|
|
40
|
+
&[type='checkbox'] {
|
|
41
|
+
width: 15px;
|
|
42
|
+
margin: 0 5px -2px 0;
|
|
56
43
|
}
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.select2-container {
|
|
47
|
+
@media screen and (min-width: $sm-width) {
|
|
48
|
+
width: $form-input-width !important;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
a {
|
|
60
52
|
height: 30px;
|
|
53
|
+
line-height: 30px;
|
|
61
54
|
}
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
select {
|
|
58
|
+
min-width: $form-input-width;
|
|
59
|
+
height: 30px;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
select[multiple] {
|
|
63
|
+
height: 100px;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.fragment {
|
|
67
|
+
margin-right: 10px;
|
|
68
|
+
|
|
69
|
+
label {
|
|
70
|
+
padding-right: 5px;
|
|
65
71
|
}
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
label {
|
|
71
|
-
padding-right: 5px;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
select {
|
|
75
|
-
min-width: auto;
|
|
76
|
-
}
|
|
72
|
+
|
|
73
|
+
select {
|
|
74
|
+
min-width: auto;
|
|
77
75
|
}
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
label {
|
|
88
|
-
font-size: $font-size;
|
|
89
|
-
cursor: pointer;
|
|
90
|
-
padding: 5px 5px 5px 0;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
input[type='checkbox'] {
|
|
94
|
-
width: 15px;
|
|
95
|
-
margin: 0 5px -2px 0;
|
|
96
|
-
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
&.boolean {
|
|
79
|
+
margin-left: $form-margin-left;
|
|
80
|
+
@include disable-user-select();
|
|
81
|
+
|
|
82
|
+
input {
|
|
83
|
+
width: auto;
|
|
97
84
|
}
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
85
|
+
|
|
86
|
+
label {
|
|
87
|
+
font-size: $font-size;
|
|
88
|
+
cursor: pointer;
|
|
89
|
+
padding: 5px 5px 5px 0;
|
|
101
90
|
}
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
.field_with_errors {
|
|
107
|
-
float: left;
|
|
108
|
-
}
|
|
91
|
+
|
|
92
|
+
input[type='checkbox'] {
|
|
93
|
+
width: 15px;
|
|
94
|
+
margin: 0 5px -2px 0;
|
|
109
95
|
}
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
li.fragment {
|
|
99
|
+
display: inline;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
li.choice {
|
|
103
|
+
margin-left: $form-margin-left;
|
|
104
|
+
|
|
105
|
+
.field_with_errors {
|
|
106
|
+
float: left;
|
|
113
107
|
}
|
|
114
108
|
}
|
|
115
|
-
|
|
116
|
-
.
|
|
117
|
-
padding-left:
|
|
109
|
+
|
|
110
|
+
.inline-errors {
|
|
111
|
+
padding-left: $form-margin-left;
|
|
118
112
|
}
|
|
119
113
|
}
|
|
114
|
+
|
|
115
|
+
.actions {
|
|
116
|
+
padding-left: $form-margin-left;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
body.logged_in {
|
|
121
|
+
&.new, &.edit, &.create, &.update {
|
|
122
|
+
@include arctic-admin-form();
|
|
123
|
+
}
|
|
120
124
|
}
|
|
@@ -97,10 +97,10 @@ body.index {
|
|
|
97
97
|
margin-bottom: -4px;
|
|
98
98
|
|
|
99
99
|
.member_link {
|
|
100
|
-
@include primary-button($button-primary-color, white);
|
|
101
100
|
padding: 4px 8px;
|
|
102
101
|
margin-right: 4px;
|
|
103
102
|
margin-bottom: 4px;
|
|
103
|
+
@include primary-button($button-primary-color, white);
|
|
104
104
|
}
|
|
105
105
|
}
|
|
106
106
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
$border-radius: 3px !default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
$box-shadow: 0 0 4px 0 rgba(0,0,0,0.1) !default;
|
|
@@ -43,8 +43,6 @@ $sidebar-nested-item-hover-background: #e7e7e7 !default;
|
|
|
43
43
|
$text-color: #5a5a5a !default;
|
|
44
44
|
$text-color-important: #526069 !default;
|
|
45
45
|
|
|
46
|
-
$box-shadow: 0 0 4px 0 rgba(0,0,0,0.1) !default;
|
|
47
|
-
|
|
48
46
|
$primary-color: $blue !default;
|
|
49
47
|
$link-primary-color: $primary-color !default;
|
|
50
|
-
$button-primary-color: $primary-color !default;
|
|
48
|
+
$button-primary-color: $primary-color !default;
|
|
@@ -8,5 +8,8 @@ $screen-filter-width: calc(100% - 230px) !default;
|
|
|
8
8
|
$lg-filter-width: 270px !default;
|
|
9
9
|
$lg-screen-filter-width: calc(100% - 270px) !default;
|
|
10
10
|
|
|
11
|
-
$font-size: 14px !default;
|
|
12
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 */
|
data/lib/arctic_admin/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: arctic_admin
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.
|
|
4
|
+
version: 4.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Clément Prod'homme
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-06-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -73,7 +73,7 @@ dependencies:
|
|
|
73
73
|
- !ruby/object:Gem::Version
|
|
74
74
|
version: '6.0'
|
|
75
75
|
description: A responsive theme for Active Admin
|
|
76
|
-
email:
|
|
76
|
+
email:
|
|
77
77
|
executables: []
|
|
78
78
|
extensions: []
|
|
79
79
|
extra_rdoc_files: []
|
|
@@ -134,10 +134,14 @@ files:
|
|
|
134
134
|
- app/assets/stylesheets/arctic_admin/pages/_index.scss
|
|
135
135
|
- app/assets/stylesheets/arctic_admin/pages/_login.scss
|
|
136
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
|
|
137
139
|
- app/assets/stylesheets/arctic_admin/variables/_colors.scss
|
|
140
|
+
- app/assets/stylesheets/arctic_admin/variables/_fonts.scss
|
|
138
141
|
- app/assets/stylesheets/arctic_admin/variables/_icons.scss
|
|
139
142
|
- app/assets/stylesheets/arctic_admin/variables/_media_queries.scss
|
|
140
143
|
- app/assets/stylesheets/arctic_admin/variables/_size.scss
|
|
144
|
+
- app/assets/stylesheets/arctic_admin/variables/_spaces.scss
|
|
141
145
|
- app/assets/stylesheets/arctic_admin/variables/_variables.scss
|
|
142
146
|
- lib/arctic_admin.rb
|
|
143
147
|
- lib/arctic_admin/version.rb
|
|
@@ -147,7 +151,7 @@ licenses:
|
|
|
147
151
|
metadata:
|
|
148
152
|
source_code_uri: https://github.com/cprodhomme/arctic_admin
|
|
149
153
|
changelog_uri: https://github.com/cprodhomme/arctic_admin/releases
|
|
150
|
-
post_install_message:
|
|
154
|
+
post_install_message:
|
|
151
155
|
rdoc_options: []
|
|
152
156
|
require_paths:
|
|
153
157
|
- lib
|
|
@@ -162,8 +166,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
162
166
|
- !ruby/object:Gem::Version
|
|
163
167
|
version: '0'
|
|
164
168
|
requirements: []
|
|
165
|
-
rubygems_version: 3.
|
|
166
|
-
signing_key:
|
|
169
|
+
rubygems_version: 3.5.22
|
|
170
|
+
signing_key:
|
|
167
171
|
specification_version: 4
|
|
168
172
|
summary: Arctic Admin theme for ActiveAdmin
|
|
169
173
|
test_files: []
|