CSS fixes (note, I'm not sure how to work with scss, so I fixed in the CSS), in the same order of my screenshots above.
Fixed icons in stylesheet css at line ~ 3858 changing the
.icon-search-new:after, .icon-search-unanswered:after, .icon-search-unread:after, .icon-search-self:after, .icon-search:after, .icon-search-active:after, .icon-search-advanced:after, .icon-acp:after, .icon-bookmark:after, .icon-bump:after, .icon-contact:after, .icon-delete-cookies:after, .icon-download:after, .icon-faq:after, .icon-home:after, .icon-logout:after, .icon-login:after, .icon-mark:after, .icon-mcp:after, .icon-members:after, .icon-members:before, ul.linklist.bulletin > li.small-icon.icon-members:before, .icon-notification:after, .icon-pages:after, .icon-pm:after, .icon-print:after, .icon-profile:after, .icon-register:after, .icon-sendemail:after, .icon-subscribe:after, .icon-team:after, .icon-team:before, ul.linklist.bulletin > li.small-icon.icon-team:before, .icon-ucp:after, .icon-unsubscribe:after, .icon-new-posts:after, .icon-forums:after, .icon-chat:after, .icon-time:after, .icon-thanks:after, .icon-thanks_toplist:after {
content: '';
position: absolute;
top: 50%;
right: 0;
instead of left:0, put in right:0
and changed ~line 263
.navbar.secondary > ul > li.small-icon > a {
padding-right: 18px; }
padding-left to padding right.
---------------------------------
Fixed Last post location by adding the following to the css at line ~353 at bidi.css:
dl.elegant-row dt,
However at the headings the last post is still not correct
-------------------------------
Fixed sub-forum listing in bidi.css line 400:
.rtl ul.topiclist li.row dt a.subforum {
padding-left: 0;
padding changed to 0.
--------------------------------
Fixed forum/topic pagination by editing pagniation.html at prosilver,
icon changed to fa-level-up
and commented out lines 1313-1321 in stylesheet.css
-----------------
Fixed forum description mouse over by changing forum_fn.js line 1454:
left = Math.floor($w.scrollLeft() + rectWidth);
---------------
Fixed navbar menu button in stylesheet.css by adding ~line 476
at bidi.css
@media (max-width: 550px) {
.navbar .nav-tabs .forums .nav-link {
padding: 0 8px !important; } }
----------------------------------
Fixed avatar by adding the following at bidi.css:
.rtl .postprofile .has-avatar .avatar-container,
.postprofile .no-avatar .avatar-container {
float: right;
padding-left: 0;
padding-right: 5px; }
.rtl .postprofile .avatar, .postprofile .no-avatar .avatar-container {
margin-left: 5px; }
--------
Another fix for short posts which don't fill the whole width at stylesheet.css
comment out line 2343
-------------
There is an issue with notification styling, but this is related to phpbb....