Skip to content

Commit

Permalink
Releasing v0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Caio Tarifa committed Sep 27, 2016
1 parent 8c1b7a3 commit 13405bd
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 13 deletions.
1 change: 1 addition & 0 deletions app/assets/images/formadmin/edit.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions app/assets/images/formadmin/trash.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions app/assets/images/formadmin/view.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
37 changes: 25 additions & 12 deletions app/assets/stylesheets/formadmin/components/_table.scss
Original file line number Diff line number Diff line change
Expand Up @@ -99,35 +99,48 @@ table.index_table {
}
}

.member_link {
background-image: asset-url('active_admin/actions.png');
.view_link,
.edit_link,
.delete_link {
background-repeat: no-repeat;
background-position: center;
display: inline-block;
height: 13px;
margin-right: 7px;
height: 16px;
margin: 0 5px;
opacity: 0.75;
position: relative;
text-indent: -99999px;
top: 5px;
transition: all 250ms;
white-space: nowrap;
transition: opacity 250ms;
width: 16px;

&:hover {
opacity: 1;
}
}

.view_link {
background-position: -16px 0;
.delete_link {
background-image: asset-url('formadmin/trash.svg');
}

.edit_link {
background-position: -32px 0;
background-image: asset-url('formadmin/edit.svg');
}

.delete_link {
background-position: -48px 0;
.view_link {
background-image: asset-url('formadmin/view.svg');
}

// .view_link {
// background-position: -16px 0;
// }
//
// .edit_link {
// background-position: -32px 0;
// }
//
// .delete_link {
// background-position: -48px 0;
// }
}

// Resource Attributes Table
Expand Down
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.2'
VERSION = '0.1.3'
end

0 comments on commit 13405bd

Please sign in to comment.