From ea30e8abe5600b8f7a2713bf4ab530e22a1dd7de Mon Sep 17 00:00:00 2001 From: RossAsscends <124905043+RossAscends@users.noreply.github.com> Date: Wed, 1 Mar 2023 04:38:54 +0900 Subject: [PATCH] text-pole fixes - removed forced size tags from text-pole div's as these caused some textareas to overflow the nav on iphone. instead widths are done with CSS now. - added
after yourName textarea and increased size of the nameChange button to match the API design. This is also better for phones. --- public/index.html | 11 ++++++----- public/style.css | 16 ++++++++++++++-- 2 files changed, 20 insertions(+), 7 deletions(-) diff --git a/public/index.html b/public/index.html index 5840cb85f..fb8ec9072 100644 --- a/public/index.html +++ b/public/index.html @@ -2873,7 +2873,7 @@

Scenario

Circumstances and context of the dialogue (?)
- +
@@ -2970,7 +2970,7 @@

Name

Character name
- +
@@ -3034,7 +3034,7 @@

API url

Example: http://127.0.0.1:5000/api
- +
@@ -3061,7 +3061,7 @@

API key

Where to get (?)
- +
@@ -3095,7 +3095,8 @@

Name

- + +

diff --git a/public/style.css b/public/style.css index ed094e647..3dcbbe9fb 100644 --- a/public/style.css +++ b/public/style.css @@ -438,6 +438,8 @@ width: 100%; size: 10; font-size: 11pt; padding: 7px; + width:90%; + margin-bottom:5px; } @@ -1473,10 +1475,20 @@ input[type="range"] { } #your_name_button { - opacity: 0.5; + cursor: pointer; + color: #fff; + opacity: 0.7; + padding: 10px; margin-left: 10px; - cursor: pointer; + margin-top: 10px; + margin: 10px; + font-size: 1rem; + height: 2.5rem; + transition: 0.3s; } + +#your_name_button:hover{background-color:green;} + #form_change_name{ margin-bottom: 15px; }