Skip to content

Commit

Permalink
Fix some weird css.
Browse files Browse the repository at this point in the history
  • Loading branch information
e3ndr committed Jan 18, 2021
1 parent b912550 commit 1890af4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 13 deletions.
10 changes: 8 additions & 2 deletions app/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -169,10 +169,11 @@ select,
textarea {
background-color: var(--menu-background-color) !important;
color: var(--menu-icon-color) !important;
border-radius: 6px;
border-radius: 6px !important;
border: 1px solid #4a4a4a;
cursor: auto;
outline: none !important;
height: 2.5em;
}

input[type=checkbox] {
Expand All @@ -185,12 +186,17 @@ select {
}

input[type=search] {
height: 3em;
height: 3em !important;
width: 180px;
}

input[type=range] {
height: 4px !important;
}

input[type=color] {
cursor: pointer;
width: 53px;
}

input[type=number] {
Expand Down
11 changes: 0 additions & 11 deletions app/js/caffeinated.js
Original file line number Diff line number Diff line change
Expand Up @@ -438,17 +438,6 @@ CAFFEINATED.setUserImage(null, "");
CAFFEINATED.setUserName("");
CAFFEINATED.setUserPlatform(null, "");

/* Make reloads relaunch */

globalShortcut.register("CommandOrControl+R", () => {
if (CAFFEINATED.isDevEnviroment) {
location.reload();
} else {
app.relaunch();
app.exit();
}
});

/* Koi */
koi.addEventListener("close", () => {
CONNECTED = false;
Expand Down

0 comments on commit 1890af4

Please sign in to comment.