Bug 1468453 - Fix text color of malware downloads on dark themes. r=jaws

MozReview-Commit-ID: GjycI1bmZcq

--HG--
extra : rebase_source : 585e07081ab17dd53d402ac741cd556f069b1351
This commit is contained in:
Tim Nguyen 2018-06-18 18:18:36 +01:00
Родитель 685ce41033
Коммит 9078537847
2 изменённых файлов: 10 добавлений и 2 удалений

Просмотреть файл

@ -25,10 +25,14 @@
outline-offset: -2px;
}
@item@[verdict="Malware"] {
@item@[verdict="Malware"]:not(:hover) {
color: #aa1b08;
}
:root[lwt-popup-brighttext] @item@[verdict="Malware"]:not(:hover) {
color: #ff0039;
}
.downloadProgress > .progress-bar {
background-color: #3c9af8;
}

Просмотреть файл

@ -28,10 +28,14 @@
}
@media (-moz-windows-default-theme) {
@item@[verdict="Malware"] {
@item@[verdict="Malware"]:not(:hover) {
color: #aa1b08;
}
:root[lwt-popup-brighttext] @item@[verdict="Malware"]:not(:hover) {
color: #ff0039;
}
/* Use unified color for the progressbar on default theme */
.downloadProgress > .progress-bar {
background-color: #3c9af8;