Skip to content

Commit 7154c2f

Browse files
author
Caio Tarifa
committed
Releasing v0.1.5
1 parent 6719a8c commit 7154c2f

File tree

8 files changed

+21
-9
lines changed

8 files changed

+21
-9
lines changed

README.md

+10-3
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,20 @@ Modern and responsive theme for Active Admin used by Formaweb.
44

55
## Installation
66

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+
89
```
910
gem 'activeadmin', github: 'activeadmin/activeadmin'
1011
```
1112

12-
2. Add this gem in your `Gemfile`:
13+
Add this gem in your `Gemfile`:
14+
1315
```
1416
gem 'formadmin'
1517
```
1618

17-
3. So, bundle...
19+
So, bundle...
20+
1821
```
1922
$ bundle install
2023
```
@@ -35,3 +38,7 @@ Instead loading defaults...
3538
```
3639
@import 'formadmin/formadmin';
3740
```
41+
42+
## Screenshots
43+
44+
+![Formadmin](formadmin.gif)

app/assets/stylesheets/formadmin/atoms/_input.scss

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
%input {
22
appearance: none;
3+
-webkit-appearance: none;
34
background-color: $white;
45
border: 1px solid rgba($silver, 0.75);
56
border-radius: $radius;

app/assets/stylesheets/formadmin/components/_form.scss

+1
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ form {
128128

129129
input[type='checkbox'] {
130130
appearance: none;
131+
-webkit-appearance: none;
131132
background-color: shade($white, 5%);
132133
border: 1px solid $silver;
133134
border-radius: $radius;

app/assets/stylesheets/formadmin/components/_panel.scss

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
.panel,
2-
.section,
32
.sidebar_section {
43
@extend %box;
54
margin-bottom: 20px;

app/assets/stylesheets/formadmin/components/_table.scss

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1+
table {
2+
border-collapse: separate;
3+
width: 100%;
4+
}
5+
16
table.index_table {
27
@extend %box;
38
background-color: $white;
4-
border-collapse: separate;
5-
width: 100%;
69

710
.centralized {
811
text-align: center;
@@ -168,7 +171,8 @@ table.index_table {
168171
}
169172

170173
// Resource Attributes Table
171-
.attributes_table {
174+
.attributes_table,
175+
.panel_contents {
172176
overflow: hidden;
173177

174178
table {

app/assets/stylesheets/formadmin/layouts/_footer.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.footer {
1+
#footer.footer {
22
background-color: $white;
33
border-top: 1px solid $silver;
44
box-shadow: 0 0 10px rgba($black, 0.1);

formadmin.gif

2.98 MB
Loading

lib/formadmin/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Formadmin
2-
VERSION = '0.1.4'
2+
VERSION = '0.1.5'
33
end

0 commit comments

Comments
 (0)