2 Commits

Author SHA1 Message Date
winston
bfb437116d fix: wrong text color for user settings modals 2023-05-01 18:49:58 +02:00
winston
10b35011c8 fix: most recent signed commit hover color
Closes #6
2023-05-01 18:36:09 +02:00

View File

@@ -259,6 +259,23 @@ $lvl3: if($isDark, $base, $crust);
color: $lvl1;
}
// most recent commit hover when signed
.ui.sha.isSigned.isVerified:hover {
.shortsha {
color: $lvl1;
}
svg.gitea-lock {
fill: $lvl1;
}
}
// modal text color for the "Remove GPG Key" modal
.ui.basic.modal,
.ui.basic.modal > .header,
.ui.inverted.button {
color: $text !important;
}
::selection {
background: color.change($rosewater, $alpha: 0.3) !important;
}