diff --git a/src/assets/styles/primevue.css b/src/assets/styles/primevue.css index 4ec2d5a53..a87c431ef 100644 --- a/src/assets/styles/primevue.css +++ b/src/assets/styles/primevue.css @@ -1,2 +1,3 @@ @import '../../components/common/Common.css'; -@import '../../components/inputtext/InputText.css'; \ No newline at end of file +@import '../../components/inputtext/InputText.css'; +@import '../../components/button/Button.css'; \ No newline at end of file diff --git a/src/components/button/Button.css b/src/components/button/Button.css new file mode 100644 index 000000000..e61039bfe --- /dev/null +++ b/src/components/button/Button.css @@ -0,0 +1,111 @@ +/* Button */ +.p-button { + display: inline-block; + position: relative; + padding: 0; + text-decoration: none !important; + cursor: pointer; + text-align: center; + zoom: 1; + overflow: visible; /* the overflow property removes extra width in IE */ + margin-right: 0.25em; + user-select: none; + -moz-user-select: none; + -webkit-user-select: none; +} + +/*button text element */ +.p-button .p-button-text { + display: block; + line-height: normal; +} + +.p-button-text-only .p-button-text { + padding: .25em 1em; +} + +.p-button-icon-only .p-button-text, +.p-button-text-empty .p-button-text { + padding: .25em; + text-indent: -9999999px; +} + +.p-button-text-icon-left .p-button-text { + padding: .25em 1em .25em 2.1em; +} + +.p-button-text-icon-right .p-button-text { + padding: .25em 2.1em .25em 1em; +} + +/*button icon element(s) */ +.p-button-icon-only .p-button-icon-left, +.p-button-text-icon-left .p-button-icon-left, +.p-button-text-icon-right .p-button-icon-right { + position: absolute; + top: 50%; + margin-top: -.5em; + height: 1em; +} + +.p-button-icon-only .p-button-icon-left { + top: 50%; + left: 50%; + margin-top: -.5em; + margin-left: -.5em; + width: 1em; + height: 1em; +} + +.p-button-icon-left { + left: .5em; +} + +.p-button-icon-right { + right: .5em; +} + +/*button sets*/ +.p-buttonset .p-button { + margin-left: 0; + margin-right: 0; +} + +/* workarounds */ +button.p-button::-moz-focus-inner { + border: 0; padding: 0; /* reset extra padding in Firefox */ +} + +/** Fluid **/ +.p-fluid .p-button { + width: 100%; +} + +.p-fluid .p-button-text-icon-left .p-button-text, +.p-fluid .p-button-text-icon-right .p-button-text { + padding-left: 1em; + padding-right: 1em; +} + +/** ButtonSet **/ +.p-fluid .p-buttonset { + width: 100%; +} + +.p-fluid .p-buttonset.p-buttonset-1 .p-button {width: 100%;} +.p-fluid .p-buttonset.p-buttonset-2 .p-button {width: 50%;} +.p-fluid .p-buttonset.p-buttonset-3 .p-button {width: 33.3%;} +.p-fluid .p-buttonset.p-buttonset-4 .p-button {width: 25%;} +.p-fluid .p-buttonset.p-buttonset-5 .p-button {width: 20%;} +.p-fluid .p-buttonset.p-buttonset-6 .p-button {width: 16.6%;} + +@media (max-width: 640px) { + .p-fluid .p-buttonset.p-buttonset-1 .p-button, + .p-fluid .p-buttonset.p-buttonset-2 .p-button, + .p-fluid .p-buttonset.p-buttonset-3 .p-button, + .p-fluid .p-buttonset.p-buttonset-4 .p-button, + .p-fluid .p-buttonset.p-buttonset-5 .p-button, + .p-fluid .p-buttonset.p-buttonset-6 .p-button { + width: 100%; + } +} \ No newline at end of file diff --git a/src/components/button/Button.vue b/src/components/button/Button.vue new file mode 100644 index 000000000..3f16baae5 --- /dev/null +++ b/src/components/button/Button.vue @@ -0,0 +1,44 @@ + + + diff --git a/src/main.js b/src/main.js index 15ed09a10..fcea726f7 100644 --- a/src/main.js +++ b/src/main.js @@ -2,13 +2,16 @@ import Vue from 'vue'; import App from './App.vue'; import router from './router'; import InputText from './components/inputtext/InputText'; +import Button from './components/button/Button'; import './assets/styles/primevue.css'; import 'primeflex/primeflex.css'; +import 'primeicons/primeicons.css'; Vue.config.productionTip = false; Vue.component('p-inputtext', InputText); +Vue.component('p-button', Button); new Vue({ router, diff --git a/src/router.js b/src/router.js index cc4a85e4d..bd32fc3c4 100644 --- a/src/router.js +++ b/src/router.js @@ -20,6 +20,11 @@ export default new Router({ path: '/inputtext', name: 'inputtext', component: () => import('./views/inputtext/InputTextDemo.vue') - } + }, + { + path: '/button', + name: 'button', + component: () => import('./views/button/ButtonDemo.vue') + } ] }); diff --git a/src/views/button/ButtonDemo.vue b/src/views/button/ButtonDemo.vue new file mode 100644 index 000000000..088157ded --- /dev/null +++ b/src/views/button/ButtonDemo.vue @@ -0,0 +1,49 @@ + + + \ No newline at end of file