diff --git a/src/main/resources/static/index.html b/src/main/resources/static/index.html index 926cd96..464ffa0 100644 --- a/src/main/resources/static/index.html +++ b/src/main/resources/static/index.html @@ -54,8 +54,8 @@
- - + +
\ No newline at end of file diff --git a/src/main/resources/static/style.css b/src/main/resources/static/style.css index 2589757..1bfc913 100644 --- a/src/main/resources/static/style.css +++ b/src/main/resources/static/style.css @@ -105,8 +105,23 @@ details.nav { width: 100% } -.ssid-row button {padding: 6px 10px;font-size: 14px;background: #f1f1f1;border: 1px solid #777;border-radius: 4px;cursor: pointer} +.icon-button { + font-size: 10px; + background-color: #f0f0f0; + border: none; + padding: 8px 12px; + border-radius: 6px; + cursor: pointer; + transition: background-color 0.2s ease; +} +.icon-button:hover { + background-color: #dcdcdc; +} + +.icon-button:active { + background-color: #c0c0c0; +} /* 3-column grids (Network / Server) */ .grid-3-col {display: grid;grid-template-columns:180px 240px 120px;align-items: center;gap: 16px} .grid-3-col input {padding: 6px 8px;font-size: 16px;border: 1px solid #aaa;border-radius: 1px;width: 100%}