mirror of
https://github.com/thebaer/MMRA
synced 2024-11-13 10:11:01 +00:00
Matt Baer
159e44a19d
This blocks the annoying "Pardon the interruption" dialog without preventing other parts of the UI from working correctly (basically. see comments).
17 lines
341 B
CSS
17 lines
341 B
CSS
/**
|
|
* medium.css
|
|
* Contains default styles to inject into Medium publications.
|
|
*/
|
|
.postMeterBar,
|
|
.openInAppButton,
|
|
.js-stickyFooter,
|
|
.js-upgradeMembershipAction,
|
|
.butterBar--privacy {
|
|
display: none;
|
|
}
|
|
|
|
/* Makes the page scrollable after hiding "Pardon the interruption" popup */
|
|
html.u-overflowHidden {
|
|
overflow-y: scroll !important;
|
|
}
|