-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #521 from arconnectio/development
ArConnect BETA 1.19.3
- Loading branch information
Showing
55 changed files
with
1,298 additions
and
716 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# EditorConfig is awesome: https://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.{sh,bash}] | ||
end_of_line = lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
PLASMO_PUBLIC_APP_TYPE=extension |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
@font-face { | ||
font-family: "ManropeLocal"; | ||
font-style: normal; | ||
font-weight: 300; | ||
src: url(/assets/fonts/Manrope-Light.woff2) format('woff2'); | ||
} | ||
|
||
@font-face { | ||
font-family: "ManropeLocal"; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: url(/assets/fonts/Manrope-Regular.woff2) format('woff2'); | ||
} | ||
|
||
@font-face { | ||
font-family: "ManropeLocal"; | ||
font-style: normal; | ||
font-weight: 500; | ||
src: url(/assets/fonts/Manrope-Medium.woff2) format('woff2'); | ||
} | ||
|
||
@font-face { | ||
font-family: "ManropeLocal"; | ||
font-style: normal; | ||
font-weight: 600; | ||
src: url(/assets/fonts/Manrope-SemiBold.woff2) format('woff2'); | ||
} | ||
|
||
@font-face { | ||
font-family: "ManropeLocal"; | ||
font-style: normal; | ||
font-weight: 600; | ||
src: url(/assets/fonts/Manrope-Bold.woff2) format('woff2'); | ||
} | ||
|
||
@font-face { | ||
font-family: "ManropeLocal"; | ||
font-style: normal; | ||
font-weight: 700; | ||
src: url(/assets/fonts/Manrope-ExtraBold.woff2) format('woff2'); | ||
} | ||
|
||
* { | ||
scrollbar-width: none; | ||
} | ||
|
||
*::-webkit-scrollbar { | ||
display: none | ||
} | ||
|
||
::selection { | ||
background-color: rgba(171, 154, 255, .6); | ||
color: #fff; | ||
} | ||
|
||
:root { | ||
--defaultBackgroundColor: white; | ||
} | ||
|
||
@media (prefers-color-scheme: dark) { | ||
:root { | ||
--defaultBackgroundColor: black; | ||
} | ||
} | ||
|
||
body { | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
body#popup { | ||
width: 377px; | ||
height: 600px; | ||
} | ||
|
||
body.fullscreen { | ||
width: 377px; | ||
height: 100vh; | ||
margin: 0 auto; | ||
} | ||
|
||
body.fullscreen::before { | ||
content: ""; | ||
position: fixed; | ||
top: 50%; | ||
left: 50%; | ||
width: 377px; | ||
height: 100vh; | ||
transform: translate(-50%, -50%); | ||
pointer-events: none; | ||
box-shadow: 0 0 128px 0 rgba(171, 154, 255, .4); | ||
} | ||
|
||
body, | ||
button, | ||
input, | ||
select, | ||
textarea { | ||
font-family: "ManropeLocal", "Manrope VF", "Manrope", sans-serif !important; | ||
} | ||
|
||
button { | ||
background: transparent; | ||
border: 0; | ||
padding: 0; | ||
} | ||
|
||
#cover { | ||
position: fixed; | ||
top: 0; | ||
right: 0; | ||
bottom: 0; | ||
left: 0; | ||
z-index: 99999999; | ||
background-color: var(--backgroundColor, var(--defaultBackgroundColor, white)); | ||
transition: background-color linear 230ms; | ||
} | ||
|
||
#cover[aria-hidden] { | ||
background: transparent; | ||
pointer-events: none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
const backgroundColor = localStorage.getItem("ARCONNECT_THEME_BACKGROUND_COLOR"); | ||
|
||
if (backgroundColor) document.documentElement.style.setProperty('--backgroundColor', backgroundColor); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.