Skip to content

Commit

Permalink
Merge pull request #10 from AliAlSarre/main
Browse files Browse the repository at this point in the history
Made CSS More Readable ↞ [auto-sync from `kudoai/duckduckgpt`]
  • Loading branch information
adamlui authored and kudo-sync-bot committed May 24, 2023
1 parent d6d47a9 commit 26e5ecb
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions chatgpt/duckduckgpt/duckduckgpt.user.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// ==UserScript==
// @name DuckDuckGPT 🤖
// @version 2023.5.23
// @version 2023.5.23.1
// @author Adam Lui
// @namespace https://github.com/adamlui
// @description Adds ChatGPT answers to DuckDuckGo sidebar (powered by GPT-4!)
Expand Down Expand Up @@ -426,8 +426,11 @@
+ '.balloon-tip { content: "" ; position: relative ; top: 5px ; right: 16.5em ; border: 7px solid transparent ;'
+ 'border-bottom-style: solid ; border-bottom-width: 1.19rem ; border-top: 0 ; border-bottom-color: '
+ ( isDarkMode() ? '#3a3a3a' : '#eaeaea' ) + ' } '
+ '.continue-chat > textarea { border: none ; height: 1.55rem ; width: 97.6% ; margin: 3px 0 15px 0 ; resize: none ; max-height: 200px ; padding: 9px 0 5px 10px ; border-radius: 12px 13px 12px 0 ; background: '
+ ( isDarkMode() ? '#515151' : '#eeeeee70' ) + ' } '
+ '.continue-chat > textarea {'
+ 'border: none ; border-radius: 12px 13px 12px 0 ; '
+ 'height: 1.55rem ; width: 97.6% ; max-height: 200px ;resize: none ; '
+ 'margin: 3px 0 15px 0 ; padding: 9px 0 5px 10px ; '
+ 'background: ' + ( isDarkMode() ? '#515151' : '#eeeeee70' ) + ' } '
+ '.kudo-ai { position: relative ; left: 6px ; color: #aaa } '
+ '.kudo-ai a, .kudo-ai a:visited { color: #aaa ; text-decoration: none } '
+ '.kudo-ai a:hover { color: ' + ( isDarkMode() ? 'white' : 'black' ) + ' ; text-decoration: none } '
Expand Down

0 comments on commit 26e5ecb

Please sign in to comment.