diff --git a/public/demo/images/nature/nature1.jpg b/public/demo/images/nature/nature1.jpg new file mode 100755 index 000000000..a224b3113 Binary files /dev/null and b/public/demo/images/nature/nature1.jpg differ diff --git a/public/demo/images/nature/nature10.jpg b/public/demo/images/nature/nature10.jpg new file mode 100755 index 000000000..46b76f977 Binary files /dev/null and b/public/demo/images/nature/nature10.jpg differ diff --git a/public/demo/images/nature/nature11.jpg b/public/demo/images/nature/nature11.jpg new file mode 100755 index 000000000..fe6d7edd9 Binary files /dev/null and b/public/demo/images/nature/nature11.jpg differ diff --git a/public/demo/images/nature/nature12.jpg b/public/demo/images/nature/nature12.jpg new file mode 100755 index 000000000..f0fad9834 Binary files /dev/null and b/public/demo/images/nature/nature12.jpg differ diff --git a/public/demo/images/nature/nature2.jpg b/public/demo/images/nature/nature2.jpg new file mode 100755 index 000000000..b643b3094 Binary files /dev/null and b/public/demo/images/nature/nature2.jpg differ diff --git a/public/demo/images/nature/nature3.jpg b/public/demo/images/nature/nature3.jpg new file mode 100755 index 000000000..456925a72 Binary files /dev/null and b/public/demo/images/nature/nature3.jpg differ diff --git a/public/demo/images/nature/nature4.jpg b/public/demo/images/nature/nature4.jpg new file mode 100755 index 000000000..568bc9184 Binary files /dev/null and b/public/demo/images/nature/nature4.jpg differ diff --git a/public/demo/images/nature/nature5.jpg b/public/demo/images/nature/nature5.jpg new file mode 100755 index 000000000..2648e9157 Binary files /dev/null and b/public/demo/images/nature/nature5.jpg differ diff --git a/public/demo/images/nature/nature6.jpg b/public/demo/images/nature/nature6.jpg new file mode 100755 index 000000000..500ee9c8b Binary files /dev/null and b/public/demo/images/nature/nature6.jpg differ diff --git a/public/demo/images/nature/nature7.jpg b/public/demo/images/nature/nature7.jpg new file mode 100755 index 000000000..02489a8f0 Binary files /dev/null and b/public/demo/images/nature/nature7.jpg differ diff --git a/public/demo/images/nature/nature8.jpg b/public/demo/images/nature/nature8.jpg new file mode 100755 index 000000000..c9fcdc864 Binary files /dev/null and b/public/demo/images/nature/nature8.jpg differ diff --git a/public/demo/images/nature/nature9.jpg b/public/demo/images/nature/nature9.jpg new file mode 100755 index 000000000..e25252d81 Binary files /dev/null and b/public/demo/images/nature/nature9.jpg differ diff --git a/src/AppMenu.vue b/src/AppMenu.vue index 2bdd39de2..ac9db7d15 100644 --- a/src/AppMenu.vue +++ b/src/AppMenu.vue @@ -45,6 +45,7 @@
● Panel ● Fieldset + ● FlexGrid ● Toolbar
diff --git a/src/assets/images/component-intro-bg.jpg b/src/assets/images/component-intro-bg.jpg new file mode 100644 index 000000000..df39424a7 Binary files /dev/null and b/src/assets/images/component-intro-bg.jpg differ diff --git a/src/assets/styles/app.scss b/src/assets/styles/app.scss index b5ece541a..ac7f38405 100644 --- a/src/assets/styles/app.scss +++ b/src/assets/styles/app.scss @@ -48,7 +48,7 @@ body { background-color: #f6f6f6; font-family: "Open Sans", "Helvetica Neue", sans-serif; font-weight: normal; - color: #333333; + color: #484848; -webkit-font-smoothing: antialiased; font-size: 14px; } @@ -237,7 +237,7 @@ body { display: block; padding: 15px 0px 0px 25px; border-top: solid 1px #e3e9ea; - color: #333333; + color: #484848; cursor: pointer; user-select: none; @@ -396,8 +396,9 @@ body { } &.introduction { - @include background-gradient-left2right(#41b883, #50aeae); - color: #ffffff; + background: url('./assets/images/component-intro-bg.jpg'); + border-bottom: 1px solid #dadada; + color: #484848; .feature-intro { h1 { @@ -405,7 +406,7 @@ body { margin: 0 0 20px 0; display: block; text-align: left; - color: #ffffff; + color: #222222; font-weight: normal; } @@ -413,6 +414,7 @@ body { margin: 0; line-height: 2em; font-size: 16px; + color: #222222; } a { @@ -494,7 +496,7 @@ body { &.documentation { h3 { - color: #333333; + color: #484848; margin-top: 25px; margin-bottom: 0px; font-size: 22px; @@ -508,7 +510,7 @@ body { } p { - color: #333333; + color: #484848; font-size: 16px; line-height: 24px; margin: 10px 0; @@ -585,7 +587,7 @@ body { &.p-highlight a { background: #f5f7f8; - color: #333333; + color: #484848; } &:not(.p-highlight) a:hover { @@ -774,7 +776,7 @@ body { h3 { font-size:24px; - color: #333333; + color: #484848; margin-bottom: 25px; } @@ -805,16 +807,14 @@ body { margin-bottom: 30px; &.features-tagline { - color: #333333; + color: #484848; margin-bottom: 0; margin-top: -5px; } &.features-description { - color: #333333; + color: #484848; text-align: left; - - } > a{ @@ -862,7 +862,7 @@ body { h3 { font-size:24px; - color: #333333; + color: #484848; margin-bottom: 25px; } diff --git a/src/router.js b/src/router.js index b8fb5a3e0..9b9316dfb 100644 --- a/src/router.js +++ b/src/router.js @@ -11,6 +11,21 @@ export default new Router({ name: 'home', component: Home }, + { + path: '/button', + name: 'button', + component: () => import('./views/button/ButtonDemo.vue') + }, + { + path: '/fieldset', + name: 'fieldset', + component: () => import('./views/fieldset/FieldsetDemo.vue') + }, + { + path: '/flexgrid', + name: 'flexgrid', + component: () => import('./views/flexgrid/FlexGridDemo.vue') + }, { path: '/inputtext', name: 'inputtext', @@ -21,21 +36,11 @@ export default new Router({ name: 'listbox', component: () => import('./views/listbox/ListBoxDemo.vue') }, - { - path: '/button', - name: 'button', - component: () => import('./views/button/ButtonDemo.vue') - }, { path: '/panel', name: 'panel', component: () => import('./views/panel/PanelDemo.vue') }, - { - path: '/fieldset', - name: 'fieldset', - component: () => import('./views/fieldset/FieldsetDemo.vue') - }, { path: '/textarea', name: 'textarea', diff --git a/src/views/flexgrid/FlexGridDemo.vue b/src/views/flexgrid/FlexGridDemo.vue new file mode 100644 index 000000000..604473104 --- /dev/null +++ b/src/views/flexgrid/FlexGridDemo.vue @@ -0,0 +1,489 @@ + + + + +