mirjamsk / materialize-pagination

Materialize Pagination is a jQuery plugin that provides behaviour and rendering of the Materialize Pagination component
http://mirjamsk.github.io/materialize-pagination/
MIT License
8 stars 11 forks source link

materializecss had changed style #2

Open Wsine opened 7 years ago

Wsine commented 7 years ago

the new one is

.pagination li a {}

the old one is

.pagination li {}

which is showed in materialize-pagination

bsulyan commented 7 years ago

Hello,

this is working for me :

+- line 241

        createPage: function(pageData) {
            return $('<li>')
                .html('<a>' + pageData + '</a>')
                .addClass('waves-effect')
                .attr('data-page', pageData);
        },
mirjamsk commented 7 years ago

@Wsine does @bsulyan's solution work for you?

Wsine commented 7 years ago

Sorry for late. Yes, this solution works well, although I chose to chage css style. Thanks.