Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improved CSS Readability #2

Merged
merged 2 commits into from May 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions greasemonkey/bravegpt.user.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// ==UserScript==
// @name BraveGPT 🤖
// @version 2023.5.23.1
// @version 2023.5.23.2
// @author Adam Lui
// @namespace https://github.com/adamlui
// @description Adds ChatGPT answers to Brave Search sidebar (powered by GPT-4!)
Expand Down Expand Up @@ -435,8 +435,10 @@
+ '.chatgpt-js { font-family: var(--brand-font) ; font-size: .65rem ; position: relative ; right: .9rem } '
+ '.chatgpt-js > a { color: inherit ; top: .054rem } '
+ '.chatgpt-js > svg { top: 3px ; position: relative ; margin-right: 1px } '
+ '.continue-chat > textarea { border: none ; background: #eeeeee70 ; height: 2.15rem ; width: 100% ; margin: -6px 0 5px 0 ; resize: none ; max-height: 200px ; padding: 9px 0 5px 10px ; border-radius: 15px 16px 15px 0 } '
+ '.continue-chat > button { position: relative ; bottom: 54px; left: 299px; border: none ; background: none ; margin: 13px 4px 0 0 ; color: lightgrey ; cursor: pointer } '
+ '.continue-chat > textarea { border: none ; border-radius: 15px 16px 15px 0 ; margin: -6px 0 5px 0 ; padding: 9px 0 5px 10px ; '
+ 'background: #eeeeee70 ; height: 2.15rem ; width: 100% ; max-height: 200px ; resize: none ; } '
+ '.continue-chat > button { position: relative ; bottom: 54px; left: 299px; border: none ; margin: 13px 4px 0 0 ; '
+ 'background: none ; color: lightgrey ; cursor: pointer } '
+ '.kudo-ai { margin-left: 7px ; font-size: .65rem ; color: #aaa } '
+ '.kudo-ai a { color: #aaa ; text-decoration: none } '
+ '.kudo-ai a:hover { color: black ; text-decoration: none } '
Expand Down