diff --git a/4chan_x.user.js b/4chan_x.user.js index 45c6c85eb..ba44783f5 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -2684,7 +2684,7 @@ padding: 5px;\ min-width: 500px;\ }\ - #options .move, #credits {\ + #credits {\ text-align: right;\ }\ #options ul {\ @@ -2702,6 +2702,14 @@ overflow: auto;\ height: 450px;\ }\ + .overlay {\ + position: fixed;\ + width: 100%;\ + height: 100%;\ + top: 0;\ + left: 0;\ + background-color: rgba(0,0,0,.5);\ + }\ \ #qr {\ position: fixed;\ @@ -2786,14 +2794,6 @@ .inlined {\ opacity: .5;\ }\ - .overlay {\ - position: fixed;\ - width: 100%;\ - height: 100%;\ - top: 0;\ - left: 0;\ - background-color: rgba(0,0,0,.5);\ - }\ ' }; main.init(); diff --git a/script.coffee b/script.coffee index e84e9e802..8b9eaac12 100644 --- a/script.coffee +++ b/script.coffee @@ -2054,7 +2054,7 @@ main = padding: 5px; min-width: 500px; } - #options .move, #credits { + #credits { text-align: right; } #options ul { @@ -2072,6 +2072,14 @@ main = overflow: auto; height: 450px; } + .overlay { + position: fixed; + width: 100%; + height: 100%; + top: 0; + left: 0; + background-color: rgba(0,0,0,.5); + } #qr { position: fixed; @@ -2156,14 +2164,6 @@ main = .inlined { opacity: .5; } - .overlay { - position: fixed; - width: 100%; - height: 100%; - top: 0; - left: 0; - background-color: rgba(0,0,0,.5); - } ' main.init()