more rtl fixes
This commit is contained in:
parent
46b2422d62
commit
f7e0a05478
|
@ -1003,10 +1003,7 @@ button#submit-login:hover {
|
|||
text-align: center;
|
||||
}
|
||||
body.rtl #footer-spinner-container {
|
||||
float: right;
|
||||
width:590px;
|
||||
position:relative;
|
||||
text-align: center;
|
||||
float: left;
|
||||
}
|
||||
|
||||
#user-container {
|
||||
|
@ -1899,11 +1896,6 @@ body.rtl .stream-item.user .queet-text,
|
|||
body.rtl .stream-item.user .queet-content .stream-item-header {
|
||||
text-align:right;
|
||||
}
|
||||
body.rtl .stream-item.user .queet-content .stream-item-header .avatar {
|
||||
float:right;
|
||||
margin-left:auto;
|
||||
margin-right:-58px;
|
||||
}
|
||||
|
||||
|
||||
ul.queet-actions {
|
||||
|
|
|
@ -1497,6 +1497,12 @@ function addToFeed(feed, after, extraClasses, isReply) {
|
|||
ostatusHtml = '<a target="_blank" title="' + window.sL.goToOriginalNotice + '" class="ostatus-link" href="' + obj.statusnet_profile_url + '"></a>';
|
||||
}
|
||||
|
||||
// rtl or not
|
||||
var rtlOrNot = '';
|
||||
if($('body').hasClass('rtl')) {
|
||||
rtlOrNot = 'rtl';
|
||||
}
|
||||
|
||||
// show user actions
|
||||
var followingClass = '';
|
||||
if(obj.following) {
|
||||
|
@ -1510,7 +1516,7 @@ function addToFeed(feed, after, extraClasses, isReply) {
|
|||
}
|
||||
}
|
||||
|
||||
var userHtml = '<div id="stream-item-' + obj.id + '" class="stream-item user"><div class="queet">' + followButton + '<div class="queet-content"><div class="stream-item-header"><a class="account-group" href="' + obj.statusnet_profile_url + '"><img class="avatar" src="' + obj.profile_image_url_profile_size + '" /><strong class="name" data-user-id="' + obj.id + '">' + obj.name + '</strong> <span class="screen-name">@' + obj.screen_name + '</span></a>' + ostatusHtml + '</div><div class="queet-text">' + obj.description + '</div></div></div></div>';
|
||||
var userHtml = '<div id="stream-item-' + obj.id + '" class="stream-item user"><div class="queet ' + rtlOrNot + '">' + followButton + '<div class="queet-content"><div class="stream-item-header"><a class="account-group" href="' + obj.statusnet_profile_url + '"><img class="avatar" src="' + obj.profile_image_url_profile_size + '" /><strong class="name" data-user-id="' + obj.id + '">' + obj.name + '</strong> <span class="screen-name">@' + obj.screen_name + '</span></a>' + ostatusHtml + '</div><div class="queet-text">' + obj.description + '</div></div></div></div>';
|
||||
|
||||
if(after) {
|
||||
$('#' + after).after(userHtml);
|
||||
|
@ -1532,6 +1538,12 @@ function addToFeed(feed, after, extraClasses, isReply) {
|
|||
obj.description = obj.description || '';
|
||||
obj.stream_logo = obj.stream_logo || window.fullUrlToThisQvitterApp + 'img/default-avatar-profile.png';
|
||||
|
||||
// rtl or not
|
||||
var rtlOrNot = '';
|
||||
if($('body').hasClass('rtl')) {
|
||||
rtlOrNot = 'rtl';
|
||||
}
|
||||
|
||||
// show group actions if logged in
|
||||
var memberClass = '';
|
||||
if(obj.member) {
|
||||
|
@ -1546,7 +1558,7 @@ function addToFeed(feed, after, extraClasses, isReply) {
|
|||
if(obj.homepage_logo != null) {
|
||||
groupAvatar = obj.homepage_logo;
|
||||
}
|
||||
var groupHtml = '<div id="stream-item-' + obj.id + '" class="stream-item user"><div class="queet">' + memberButton + '<div class="queet-content"><div class="stream-item-header"><a class="account-group" href="' + obj.url + '"><img class="avatar" src="' + groupAvatar + '" /><strong class="name" data-group-id="' + obj.id + '">' + obj.fullname + '</strong> <span class="screen-name">!' + obj.nickname + '</span></a></div><div class="queet-text">' + obj.description + '</div></div></div></div>';
|
||||
var groupHtml = '<div id="stream-item-' + obj.id + '" class="stream-item user"><div class="queet ' + rtlOrNot + '">' + memberButton + '<div class="queet-content"><div class="stream-item-header"><a class="account-group" href="' + obj.url + '"><img class="avatar" src="' + groupAvatar + '" /><strong class="name" data-group-id="' + obj.id + '">' + obj.fullname + '</strong> <span class="screen-name">!' + obj.nickname + '</span></a></div><div class="queet-text">' + obj.description + '</div></div></div></div>';
|
||||
|
||||
if(after) {
|
||||
$('#' + after).after(groupHtml);
|
||||
|
|
|
@ -295,14 +295,10 @@ $(window).load(function() {
|
|||
window.selectedLanguage = 'en';
|
||||
}
|
||||
|
||||
// if this is a RTL-language, add rt classes and change some things
|
||||
if(window.selectedLanguage == 'ar') {
|
||||
// if this is a RTL-language, add rtl class to body
|
||||
if(window.selectedLanguage == 'ar'
|
||||
|| window.selectedLanguage == 'fa') {
|
||||
$('body').addClass('rtl');
|
||||
$('title').html('‫ترك');
|
||||
}
|
||||
else if(window.selectedLanguage == 'fa') {
|
||||
$('body').addClass('rtl');
|
||||
$('title').html('‫واگذارنده');
|
||||
}
|
||||
|
||||
// if we already have this version of this language in localstorage, we
|
||||
|
|
Loading…
Reference in New Issue
Block a user