diff options
author | Edward <contact@langdon.slmail.me> | 2022-10-09 19:04:15 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-09 19:04:15 +0530 |
commit | 26abc5d2c9f671d359be8a7bf503632242abb2c2 (patch) | |
tree | ab05b3b2906fbc8423eea3abe1bd8efeccefa439 /src/pages/popup/style.css | |
parent | Update messages.json (diff) | |
parent | Merge pull request #404 from marcelocripe/patch-1 (diff) | |
download | libredirect-26abc5d2c9f671d359be8a7bf503632242abb2c2.zip |
Merge branch 'master' into patch-3
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..53589738 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: 14px; + left: 156px; +} |