remove sendForm disconnected coloring, tweak CSS to accomodate light themes
| @@ -340,9 +340,9 @@ body.no-blur * { | ||
| 340 | 340 | backdrop-filter: unset !important; |
| 341 | 341 | } |
| 342 | 342 | |
| 343 | 343 | /* body.no-blur #send_form.no-connection { |
| 344 | 344 | background-color: rgba(100, 0, 0, 0.9) !important; |
| 345 | -} | |
| 345 | +} */ | |
| 346 | 346 | |
| 347 | 347 | body.no-blur #bg1, |
| 348 | 348 | body.no-blur #bg_custom { |
| @@ -314,7 +314,7 @@ function RA_checkOnlineStatus() { | ||
| 314 | 314 | if (online_status == 'no_connection') { |
| 315 | 315 | const send_textarea = $('#send_textarea'); |
| 316 | 316 | send_textarea.attr('placeholder', send_textarea.attr('no_connection_text')); //Input bar placeholder tells users they are not connected |
| 317 | 317 | //$('#send_form').addClass('no-connection'); //entire input form area is red when not connected |
| 318 | 318 | $('#send_but').addClass('displayNone'); //send button is hidden when not connected; |
| 319 | 319 | $('#mes_continue').addClass('displayNone'); //continue button is hidden when not connected; |
| 320 | 320 | $('#mes_impersonate').addClass('displayNone'); //continue button is hidden when not connected; |
| @@ -325,7 +325,7 @@ function RA_checkOnlineStatus() { | ||
| 325 | 325 | if (online_status !== undefined && online_status !== 'no_connection') { |
| 326 | 326 | const send_textarea = $('#send_textarea'); |
| 327 | 327 | send_textarea.attr('placeholder', send_textarea.attr('connected_text')); //on connect, placeholder tells user to type message |
| 328 | 328 | //$('#send_form').removeClass('no-connection'); |
| 329 | 329 | $('#API-status-top').removeClass('fa-plug-circle-exclamation redOverlayGlow'); |
| 330 | 330 | $('#API-status-top').addClass('fa-plug'); |
| 331 | 331 | connection_made = true; |
| @@ -690,9 +690,9 @@ opacity:0; | ||
| 690 | 690 | backdrop-filter: blur(var(--SmartThemeBlurStrength)); |
| 691 | 691 | } |
| 692 | 692 | |
| 693 | 693 | /* #send_form.no-connection { |
| 694 | 694 | background-color: var(--crimson70a) !important; |
| 695 | -} | |
| 695 | +} */ | |
| 696 | 696 | |
| 697 | 697 | #nonQRFormItems { |
| 698 | 698 | padding: 0; |
| @@ -2962,10 +2962,11 @@ input[type=search]:focus::-webkit-search-cancel-button { | ||
| 2962 | 2962 | bottom: 0; |
| 2963 | 2963 | position: relative; |
| 2964 | 2964 | word-break: break-word; |
| 2965 | 2965 | background-color: var(--black50aSmartThemeBlurTintColor); |
| 2966 | 2966 | font-size: calc(var(--fontScale) * 0.9em); |
| 2967 | 2967 | max-height: 50%; |
| 2968 | 2968 | overflow-y: clip; |
| 2969 | + border-radius: 0 0 7px 7px; | |
| 2969 | 2970 | } |
| 2970 | 2971 | |
| 2971 | 2972 | .bg_example[custom="true"] .BGSampleTitle { |
| @@ -3432,7 +3433,7 @@ grammarly-extension { | ||
| 3432 | 3433 | |
| 3433 | 3434 | .menu_button { |
| 3434 | 3435 | color: var(--SmartThemeBodyColor); |
| 3435 | 3436 | background-color: var(--black50aSmartThemeBlurTintColor); |
| 3436 | 3437 | border: 1px solid var(--SmartThemeBorderColor); |
| 3437 | 3438 | border-radius: 5px; |
| 3438 | 3439 | padding: 3px 5px; |
| @@ -3962,8 +3963,8 @@ input[type="range"]::-webkit-slider-thumb { | ||
| 3962 | 3963 | opacity: 0.5; |
| 3963 | 3964 | margin: 0 5px; |
| 3964 | 3965 | text-align: center; |
| 3965 | 3966 | /* border-radius: 100%; |
| 3966 | 3967 | box-shadow: 0 0 3px black; */ |
| 3967 | 3968 | transition: all 250ms; |
| 3968 | 3969 | } |
| 3969 | 3970 | |
| @@ -4551,6 +4552,7 @@ h2 { | ||
| 4551 | 4552 | |
| 4552 | 4553 | a { |
| 4553 | 4554 | color: orange; |
| 4555 | + color: var(--SmartThemeQuoteColor); | |
| 4554 | 4556 | text-decoration: none; |
| 4555 | 4557 | } |
| 4556 | 4558 | |