active_admin_theme 1.0.3 → 1.1.4

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: b6c55cc890fe3a503cde0113d59762b9ed2c7df4
4
- data.tar.gz: 382e4ba4e4ab1fe8596c93eb5fb0bfb1149c717a
2
+ SHA256:
3
+ metadata.gz: ec31976cbdf4f20ee07f9827db94a40d42023a0581933461fb7976e75f760502
4
+ data.tar.gz: af024287164f0e34afc878063dfa44bb2f7835ff948be29bd0f8c5db9d41af22
5
5
  SHA512:
6
- metadata.gz: 1d1f1416eee7f2521c8382f0f6dc35afbea32bd24b171266ac1699db4155cd9da05233cbd86e0b500842d7c2a363f62caafe71c5ff25a177b7fd8433b5065339
7
- data.tar.gz: 7ec1d6d42b874c96e6240d1457ad7937eefb784af7927a6b4ef62f0e48d87483d90e24d232754039fd056bdaf43789a05e1b34f3228d16a239b8c7b9ed1c2ed3
6
+ metadata.gz: a61c3d78bd118172f63355da1cfdf00033d5acd8b53b4f94ad835bb349e683a68acebae3daa95bcdd8d451aea2f27e9cd7ce486c57954f05ae5a05757f126cc3
7
+ data.tar.gz: 5b18fdcb6679185cc33b7e52ad60640ccc51cafd99ba633b564f3349ce1cb7c372935e73cd917e2eef032e240e5892fb7a9987945581cdcf65c0c9ca76838a9f
data/LICENSE.txt CHANGED
@@ -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;
@@ -439,7 +440,7 @@ form fieldset.buttons li.cancel a, form fieldset.actions li.cancel a, form.filte
439
440
  text-shadow: none;
440
441
  background-color: #ffffff;
441
442
  @include rounded($skinBorderRadius);
442
- padding: 10px 20px;
443
+ padding: 9px 20px 9px 20px;
443
444
  border-color: #E4E4E4;
444
445
  &:hover {
445
446
  background-image: none!important;
@@ -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;
@@ -693,7 +695,7 @@ form fieldset > ol > li fieldset ol li {
693
695
  display: block;
694
696
  margin-bottom: 5px;
695
697
  }
696
- input[type="text"], input[type="datepicker"], textarea {
698
+ input[type="text"], input[type="number"], input[type="datepicker"], textarea {
697
699
  padding: 8px 10px 7px;
698
700
  border: 1px solid #e6e9ee;
699
701
  background-color: #fdfefe;
@@ -733,7 +735,7 @@ form fieldset > ol > li fieldset ol li {
733
735
  box-shadow: none;
734
736
  background-color: #ffffff;
735
737
  @include rounded($skinBorderRadius);
736
- padding: 10px 20px;
738
+ padding: 9px 20px 9px 20px;
737
739
  border-color: #E4E4E4;
738
740
  &:hover {
739
741
  background-image: none!important;
@@ -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.3"
2
+ VERSION = "1.1.4"
3
3
  end
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_admin_theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Igor Fedoronchuk
8
8
  - Alex Sikorskiy
9
- autorequire:
9
+ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-11-19 00:00:00.000000000 Z
12
+ date: 2021-02-04 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -60,7 +60,7 @@ homepage: https://github.com/didww/active_admin_theme
60
60
  licenses:
61
61
  - MIT
62
62
  metadata: {}
63
- post_install_message:
63
+ post_install_message:
64
64
  rdoc_options: []
65
65
  require_paths:
66
66
  - lib
@@ -75,10 +75,9 @@ 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.5.0
80
- signing_key:
78
+ rubyforge_project:
79
+ rubygems_version: 2.7.6.2
80
+ signing_key:
81
81
  specification_version: 4
82
82
  summary: Flat design for ActiveAdmin
83
83
  test_files: []
84
- has_rdoc: