active_material
active_material copied to clipboard
use of standard material classes
in example: responsive-img or img.circle
using these inside the AA templates has no effect - shouldnt they be in there by default? which material version we use in this gem?
this is according to the MD-CSS guides a tabbing navigation, but zero effect in my active_admin
.row
.col.s12
%ul.tabs
%li.tab.col.s3
%a{:href => "#test1"} Test 1
%li.tab.col.s3
%a.active{:href => "#test2"} Test 2
#test1.col.s12 Test 1
adding the regular gem is breaking the layout
@import "materialize";
@import "active_admin/mixins";
@import "active_material";

first fix would be
#header{
.tabs {
background: initial;
width: initial;
}
}
so the header is displaying correct-ish. the user-logo is not working and the dropdowns are not visible, even though they have a higher z-index (can't figure why that is)