Compare commits

...

2 Commits

Author SHA1 Message Date
chylex
261be50463
Release v35.3 2022-05-19 12:30:25 +02:00
chylex
f93f5c8fdd
Fix DHT tracker overlaying bottom of the app & set z-index to force it on top if it happens again
Closes #181
2022-05-19 12:28:24 +02:00
3 changed files with 5 additions and 4 deletions

View File

@ -1,4 +1,4 @@
#app-mount > div[class*="app-"] {
#app-mount div[class*="app-"] {
margin-bottom: 48px !important;
}
@ -8,6 +8,7 @@
width: 100%;
height: 48px;
background-color: #fff;
z-index: 1000000;
}
#dht-ctrl button {

View File

@ -7,7 +7,7 @@
background-color: #000;
opacity: 0.5;
display: block;
z-index: 1000;
z-index: 1000001;
}
#dht-cfg {
@ -20,7 +20,7 @@
margin-top: -131px;
padding: 8px;
background-color: #fff;
z-index: 1001;
z-index: 1000002;
}
#dht-cfg-note {

View File

@ -7,6 +7,6 @@ using DHT.Utils;
namespace DHT.Utils {
static class Version {
public const string Tag = "35.2.0.0";
public const string Tag = "35.3.0.0";
}
}