aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS/FullScreenLogin.vb
diff options
context:
space:
mode:
authorTheUltimateHacker <[email protected]>2015-03-28 15:10:56 -0400
committerTheUltimateHacker <[email protected]>2015-03-28 15:11:15 -0400
commitecb1dbd33a0eb78178b6cddb8c1fcef97d51204d (patch)
treeccf9080248bd1f61c9ec3d4b1df8be90ef401ea3 /ShiftOS/FullScreenLogin.vb
parent96805596f9f0c2683d6c62e390ef0e2a806d2708 (diff)
downloadshiftos-ecb1dbd33a0eb78178b6cddb8c1fcef97d51204d.tar.gz
shiftos-ecb1dbd33a0eb78178b6cddb8c1fcef97d51204d.tar.bz2
shiftos-ecb1dbd33a0eb78178b6cddb8c1fcef97d51204d.zip
Gecko Implementation
Rest in Pieces, Trident! I've converted the Internet Browser to Gecko, the Firefox Rendering Engine. Virtually no code has been changed (unless you include the other stuff I'm working on like FullScreenLogin.vb)
Diffstat (limited to 'ShiftOS/FullScreenLogin.vb')
-rw-r--r--ShiftOS/FullScreenLogin.vb10
1 files changed, 1 insertions, 9 deletions
diff --git a/ShiftOS/FullScreenLogin.vb b/ShiftOS/FullScreenLogin.vb
index af38901..f9deb1b 100644
--- a/ShiftOS/FullScreenLogin.vb
+++ b/ShiftOS/FullScreenLogin.vb
@@ -7,7 +7,7 @@
End Sub
Public Sub setskin()
- Me.BackColor = Skins.loginbgcolor
+ Me.BackColor = Color.Black
Me.BackgroundImage = Skins.loginbg
Me.BackgroundImageLayout = Skins.loginbglayout
userpic.Size = New Size(Skins.userimagesize, Skins.userimagesize)
@@ -15,14 +15,6 @@
userpic.BackColor = Color.Transparent
userpic.BackgroundImageLayout = Skins.userimagelayout
If Not IsNothing(Skins.userimagelocation) Then userpic.Location = Skins.userimagelocation
- txtusername.ForeColor = Skins.inputforecolor
- txtpassword.ForeColor = Skins.inputforecolor
- txtusername.BackColor = Skins.inputbackcolor
- txtpassword.BackColor = Skins.inputbackcolor
- txtusername.Font = New Font(Skins.inputfont, Skins.inputfontsize, Skins.inputfontstyle)
- txtpassword.Font = New Font(Skins.inputfont, Skins.inputfontsize, Skins.inputfontstyle)
- loginbtn.Font = New Font(Skins.buttonfont, Skins.buttonfontsize, Skins.buttonfontstyle)
- shutdown.Font = New Font(Skins.buttonfont, Skins.buttonfontsize, Skins.buttonfontstyle)
txtusername.Location = New Point(Skins.userTextboxX, Skins.userTextBoxY)
txtpassword.Location = New Point(Skins.passTextBoxX, Skins.passTextBoxY)
loginbtn.Location = New Point(Skins.loginbtnX, Skins.loginbtnY)