Skip to content
This repository has been archived by the owner on Jun 20, 2022. It is now read-only.

Commit

Permalink
Merge pull request #360 from ImisDevelopers/dev
Browse files Browse the repository at this point in the history
Dev to master
  • Loading branch information
btobi authored May 19, 2020
2 parents 1c24e86 + 7bdf9be commit 6797697
Show file tree
Hide file tree
Showing 285 changed files with 7,002 additions and 2,235 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
.idea
.gradle
.DS_Store
.vscode
**/.project
**/.settings
/.classpath
Expand Down
4 changes: 2 additions & 2 deletions client/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ module.exports = {
'plugin:vue/essential',
'eslint:recommended',
'@vue/typescript/recommended',
'@vue/prettier',
'@vue/prettier/@typescript-eslint',
//'@vue/prettier',
//'@vue/prettier/@typescript-eslint',
],
parserOptions: {
parser: '@typescript-eslint/parser',
Expand Down
1 change: 1 addition & 0 deletions client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ task buildFrontend(type: YarnTask) {
task lint(type: YarnTask) {
args = ['run', 'lint']
}

task test(type: YarnTask) {
args = ['run', 'test:unit']
}
Expand Down
53 changes: 1 addition & 52 deletions client/src/Root.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,57 +6,6 @@

<style lang="scss">
.imis-table-no-pagination {
.ant-table-pagination {
display: none;
}
}
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
}
#nav {
padding: 30px;
a {
font-weight: bold;
color: #2c3e50;
&.router-link-exact-active {
color: #42b983;
}
}
}
// CSS classes used by multiple components
.imis-radio-group {
display: flex;
flex-direction: column;
align-items: stretch;
padding-left: 15px;
> label {
padding: 10px 0 10px 15px;
display: flex;
align-items: center;
}
> label:hover {
background: rgba(0, 0, 0, 0.1);
}
.ant-radio {
margin-right: 10px;
}
i {
margin-right: 10px;
}
}
@import '@/assets/global';
</style>
76 changes: 76 additions & 0 deletions client/src/assets/global.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");

body {
font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.imis-table-no-pagination {
.ant-table-pagination {
display: none;
}
}

#app {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #2c3e50;
}

#nav {
padding: 30px;

a {
font-weight: bold;
color: #2c3e50;

&.router-link-exact-active {
color: #42b983;
}
}
}

// CSS classes used by multiple components
.imis-radio-group {
display: flex;
flex-direction: column;
align-items: stretch;
padding-left: 15px;

> label {
padding: 10px 0 10px 15px;
display: flex;
align-items: center;
}

> label:hover {
background: rgba(0, 0, 0, 0.1);
}

.ant-radio {
margin-right: 10px;
}

i {
margin-right: 10px;
}
}

.ant-divider-horizontal {
margin: 16px 0;
}

h4 {
font-weight: bold,
}

.fading-enter-active,
.fading-leave-active {
transition: opacity 0.2s;
}
.fading-enter, .fading-leave-to /* .fade-leave-active below version 2.1.8 */ {
opacity: 0;
}

.ant-form-item {
margin-bottom: 10px;
}
2 changes: 1 addition & 1 deletion client/src/components/DateInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default mixins(FormControlMixin).extend({
props: {
value: { default: undefined },
open: { default: false },
placeholder: { default: 'TT.MM.JJJJ (z.B. 28.02.1986)' },
placeholder: { default: 'z.B. 28.02.1986' },
format: { default: 'DD.MM.YYYY' },
defaultValue: { default: undefined },
},
Expand Down
Loading

0 comments on commit 6797697

Please sign in to comment.