thecore_ui_rails_admin 3.0.12 → 3.0.13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/rails_admin/custom/thecore/ui.js +2 -1
- data/app/assets/javascripts/rails_admin/custom/ui.js +0 -11
- data/app/assets/stylesheets/rails_admin/custom/mixins.scss +2 -2
- data/app/assets/stylesheets/rails_admin/custom/theming.scss +4 -24
- data/app/assets/stylesheets/rails_admin/custom/variables.scss +2 -54
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c711c3a9f906b2da25d6184b2f50f657e54eb6cdc736f3572387a9dee498c4f8
|
4
|
+
data.tar.gz: c03aeca63ba413f7f791ea9ac7af1592f008144b5f384691c4aff07312b039b0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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'
|
@@ -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
|
-
|
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
|
-
|
22
|
-
|
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.
|
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
|
+
date: 2023-02-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thecore_ui_commons
|