active_admin_theme 1.0.2 → 1.1.3

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
- SHA1:
3
- metadata.gz: df9c446a0ec74050cc7f8b4f8ff9c098b9ca711d
4
- data.tar.gz: 3c5b3802b20d46824c81a55cf9d003ee46384507
2
+ SHA256:
3
+ metadata.gz: 4c5a58d63fd6978092a2957cad443be4806288e30154cc626009ee285c72b458
4
+ data.tar.gz: 57f471d7737f34cc81375e0771eb2dbbae8fe065a3cfb7421c075d0629828a97
5
5
  SHA512:
6
- metadata.gz: 02d4a98f57ca5b39925dd2a97e99af04c16729e9304f37c1463d2bbe143b45c8e49589287373e97bbe89e54ef1744e2d464332d987d307677f5a0aa933da8016
7
- data.tar.gz: 0639b1ad3f9ed165a0c4e138166e83b6d48138f5c0d8e36f48b7c2fd2101095198a884dcef69de9ecf1cebfc0370e6ad89e553fb491a6d1a47e1b2482325f3d6
6
+ metadata.gz: c1197188c6109e85510afcdd65e84e8f17a5bc052ac4c787ba4692b674783ca21a409664137bfebdfc1eb36965ac7b5b110b3b6c3683d6553d9c94639f10f946
7
+ data.tar.gz: 1379505a2afdf784c104006f2b230f9c7b7fecd07d4c13b7f55bcb5c136861037017987db63860b7e18b8d6b5a829ca3a5b625ea2870e0608595e0a9a3c38dc6
@@ -1,4 +1,4 @@
1
- Copyright (c) 2014 Igor Fedoronchuk
1
+ Copyright (c) 2014-2018 Igor Fedoronchuk
2
2
 
3
3
  MIT License
4
4
 
@@ -15,38 +15,38 @@ body.active_admin {
15
15
  }
16
16
  #wrapper {
17
17
  div.tabs {
18
- > ul > li > a {
19
- background-image: none;
20
- box-shadow: none;
21
- text-shadow: none;
22
- box-shadow: none;
23
- margin-bottom: 11px;
24
- border: none;
25
- background-color: $skinMainSecondColor;
26
- color: #ffffff;
27
- margin-right: 5px;
28
- padding: 10px 20px;
18
+ > ul > li > a {
19
+ background-image: none;
20
+ box-shadow: none;
21
+ text-shadow: none;
22
+ box-shadow: none;
23
+ margin-bottom: 11px;
24
+ border: none;
25
+ background-color: $skinMainSecondColor;
26
+ color: #ffffff;
27
+ margin-right: 5px;
28
+ padding: 10px 20px;
29
29
 
30
- -webkit-border-top-left-radius: $skinBorderRadius;
31
- -webkit-border-top-right-radius: $skinBorderRadius;
32
- -moz-border-radius-topleft: $skinBorderRadius;
33
- -moz-border-radius-topright: $skinBorderRadius;
34
- border-top-left-radius: $skinBorderRadius;
35
- border-top-right-radius: $skinBorderRadius;
30
+ -webkit-border-top-left-radius: $skinBorderRadius;
31
+ -webkit-border-top-right-radius: $skinBorderRadius;
32
+ -moz-border-radius-topleft: $skinBorderRadius;
33
+ -moz-border-radius-topright: $skinBorderRadius;
34
+ border-top-left-radius: $skinBorderRadius;
35
+ border-top-right-radius: $skinBorderRadius;
36
36
 
37
- -webkit-border-bottom-left-radius: 0px;
38
- -moz-border-radius-bottomleft: 0px;
39
- border-bottom-left-radius: 0px;
37
+ -webkit-border-bottom-left-radius: 0;
38
+ -moz-border-radius-bottomleft: 0;
39
+ border-bottom-left-radius: 0;
40
40
 
41
- -webkit-border-bottom-right-radius: 0px;
42
- -moz-border-radius-bottomright: 0px;
43
- border-bottom-right-radius: 0px;
41
+ -webkit-border-bottom-right-radius: 0;
42
+ -moz-border-radius-bottomright: 0;
43
+ border-bottom-right-radius: 0;
44
44
  }
45
45
  ul > li.ui-state-active > a {
46
- background-color: #ffffff;
47
- border: 1px solid $skinBorderWindowColor;
48
- border-bottom: 0px;
49
- color: $skinMainSecondColor;
46
+ background-color: #ffffff;
47
+ border: 1px solid $skinBorderWindowColor;
48
+ border-bottom: 0;
49
+ color: $skinMainSecondColor;
50
50
  }
51
51
  div.tab-content {
52
52
  background-color: #ffffff;
@@ -96,7 +96,7 @@ body.active_admin {
96
96
  position: absolute;
97
97
  top: 12px;
98
98
  left: 4px;
99
- background: transparent image-url('active_admin/nested_menu_arrow_dark.gif') no-repeat 0 0;
99
+ background: transparent url($menu-arrow-dark-icon-url) no-repeat 0 0;
100
100
  transform: rotate(-90deg);
101
101
  }
102
102
  }
@@ -138,6 +138,7 @@ body.active_admin {
138
138
  @include rounded($skinBorderRadius);
139
139
  background-color: $skinMainSecondColor;
140
140
  border: none;
141
+ padding: 10px 20px;
141
142
  color: #ffffff;
142
143
  font-weight: 600;
143
144
  &:hover {
@@ -155,12 +156,12 @@ body.active_admin {
155
156
  border-color: $skinMainFirstColor transparent;
156
157
  }
157
158
  ul.dropdown_menu_list {
158
- box-shadow:none;
159
+ box-shadow: none;
159
160
  li {
160
161
  a {
161
162
  background-color: #ffffff;
162
163
  color: $skinMainFirstColor;
163
- border-radius: 0px;
164
+ border-radius: 0;
164
165
  &:hover {
165
166
  background-color: $skinMainSecondColor;
166
167
  color: #ffffff;
@@ -226,12 +227,12 @@ body.active_admin {
226
227
  border-color: $skinMainFirstColor transparent;
227
228
  }
228
229
  ul.dropdown_menu_list {
229
- box-shadow:none;
230
+ box-shadow: none;
230
231
  li {
231
232
  a {
232
233
  background-color: #ffffff;
233
234
  color: $skinMainFirstColor;
234
- border-radius: 0px;
235
+ border-radius: 0;
235
236
  &:hover {
236
237
  background-color: $skinMainSecondColor;
237
238
  color: #ffffff;
@@ -265,13 +266,13 @@ body.active_admin {
265
266
  border-color: $skinMainFirstColor transparent;
266
267
  }
267
268
  ul.dropdown_menu_list {
268
- box-shadow:none;
269
+ box-shadow: none;
269
270
  li {
270
271
  a {
271
272
  background-color: #ffffff;
272
273
  box-shadow: none;
273
274
  color: $skinMainFirstColor;
274
- border-radius: 0px;
275
+ border-radius: 0;
275
276
  text-shadow: none;
276
277
  &:hover {
277
278
  background-color: $skinMainSecondColor;
@@ -298,7 +299,7 @@ body.active_admin {
298
299
  }
299
300
  }
300
301
  }
301
- ul.scopes {
302
+ ul.scopes, div.scopes > ul {
302
303
  li {
303
304
  a {
304
305
  background-image: none;
@@ -497,7 +498,7 @@ form fieldset.inputs {
497
498
  div.ui-datepicker-header {
498
499
  background-image: none;
499
500
  background-color: $skinMainSecondColor;
500
- border-bottom:none;
501
+ border-bottom: none;
501
502
  div.ui-datepicker-title {
502
503
  span {
503
504
  background-image: none;
@@ -553,6 +554,7 @@ form fieldset.inputs {
553
554
  color: #ffffff;
554
555
  border: none;
555
556
  padding: 8px 15px;
557
+ margin-top: 0;
556
558
  font-weight: 400;
557
559
 
558
560
  -webkit-border-top-left-radius: $skinBorderRadius;
@@ -753,21 +755,25 @@ form.filter_form .filter_form_field.filter_date_range .seperator {
753
755
  }
754
756
 
755
757
  //filter select box border radius
756
- .filter_form_field select{
758
+ .filter_form_field select {
757
759
  border-radius: 3px;
758
760
  }
759
761
 
760
762
  //radio button color change
761
763
  input[type='radio'] {
762
764
  &:before {
763
- content:'';
764
- display:block;
765
- width:50%;
766
- height:50%;
767
- margin: 20% auto;
768
- border-radius:50%;
765
+ content: '';
766
+ display: block;
767
+ width: 50%;
768
+ height: 50%;
769
+ margin: 20% auto;
770
+ border-radius: 50%;
769
771
  }
770
- &:checked:before{
772
+ &:checked:before {
771
773
  background: $skinMainSecondColor;
772
774
  }
773
775
  }
776
+
777
+ .attributes_table table td .status_tag.empty {
778
+ color: #ffffff;
779
+ }
@@ -1,3 +1,3 @@
1
1
  module ActiveAdminTheme
2
- VERSION = "1.0.2"
2
+ VERSION = "1.1.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_admin_theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Igor Fedoronchuk
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-04-29 00:00:00.000000000 Z
12
+ date: 2020-07-20 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -52,7 +52,7 @@ files:
52
52
  - README.md
53
53
  - Rakefile
54
54
  - active_admin_theme.gemspec
55
- - app/assets/stylesheets/wigu/active_admin_theme.css.scss
55
+ - app/assets/stylesheets/wigu/active_admin_theme.scss
56
56
  - img/wigu.png
57
57
  - lib/active_admin_theme.rb
58
58
  - lib/active_admin_theme/version.rb
@@ -75,8 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubyforge_project:
79
- rubygems_version: 2.4.6
78
+ rubygems_version: 3.0.3
80
79
  signing_key:
81
80
  specification_version: 4
82
81
  summary: Flat design for ActiveAdmin