Skip to content

Commit

Permalink
tweak textbox
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex313031 committed Apr 6, 2024
1 parent 231c395 commit de34b2b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions static/proxy.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,16 @@
input[type="text"] {
border: none;
border-bottom: 1px solid var(--accentcolor);
border-radius: 3px;
font-size: 14px;
background-color: #eee;
}
input[type="text"]:focus {
border-bottom: 1px solid transparent;
outline: 2px solid var(--accentcolor);
}
input, select, textarea {
color: #050505
}
input[type="radio"] {
accent-color: var(--accentcolor);
Expand All @@ -93,6 +102,9 @@ <h3><u>Proxy Configuration</u></h3>
<label for="proxy-address" style="font-weight: bold; padding-right: 1em">Proxy Server:</label>
<input type="text" id="proxy-address" placeholder="http://127.0.0.1:7890" style="width: 200px;">
</div>
<small style="display: flex; align-items: center; padding-left: 2em; padding-top: 1em;">
<em>Note: Port number is optional</em>
</small>
</div>
<script>
window.configApi.get('useProxy').then(res => {
Expand Down

0 comments on commit de34b2b

Please sign in to comment.