简体   繁体   中英

How to set a white background color for a lightbox in Angular?

I need to set the background-color property to white for gallery item. Now I'm using this code to open the full-screen:

this.lightbox.open(0, 'lightbox1', { panelClass: 'fullscreen'})

How Can I achieve this?

You can manipulate the lightbox.css and change styles for the lightbox as fits you, However that will be a bad practice since you are changing the source and that will reflect all lightbox's you are using in your application.

However, you can alter the lightbox style in a specific component using ::ng-deep as follows:

::ng-deep lightbox gallery {
  background-color: white !important;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM