As the title says. After conquering a system, if I have two rows of technologies, when getting another one the text box of the new tech apperas behind of the techs I own, so it is imposible to click on the green button to accept the new (o reject if duplicated). I am not using any mod. The language is Spanish and the version is 75740. I do not know if this has been answered, but any help is welcome.
Well, that looks rather annoying. Here are two temporary fixes though: Open the file <PA Install dir>/media/ui/main/game/galactic_war/gw_play/gw_play.css in a simple text editor. Now you have two options, you can either make the window wider so the text fits, or you can move it up. Method 1 (wider) On line 351, change width from 420px to 820px so you get: Code: #system-card { max-height: 500px; width: 820px; background: rgba(0, 0, 0, .9); position: relative; padding: 24px 4px 0px 4px; border: 1px solid rgba(255, 255, 255, 0.2); box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.8); -webkit-animation: window_appear .07s; } On line 369, change width from 240px to 640px, so you get: Code: .card .col2 { width: 640px; } Method 2 (higher) On line 358 add "top: -200px;", so you get Code: #system-card { max-height: 500px; width: 420px; background: rgba(0, 0, 0, .9); position: relative; padding: 24px 4px 0px 4px; border: 1px solid rgba(255, 255, 255, 0.2); box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.8); -webkit-animation: window_appear .07s; top: -200px; } Make a back-up of the file first in case this messes things up, but it works for me. You may have to use lower numbers as my own screen is larger than yours. Also you can combine methods 1 and 2. Also note that these changes will disappear after every update, so you'd have to do it again until it gets fixed by Uber.
That was a fast answer!! Works perfectly, with little changes with the numbers as you said. Thanks a lot!!!
You're quite welcome. I found an earlier bug report about this just now in the bug tracker: PA#4197 It seems the bug has been there for two months at least. I'll put the fix there as well.