cm-admin 1.1.4 → 1.1.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/Gemfile.lock +1 -1
- data/app/assets/config/cm_admin_manifest.js +2 -1
- data/app/assets/fonts/fa-brands-400.ttf +0 -0
- data/app/assets/fonts/fa-brands-400.woff2 +0 -0
- data/app/assets/fonts/fa-regular-400.ttf +0 -0
- data/app/assets/fonts/fa-regular-400.woff2 +0 -0
- data/app/assets/fonts/fa-solid-900.ttf +0 -0
- data/app/assets/fonts/fa-solid-900.woff2 +0 -0
- data/app/assets/fonts/fa-v4compatibility.ttf +0 -0
- data/app/assets/fonts/fa-v4compatibility.woff2 +0 -0
- data/app/assets/javascripts/cm_admin/scaffolds.js +2 -0
- data/app/assets/stylesheets/cm_admin/base/auth.scss +5 -0
- data/app/assets/stylesheets/cm_admin/base/show.scss +8 -14
- data/app/assets/stylesheets/cm_admin/base/sidebar.scss +5 -0
- data/app/assets/stylesheets/cm_admin/cm_admin.css.scss +2 -1
- data/app/assets/stylesheets/cm_admin/components/_input.scss +6 -6
- data/app/assets/stylesheets/cm_admin/dependency/fontawesome.all.css +7831 -0
- data/app/javascript/stylesheets/cm_admin/application.scss +1 -1
- data/app/views/cm_admin/main/_associated_table.html.slim +10 -8
- data/app/views/cm_admin/main/_table.html.slim +2 -2
- data/app/views/cm_admin/main/_top_navbar.html.slim +2 -2
- data/app/views/cm_admin/main/edit.html.slim +1 -4
- data/app/views/layouts/_left_sidebar_nav.html.slim +1 -1
- data/lib/cm_admin/models/column.rb +4 -3
- data/lib/cm_admin/models/export.rb +22 -21
- data/lib/cm_admin/version.rb +1 -1
- data/lib/cm_admin/view_helpers/form_field_helper.rb +2 -2
- data/lib/cm_admin/view_helpers.rb +5 -5
- data/package-lock.json +21 -21
- data/yarn.lock +12 -19
- metadata +11 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 01cfdef16d888507aaaa1969921502f28a3f5f7af5c80f29ef4cde88975805f9
|
4
|
+
data.tar.gz: 6d257af43f68b2d5ab7b57162724a91b1494946d02e2fe1536531d5d0363bb6b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3cb0fb31de297ecf1bb914e891188a72f6c2fd95d4b0ef05adaa99c36a9c15d3b8f2ad167e35c6ba65e5bd515951ee0474f2027df64aa95a31a4d7dd03fd29d9
|
7
|
+
data.tar.gz: 97119da3716c2be594af5cf3207eb830e13b32d79c15e3286a3abda3616c863a1a5439b94553ac9bfe1c56452d76cd9c9993893d6d1359541c9f366cf02ca8b2
|
data/Gemfile.lock
CHANGED
@@ -1 +1,2 @@
|
|
1
|
-
//= link_tree ../javascripts/cm_admin
|
1
|
+
//= link_tree ../javascripts/cm_admin
|
2
|
+
//= link_tree ../fonts
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
.show-page {
|
4
4
|
overflow: auto;
|
5
|
-
|
5
|
+
|
6
6
|
&__tabs {
|
7
7
|
.cm-tabs-bar {
|
8
8
|
background-color: $white;
|
@@ -48,26 +48,20 @@
|
|
48
48
|
border-radius: $radius-4;
|
49
49
|
}
|
50
50
|
.info-split {
|
51
|
-
display:
|
51
|
+
display: grid;
|
52
|
+
grid-template-columns: 140px 1fr;
|
53
|
+
grid-column-gap: 24px;
|
52
54
|
margin-bottom: 24px;
|
53
55
|
&:nth-last-child(1) {
|
54
56
|
margin-bottom: 0;
|
55
57
|
}
|
56
58
|
&__lhs {
|
57
|
-
|
58
|
-
|
59
|
-
@include font($size: $t4-text, $color: $ink-lighter-clr);
|
60
|
-
line-height: 22px;
|
61
|
-
margin: 0;
|
62
|
-
}
|
59
|
+
@include font($size: $t4-text, $color: $ink-lighter-clr);
|
60
|
+
line-height: 22px;
|
63
61
|
}
|
64
62
|
&__rhs {
|
65
|
-
|
66
|
-
|
67
|
-
@include font($size: $t4-text, $color: $primary-text-clr);
|
68
|
-
line-height: 19px;
|
69
|
-
margin: 0;
|
70
|
-
}
|
63
|
+
@include font($size: $t4-text, $color: $primary-text-clr);
|
64
|
+
line-height: 19px;
|
71
65
|
}
|
72
66
|
}
|
73
67
|
}
|
@@ -198,6 +198,11 @@
|
|
198
198
|
.auth-option {
|
199
199
|
padding: 8px 0;
|
200
200
|
.auth-link {
|
201
|
+
background: none;
|
202
|
+
border: none;
|
203
|
+
width: 100%;
|
204
|
+
text-align: left;
|
205
|
+
padding: 0;
|
201
206
|
display: block;
|
202
207
|
@include font($size: $t4-text, $color: $primary-text-clr);
|
203
208
|
line-height: 22px;
|
@@ -117,8 +117,8 @@
|
|
117
117
|
cursor: pointer;
|
118
118
|
}
|
119
119
|
}
|
120
|
-
|
121
|
-
.upload-placeholder-1 {
|
120
|
+
|
121
|
+
.upload-placeholder-1 {
|
122
122
|
@include font($size: $t4-text, $color: $ink-lighter-clr, $weight: 600);
|
123
123
|
}
|
124
124
|
.upload-placeholder-2 {
|
@@ -161,7 +161,7 @@ input.cm-checkbox[type="checkbox"] {
|
|
161
161
|
}
|
162
162
|
&:checked:after {
|
163
163
|
background: $brand-color;
|
164
|
-
content: "\
|
164
|
+
content: "\f00c";
|
165
165
|
font-family: FontAwesome !important;
|
166
166
|
color: $white;
|
167
167
|
border: none;
|
@@ -173,7 +173,7 @@ input.cm-checkbox[type="checkbox"] {
|
|
173
173
|
}
|
174
174
|
&:checked:after {
|
175
175
|
background: $grey-light-clr;
|
176
|
-
content: "\
|
176
|
+
content: "\f00c";
|
177
177
|
font-family: FontAwesome !important;
|
178
178
|
color: $white;
|
179
179
|
border: none;
|
@@ -262,7 +262,7 @@ input.cm-radio[type="radio"] {
|
|
262
262
|
right: 0;
|
263
263
|
bottom: 0;
|
264
264
|
background: $grey-light-clr;
|
265
|
-
transition: all .2s linear;
|
265
|
+
transition: all 0.2s linear;
|
266
266
|
}
|
267
267
|
|
268
268
|
.slider:before {
|
@@ -273,7 +273,7 @@ input.cm-radio[type="radio"] {
|
|
273
273
|
left: 2px;
|
274
274
|
bottom: 2px;
|
275
275
|
background-color: $white;
|
276
|
-
transition: all .2s linear;
|
276
|
+
transition: all 0.2s linear;
|
277
277
|
}
|
278
278
|
|
279
279
|
input:checked + .slider {
|