1
0
mirror of https://github.com/chylex/Discord-History-Tracker.git synced 2025-09-16 04:32:09 +02:00

3 Commits

4 changed files with 9 additions and 8 deletions

View File

@@ -34,8 +34,8 @@
<StackPanel Margin="20"> <StackPanel Margin="20">
<ScrollViewer MaxHeight="400"> <ScrollViewer MaxHeight="400">
<ItemsControl Items="{Binding Items}"> <ItemsRepeater Items="{Binding Items}">
<ItemsControl.ItemTemplate> <ItemsRepeater.ItemTemplate>
<DataTemplate> <DataTemplate>
<CheckBox IsChecked="{Binding Checked}"> <CheckBox IsChecked="{Binding Checked}">
<Label> <Label>
@@ -43,8 +43,8 @@
</Label> </Label>
</CheckBox> </CheckBox>
</DataTemplate> </DataTemplate>
</ItemsControl.ItemTemplate> </ItemsRepeater.ItemTemplate>
</ItemsControl> </ItemsRepeater>
</ScrollViewer> </ScrollViewer>
<Panel Classes="buttons"> <Panel Classes="buttons">
<WrapPanel Classes="left"> <WrapPanel Classes="left">

View File

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

View File

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

View File

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