Skip to main content
Question

How do you apply custom styles to a Popup Window in the Modern UI?

  • March 23, 2026
  • 3 replies
  • 53 views

Forum|alt.badge.img

I would like to modify the styles for the popup window on the AR302000 page.

however, after multiple attempts, it doesn't seem to be taking effect. Is something wrong?

 

-AR302000

--extensions

---AR302000_CustomCss.html

---AR302000_CustomCss.css

--AR302000.html

--AR302000.ts

 

AR302000_CustomCss.html:

<template>

    <require from="./AR302000_CustomCss.css" />

</template>

 

AR302000_CustomCss.css:

#paymentDialog .qp-resizable {

  height: 85vh;

}

.aabbcc {

  height: 72vh;

}

.top-bar-cont{

  background-color: red;

}

3 replies

palbores
Jr Varsity I
Forum|alt.badge.img+1
  • Jr Varsity I
  • May 4, 2026

@AndrewZ try adding “!important”.

 

Like

.top-bar-cont{

background-color: red !important;

}

 


Forum|alt.badge.img+1
  • Varsity III
  • May 5, 2026

Which specific popup are you trying to apply the style to?


palbores
Jr Varsity I
Forum|alt.badge.img+1
  • Jr Varsity I
  • May 5, 2026