angular-block-ui icon indicating copy to clipboard operation
angular-block-ui copied to clipboard

Example to custom css background

Open rogercorrea opened this issue 9 years ago • 1 comments
trafficstars

Please,

I need find one example to custom CSS background-color in the message. In the code below assertive-bg class it's configured but not changed nothing. My code is here: `.factory('msg', function ($timeout, blockUI) {

        return {
            display: function (msg, type) {

                if (type !== null){
                    blockUIConfig.cssClass = 'assertive-bg';
                } else{
                    blockUIConfig.cssClass = 'block-ui block-ui-anim-fade';
                }

                blockUI.start({
                    message: msg
                });

                $timeout(function () {
                    blockUI.stop();
                }, 2000);
            }
        }
    })`

rogercorrea avatar Jul 17 '16 13:07 rogercorrea

Hi I need delete the massege, and set a circular progress. You know if that is possible?

ignacioalv avatar Sep 12 '16 18:09 ignacioalv