Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name AlignButton
- // @namespace Omskvelo
- // @version 0.002
- // @description Fix Button Align
- // @author Fazer
- // @match http://omskvelo.ru/index.php?/topic/*
- // ==/UserScript==
- (function() {
- 'use strict';
- function addGlobalStyle(css) {
- var head, style;
- head = document.getElementsByTagName('head')[0];
- if (!head) { return; }
- style = document.createElement('style');
- style.type = 'text/css';
- style.innerHTML = css;
- head.appendChild(style);
- }
- addGlobalStyle('.post_wrap .rep_bar {width:65px; padding: 0px; min-height:30px }');
- addGlobalStyle('.post_wrap .rep_bar span.reputation {margin: 6px 22px;}');
- addGlobalStyle('.post_wrap .rep_bar ul {width:100%; margin: 0;}');
- addGlobalStyle('.post_wrap .rep_bar ul li:last-child {float: right;}');
- addGlobalStyle('.post_wrap .rep_bar ul a {display: block; padding: 8px;}');
- })();
Advertisement
Add Comment
Please, Sign In to add comment