thecore_ui_rails_admin 3.0.3 → 3.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f654520a6c952f5691e5708ac9c6127013e90d24cd52904eddbfb1aa01ac5ee1
4
- data.tar.gz: a1902463457654cd52d851ede232003d63938b3b8748dd23830883e7d4ab31cd
3
+ metadata.gz: 6827c2810fc2f7afb621c44eee97dcfb506148451544c1106313fae22c6ae09e
4
+ data.tar.gz: 9b0077aa12e523f73750d09729aab4bd42ac98718127c5cbf3d074fb35fb9cfb
5
5
  SHA512:
6
- metadata.gz: ac7d90698ecea0d96652ac59e1189e8b55db7f3e25b2e2ca69de6f7c60a83a6f67bfc945133e28d162423cdc5c97cf836071f951745dd48fdb1f953d23e064ef
7
- data.tar.gz: 21c039f71daae9e9fe061b6c581513404f1defdd2406f480db879d32eae2a0880419d3ee5c58a31952e1351bea4210d91d6adb0ecd8253e0827062b778ad77c9
6
+ metadata.gz: 3d56845c9d9f607d9339aaf8b33251d734c76871ae18a68ae0f89997a8e4eddf8b0eb83d34351bcc63f853492a476bcf3bcf667ae5407b7ef05e58375301878f
7
+ data.tar.gz: ef9636a36fecdbe119781d35629e3c29d0e9aa0db51cbe515ee4c1508e87e532502cf85865fc78dd280cc3223128e05e29bc2b0b21fe2e2689fc97dd51fe3a47
@@ -1,23 +1 @@
1
- // Override this file in your Thcore based application to add specific styles
2
- .alert {
3
- position: absolute;
4
- bottom: 1em !important;
5
- top: auto !important;
6
- right: 2.5em !important;
7
- width: auto !important;
8
- z-index: 9999 !important;
9
- border-radius: 2em !important;
10
- animation: hideMe 5s 1;
11
- animation-fill-mode: forwards;
12
- animation-delay: 2s;
13
- }
14
-
15
- @keyframes hideMe {
16
- 0% {
17
- opacity: 1;
18
- }
19
-
20
- 100% {
21
- opacity: 0;
22
- }
23
- }
1
+ // Override this file in your Thcore based application to add specific styles
@@ -14,4 +14,27 @@
14
14
 
15
15
  /* Thecore Theming */
16
16
 
17
+ .alert {
18
+ position: absolute;
19
+ bottom: 1em !important;
20
+ top: auto !important;
21
+ right: 2.5em !important;
22
+ width: auto !important;
23
+ z-index: 9999 !important;
24
+ border-radius: 2em !important;
25
+ animation: hideMe 5s 1;
26
+ animation-fill-mode: forwards;
27
+ animation-delay: 2s;
28
+ }
29
+
30
+ @keyframes hideMe {
31
+ 0% {
32
+ opacity: 1;
33
+ }
34
+
35
+ 100% {
36
+ opacity: 0;
37
+ }
38
+ }
39
+
17
40
  @import 'thecore/theming';
@@ -13,36 +13,23 @@
13
13
 
14
14
  $link-color: #F0F;
15
15
  */
16
- <%
17
- @text_color = Settings.ns(:theme).text_color
18
- @accents_color = Settings.ns(:theme).accents_color
19
- @background_color = Settings.ns(:theme).background_color
20
- @main_color = Settings.ns(:theme).main_color
21
- @shadows_color = Settings.ns(:theme).shadows_color
22
-
23
- @neutral_color = Settings.ns(:theme).neutral_color
24
- @success_color = Settings.ns(:theme).success_color
25
- @info_color = Settings.ns(:theme).info_color
26
- @danger_color = Settings.ns(:theme).danger_color
27
- @warning_color = Settings.ns(:theme).warning_color
28
- %>
29
16
  /* Thecore Variables */
30
17
  //== Colors
31
18
  //
32
19
  //## Gray and brand colors for use across Bootstrap.
33
20
 
34
- $gray-base: <%=@neutral_color%> !default;
21
+ $gray-base: #999999 !default;
35
22
  $gray-darker: lighten($gray-base, 13.5%) !default; // #222
36
23
  $gray-dark: lighten($gray-base, 20%) !default; // #333
37
24
  $gray: lighten($gray-base, 33.5%) !default; // #555
38
25
  $gray-light: lighten($gray-base, 46.7%) !default; // #777
39
26
  $gray-lighter: lighten($gray-base, 93.5%) !default; // #eee
40
27
 
41
- $brand-primary: darken(<%=@main_color%>, 6.5%) !default; // #337ab7
42
- $brand-success: <%=@success_color%> !default;
43
- $brand-info: <%=@info_color%> !default;
44
- $brand-warning: <%=@warning_color%> !default;
45
- $brand-danger: <%=@danger_color%> !default;
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;
46
33
 
47
34
 
48
35
  //== Scaffolding
@@ -77,9 +64,9 @@ body.rails_admin .sidebar.btn-toggle-nav .btn-toggle-nav > li > a {
77
64
  }
78
65
 
79
66
  .btn-info {
80
- color: <%=@text_color%> !important;
81
- background-color: <%=@background_color%> !important;
82
- border-color: <%=@background_color%> !important;
67
+ color: #FFEAD0 !important;
68
+ background-color: #96616B !important;
69
+ border-color: #96616B !important;
83
70
  }
84
71
 
85
72
  @import '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.3
4
+ version: 3.0.5
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-06 00:00:00.000000000 Z
11
+ date: 2023-02-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thecore_ui_commons
@@ -99,7 +99,7 @@ files:
99
99
  - app/assets/stylesheets/rails_admin/custom/thecore/theming.scss
100
100
  - app/assets/stylesheets/rails_admin/custom/thecore/variables.scss
101
101
  - app/assets/stylesheets/rails_admin/custom/theming.scss
102
- - app/assets/stylesheets/rails_admin/custom/variables.scss.erb
102
+ - app/assets/stylesheets/rails_admin/custom/variables.scss
103
103
  - app/controllers/pages_controller.rb
104
104
  - app/helpers/devise_bootstrap_errors_helper.rb
105
105
  - app/helpers/thecore_helper.rb