active_material icon indicating copy to clipboard operation
active_material copied to clipboard

use of standard material classes

Open krtschmr opened this issue 8 years ago • 2 comments

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?

krtschmr avatar May 02 '17 02:05 krtschmr

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";

Layout

krtschmr avatar May 02 '17 06:05 krtschmr

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)

krtschmr avatar May 02 '17 06:05 krtschmr