diff options
author | Tom Smeding <tom.smeding@gmail.com> | 2020-07-07 21:46:31 +0200 |
---|---|---|
committer | Tom Smeding <tom.smeding@gmail.com> | 2020-07-07 21:46:31 +0200 |
commit | 4659374068eda6473feed06143433dce4e8eade2 (patch) | |
tree | 7165a216a1c98f6dfd73113f7b15877f57136620 | |
parent | 1098c82714bb8fc8edc331509847d249811a791d (diff) |
webclient: Eliminate font-awesome dependency
-rw-r--r-- | webclient/client.html | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/webclient/client.html b/webclient/client.html index 61c7d4b..28a91fd 100644 --- a/webclient/client.html +++ b/webclient/client.html @@ -606,7 +606,6 @@ table{ background-color:#445; } </style> -<script src="https://use.fontawesome.com/ccf28a5626.js"></script> </head> <body> <table id="window"><tbody><tr> @@ -624,7 +623,14 @@ table{ <tr id="roombar_tr"> <td id="roominput_td"><input type="text" id="roominput" onkeypress="doKeypress(event)"></td> <td id="roomsend_td"> - <button id="roomsend" onclick="doSend()"><i class="fa fa-send"></i></button> + <button id="roomsend" onclick="doSend()"> +<svg width="27px" height="21px" version="1.1" viewBox="10 15 100 85" style="margin-top: 6px; margin-bottom: -2px"> + <g fill="#fff"> + <path transform="translate(-.61382 -.30051)" d="m14.614 20.301 76 30-72-5z"/> + <path d="m14 80 76-30-72 5z"/> + </g> +</svg> + </button> </td> </tr> </tbody></table> |