thecore_ui_rails_admin 3.0.12 → 3.0.13

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0b4f47a1218641762d864b9ed293708c712b6054696b717fae0decc75a4d50c8
4
- data.tar.gz: ef495c99d1c9e130d92f9ff84d01e73ababa863bc389a31e30c3ed53fcab2387
3
+ metadata.gz: c711c3a9f906b2da25d6184b2f50f657e54eb6cdc736f3572387a9dee498c4f8
4
+ data.tar.gz: c03aeca63ba413f7f791ea9ac7af1592f008144b5f384691c4aff07312b039b0
5
5
  SHA512:
6
- metadata.gz: 0c86b9ac2cc566486d70f036373eb503eca1e12c9c7bbef67d62fc8ad61b777db93c2888cf76a2b8f5423e292fc8e50e2129e33bee3d56b87b7959680009c3d5
7
- data.tar.gz: 03c76ce8ac92d90933e9cd800c244a7e801bbd8b5fecb6f09edefba7b6ff0799457d5423b33d8e465071c54272ea92b0cff99e923b0e82914a5a8fbfeff73168
6
+ metadata.gz: 497a295e94aba68575faa19311681f0644667f5b56f5cf0272eb13bd2a0fec0f3c5b054f53437791a3fd1a3ff7c0505086dbd2b055f948b0597b089f93fa1d00
7
+ data.tar.gz: e9c61ccceacd3542c689fa7cf5dc54fe924432facb6e4aa87c598c8eccac400487362dc8bfe0dfbac10c3183bfb8495eb4c6ef8fe0c075aea4b63f2c87e36c06
@@ -1 +1,2 @@
1
- // override this file in your thecore based application to add custom behaviour
1
+ // override this file in your thecore based application to add custom behaviour
2
+ console.log("Is this overridden")
@@ -7,15 +7,4 @@ const adjustIframe = function(obj) {
7
7
  obj.style.height = obj.contentWindow.document.body.scrollHeight + 'px';
8
8
  };
9
9
 
10
- // // Re evaluate at each iteration
11
- // $(document).on('rails_admin.dom_ready', function () {
12
- // // If the page loaded has a tag like <span class="hide-breadcrumb hide-toolbar"></span>
13
- // // then hide the elements
14
- // if ($(".hide-breadcrumb").length) $(".breadcrumb").hide()
15
- // else $(".breadcrumb").show()
16
-
17
- // if ($(".hide-toolbar").length) $(".breadcrumb + .nav.nav-tabs").hide()
18
- // else $(".breadcrumb + .nav.nav-tabs").show()
19
- // });
20
-
21
10
  //= require 'rails_admin/custom/thecore/ui'
@@ -12,5 +12,5 @@
12
12
 
13
13
  /* Thecore Mixins */
14
14
 
15
- @import 'thecore/selectize.default.min';
16
- @import 'thecore/mixins';
15
+ @import 'rails_admin/custom/thecore/selectize.default.min';
16
+ @import 'rails_admin/custom/thecore/mixins';
@@ -15,28 +15,8 @@
15
15
  /* Thecore Theming */
16
16
 
17
17
  @import 'thecore_ui_commons';
18
+ @import 'rails_admin/custom/variables';
19
+ @import 'rails_admin/custom/mixins';
20
+ @import 'thecore_ui_commons/alerts';
18
21
 
19
- .alert {
20
- position: absolute;
21
- bottom: 1em !important;
22
- top: auto !important;
23
- right: 2.5em !important;
24
- width: auto !important;
25
- z-index: 9999 !important;
26
- border-radius: 2em !important;
27
- animation: hideMe 5s 1;
28
- animation-fill-mode: forwards;
29
- animation-delay: 2s;
30
- }
31
-
32
- @keyframes hideMe {
33
- 0% {
34
- opacity: 1;
35
- }
36
-
37
- 100% {
38
- opacity: 0;
39
- }
40
- }
41
-
42
- @import 'thecore/theming';
22
+ @import 'rails_admin/custom/thecore/theming';
@@ -15,58 +15,6 @@
15
15
  */
16
16
  /* Thecore Variables */
17
17
  //== Colors
18
- //
19
- //## Gray and brand colors for use across Bootstrap.
20
18
 
21
- $gray-base: #999999 !default;
22
- $gray-darker: lighten($gray-base, 13.5%) !default; // #222
23
- $gray-dark: lighten($gray-base, 20%) !default; // #333
24
- $gray: lighten($gray-base, 33.5%) !default; // #555
25
- $gray-light: lighten($gray-base, 46.7%) !default; // #777
26
- $gray-lighter: lighten($gray-base, 93.5%) !default; // #eee
27
-
28
- $brand-primary: darken(#37505C, 6.5%) !default; // #337ab7
29
- $brand-success: #37BC9B !default;
30
- $brand-info: #CCCCCC !default;
31
- $brand-warning: #F6BB42 !default;
32
- $brand-danger: #E9573F !default;
33
-
34
-
35
- //== Scaffolding
36
- //
37
- //## Settings for some of the most global styles.
38
-
39
- //** Background color for `<body>`.
40
- $body-bg: #fff !default;
41
- //** Global text color on `<body>`.
42
- $text-color: $gray-dark !default;
43
-
44
- //** Global textual link color.
45
- $link-color: $brand-primary !default;
46
- //** Link hover color set via `darken()` function.
47
- $link-hover-color: darken($link-color, 15%) !default;
48
- //** Link hover decoration.
49
- $link-hover-decoration: underline !default;
50
-
51
- nav.bg-primary {
52
- background-color: $brand-primary !important;
53
- }
54
-
55
- body.rails_admin .sidebar.btn-toggle-nav .btn-toggle-nav > li > a {
56
- &:hover, &.active {
57
- background-color: $brand-primary !important;
58
- }
59
- }
60
-
61
- .btn-primary {
62
- background-color: $brand-primary !important;
63
- border-color: $brand-primary !important;
64
- }
65
-
66
- .btn-info {
67
- color: #FFEAD0 !important;
68
- background-color: #96616B !important;
69
- border-color: #96616B !important;
70
- }
71
-
72
- @import 'thecore/variables';
19
+ @import 'thecore_ui_commons/variables';
20
+ @import 'rails_admin/custom/thecore/variables';
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thecore_ui_rails_admin
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.12
4
+ version: 3.0.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gabriele Tassoni
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-02-11 00:00:00.000000000 Z
11
+ date: 2023-02-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thecore_ui_commons