Skip to content

Commit

Permalink
Added eslint-disable-line to bypass no-invalid-properties false p…
Browse files Browse the repository at this point in the history
…ositive for `color` (eslint/css#40)
  • Loading branch information
adamlui committed Jan 12, 2025
1 parent 6771ae5 commit f5095b9
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion chatgpt-auto-continue/chromium/extension/popup/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ a:focus, a:hover { text-decoration: underline ; color: inherit }
}
.menu-icon { padding: 8px }
.menu-area:focus, .menu-area:hover { /* add hover color/cursor */
color: var(--bg) ; background: rgb(100, 149, 237) ; cursor: pointer }
color: var(--bg) ; background: rgb(100, 149, 237) ; cursor: pointer } /* eslint-disable-line */
.menu-item:hover span:not(.slider) { filter: invert(1) } /* invert setting labels on hover */
.menu-item > label > .slider { transform: scale(0.95) ; top: 1px } /* make child toggles smaller */
.menu-prompt { margin-left: 2px } /* align non-toggle items */
Expand Down
2 changes: 1 addition & 1 deletion chatgpt-auto-continue/firefox/extension/popup/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ a:focus, a:hover { text-decoration: underline ; color: inherit }
}
.menu-icon { padding: 8px }
.menu-area:focus, .menu-area:hover { /* add hover color/cursor */
color: var(--bg) ; background: rgb(100, 149, 237) ; cursor: pointer }
color: var(--bg) ; background: rgb(100, 149, 237) ; cursor: pointer } /* eslint-disable-line */
.menu-item:hover span:not(.slider) { filter: invert(1) } /* invert setting labels on hover */
.menu-item > label > .slider { transform: scale(0.95) ; top: 1px } /* make child toggles smaller */
.menu-prompt { margin-left: 2px } /* align non-toggle items */
Expand Down
2 changes: 1 addition & 1 deletion chatgpt-infinity/chrome/extension/popup/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ a:focus, a:hover { text-decoration: underline ; color: inherit }
}
.menu-icon { padding: 8px }
.menu-area:focus, .menu-area:hover { /* add hover color/cursor */
color: var(--bg) ; background: rgb(100, 149, 237) ; cursor: pointer }
color: var(--bg) ; background: rgb(100, 149, 237) ; cursor: pointer } /* eslint-disable-line */
.menu-item:hover span:not(.slider) { filter: invert(1) } /* invert setting labels on hover */
.menu-item > label > .slider { transform: scale(0.95) ; top: 1px } /* make child toggles smaller */
.menu-prompt { margin-left: 2px } /* align non-toggle items */
Expand Down
2 changes: 1 addition & 1 deletion chatgpt-infinity/firefox/extension/popup/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ a:focus, a:hover { text-decoration: underline ; color: inherit }
}
.menu-icon { padding: 8px }
.menu-area:focus, .menu-area:hover { /* add hover color/cursor */
color: var(--bg) ; background: rgb(100, 149, 237) ; cursor: pointer }
color: var(--bg) ; background: rgb(100, 149, 237) ; cursor: pointer } /* eslint-disable-line */
.menu-item:hover span:not(.slider) { filter: invert(1) } /* invert setting labels on hover */
.menu-item > label > .slider { transform: scale(0.95) ; top: 1px } /* make child toggles smaller */
.menu-prompt { margin-left: 2px } /* align non-toggle items */
Expand Down
2 changes: 1 addition & 1 deletion chatgpt-widescreen/chrome/extension/popup/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ a:focus, a:hover { text-decoration: underline ; color: inherit }
}
.menu-icon { padding: 8px }
.menu-area:focus, .menu-area:hover { /* add hover color/cursor */
color: var(--bg) ; background: rgb(100, 149, 237) ; cursor: pointer }
color: var(--bg) ; background: rgb(100, 149, 237) ; cursor: pointer } /* eslint-disable-line */
.menu-item:hover span:not(.slider) { filter: invert(1) } /* invert setting labels on hover */
.menu-item > label > .slider { transform: scale(0.95) ; top: 1px } /* make child toggles smaller */
.menu-prompt { margin-left: 2px } /* align non-toggle items */
Expand Down
2 changes: 1 addition & 1 deletion chatgpt-widescreen/firefox/extension/popup/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ a:focus, a:hover { text-decoration: underline ; color: inherit }
}
.menu-icon { padding: 8px }
.menu-area:focus, .menu-area:hover { /* add hover color/cursor */
color: var(--bg) ; background: rgb(100, 149, 237) ; cursor: pointer }
color: var(--bg) ; background: rgb(100, 149, 237) ; cursor: pointer } /* eslint-disable-line */
.menu-item:hover span:not(.slider) { filter: invert(1) } /* invert setting labels on hover */
.menu-item > label > .slider { transform: scale(0.95) ; top: 1px } /* make child toggles smaller */
.menu-prompt { margin-left: 2px } /* align non-toggle items */
Expand Down

0 comments on commit f5095b9

Please sign in to comment.