diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index de2ed54..bb9b001 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,9 +5,11 @@ name: CI on: push: - branches: [main, fork] + branches: + - main pull_request: - branches: [main, fork] + branches: + - main jobs: build: diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml index 2eb3ff8..896edaf 100644 --- a/.github/workflows/release-drafter.yml +++ b/.github/workflows/release-drafter.yml @@ -4,7 +4,6 @@ on: push: branches: - main - - fork jobs: update_release_draft: diff --git a/README.md b/README.md index 721dc5f..5fac02f 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,4 @@ A Web Serial package for updating your ESP bootloader via the browser. ## Fork -This is a fork of [Adafruit WebSerial ESPTool](https://github.com/adafruit/Adafruit_WebSerial_ESPTool). Their repository is a single-use website. This fork converts the code into a reusable package. - -The changes of this fork are part of [an open pull request](https://github.com/adafruit/Adafruit_WebSerial_ESPTool/pull/10) upstream. If accepted in a way that it's usable for our projects, we can retire this project. +This is a fork of [Adafruit WebSerial ESPTool](https://github.com/adafruit/Adafruit_WebSerial_ESPTool). At the time fo the fork, their repository was a single-use website. This fork converted the code into a reusable package and published it to NPM. diff --git a/css/style.css b/css/style.css index b45690b..c31594f 100644 --- a/css/style.css +++ b/css/style.css @@ -34,7 +34,8 @@ color: #000; } -button, .firmware { +button, +.firmware { height: 25px; font-size: 16px; border-radius: 15px; @@ -54,7 +55,10 @@ p { margin: 0; } -input, select, button, label { +input, +select, +button, +label { font-weight: 600; outline: none; } @@ -75,12 +79,6 @@ div.clear { clear: both; } -.Adafruit-Logo { - width: 115px; - height: 40px; - object-fit: contain; -} - .main { overflow-x: hidden; overflow-y: auto; @@ -125,7 +123,8 @@ div.clear { height: calc(100vh - 330px); } -#commands, #log { +#commands, +#log { transition: height 0.5s; } @@ -144,7 +143,7 @@ div.clear { font-size: 16px; overflow-x: hidden; overflow-x: auto; - transition : color 0.1s linear; + transition: color 0.1s linear; padding: 0 50px; border: 20px solid #000; -ms-overflow-style: none; @@ -310,12 +309,12 @@ div.clear { } .firmware > input { - width: 0.1px; - height: 0.1px; - opacity: 0; - overflow: hidden; - position: absolute; - z-index: -1; + width: 0.1px; + height: 0.1px; + opacity: 0; + overflow: hidden; + position: absolute; + z-index: -1; } .firmware { diff --git a/index.html b/index.html index beb79a1..60db960 100644 --- a/index.html +++ b/index.html @@ -46,9 +46,7 @@