diff options
author | Vitaly Takmazov | 2020-04-23 21:08:40 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2020-04-23 21:08:40 +0300 |
commit | 64bfc87a5454857c52082ab7187133abd1d9a9f0 (patch) | |
tree | 573d8c4698906de80eb7418d2e8f65762a40e025 /src | |
parent | bb604d3c92bde4e7f04ac8248bee2a5c58508e65 (diff) |
Fix link borders
Diffstat (limited to 'src')
-rw-r--r-- | src/main/assets/style.css | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/main/assets/style.css b/src/main/assets/style.css index e2af4c54..d4945c97 100644 --- a/src/main/assets/style.css +++ b/src/main/assets/style.css @@ -228,7 +228,7 @@ pre::-moz-selection { border-bottom: 2px solid transparent; } #header_wrapper a.active { - background: var(--text-background-color); + background: var(background-color); border-bottom: 2px solid #ff339a; pointer-events: none; } @@ -264,12 +264,14 @@ pre::-moz-selection { color: #88959d; align-items: center; vertical-align: middle; - border-right: 2px solid transparent; + border-right: initial; + border-top: 2px solid transparent; } .toolbar > a:hover { background-color: var(--background-color); cursor: pointer; - border-right: 2px solid #ff339a; + border-right: initial; + border-top: 2px solid #ff339a; } #column ul, @@ -948,9 +950,10 @@ article p { } .toolbar a, .l a { + border-top: initial; border-right: 2px solid transparent; } - #sidebar > a:hover { + .toolbar a:hover { border-top: initial; border-right: 2px solid #ff339a; } |