arctic_admin 4.2.2 → 4.2.6
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/README.md +1 -1
- data/app/assets/stylesheets/arctic_admin/_base.scss +1 -1
- data/app/assets/stylesheets/arctic_admin/_main.scss +1 -1
- data/app/assets/stylesheets/arctic_admin/components/_date_picker.scss +1 -1
- data/app/assets/stylesheets/arctic_admin/components/_inputs.scss +1 -1
- data/app/assets/stylesheets/arctic_admin/components/_pagination.scss +2 -2
- data/app/assets/stylesheets/arctic_admin/components/_tabs.scss +2 -2
- data/app/assets/stylesheets/arctic_admin/components/_toggle.scss +7 -3
- data/app/assets/stylesheets/arctic_admin/layouts/_filter.scss +14 -5
- data/app/assets/stylesheets/arctic_admin/layouts/_header.scss +1 -1
- data/app/assets/stylesheets/arctic_admin/layouts/_sidebar.scss +2 -2
- data/app/assets/stylesheets/arctic_admin/pages/_index.scss +4 -4
- data/app/assets/stylesheets/arctic_admin/variables/_colors.scss +2 -0
- data/lib/arctic_admin/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2a746612b0e01e0e601cd1db54b7c74080558bde92142f757fdabb7f126fc93a
|
4
|
+
data.tar.gz: d48579407d4b36559ddfb52ddc00eba3d5f8af03d826a63a30a36c099f00dcf7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1aa6be26cacf2c287da3ab039326d0fa84df8ca57a6cec899dccaffcd8de8a9d6a588780f3f2c485f0d82e0903d6853f1c5c062b5cc47359e5e676dff6b4e7fa
|
7
|
+
data.tar.gz: 163ea4784e203dd19046b27d2aadacc3842561386675109909325c1de7d3c4b6003699496e4c51b7c5110d230566549e7d7516cb77a5222fd7b3ab0e3d9a996d
|
data/README.md
CHANGED
@@ -12,11 +12,11 @@
|
|
12
12
|
@include transition-button();
|
13
13
|
|
14
14
|
&:hover {
|
15
|
-
color: $primary-color;
|
15
|
+
color: $link-primary-color;
|
16
16
|
}
|
17
17
|
}
|
18
18
|
.page.current {
|
19
|
-
background-color: $primary-color;
|
19
|
+
background-color: $link-primary-color;
|
20
20
|
color: #fff;
|
21
21
|
border-radius: $border-radius;
|
22
22
|
padding: .3rem .4rem;
|
@@ -3,16 +3,20 @@ $toggle-height: 20px !default;
|
|
3
3
|
$toggle-offset: 3px !default;
|
4
4
|
|
5
5
|
$toggle-outer-default: #ddd !default;
|
6
|
-
$toggle-outer-active: $primary-color !default;
|
6
|
+
$toggle-outer-active: $link-primary-color !default;
|
7
7
|
$toggle-inner-default: #fff !default;
|
8
8
|
$toggle-inner-active: #fff !default;
|
9
9
|
|
10
10
|
$toggle-transition: 200ms ease-out !default;
|
11
11
|
|
12
12
|
.toggle-bool-switches-container {
|
13
|
-
|
13
|
+
display: flex;
|
14
14
|
text-align: left;
|
15
15
|
|
16
|
+
span {
|
17
|
+
line-height: 0;
|
18
|
+
}
|
19
|
+
|
16
20
|
.toggle-bool-switch {
|
17
21
|
// reset style
|
18
22
|
background-image: none;
|
@@ -57,7 +61,7 @@ $toggle-transition: 200ms ease-out !default;
|
|
57
61
|
// reset style
|
58
62
|
background-image: none;
|
59
63
|
//
|
60
|
-
background: $primary-color;
|
64
|
+
background: $link-primary-color;
|
61
65
|
|
62
66
|
&::before {
|
63
67
|
// reset style
|
@@ -11,6 +11,8 @@
|
|
11
11
|
|
12
12
|
.sidebar_section {
|
13
13
|
padding: 15px 20px;
|
14
|
+
overflow-y: scroll;
|
15
|
+
max-height: 80vh;
|
14
16
|
|
15
17
|
h3 {
|
16
18
|
margin: 0 0 10px 0;
|
@@ -25,15 +27,15 @@
|
|
25
27
|
margin-bottom: 10px;
|
26
28
|
|
27
29
|
input, select {
|
28
|
-
height:
|
30
|
+
height: 36px;
|
29
31
|
padding: 3px 5px;
|
30
|
-
font-size:
|
32
|
+
font-size: 14px;
|
31
33
|
}
|
32
34
|
}
|
33
35
|
|
34
36
|
.select_and_search {
|
35
37
|
input, select {
|
36
|
-
width:
|
38
|
+
width: 50%;
|
37
39
|
display: inline-block;
|
38
40
|
}
|
39
41
|
|
@@ -47,12 +49,12 @@
|
|
47
49
|
}
|
48
50
|
|
49
51
|
.filter_date_range input {
|
50
|
-
width:
|
52
|
+
width: 50%;
|
51
53
|
display: inline-block;
|
52
54
|
|
53
55
|
// consistent look of all filters
|
54
56
|
&:nth-child(2) {
|
55
|
-
float:
|
57
|
+
float: left;
|
56
58
|
}
|
57
59
|
}
|
58
60
|
|
@@ -79,3 +81,10 @@
|
|
79
81
|
margin-top: 1rem;
|
80
82
|
}
|
81
83
|
}
|
84
|
+
|
85
|
+
// fix pour search select filter de ActiveAdmin_Addons
|
86
|
+
.search_select_filter, .filter_boolean {
|
87
|
+
.select2.select2-container {
|
88
|
+
width: 100% !important;
|
89
|
+
}
|
90
|
+
}
|
@@ -29,7 +29,7 @@ body.index {
|
|
29
29
|
}
|
30
30
|
|
31
31
|
.dropdown_menu_button{
|
32
|
-
@include secondary-dropdown($primary-color);
|
32
|
+
@include secondary-dropdown($button-primary-color);
|
33
33
|
}
|
34
34
|
|
35
35
|
.dropdown_menu_list {
|
@@ -47,7 +47,7 @@ body.index {
|
|
47
47
|
justify-content: right;
|
48
48
|
|
49
49
|
a {
|
50
|
-
@include secondary-button($primary-color);
|
50
|
+
@include secondary-button($button-primary-color);
|
51
51
|
}
|
52
52
|
|
53
53
|
.index {
|
@@ -97,7 +97,7 @@ body.index {
|
|
97
97
|
margin-bottom: -4px;
|
98
98
|
|
99
99
|
.member_link {
|
100
|
-
@include primary-button($primary-color, white);
|
100
|
+
@include primary-button($button-primary-color, white);
|
101
101
|
padding: 4px 8px;
|
102
102
|
margin-right: 4px;
|
103
103
|
margin-bottom: 4px;
|
@@ -106,7 +106,7 @@ body.index {
|
|
106
106
|
|
107
107
|
.scopes {
|
108
108
|
.scope {
|
109
|
-
@include group-button($primary-color);
|
109
|
+
@include group-button($button-primary-color);
|
110
110
|
|
111
111
|
a {
|
112
112
|
margin-right: .25rem;
|
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.2.
|
4
|
+
version: 4.2.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Clément Prod'homme
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-10-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -47,7 +47,7 @@ dependencies:
|
|
47
47
|
version: 1.1.0
|
48
48
|
- - "<"
|
49
49
|
- !ruby/object:Gem::Version
|
50
|
-
version: '
|
50
|
+
version: '4.0'
|
51
51
|
type: :runtime
|
52
52
|
prerelease: false
|
53
53
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -57,7 +57,7 @@ dependencies:
|
|
57
57
|
version: 1.1.0
|
58
58
|
- - "<"
|
59
59
|
- !ruby/object:Gem::Version
|
60
|
-
version: '
|
60
|
+
version: '4.0'
|
61
61
|
- !ruby/object:Gem::Dependency
|
62
62
|
name: font-awesome-sass
|
63
63
|
requirement: !ruby/object:Gem::Requirement
|