05/17 - Tinnitus Thursday!

What do you hear?


  • Total voters
    92
  • Poll closed .
Status
Not open for further replies.

thismegan

resting cat face
Joined
Jan 1, 2018
Messages
3,510
Reaction score
12,083
Points
763
Gender
Female
Code:
// ==UserScript==
// @author      ZSMTurker
// @name        ZSMTurker's Larger Radio Buttons and Checkboxes EXTRA LARGE
// @namespace   https://greasyfork.org/users/2291
// @description Makes radio buttons and checkboxes larger. Applies to every webpage
//              so turn it off if you don't need it, it can slow things down.
// @match       http://*/*
// @match       https://*/*
// @require     http://code.jquery.com/jquery-latest.min.js
// @version     0.1
// ==/UserScript==

/* Function that injects CSS rules */
function injectStyles( rule ) {
    var div = $( '<div />', {
        html: '&shy;<style>' + rule + '</style>'
    } ).appendTo( 'body' );
}

/*Individual calls to add styles */
injectStyles( 'input[type=radio] { width: 3.0em; height: 3.5em;}' );
injectStyles( 'input[type=checkbox] { width: 3.0em; height: 3.5em;}' );

try this, i took ZSMTurker's Larger Radio Buttons and Checkboxes and made the buttons extra large, if it's not big enough I can make it bigger
One small OCD-related change... vertically centering the radio button or checkbox:

Code:
// ==UserScript==
// @author      ZSMTurker
// @name        ZSMTurker's Larger Radio Buttons and Checkboxes EXTRA LARGE
// @namespace   https://greasyfork.org/users/2291
// @description Makes radio buttons and checkboxes larger. Applies to every webpage
//              so turn it off if you don't need it, it can slow things down.
// @match       http://*/*
// @match       https://*/*
// @require     http://code.jquery.com/jquery-latest.min.js
// @version     0.1
// ==/UserScript==

/* Function that injects CSS rules */
function injectStyles( rule ) {
    var div = $( '<div />', {
        html: '&shy;<style>' + rule + '</style>'
    } ).appendTo( 'body' );
}

/*Individual calls to add styles */
injectStyles( 'input[type=radio] { display:inline-block; width: 3.0em; height: 3.5em; vertical-align: middle }' );
injectStyles( 'input[type=checkbox] { display:inline-block; width: 3.0em; height: 3.5em; vertical-align: middle }' );
ignore. it might mess up formatting depending on where the centered element is on the line.
 
Last edited:
  • Like
Reactions: GTR and Sybaris

stuffalleysays

I was here
Contributor
Joined
Sep 9, 2017
Messages
3,898
Reaction score
7,227
Points
838
Age
50
Location
IOWA
Gender
Female
Any of you ladies or gents know a good place to get basically the equivelant of antique ac parts? My central ac is mfg 1971 and a capacitor is becoming a biaaaaatch to find.
 

Devil_Dawg

Marine, Husband, Father, Grand Father
Contributor
Joined
Jan 13, 2016
Messages
10,971
Reaction score
31,075
Points
1,388
Age
61
Gender
Male
Any of you ladies or gents know a good place to get basically the equivelant of antique ac parts? My central ac is mfg 1971 and a capacitor is becoming a biaaaaatch to find.
yea, I'd be upgrading that.
 
  • Like
Reactions: savvy

JenniLeigh

Batch Betta Have My Money
Contributor
Joined
Jan 12, 2016
Messages
23,084
Reaction score
46,895
Points
1,388
Location
my napping spot
Gender
Female
Any of you ladies or gents know a good place to get basically the equivelant of antique ac parts? My central ac is mfg 1971 and a capacitor is becoming a biaaaaatch to find.
Parts you find are gonna be just as old.
Maybe you can have a machinist make you something... but it'd be cheaper to upgrade.
 

stuffalleysays

I was here
Contributor
Joined
Sep 9, 2017
Messages
3,898
Reaction score
7,227
Points
838
Age
50
Location
IOWA
Gender
Female
Parts you find are gonna be just as old.
Maybe you can have a machinist make you something... but it'd be cheaper to upgrade.
I can't put a new unit in because of the way my electric is. the house was built in 1882, I believe the add on and electric was 54. The quote was over 11k for everything so it is windows and portables or fixing the capacitor. It is the reason the outside fan locked up. I still have air blowing in the house but the fan on the unit isn't, thus no cold air.
 

C to the J

Outlaw Turker
Contributor
Master Pleaser
Crowd Pleaser
HIT Poster
Joined
Jan 12, 2016
Messages
52,994
Reaction score
163,653
Points
3,238
Age
37
Gender
Male
  • Like
Reactions: GTR and ecko

Budster

Buddy, the most faithful dog on earth
Joined
May 15, 2018
Messages
47
Reaction score
61
Points
268
Age
65
Gender
Female
at this point, no one really knows what Serg does, or if he even exists, it may just be a computer program that was left turned on and it post things with vague instructions sporadically
I just had a little deja vu there, thinking about those numbers on lost that were in the endless loop........Maybe he's really Hurley.
 
  • Like
Reactions: GTR

GTR

Well-Known Member
Joined
Feb 10, 2016
Messages
10,278
Reaction score
22,985
Points
1,313
Gender
Male
Alexxy we would not mind another great batch from you right about now :wink:
 
  • Like
Reactions: Michele

C to the J

Outlaw Turker
Contributor
Master Pleaser
Crowd Pleaser
HIT Poster
Joined
Jan 12, 2016
Messages
52,994
Reaction score
163,653
Points
3,238
Age
37
Gender
Male
i am with you on that.
Now where the fuck is some Dustin at.
I was hoping he was going to be around more after that recent posting he had done
 
  • Like
Reactions: ecko
Status
Not open for further replies.