diff options
author | Hygna <hygna@proton.me> | 2022-10-09 13:11:05 +0100 |
---|---|---|
committer | Hygna <hygna@proton.me> | 2022-10-09 13:11:05 +0100 |
commit | 375f4371c3c5e703b07ae3e3d677315134a035ce (patch) | |
tree | f9168e19cf33e0a01e53b0fb72f3436e5db74ae3 /src/pages/popup/style.css | |
parent | Changed order of Mirror repos (diff) | |
download | libredirect-375f4371c3c5e703b07ae3e3d677315134a035ce.zip |
Toggle current instance in popup
Fixed bug where testing latency of multiple frontends at the same time wouldn't save all of the timings
Diffstat (limited to 'src/pages/popup/style.css')
-rw-r--r-- | src/pages/popup/style.css | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/pages/popup/style.css b/src/pages/popup/style.css index 0cb27912..3b409be8 100644 --- a/src/pages/popup/style.css +++ b/src/pages/popup/style.css @@ -22,3 +22,43 @@ body { .space { height: 10px; } + +input { + height: 23px; + width: 46px; +} + +#instance { + max-width: 110px; + max-height: 22px; + overflow-x: scroll; + white-space: nowrap; + scrollbar-width: none; + -ms-overflow-style: none; +} + +#instance::-webkit-scrollbar { + display: none; +} + +#instance::before { + background-image: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)); + position: absolute; + width: 5px; + height: 22px; + content: ""; + display: block; + pointer-events: none; +} + +#end::before { + background-image: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)); + position: absolute; + width: 5px; + height: 22px; + content: ""; + display: block; + pointer-events: none; + top: 13px; + left: 157.4px; +} |