forked from eh8/lightdm-eh8
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5862183
commit 8ade179
Showing
22 changed files
with
1,662 additions
and
1,400 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,33 +1,34 @@ | ||
{ | ||
"name": "lightdm-saluto", | ||
"version": "1.0.0", | ||
"license": "MIT", | ||
"author": "Demonstrandum", | ||
"homepage": "https://github.com/Demonstrandum/Saluto", | ||
"repository": "https://github.com/Demonstrandum/Saluto", | ||
"scripts": { | ||
"serve": "vue-cli-service serve", | ||
"build": "vue-cli-service build" | ||
}, | ||
"dependencies": { | ||
"vue": "^2.6.10", | ||
"vue-router": "^3.1.3" | ||
}, | ||
"devDependencies": { | ||
"@vue/cli-plugin-babel": "^4.0.5", | ||
"@vue/cli-service": "^4.0.5", | ||
"node-sass": "^4.13.0", | ||
"sass-loader": "^8.0.0", | ||
"vue-template-compiler": "^2.6.10" | ||
}, | ||
"postcss": { | ||
"plugins": { | ||
"autoprefixer": {} | ||
} | ||
}, | ||
"browserslist": [ | ||
"> 1%", | ||
"last 2 versions", | ||
"not ie <= 8" | ||
] | ||
"name": "lightdm-saluto", | ||
"version": "1.0.0", | ||
"license": "MIT", | ||
"author": "Demonstrandum", | ||
"homepage": "https://github.com/Demonstrandum/Saluto", | ||
"repository": "https://github.com/Demonstrandum/Saluto", | ||
"scripts": { | ||
"serve": "vue-cli-service serve", | ||
"build": "vue-cli-service build" | ||
}, | ||
"dependencies": { | ||
"vue": "^2.6.10", | ||
"vue-router": "^3.1.3", | ||
"simple-keyboard": "latest" | ||
}, | ||
"devDependencies": { | ||
"@vue/cli-plugin-babel": "^4.0.5", | ||
"@vue/cli-service": "^4.0.5", | ||
"node-sass": "^4.13.0", | ||
"sass-loader": "^8.0.0", | ||
"vue-template-compiler": "^2.6.10" | ||
}, | ||
"postcss": { | ||
"plugins": { | ||
"autoprefixer": {} | ||
} | ||
}, | ||
"browserslist": [ | ||
"> 1%", | ||
"last 2 versions", | ||
"not ie <= 8" | ||
] | ||
} |
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 |
---|---|---|
@@ -1,102 +1,112 @@ | ||
<template> | ||
<div id="app" | ||
:class="{ 'disableZoom': disableZoom }"> | ||
<div id="app" :class="{ 'disableZoom': disableZoom }"> | ||
<transition name="fade"> | ||
<router-view/> | ||
</transition> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
import { settings } from '@/settings'; | ||
export default { | ||
mounted() { | ||
this.$router.push('/intro/initial'); | ||
}, | ||
data() { | ||
return { | ||
disableZoom: settings.disableZoom | ||
} | ||
import { settings } from '@/settings'; | ||
export default { | ||
mounted() { | ||
this.$router.push('/intro/initial'); | ||
}, | ||
data() { | ||
return { | ||
disableZoom: settings.disableZoom | ||
} | ||
} | ||
} | ||
</script> | ||
|
||
<style lang="scss"> | ||
@import '_theme'; | ||
@import '_theme'; | ||
html.lightdm { | ||
background: $outer-background; | ||
color: $secondary-color; | ||
} | ||
html.lightdm { | ||
background: $outer-background; | ||
color: $secondary-color; | ||
} | ||
/* HiDPI */ | ||
@media screen and (min-width: 3000px) and (min-height: 1200px) { | ||
#app:not(.disableZoom) { | ||
zoom: 2.0; | ||
} | ||
} | ||
@font-face { | ||
font-family: 'Alte Haas Grotesk'; | ||
src: url('assets/fonts/AlteHaasGroteskRegular.ttf'); | ||
} | ||
@font-face { | ||
font-family: 'Alte Haas Grotesk'; | ||
font-weight: bold; | ||
src: url('assets/fonts/AlteHaasGroteskBold.ttf'); | ||
} | ||
@font-face { | ||
font-family: 'Input Mono'; | ||
src: url('assets/fonts/InputMono-Regular.ttf'); | ||
} | ||
@font-face { | ||
font-family: 'Input Mono'; | ||
font-style: italic; | ||
src: url('assets/fonts/InputMono-Italic.ttf'); | ||
} | ||
html, body, #app, #app > *, .base > * { | ||
margin: 0; | ||
padding: 0; | ||
height: 100vh; | ||
overflow: hidden; | ||
background-size: cover; | ||
border-radius: $screen-radius; | ||
} | ||
h1, h2, h3, h4, h5, h6 { | ||
cursor: default; | ||
} | ||
img { | ||
-webkit-user-drag: none; | ||
} | ||
#app { | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
-webkit-user-select: none; | ||
text-align: center; | ||
} | ||
.fade-enter-active, .fade-leave-active { | ||
transition-property: opacity; | ||
transition-duration: .4s; | ||
} | ||
.fade-enter-active { | ||
transition-delay: .4s; | ||
} | ||
/* HiDPI */ | ||
.fade-enter, .fade-leave-active { | ||
opacity: 0 | ||
@media screen and (min-width: 3000px) and (min-height: 1200px) { | ||
#app:not(.disableZoom) { | ||
zoom: 2.0; | ||
} | ||
} | ||
@font-face { | ||
font-family: 'Alte Haas Grotesk'; | ||
src: url('assets/fonts/AlteHaasGroteskRegular.ttf'); | ||
} | ||
@font-face { | ||
font-family: 'Alte Haas Grotesk'; | ||
font-weight: bold; | ||
src: url('assets/fonts/AlteHaasGroteskBold.ttf'); | ||
} | ||
@font-face { | ||
font-family: 'Input Mono'; | ||
src: url('assets/fonts/InputMono-Regular.ttf'); | ||
} | ||
@font-face { | ||
font-family: 'Input Mono'; | ||
font-style: italic; | ||
src: url('assets/fonts/InputMono-Italic.ttf'); | ||
} | ||
html, | ||
body, | ||
#app, | ||
#app>*, | ||
.base>* { | ||
margin: 0; | ||
padding: 0; | ||
height: 100vh; | ||
overflow: hidden; | ||
background-size: cover; | ||
border-radius: $screen-radius; | ||
} | ||
h1, | ||
h2, | ||
h3, | ||
h4, | ||
h5, | ||
h6 { | ||
cursor: default; | ||
} | ||
img { | ||
-webkit-user-drag: none; | ||
} | ||
#app { | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
-webkit-user-select: none; | ||
text-align: center; | ||
} | ||
.fade-enter-active, | ||
.fade-leave-active { | ||
transition-property: opacity; | ||
transition-duration: .4s; | ||
} | ||
.fade-enter-active { | ||
transition-delay: .4s; | ||
} | ||
.fade-enter, | ||
.fade-leave-active { | ||
opacity: 0 | ||
} | ||
.visible { | ||
visibility: visible !important; | ||
} | ||
</style> |
Oops, something went wrong.