Workable RTL

Makes Workable comment fields Right-to-Left

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Workable RTL
// @namespace    http://siavoshkc.ir/
// @version      1.1
// @description  Makes Workable comment fields Right-to-Left
// @author       siavoshkc
// @include      *workable.com*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    window.addEventListener('load', function() {
        var style = document.createElement("style");
        document.head.appendChild(style);
        style.sheet.insertRule("#new-comment-body { direction: rtl; }", 0);
        style.sheet.insertRule(".message-text {direction: rtl;} ", 1);
        style.sheet.insertRule(".rating-comment {direction: rtl;} ", 2);

    }, false);
})();