blob: a17d63db45494244d1c67650e97c36ab759ccd7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/**
* Style for the update info popup iframe with notification about rules limits exceeded.
* Should be injected into web page to set the popup position on page properly.
*/
.adguard-rules-limits-exceeded-iframe {
color-scheme: none;
position: fixed;
bottom: 16px;
right: 16px;
border: none;
/* Size to fit on all locales */
width: 376px;
height: 200px;
}
|