Недавно, я считал людей, которые делают стили и юзерскрипты для ЛОРа, задротами. Но пришло время, когда на ЛОР без слез смотреть нельзя, а общаться со здешними людьми хочется, и я написал юзер скрипт для greasemonkey.
Так теперь у меня это выглядит
Вот сам код:
// ==UserScript==
// @name LOF FIX
// @namespace lor
// @include http://www.linux.org.ru/forum*
// @version 1
// @grant none
// @author Vir
// ==/UserScript==
$('article[id*=topic] > .title')
.css({
'display': 'inline'
})
.prependTo('.msg_body > footer > .sign');
$('.tags-section-info')
.appendTo('.msg_body > footer')
.css({
'margin-left': '115px'
});
$('.fav-buttons')
.css({
'padding-top': '4px'
})
.appendTo('.tags-section-info')
.find('br').remove();
$('.fav-buttons > *')
.css({
'font-size': '12pt'
})
.first()
.text('В избранном: ')
.next()
.append(', ')
.next()
.text('Следят: ')
.next()
.append('.');
$('.msg_body > .reply > br').remove();
P.S. Проверял работоспособность только в tango.