Skip to content

Commit

Permalink
Releasing v0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Caio Tarifa committed Jan 29, 2017
1 parent 6719a8c commit 7154c2f
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 9 deletions.
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,20 @@ Modern and responsive theme for Active Admin used by Formaweb.

## Installation

1. Please make sure that you are using Active Admin from their Github repo:
Please make sure that you are using Active Admin from their Github repo:

```
gem 'activeadmin', github: 'activeadmin/activeadmin'
```

2. Add this gem in your `Gemfile`:
Add this gem in your `Gemfile`:

```
gem 'formadmin'
```

3. So, bundle...
So, bundle...

```
$ bundle install
```
Expand All @@ -35,3 +38,7 @@ Instead loading defaults...
```
@import 'formadmin/formadmin';
```

## Screenshots

+![Formadmin](formadmin.gif)
1 change: 1 addition & 0 deletions app/assets/stylesheets/formadmin/atoms/_input.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
%input {
appearance: none;
-webkit-appearance: none;
background-color: $white;
border: 1px solid rgba($silver, 0.75);
border-radius: $radius;
Expand Down
1 change: 1 addition & 0 deletions app/assets/stylesheets/formadmin/components/_form.scss
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ form {

input[type='checkbox'] {
appearance: none;
-webkit-appearance: none;
background-color: shade($white, 5%);
border: 1px solid $silver;
border-radius: $radius;
Expand Down
1 change: 0 additions & 1 deletion app/assets/stylesheets/formadmin/components/_panel.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
.panel,
.section,
.sidebar_section {
@extend %box;
margin-bottom: 20px;
Expand Down
10 changes: 7 additions & 3 deletions app/assets/stylesheets/formadmin/components/_table.scss
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
table {
border-collapse: separate;
width: 100%;
}

table.index_table {
@extend %box;
background-color: $white;
border-collapse: separate;
width: 100%;

.centralized {
text-align: center;
Expand Down Expand Up @@ -168,7 +171,8 @@ table.index_table {
}

// Resource Attributes Table
.attributes_table {
.attributes_table,
.panel_contents {
overflow: hidden;

table {
Expand Down
2 changes: 1 addition & 1 deletion app/assets/stylesheets/formadmin/layouts/_footer.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.footer {
#footer.footer {
background-color: $white;
border-top: 1px solid $silver;
box-shadow: 0 0 10px rgba($black, 0.1);
Expand Down
Binary file added formadmin.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion lib/formadmin/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Formadmin
VERSION = '0.1.4'
VERSION = '0.1.5'
end

0 comments on commit 7154c2f

Please sign in to comment.