esp32tool 1.3.0 → 1.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
package/css/dark.css CHANGED
@@ -146,6 +146,47 @@ input {
146
146
  border-color: #555;
147
147
  }
148
148
 
149
+ .partition-table-display tr {
150
+ background-color: rgba(255, 255, 255, 0.05);
151
+ border-color: #555;
152
+ }
153
+
154
+ .partition-table-display td::before {
155
+ color: #aaa;
156
+ }
157
+
158
+ /* Upload cards dark mode */
159
+ @media (max-width: 768px) {
160
+ #commands .upload {
161
+ background-color: rgba(255, 255, 255, 0.05);
162
+ border-color: #555;
163
+ }
164
+
165
+ #commands .upload label:first-child {
166
+ color: #aaa;
167
+ }
168
+
169
+ #commands .partition-table {
170
+ background-color: rgba(255, 255, 255, 0.05);
171
+ border-color: #555;
172
+ }
173
+
174
+ /* Filesystem manager cards */
175
+ .littlefs-file-upload {
176
+ background-color: rgba(255, 255, 255, 0.05);
177
+ border-color: #555;
178
+ }
179
+
180
+ .file-table tr {
181
+ background-color: rgba(255, 255, 255, 0.05);
182
+ border-color: #555;
183
+ }
184
+
185
+ .file-table td::before {
186
+ color: #aaa;
187
+ }
188
+ }
189
+
149
190
  .littlefs-fs-button {
150
191
  background-color: #8ec641;
151
192
  color: white;
package/css/light.css CHANGED
@@ -146,6 +146,47 @@ button {
146
146
  border-color: #ccc;
147
147
  }
148
148
 
149
+ .partition-table-display tr {
150
+ background-color: rgba(0, 0, 0, 0.02);
151
+ border-color: #ccc;
152
+ }
153
+
154
+ .partition-table-display td::before {
155
+ color: #666;
156
+ }
157
+
158
+ /* Upload cards light mode */
159
+ @media (max-width: 768px) {
160
+ #commands .upload {
161
+ background-color: rgba(0, 0, 0, 0.02);
162
+ border-color: #ccc;
163
+ }
164
+
165
+ #commands .upload label:first-child {
166
+ color: #666;
167
+ }
168
+
169
+ #commands .partition-table {
170
+ background-color: rgba(0, 0, 0, 0.02);
171
+ border-color: #ccc;
172
+ }
173
+
174
+ /* Filesystem manager cards */
175
+ .littlefs-file-upload {
176
+ background-color: rgba(0, 0, 0, 0.02);
177
+ border-color: #ccc;
178
+ }
179
+
180
+ .file-table tr {
181
+ background-color: rgba(0, 0, 0, 0.02);
182
+ border-color: #ccc;
183
+ }
184
+
185
+ .file-table td::before {
186
+ color: #666;
187
+ }
188
+ }
189
+
149
190
  .littlefs-fs-button {
150
191
  background-color: #8ec641;
151
192
  color: white;