formadmin 0.1.4 → 0.1.5

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
  SHA1:
3
- metadata.gz: 4ef95239b812b1131999e6e5e2b7079ab3ef71d1
4
- data.tar.gz: cd52ebc83f4d8c20f984595df2dc6eb0cec06c3a
3
+ metadata.gz: e9a082cb7b13fd08410d80c6f1a6ed6f1b52cd26
4
+ data.tar.gz: 26cc4b0fe15f65d4ed23e4002ccb9c767b69e33d
5
5
  SHA512:
6
- metadata.gz: 09e2c7d7eb8e99d1cce418f0ac8a34ef4e3bc6dea1c629869e3a7f55c8d64ea18a387bdb20b2afad0947ead392bdf6f2be35018370ae6d3e9374be5e2d16778d
7
- data.tar.gz: 0cd568a59890ebfa169f680bdd8368f18feea9cc8161e0be03a9ba99244f403059f379c565d74b460c89fef274f63f236699fbf8ed9e94f37e01d82bcbda40ed
6
+ metadata.gz: 018c0d20aab744b31169aee9e0f804a55ef8ce689577e11e20cebb3009b77d26704aaa4dd8805b506ed50e85581e83847d1d1c25ae7143e89f48c4a863b04450
7
+ data.tar.gz: 4c872b2383c844727fd4b5a2dadcb99a89f7fb726a11740a89b7f12588733c0cf9d3d9ba1df18707791ec96447c6eb7051a1e2e17255c4e07ed00f8d2c6a27d3
data/README.md CHANGED
@@ -4,17 +4,20 @@ Modern and responsive theme for Active Admin used by Formaweb.
4
4
 
5
5
  ## Installation
6
6
 
7
- 1. Please make sure that you are using Active Admin from their Github repo:
7
+ Please make sure that you are using Active Admin from their Github repo:
8
+
8
9
  ```
9
10
  gem 'activeadmin', github: 'activeadmin/activeadmin'
10
11
  ```
11
12
 
12
- 2. Add this gem in your `Gemfile`:
13
+ Add this gem in your `Gemfile`:
14
+
13
15
  ```
14
16
  gem 'formadmin'
15
17
  ```
16
18
 
17
- 3. So, bundle...
19
+ So, bundle...
20
+
18
21
  ```
19
22
  $ bundle install
20
23
  ```
@@ -35,3 +38,7 @@ Instead loading defaults...
35
38
  ```
36
39
  @import 'formadmin/formadmin';
37
40
  ```
41
+
42
+ ## Screenshots
43
+
44
+ +![Formadmin](formadmin.gif)
@@ -1,5 +1,6 @@
1
1
  %input {
2
2
  appearance: none;
3
+ -webkit-appearance: none;
3
4
  background-color: $white;
4
5
  border: 1px solid rgba($silver, 0.75);
5
6
  border-radius: $radius;
@@ -128,6 +128,7 @@ form {
128
128
 
129
129
  input[type='checkbox'] {
130
130
  appearance: none;
131
+ -webkit-appearance: none;
131
132
  background-color: shade($white, 5%);
132
133
  border: 1px solid $silver;
133
134
  border-radius: $radius;
@@ -1,5 +1,4 @@
1
1
  .panel,
2
- .section,
3
2
  .sidebar_section {
4
3
  @extend %box;
5
4
  margin-bottom: 20px;
@@ -1,8 +1,11 @@
1
+ table {
2
+ border-collapse: separate;
3
+ width: 100%;
4
+ }
5
+
1
6
  table.index_table {
2
7
  @extend %box;
3
8
  background-color: $white;
4
- border-collapse: separate;
5
- width: 100%;
6
9
 
7
10
  .centralized {
8
11
  text-align: center;
@@ -168,7 +171,8 @@ table.index_table {
168
171
  }
169
172
 
170
173
  // Resource Attributes Table
171
- .attributes_table {
174
+ .attributes_table,
175
+ .panel_contents {
172
176
  overflow: hidden;
173
177
 
174
178
  table {
@@ -1,4 +1,4 @@
1
- .footer {
1
+ #footer.footer {
2
2
  background-color: $white;
3
3
  border-top: 1px solid $silver;
4
4
  box-shadow: 0 0 10px rgba($black, 0.1);
@@ -1,3 +1,3 @@
1
1
  module Formadmin
2
- VERSION = '0.1.4'
2
+ VERSION = '0.1.5'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: formadmin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Caio Tarifa
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-10-18 00:00:00.000000000 Z
11
+ date: 2017-01-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activeadmin