This is an automated email from the git hooks/post-receive script. New commit to branch bow-v2-go in repository bow. See https://gitlab.nuiton.org/chorem/bow.git commit fc81b7a1cf9fd19e0c460ea2febb28b97ea34709 Author: kaufmann <kaufmann@codelutin.com> Date: Tue Aug 11 17:23:29 2020 +0200 Diverses petites retouches graphiques --- web/src/assets/less/_base.less | 6 ++---- web/src/components/CloudTags.vue | 2 +- web/src/components/common/DropDown.vue | 2 +- web/src/components/common/PageMainTitle.vue | 8 +------- web/src/components/layout/Footer.vue | 10 +++++++--- web/src/components/layout/Header.vue | 5 ++++- web/src/views/About.vue | 15 ++++++++++++++- 7 files changed, 30 insertions(+), 18 deletions(-) diff --git a/web/src/assets/less/_base.less b/web/src/assets/less/_base.less index 9b9bbd3..9d4060d 100644 --- a/web/src/assets/less/_base.less +++ b/web/src/assets/less/_base.less @@ -16,7 +16,7 @@ textarea { background-color: transparent; color: var(--color-black); - border: 1px solid var(--color-grey); + border: 1px solid var(--color-grey--lighter); border-radius: 3px; &:focus { @@ -34,9 +34,7 @@ select { padding: 0 var(--margin--small); background-color: inherit; - border: 1px solid var(--color-main); - border-right-color: var(--color-main--darker); - border-top-color: var(--color-main--darker); + border: 1px solid var(--color-grey--lighter); } a { diff --git a/web/src/components/CloudTags.vue b/web/src/components/CloudTags.vue index 8162f6e..b69c025 100644 --- a/web/src/components/CloudTags.vue +++ b/web/src/components/CloudTags.vue @@ -61,8 +61,8 @@ export default CloudTags .cloud-tags { display: flex; flex-wrap: wrap; + align-items: baseline; justify-content: center; - align-items: center; width: 100%; min-height: 160px; diff --git a/web/src/components/common/DropDown.vue b/web/src/components/common/DropDown.vue index ee55f8c..686d48c 100644 --- a/web/src/components/common/DropDown.vue +++ b/web/src/components/common/DropDown.vue @@ -65,7 +65,7 @@ color: white; background-color: var(--color-bg-sidebar); - box-shadow: 0 6px 15px 0 rgba(0, 0, 0, 0.15); + box-shadow: 0 6px 15px 0 rgba(0, 0, 0, 0.2); button { width: 100%; diff --git a/web/src/components/common/PageMainTitle.vue b/web/src/components/common/PageMainTitle.vue index 2f0a1dc..ccdd114 100644 --- a/web/src/components/common/PageMainTitle.vue +++ b/web/src/components/common/PageMainTitle.vue @@ -10,16 +10,10 @@ <style scoped> h1 { - margin-bottom: var(--margin--medium); - margin-top: var(--margin--small); - color: var(--color-main); -} - -h1.bow-list-title, -.bow-form-wrapper h1 { margin-top: 0; margin-bottom: var(--margin--small); padding: var(--margin--large); + color: var(--color-main); text-align: center; } diff --git a/web/src/components/layout/Footer.vue b/web/src/components/layout/Footer.vue index f69603c..97544b7 100644 --- a/web/src/components/layout/Footer.vue +++ b/web/src/components/layout/Footer.vue @@ -9,6 +9,8 @@ > <i class="icon icon-lutin"></i> </a> + + <span title="Copyright" class="copyright">©2010-2020</span> </p> <p> <SimpleLink @@ -21,7 +23,6 @@ class="link" >License</SimpleLink> - <span title="Copyright">©2010-2018</span> <SimpleLink href="http://www.codelutin.com" @@ -75,12 +76,15 @@ footer { } .icon { - margin-left: var(--margin--tiny);; - margin-right: var(--margin--tiny);; + margin-left: var(--margin--tiny); + margin-right: var(--margin--tiny); } .icon-lutin { font-size: 140%; } + .copyright { + margin-left: var(--margin--medium); + } } .link--invisible:not(:hover) { diff --git a/web/src/components/layout/Header.vue b/web/src/components/layout/Header.vue index 3ece915..c8a917f 100644 --- a/web/src/components/layout/Header.vue +++ b/web/src/components/layout/Header.vue @@ -71,6 +71,7 @@ header { align-items: center; justify-content: center; + background-color: white; border-bottom: 1px solid var(--color-separation-border); } @@ -100,12 +101,14 @@ header { & > div { display: flex; - align-items: baseline; + align-items: center; } .link--icon-only { padding-top: 0; padding-bottom: 0; + + font-size: 22px; } } diff --git a/web/src/views/About.vue b/web/src/views/About.vue index 3fa2807..5725e1f 100644 --- a/web/src/views/About.vue +++ b/web/src/views/About.vue @@ -1,5 +1,18 @@ <template> <div class="about"> - <h1>This is an about page</h1> + <PageMainTitle class="bow-form-title"> + This is an about page + </PageMainTitle> </div> </template> +<script> +import { Component, Vue } from 'vue-property-decorator' +import PageMainTitle from '@/components/common/PageMainTitle' + +@Component({ + name: 'About', + components: { PageMainTitle } +}) +class About extends Vue {} +export default About +</script> \ No newline at end of file -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.