mdo / github-wide

Userstyle for making all of GitHub completely fluid.
MIT License
497 stars 79 forks source link

GitHub broke this userstyle #74

Open msva opened 4 years ago

msva commented 4 years ago

Hi there! As for now, with new GH interface, this style seems to be broken and does not work anymore. Looks like it is needed to be updated...

// P.S. I not sure if I had enough time in near future, so don't rely on me, please. But I'll try to look into this when I'll have some spare time.

cfoellmann commented 4 years ago

For me it still works. In general the full width is still present. Smaller problems might occur

stavamichal commented 4 years ago

I have the same problem and also my colleagues. It's not working anymore after the git hub GUI update.

PoorPocketsMcNewHold commented 4 years ago

Still seems to work for me pretty well. Screenshot took on Firefox Nightly with additional userscripts (None affect the ¨performance¨ of the github-wide userscript in any ways)

stavamichal commented 4 years ago

My colleague found a problem. There was container with the name 'container-lg', but now it is 'container-xl'. So this change of style for GitHub wide works for us.

/* New responsive containers on some pages */
.container-xl {
  max-width: 100% !important;
  padding-right: 30px !important;
  padding-left: 30px !important;
}
cfoellmann commented 4 years ago

@stavamichal in the current style this is already included. you just removed the same styles from the .container-lg.

cfoellmann commented 4 years ago

Today it broke for me (over the weekend I suppose).

the .pagehead is not stretched. I hope I have time today to fix this.

Any feedback and/or validation is very welcome

gh-wide

cfoellmann commented 4 years ago

I have this in my Dev Tools:

Declared as "injected stylesheet". is this js? never seen a declared style I was not allowed to mess with in the Chrome Dev Tools

body:not(.full-width):not(.enterprise) .repohead:not(.gisthead) > * {
    padding-left: calc(50% - 640px) !important;
}