Add style for browser-update prompt

Co-authored-by: Liu Xiaoyi <circuitcoder0@gmail.com>
This commit is contained in:
Zenithal 2021-02-10 17:14:33 +08:00
parent 9c4096f10d
commit cf71168e3e
No known key found for this signature in database
GPG Key ID: 1189C659F3D04C1C

View File

@ -541,3 +541,21 @@ body {
}
}
{% endfor %}
/* style for browser-update banner */
body .buorg {
border-bottom: unset;
background-color: unset;
}
body #buorgul, body #buorgig {
background-color: #5bc0de;
}
@media (prefers-color-scheme: dark) {
body .buorg {
color: #ddd;
box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}
body #buorgul, body #buorgig {
background-color: #40729e;
}
}