mirror of
https://github.com/smartfrigde/armcord.git
synced 2024-08-14 23:56:58 +00:00
f57fe11769
* 2 new things (Read desc.) - Cleaned up ASAR packaging, ignoring unneeded files for building - Moved install location for Windows users ("AppData\Local\Programs" -> "AppData\Local" * 3 things (Read desc.) - Updated things related to Hummus (Hummus settings don't save nor load in it's respective settings window yet, idk why) - Added check for package version (ArmCord's internal version) - Made check for Kernel mod a bit cleaner, it still uses the same jank method * 3 things - Made macOS titlebar more accurate to Discord - Added "unFocused" class when window isn't focused - Added option to uninstall Husky hook for Windows users with reminder to run format script before committing * Resolved a dumb issue My dumbass not knowing the "echo" command existed smh * Made "precommit-fix" warning more noticable * Whoops * Fixed a CSS bug Discord updates are gonna hate us, huh? * 4 things (Formatted) - Updated coding for getting the current version - Updated some context menu and tray stuff - Added current version to the title of the settings window - Added the ability to restart the app within the settings * A few things - Updated tray menu to include the tray icon infront of the ArmCord version - Updated MacOS titlebar to not be broken in setup - Polished settings menu a bit - Polished the Discord tray icon - Added the Classic Discord icon as tray icon option
275 lines
5.9 KiB
CSS
275 lines
5.9 KiB
CSS
/*MIT License
|
|
|
|
Copyright (c) 2022 GooseMod
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE.*/
|
|
:root {
|
|
--background-secondary: #2f3136;
|
|
--background-secondary-alt: #292b2f;
|
|
--background-floating: #18191c;
|
|
--background-modifier-hover: rgba(106, 116, 128, 0.16);
|
|
--brand-experiment: #7289da;
|
|
--brand-experiment-560: #5c6fb1;
|
|
--brand-experiment-600: #4e5d94;
|
|
--interactive-normal: #b9bbbe;
|
|
--interactive-hover: #dcddde;
|
|
--text-muted: #72767d;
|
|
--font-primary: "Whitney";
|
|
--header-primary: #fff;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: Whitney;
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
src: url(https://armcord.xyz/whitney_400.woff) format("woff");
|
|
}
|
|
|
|
html,
|
|
body {
|
|
overflow-x: hidden;
|
|
overflow-y: scroll;
|
|
padding: 0;
|
|
margin: 2%;
|
|
background: var(--background-secondary);
|
|
}
|
|
body::-webkit-scrollbar {
|
|
width: 0.4em;
|
|
background: transparent;
|
|
}
|
|
body::-webkit-scrollbar-thumb {
|
|
background: var(--background-floating);
|
|
border-radius: 25px;
|
|
}
|
|
|
|
* {
|
|
font-family: "Whitney", sans-serif;
|
|
box-sizing: border-box;
|
|
cursor: default;
|
|
}
|
|
.left {
|
|
float: right;
|
|
}
|
|
p {
|
|
pointer-events: none;
|
|
user-select: none;
|
|
}
|
|
.switch {
|
|
vertical-align: middle;
|
|
border-radius: 10px;
|
|
background: var(--background-floating);
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
border-color: var(--background-floating);
|
|
border-style: solid;
|
|
}
|
|
.saveBar {
|
|
position: fixed;
|
|
bottom: 20px;
|
|
float: left;
|
|
left: 0;
|
|
font-weight: bold;
|
|
z-index: 999;
|
|
font-size: 10px;
|
|
}
|
|
.restartBar {
|
|
position: fixed;
|
|
bottom: 20px;
|
|
float: right;
|
|
right: 0;
|
|
font-weight: bold;
|
|
z-index: 999;
|
|
font-size: 10px;
|
|
}
|
|
.saveBar > button {
|
|
width: 90px;
|
|
transform: translateX(56%);
|
|
}
|
|
.restartBar > button {
|
|
width: 90px;
|
|
transform: translateX(50%);
|
|
}
|
|
|
|
.header {
|
|
color: var(--header-primary);
|
|
font-size: 1.5em;
|
|
position: relative;
|
|
font-weight: bold;
|
|
top: 15px;
|
|
margin: auto;
|
|
}
|
|
.description {
|
|
position: relative;
|
|
color: white;
|
|
font-size: 1.2em;
|
|
font-weight: lighter;
|
|
}
|
|
.dropdown {
|
|
position: relative;
|
|
font-size: 25px;
|
|
margin-top: 20px;
|
|
}
|
|
.center {
|
|
text-align: center;
|
|
left: 50%;
|
|
margin-right: 50%;
|
|
transform: translateX(50%);
|
|
float: right;
|
|
}
|
|
.advancedText {
|
|
color: var(--header-primary);
|
|
font-size: 1.5em;
|
|
font-weight: bold;
|
|
width: max-content;
|
|
}
|
|
/*buttons*/
|
|
button {
|
|
background: var(--brand-experiment);
|
|
color: var(--header-primary);
|
|
outline: none;
|
|
border: none;
|
|
border-radius: 5px;
|
|
padding: 8px;
|
|
margin-top: 10px;
|
|
transition: 0.17s ease;
|
|
}
|
|
button:hover {
|
|
background: var(--brand-experiment-560);
|
|
cursor: pointer;
|
|
transition: 0.17s ease;
|
|
}
|
|
|
|
button:active {
|
|
background: var(--brand-experiment-600);
|
|
cursor: pointer;
|
|
transition: 0.17s ease;
|
|
}
|
|
#save {
|
|
font-size: 15px;
|
|
}
|
|
.acAdvSettings {
|
|
height: 400px !important;
|
|
}
|
|
.tgl {
|
|
display: none;
|
|
}
|
|
.tgl,
|
|
.tgl:after,
|
|
.tgl:before,
|
|
.tgl *,
|
|
.tgl *:after,
|
|
.tgl *:before,
|
|
.tgl + .tgl-btn {
|
|
box-sizing: border-box;
|
|
margin-top: 20px;
|
|
}
|
|
.tgl::-moz-selection,
|
|
.tgl:after::-moz-selection,
|
|
.tgl:before::-moz-selection,
|
|
.tgl *::-moz-selection,
|
|
.tgl *:after::-moz-selection,
|
|
.tgl *:before::-moz-selection,
|
|
.tgl + .tgl-btn::-moz-selection {
|
|
background: none;
|
|
}
|
|
.tgl::selection,
|
|
.tgl:after::selection,
|
|
.tgl:before::selection,
|
|
.tgl *::selection,
|
|
.tgl *:after::selection,
|
|
.tgl *:before::selection,
|
|
.tgl + .tgl-btn::selection {
|
|
background: none;
|
|
}
|
|
.tgl + .tgl-btn {
|
|
outline: 0;
|
|
display: block;
|
|
width: 4em;
|
|
height: 2em;
|
|
position: relative;
|
|
cursor: pointer;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
.tgl + .tgl-btn:after,
|
|
.tgl + .tgl-btn:before {
|
|
position: relative;
|
|
display: block;
|
|
content: "";
|
|
width: 50%;
|
|
height: 100%;
|
|
}
|
|
.tgl + .tgl-btn:after {
|
|
left: 1px;
|
|
}
|
|
.tgl + .tgl-btn:before {
|
|
display: none;
|
|
}
|
|
.tgl:checked + .tgl-btn:after {
|
|
left: 56%;
|
|
}
|
|
|
|
.tgl-light + .tgl-btn {
|
|
background: var(--text-muted);
|
|
border-radius: 25px;
|
|
padding: 4px;
|
|
transition: all 0.4s ease;
|
|
}
|
|
.tgl-light + .tgl-btn:after {
|
|
border-radius: 50px;
|
|
position: relative;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
width: 24px;
|
|
height: 24px;
|
|
background: rgb(255, 255, 255);
|
|
transition: all 0.2s ease;
|
|
}
|
|
.tgl-light:checked + .tgl-btn {
|
|
background: var(--brand-experiment);
|
|
}
|
|
|
|
select optgroup {
|
|
color: #fff6;
|
|
font-weight: 200;
|
|
font-style: italic;
|
|
}
|
|
select option {
|
|
color: #fff;
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
}
|
|
select {
|
|
-webkit-appearance: button;
|
|
-moz-appearance: button;
|
|
background-color: var(--background-secondary-alt);
|
|
background-position: center right;
|
|
background-repeat: no-repeat;
|
|
border: 1px solid var(--background-floating);
|
|
border-radius: 2px;
|
|
color: #fff;
|
|
font-size: 1.2em;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
outline: none !important;
|
|
}
|