From 27262ca8ab4e9dfc292d6701a93d9e446551a87a Mon Sep 17 00:00:00 2001 From: Minteck Date: Fri, 17 Jun 2022 15:30:54 +0200 Subject: Update --- .DS_Store | Bin 6148 -> 6148 bytes .idea/deployment.xml | 19 +++++ assets/black.css | 35 +++++++++ index.html | 200 +++++++++++++++++++++++++++++++++++++++++++++------ index.js | 2 +- 5 files changed, 232 insertions(+), 24 deletions(-) create mode 100644 .idea/deployment.xml create mode 100644 assets/black.css diff --git a/.DS_Store b/.DS_Store index 3ed63fb..e2b4a08 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/.idea/deployment.xml b/.idea/deployment.xml new file mode 100644 index 0000000..1be9b5a --- /dev/null +++ b/.idea/deployment.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/black.css b/assets/black.css new file mode 100644 index 0000000..aca4d03 --- /dev/null +++ b/assets/black.css @@ -0,0 +1,35 @@ +#header { + border-bottom: 1px solid rgba(255, 255, 255, .25) !important; + height: 31px !important; +} + +#view { + background: black !important; + color: white !important; +} + +.transaction { + border-bottom: 1px solid rgba(255, 255, 255, .1) !important; +} + +.transaction:hover, .transaction:active, .transaction:focus { + background: rgba(255, 255, 255, .1) !important; +} + +#goal { + background: black !important; + border-top: 1px solid rgba(255, 255, 255, .25) !important; +} + +#goal-bar { + background: rgba(255, 255, 255, .1) !important; +} + +#confirm-modal-inner > h3, #create-modal-inner > h3, #about-modal-inner > h3 { + background: rgba(255, 255, 255, .1); +} + +#confirm-modal-inner, #create-modal-inner, #about-modal-inner { + color: white; + background: rgb(60, 60, 60) !important; +} \ No newline at end of file diff --git a/index.html b/index.html index ad209f2..432c5d0 100644 --- a/index.html +++ b/index.html @@ -4,6 +4,9 @@ Bits + +
+ -
+

Confirm action

+

Are you sure you want to do this?

+
+   +
+
+ + +
+

About Bits

+
+
Bits
+ Server: money-v1.equestria.dev
+ Platform:
+ User Agent:
+
+ +
+
+ +
%goal% %goal_eur%€, £%goal_gbp% · %goal_percentage%% completed%goal_eur%€, £%goal_gbp% · %goal_percentage%% completed ">
+ \ No newline at end of file diff --git a/index.js b/index.js index 360f3ca..2380604 100644 --- a/index.js +++ b/index.js @@ -59,7 +59,7 @@ ipcMain.on("login", () => { loginWindow.show(); } - if (url === "https://money.equestria.dev/Authentication/Success/") { + if (url === "https://money-v1.equestria.dev/Authentication/Success/" || url === "https://money-v2.equestria.dev/Authentication/Success/") { clearInterval(authenticationCheckInterval); global.authenticationSucceeded = true; loginWindow.close(); -- cgit