blob: f04ce6dd0a543b50be44801331455d861037abf6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/**
* style for the update info popup iframe
* should be injected into web page to set the popup position on page properly
*/
.adguard-update-iframe {
position: fixed;
top: 10px;
right: 10px;
border: none;
width: 320px;
/* 460px container + 50px padding + 16px box-shadow */
min-height: 526px;
color-scheme: light dark;
}
|