We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
styleNode
style, split long line to 2, removed semicolon, replaced
w/
1 parent 1f8db2f commit 81437fbCopy full SHA for 81437fb
1 file changed
highlight-radio-bubbles/highlight-radio-bubbles.user.js
@@ -1,6 +1,6 @@
1
// ==UserScript==
2
// @name Highlight Radio Bubbles
3
-// @version 2025.10.19.1
+// @version 2025.10.19.2
4
// @author Adam Lui
5
// @namespace https://adamlui.com
6
// @description Makes radio bubbles bigger & more colorful when brought to focus.
@@ -22,7 +22,8 @@
22
23
(() => {
24
'use strict'
25
- const styleNode = document.createElement('style')
26
- styleNode.innerHTML = 'input[type=radio]:focus { outline-color: red !important ; width: 25px !important ; height: 25px !important ; }'
27
- document.head.appendChild(styleNode)
+ const style = document.createElement('style')
+ style.innerHTML = `input[type=radio]:focus {
+ outline-color: red !important ; width: 25px !important ; height: 25px !important }`
28
+ document.head.append(style)
29
})()
0 commit comments