TOL Text Field Fix

This script increases the size of the text fields in Time Online, or TOL - Booz Allen Hamilton's web-based time reporting program

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 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        TOL Text Field Fix
// @namespace   tol.bah.com/main.cfm
// @description This script increases the size of the text fields in Time Online, or TOL - Booz Allen Hamilton's web-based time reporting program
// @include     https://tolconnected.bah.com/*
// @include		https://tol.bah.com/*
// @include		https://sso.bah.com/*
// @include		https://access.bah.com/*
// @grant       none
// @version     1
// ==/UserScript==
if( document.title == 'Time Sheet' ) {
	var elems = document.getElementsByTagName('input'), i;
	for (i in elems) {
		if((' ' + elems[i].className + ' ').indexOf(' tolwksheet ') > -1) {
			elems[i].style.width=35;
		}
	}
}