Browse Source

improve browser window CSS exception

Falko Schindler 2 years ago
parent
commit
88aa282d04
1 changed files with 5 additions and 9 deletions
  1. 5 9
      website/static/style.css

+ 5 - 9
website/static/style.css

@@ -9,17 +9,17 @@ body {
 body {
   background-color: #f8f8f8;
 }
-em {
+em:not(.browser-window *) {
   font-style: normal;
   color: #5a99ff;
 }
-a:link,
-a:visited {
+a:link:not(.browser-window *),
+a:visited:not(.browser-window *) {
   color: inherit !important;
   text-decoration: none;
 }
-a:hover,
-a:active {
+a:hover:not(.browser-window *),
+a:active:not(.browser-window *) {
   opacity: 0.85;
 }
 .bold-links a:link {
@@ -59,7 +59,3 @@ dl.field-list dd {
   background-color: #5a99ff;
   width: 100%;
 }
-
-.browser-window a {
-  text-decoration: underline;
-}