MyBB Community Forums
MyBB 1.8.19 upgrade and global.css - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: 1.8 Support (https://community.mybb.com/forum-175.html)
+--- Forum: Installation and Upgrades Support (https://community.mybb.com/forum-182.html)
+--- Thread: MyBB 1.8.19 upgrade and global.css (/thread-219729.html)



MyBB 1.8.19 upgrade and global.css - User 26345 - 2018-09-13

Hi, can someone tell me what changes I need to make to the file global.css?
On note there is this link: https://github.com/mybb/mybb/commit/a88d9d4abb54d36f7662dadcd60baa53e7643028#diff-05b404fc75b0e5bd6d57c79b667b44b8 but it is not clear how to proceed.

Thanks


RE: MyBB 1.8.19 upgrade and global.css - Ashley1 - 2018-09-13

Looks like they replaced:

.deleted_post .postbit_qrestore,
.deleted_post .status_type{
	display:inline!important;
}

.deleted_post .postbit_mirage{
	display:none!important;
}

with:

.post:not(.deleted_post) .postbit_qrestore,
.post:not(.deleted_post) .status_type,
.post.deleted_post .postbit_mirage {
    display: none;
}

approx line 1340 of the stock file. Don't know if that's the only change, but looks that way.


RE: MyBB 1.8.19 upgrade and global.css - effone - 2018-09-13

Find if this exists in your global.css

.postbit_qrestore,
.status_type{
	display:none!important;
}
 .deleted_post .postbit_qrestore,
.deleted_post .status_type{
	display:inline!important;
}
 .deleted_post .postbit_mirage{
	display:none!important;
}

and replace with

.post:not(.deleted_post) .postbit_qrestore,
.post:not(.deleted_post) .status_type,
.post.deleted_post .postbit_mirage {
    display: none;
}

If you can't find the first part don't worry and just add the second part and you are good.