feat: show all styles in source code
This commit is contained in:
parent
7b723e469b
commit
97aa5e7839
@ -22,7 +22,8 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="stylus" scoped docs>
|
<style scoped>
|
||||||
section
|
section {
|
||||||
margin-bottom 20px
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -34,7 +34,8 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="stylus" scoped docs>
|
<style scoped>
|
||||||
section
|
section {
|
||||||
margin-bottom 20px
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -55,10 +55,11 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.veui-button {
|
.veui-button {
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon {
|
.icon {
|
||||||
vertical-align: -2px;
|
vertical-align: -2px;
|
||||||
}
|
}
|
||||||
|
@ -60,7 +60,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.veui-button {
|
.veui-button {
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
}
|
}
|
||||||
|
@ -26,7 +26,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.veui-alert {
|
.veui-alert {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
@ -71,7 +71,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.anchor-offset-demo {
|
.anchor-offset-demo {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
@ -80,7 +80,8 @@ export default {
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
top: 20px;
|
top: 20px;
|
||||||
width: 180px;
|
width: 180px;
|
||||||
border-top: 1px solid red;;
|
border-top: 1px solid red;
|
||||||
|
|
||||||
&::after {
|
&::after {
|
||||||
content: "targetOffset: 20px";
|
content: "targetOffset: 20px";
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@ -90,9 +91,11 @@ export default {
|
|||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.sticky-offset-line {
|
.sticky-offset-line {
|
||||||
top: 30px;
|
top: 30px;
|
||||||
left: 250px;
|
left: 250px;
|
||||||
|
|
||||||
&::after {
|
&::after {
|
||||||
content: "stickyOffset: 30px";
|
content: "stickyOffset: 30px";
|
||||||
}
|
}
|
||||||
@ -117,10 +120,12 @@ export default {
|
|||||||
width: 100px;
|
width: 100px;
|
||||||
height: 150px;
|
height: 150px;
|
||||||
flex: none;
|
flex: none;
|
||||||
|
|
||||||
& + .block {
|
& + .block {
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.anchor-two {
|
.anchor-two {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 250px;
|
left: 250px;
|
||||||
|
@ -77,14 +77,16 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.anchor-demo {
|
.anchor-demo {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
.line {
|
.line {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
width: 180px;
|
width: 180px;
|
||||||
border-top: 1px solid red;;
|
border-top: 1px solid red;;
|
||||||
|
|
||||||
&::after {
|
&::after {
|
||||||
content: "0";
|
content: "0";
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@ -114,6 +116,7 @@ export default {
|
|||||||
width: 100px;
|
width: 100px;
|
||||||
height: 150px;
|
height: 150px;
|
||||||
flex: none;
|
flex: none;
|
||||||
|
|
||||||
& + .block {
|
& + .block {
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
}
|
}
|
||||||
@ -124,6 +127,7 @@ export default {
|
|||||||
left: 250px;
|
left: 250px;
|
||||||
top: 50px;
|
top: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.anchor-two {
|
.anchor-two {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 450px;
|
left: 450px;
|
||||||
|
@ -32,7 +32,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
section {
|
section {
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
}
|
}
|
||||||
|
@ -46,7 +46,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.veui-badge {
|
.veui-badge {
|
||||||
margin-right: 2em;
|
margin-right: 2em;
|
||||||
}
|
}
|
||||||
|
@ -41,7 +41,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.veui-badge {
|
.veui-badge {
|
||||||
& + & {
|
& + & {
|
||||||
margin-left: 2em;
|
margin-left: 2em;
|
||||||
|
@ -48,7 +48,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.veui-breadcrumb:first-child {
|
.veui-breadcrumb:first-child {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
@ -42,7 +42,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.veui-breadcrumb:first-child {
|
.veui-breadcrumb:first-child {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
@ -40,7 +40,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
section {
|
section {
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
}
|
}
|
||||||
|
@ -40,7 +40,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
section {
|
section {
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
}
|
}
|
||||||
|
@ -61,7 +61,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
section {
|
section {
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
}
|
}
|
||||||
|
@ -28,7 +28,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.veui-button-group {
|
.veui-button-group {
|
||||||
margin-right: 1em;
|
margin-right: 1em;
|
||||||
}
|
}
|
||||||
|
@ -34,7 +34,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.veui-button-group {
|
.veui-button-group {
|
||||||
margin-right: 1em;
|
margin-right: 1em;
|
||||||
}
|
}
|
||||||
|
@ -38,7 +38,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
section {
|
section {
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
}
|
}
|
||||||
|
@ -87,7 +87,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
section {
|
section {
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
}
|
}
|
||||||
|
@ -87,7 +87,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
section {
|
section {
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
}
|
}
|
||||||
|
@ -28,7 +28,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.veui-button {
|
.veui-button {
|
||||||
margin-right: 1em;
|
margin-right: 1em;
|
||||||
}
|
}
|
||||||
|
@ -47,7 +47,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.veui-button {
|
.veui-button {
|
||||||
margin-right: 1em;
|
margin-right: 1em;
|
||||||
}
|
}
|
||||||
|
@ -54,7 +54,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
article {
|
article {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
@ -56,7 +56,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
h4 {
|
h4 {
|
||||||
margin: 0 0 10px;
|
margin: 0 0 10px;
|
||||||
}
|
}
|
||||||
|
@ -64,27 +64,28 @@ export default {
|
|||||||
indicatorPosition: 'inside',
|
indicatorPosition: 'inside',
|
||||||
align: 'start',
|
align: 'start',
|
||||||
indicators: [
|
indicators: [
|
||||||
{ label: 'Bar', value: 'bar' },
|
{ label: 'bar', value: 'bar' },
|
||||||
{ label: 'Number', value: 'number' },
|
{ label: 'number', value: 'number' },
|
||||||
{ label: 'Dot', value: 'dot' },
|
{ label: 'dot', value: 'dot' },
|
||||||
{ label: 'None', value: 'none' }
|
{ label: 'none', value: 'none' }
|
||||||
],
|
],
|
||||||
alignments: [
|
alignments: [
|
||||||
{ value: 'start', label: 'start' },
|
{ label: 'start', value: 'start' },
|
||||||
{ value: 'end', label: 'end' }
|
{ label: 'end', value: 'end' }
|
||||||
],
|
],
|
||||||
positions: [
|
positions: [
|
||||||
{ label: 'Inside', value: 'inside' },
|
{ label: 'inside', value: 'inside' },
|
||||||
{ label: 'Outside', value: 'outside' }
|
{ label: 'outside', value: 'outside' }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
h4 {
|
h4 {
|
||||||
margin: 0 0 10px;
|
margin: 0 0 10px;
|
||||||
|
|
||||||
&:not(:first-child) {
|
&:not(:first-child) {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
|
@ -65,7 +65,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
h4 {
|
h4 {
|
||||||
margin: 0 0 10px;
|
margin: 0 0 10px;
|
||||||
}
|
}
|
||||||
|
@ -53,7 +53,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
h4 {
|
h4 {
|
||||||
margin: 0 0 10px;
|
margin: 0 0 10px;
|
||||||
}
|
}
|
||||||
|
@ -58,7 +58,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
h4 {
|
h4 {
|
||||||
margin: 0 0 10px;
|
margin: 0 0 10px;
|
||||||
}
|
}
|
||||||
|
@ -1,32 +1,52 @@
|
|||||||
<template>
|
<template>
|
||||||
<article>
|
<article>
|
||||||
<section class="cascader-config">
|
<section class="cascader-config">
|
||||||
<veui-checkbox ui="s" v-model="clearable2">Clearable</veui-checkbox>
|
<veui-checkbox
|
||||||
<veui-checkbox ui="s" v-model="showSelectAll2">ShowSelectAll</veui-checkbox>
|
v-model="clearable2"
|
||||||
|
ui="s"
|
||||||
|
>
|
||||||
|
Clearable
|
||||||
|
</veui-checkbox>
|
||||||
|
<veui-checkbox
|
||||||
|
v-model="showSelectAll2"
|
||||||
|
ui="s"
|
||||||
|
>
|
||||||
|
ShowSelectAll
|
||||||
|
</veui-checkbox>
|
||||||
<veui-radio
|
<veui-radio
|
||||||
v-model="trigger2"
|
v-model="trigger2"
|
||||||
ui="s"
|
ui="s"
|
||||||
value="click"
|
value="click"
|
||||||
name="columnTrigger2"
|
name="columnTrigger2"
|
||||||
>click to expand</veui-radio>
|
>
|
||||||
|
click to expand
|
||||||
|
</veui-radio>
|
||||||
<veui-radio
|
<veui-radio
|
||||||
v-model="trigger2"
|
v-model="trigger2"
|
||||||
ui="s"
|
ui="s"
|
||||||
value="hover"
|
value="hover"
|
||||||
name="columnTrigger2"
|
name="columnTrigger2"
|
||||||
>hover to expand</veui-radio>
|
>
|
||||||
|
hover to expand
|
||||||
|
</veui-radio>
|
||||||
<label>
|
<label>
|
||||||
Max:
|
Max:
|
||||||
<veui-number-input ui="s" v-model="max2"/>
|
<veui-number-input
|
||||||
|
v-model="max2"
|
||||||
|
ui="s"
|
||||||
|
/>
|
||||||
</label>
|
</label>
|
||||||
<label>
|
<label>
|
||||||
columnWidth:
|
columnWidth:
|
||||||
<veui-input ui="s" v-model="columnWidth2"/>
|
<veui-input
|
||||||
|
v-model="columnWidth2"
|
||||||
|
ui="s"
|
||||||
|
/>
|
||||||
</label>
|
</label>
|
||||||
</section>
|
</section>
|
||||||
<veui-cascader
|
<veui-cascader
|
||||||
class="mt-3p"
|
|
||||||
v-model="value2"
|
v-model="value2"
|
||||||
|
class="mt-3p"
|
||||||
:options="options"
|
:options="options"
|
||||||
:searchable="searchable2"
|
:searchable="searchable2"
|
||||||
:column-trigger="trigger2"
|
:column-trigger="trigger2"
|
||||||
@ -178,7 +198,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.cascader-config {
|
.cascader-config {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@ -194,4 +214,4 @@ export default {
|
|||||||
.mt-3p {
|
.mt-3p {
|
||||||
margin-top: 12px;
|
margin-top: 12px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -141,13 +141,14 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.cascader-wrap {
|
.cascader-wrap {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
.veui-cascader + .veui-cascader{
|
}
|
||||||
margin-top: 12px;
|
|
||||||
}
|
.veui-cascader + .veui-cascader {
|
||||||
|
margin-top: 12px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -54,7 +54,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
section {
|
section {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
@ -51,7 +51,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
section {
|
section {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
@ -54,7 +54,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
section {
|
section {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
@ -51,7 +51,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
section {
|
section {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
@ -48,10 +48,12 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="stylus" scoped docs>
|
<style lang="less" scoped>
|
||||||
.veui-checkbox
|
.veui-checkbox {
|
||||||
& + &
|
& + & {
|
||||||
margin-left 20px
|
margin-left: 20px;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<docs>
|
<docs>
|
||||||
|
@ -28,7 +28,8 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="stylus" scoped docs>
|
<style lang="less" scoped>
|
||||||
section
|
section {
|
||||||
margin-bottom 20px
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -33,7 +33,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
section:not(:last-child) {
|
section:not(:last-child) {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
@ -35,7 +35,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
section:not(:last-child) {
|
section:not(:last-child) {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
@ -106,7 +106,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
article > .veui-button {
|
article > .veui-button {
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
}
|
}
|
||||||
|
@ -66,7 +66,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.veui-button {
|
.veui-button {
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
}
|
}
|
||||||
|
@ -31,7 +31,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.veui-button {
|
.veui-button {
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
}
|
}
|
||||||
|
@ -57,7 +57,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.veui-button {
|
.veui-button {
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
}
|
}
|
||||||
|
@ -59,7 +59,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.veui-button {
|
.veui-button {
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
}
|
}
|
||||||
|
@ -47,7 +47,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.veui-button {
|
.veui-button {
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
}
|
}
|
||||||
|
@ -2,10 +2,17 @@
|
|||||||
<article>
|
<article>
|
||||||
<div class="op-wrap">
|
<div class="op-wrap">
|
||||||
<veui-button @click="aOpen = true">
|
<veui-button @click="aOpen = true">
|
||||||
Open Dialog
|
Open Dialog
|
||||||
</veui-button>
|
</veui-button>
|
||||||
<veui-checkbox v-model="loading">Loading</veui-checkbox>
|
<veui-checkbox v-model="loading">
|
||||||
<veui-checkbox class="ml-3p" v-model="disabled">Disabled</veui-checkbox>
|
Loading
|
||||||
|
</veui-checkbox>
|
||||||
|
<veui-checkbox
|
||||||
|
v-model="disabled"
|
||||||
|
class="ml-3p"
|
||||||
|
>
|
||||||
|
Disabled
|
||||||
|
</veui-checkbox>
|
||||||
</div>
|
</div>
|
||||||
<veui-dialog
|
<veui-dialog
|
||||||
:open.sync="aOpen"
|
:open.sync="aOpen"
|
||||||
@ -37,14 +44,14 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.veui-button {
|
.veui-button {
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
}
|
}
|
||||||
.op-wrap {
|
.op-wrap {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
.ml-3p {
|
.ml-3p {
|
||||||
margin-left: 12px;
|
margin-left: 12px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -27,16 +27,15 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
@import "~veui-theme-dls/lib.less";
|
|
||||||
|
|
||||||
article {
|
article {
|
||||||
height: 200px;
|
height: 200px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.target {
|
.target {
|
||||||
.size(80px);
|
width: 80px;
|
||||||
background: @veui-gray-color-6;
|
height: 80px;
|
||||||
|
background: #e7e7e7;
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
margin-right: 40px;
|
margin-right: 40px;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@ -45,7 +44,8 @@ article {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
.size(100%, 300px);
|
width: 100%;
|
||||||
background: @veui-gray-color-8;
|
height: 300px;
|
||||||
|
background: #f7f7f7;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -18,11 +18,11 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
@import "~veui-theme-dls/lib.less";
|
|
||||||
|
|
||||||
.target {
|
.target {
|
||||||
.size(80px);
|
width: 80px;
|
||||||
|
height: 80px;
|
||||||
background: @veui-gray-color-6;
|
background: @veui-gray-color-6;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -23,16 +23,16 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
@import "~veui-theme-dls/lib.less";
|
|
||||||
|
|
||||||
.target {
|
.target {
|
||||||
.size(80px);
|
width: 80px;
|
||||||
background: @veui-gray-color-6;
|
height: 80px;
|
||||||
|
background: #e7e7e7;
|
||||||
}
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
.size(100%, 300px);
|
width: 100%;
|
||||||
background: @veui-gray-color-8;
|
height: 300px;
|
||||||
|
background: #f7f7f7;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -28,12 +28,11 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
@import "~veui-theme-dls/lib.less";
|
|
||||||
|
|
||||||
.target {
|
.target {
|
||||||
.size(80px);
|
width: 80px;
|
||||||
background: @veui-gray-color-6;
|
height: 80px;
|
||||||
|
background: #e7e7e7;
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
margin-right: 40px;
|
margin-right: 40px;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@ -42,7 +41,8 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
.size(100%, 300px);
|
width: 100%;
|
||||||
background: @veui-gray-color-8;
|
height: 300px;
|
||||||
|
background: #f7f7f7;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -45,19 +45,18 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
@import "~veui-theme-dls/lib.less";
|
|
||||||
|
|
||||||
article {
|
article {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
.box {
|
.box {
|
||||||
.size(200px, 50px);
|
width: 200px;
|
||||||
|
height: 50px;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
border: 1px solid @veui-gray-color-5;
|
border: 1px solid #dbdbdb;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
margin-right: 40px;
|
margin-right: 40px;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
@ -67,7 +66,7 @@ article {
|
|||||||
line-height: 1;
|
line-height: 1;
|
||||||
|
|
||||||
&:focus {
|
&:focus {
|
||||||
background-color: @veui-gray-color-6;
|
background-color: #e7e7e7;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -36,12 +36,11 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
@import "~veui-theme-dls/lib.less";
|
|
||||||
|
|
||||||
.box {
|
.box {
|
||||||
.size(500px, 100px);
|
width: 500px;
|
||||||
background: @veui-gray-color-8;
|
height: 100px;
|
||||||
|
background: #f7f7f7;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
@ -43,14 +43,13 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
@import "~veui-theme-dls/lib.less";
|
|
||||||
|
|
||||||
.box1,
|
.box1,
|
||||||
.box2,
|
.box2,
|
||||||
.box3 {
|
.box3 {
|
||||||
.size(200px, 100px);
|
width: 200px;
|
||||||
background: @veui-gray-color-8;
|
height: 100px;
|
||||||
|
background: #f7f7f7;
|
||||||
margin-right: 30px;
|
margin-right: 30px;
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
@ -31,12 +31,11 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
@import "~veui-theme-dls/lib.less";
|
|
||||||
|
|
||||||
.box {
|
.box {
|
||||||
.size(500px, 100px);
|
width: 500px;
|
||||||
background: @veui-gray-color-8;
|
height: 100px;
|
||||||
|
background: #f7f7f7;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
@ -86,7 +86,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" docs scoped>
|
<style lang="less" scoped>
|
||||||
.demo {
|
.demo {
|
||||||
height: 50px;
|
height: 50px;
|
||||||
line-height: 50px;
|
line-height: 50px;
|
||||||
|
@ -39,7 +39,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.veui-button + .veui-button {
|
.veui-button + .veui-button {
|
||||||
margin-left: 8px;
|
margin-left: 8px;
|
||||||
}
|
}
|
||||||
|
@ -66,7 +66,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.veui-button {
|
.veui-button {
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
}
|
}
|
||||||
|
@ -57,7 +57,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.veui-button {
|
.veui-button {
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
}
|
}
|
||||||
|
@ -98,7 +98,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.veui-dropdown {
|
.veui-dropdown {
|
||||||
margin-left: 1em;
|
margin-left: 1em;
|
||||||
}
|
}
|
||||||
|
@ -122,9 +122,10 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.container {
|
.container {
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
|
|
||||||
.veui-dropdown {
|
.veui-dropdown {
|
||||||
margin-left: 1em;
|
margin-left: 1em;
|
||||||
}
|
}
|
||||||
|
@ -161,7 +161,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.veui-dropdown {
|
.veui-dropdown {
|
||||||
margin-left: 1em;
|
margin-left: 1em;
|
||||||
}
|
}
|
||||||
|
@ -64,7 +64,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.veui-dropdown {
|
.veui-dropdown {
|
||||||
max-width: 120px;
|
max-width: 120px;
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
|
@ -50,7 +50,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.veui-dropdown {
|
.veui-dropdown {
|
||||||
& + & {
|
& + & {
|
||||||
margin-left: 1em;
|
margin-left: 1em;
|
||||||
|
@ -43,7 +43,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
section {
|
section {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
@ -56,7 +56,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" docs scoped>
|
<style lang="less" scoped>
|
||||||
.item {
|
.item {
|
||||||
padding: 8px 15px;
|
padding: 8px 15px;
|
||||||
}
|
}
|
||||||
|
@ -6,29 +6,29 @@
|
|||||||
</article>
|
</article>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="stylus" scoped docs>
|
|
||||||
p
|
|
||||||
margin-bottom 1em
|
|
||||||
|
|
||||||
button
|
|
||||||
width 120px
|
|
||||||
height 36px
|
|
||||||
margin-right 1em
|
|
||||||
background #fff
|
|
||||||
border solid 1px #999
|
|
||||||
padding 3px 6px
|
|
||||||
text-align center
|
|
||||||
transition background-color 0.3s
|
|
||||||
|
|
||||||
&:hover
|
|
||||||
background-color #f8f8f8
|
|
||||||
|
|
||||||
&:active
|
|
||||||
background-color #eee
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
|
p {
|
||||||
|
margin-bottom: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
button {
|
button {
|
||||||
|
width: 120px;
|
||||||
|
height: 36px;
|
||||||
|
margin-right: 1em;
|
||||||
|
background: #fff;
|
||||||
|
border: solid 1px #999;
|
||||||
|
padding: 3px 6px;
|
||||||
|
text-align: center;
|
||||||
|
transition: background-color 0.3s;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background-color: #f8f8f8;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:active {
|
||||||
|
background-color: #eee;
|
||||||
|
}
|
||||||
|
|
||||||
&:focus {
|
&:focus {
|
||||||
outline: 2px solid #eee;
|
outline: 2px solid #eee;
|
||||||
}
|
}
|
||||||
|
@ -37,7 +37,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
section {
|
section {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
@ -37,7 +37,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
section {
|
section {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
@ -69,9 +69,7 @@ export default {
|
|||||||
margin: 2px 0; /* Just for showcase */
|
margin: 2px 0; /* Just for showcase */
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
|
||||||
.content {
|
.content {
|
||||||
background-color: #eee;
|
background-color: #eee;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
@ -60,9 +60,7 @@ article {
|
|||||||
margin: 2px 0; /* Just for showcase */
|
margin: 2px 0; /* Just for showcase */
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
|
||||||
.content {
|
.content {
|
||||||
background-color: #eee;
|
background-color: #eee;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
@ -31,13 +31,13 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
article {
|
article {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.item {
|
.item {
|
||||||
@grid-size: 128px;
|
@grid-size: 120px;
|
||||||
float: left;
|
float: left;
|
||||||
width: @grid-size;
|
width: @grid-size;
|
||||||
height: calc(@grid-size + 3em);
|
height: calc(@grid-size + 3em);
|
||||||
@ -51,7 +51,7 @@ article {
|
|||||||
font-size: 1.5em;
|
font-size: 1.5em;
|
||||||
line-height: @grid-size;
|
line-height: @grid-size;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
transition: border-color .2s;
|
transition: border-color 0.2s;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
border-color: #ccc;
|
border-color: #ccc;
|
||||||
|
@ -119,7 +119,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
section {
|
section {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
@ -53,7 +53,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
section {
|
section {
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
}
|
}
|
||||||
|
@ -53,7 +53,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
section {
|
section {
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
}
|
}
|
||||||
|
@ -32,7 +32,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
section {
|
section {
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
}
|
}
|
||||||
|
@ -44,7 +44,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
section {
|
section {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
@ -3,18 +3,24 @@
|
|||||||
<div>
|
<div>
|
||||||
<veui-check-box
|
<veui-check-box
|
||||||
v-model="wrap"
|
v-model="wrap"
|
||||||
>循环播放</veui-check-box>
|
>
|
||||||
|
循环播放
|
||||||
|
</veui-check-box>
|
||||||
<veui-check-box
|
<veui-check-box
|
||||||
v-model="indicator"
|
v-model="indicator"
|
||||||
true-value="number"
|
true-value="number"
|
||||||
false-value="none"
|
false-value="none"
|
||||||
>头部页码</veui-check-box>
|
>
|
||||||
|
头部页码
|
||||||
|
</veui-check-box>
|
||||||
</div>
|
</div>
|
||||||
<veui-button
|
<veui-button
|
||||||
class="mt-3p"
|
class="mt-3p"
|
||||||
ui="primary"
|
ui="primary"
|
||||||
@click="open = true"
|
@click="open = true"
|
||||||
>展现灯箱</veui-button>
|
>
|
||||||
|
展现灯箱
|
||||||
|
</veui-button>
|
||||||
<veui-lightbox
|
<veui-lightbox
|
||||||
:open.sync="open"
|
:open.sync="open"
|
||||||
:datasource="items"
|
:datasource="items"
|
||||||
@ -41,7 +47,7 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
items() {
|
items () {
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
src:
|
src:
|
||||||
@ -73,11 +79,12 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.veui-checkbox {
|
.veui-checkbox {
|
||||||
margin-right: 15px;
|
margin-right: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mt-3p {
|
.mt-3p {
|
||||||
margin-top: 12px;
|
margin-top: 12px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -44,7 +44,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
h4 {
|
h4 {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
@ -22,7 +22,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.container {
|
.container {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: flex-end;
|
align-items: flex-end;
|
||||||
|
@ -76,14 +76,16 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs-loading>
|
<style lang="less" scoped>
|
||||||
.reverse {
|
.reverse {
|
||||||
background: #ccc;
|
background: #ccc;
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.veui-loading {
|
.veui-loading {
|
||||||
margin-left: 1em;
|
margin-left: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
margin-bottom: 2em;
|
margin-bottom: 2em;
|
||||||
}
|
}
|
||||||
|
@ -60,7 +60,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.reverse {
|
.reverse {
|
||||||
background: #ccc;
|
background: #ccc;
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
|
@ -32,10 +32,11 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.veui-loading {
|
.veui-loading {
|
||||||
margin-left: 1em;
|
margin-left: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.reverse {
|
.reverse {
|
||||||
background: #ccc;
|
background: #ccc;
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
|
@ -47,7 +47,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
section,
|
section,
|
||||||
p {
|
p {
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
|
@ -47,7 +47,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
section,
|
section,
|
||||||
p {
|
p {
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
|
@ -33,7 +33,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
p {
|
p {
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
}
|
}
|
||||||
|
@ -40,7 +40,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less">
|
<style lang="less" scoped>
|
||||||
.centered-overlay {
|
.centered-overlay {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
@ -49,15 +49,11 @@ export default {
|
|||||||
width: 200px;
|
width: 200px;
|
||||||
height: 100px;
|
height: 100px;
|
||||||
}
|
}
|
||||||
</style>
|
|
||||||
|
|
||||||
<style lang="less" docs>
|
|
||||||
@import "~veui-theme-dls/lib.less";
|
|
||||||
|
|
||||||
.centered-overlay {
|
.centered-overlay {
|
||||||
line-height: 100px;
|
line-height: 100px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
border: 1px solid @veui-gray-color-5;
|
border: 1px solid #dbdbdb;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -42,4 +42,21 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" src="./relative.less" docs></style>
|
<style lang="less" scoped>
|
||||||
|
.veui-overlay {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.relative-overlay {
|
||||||
|
width: 200px;
|
||||||
|
height: 100px;
|
||||||
|
line-height: 100px;
|
||||||
|
text-align: center;
|
||||||
|
border: 1px solid #dbdbdb;
|
||||||
|
background-color: #fff;
|
||||||
|
|
||||||
|
.veui-button {
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
@ -1,18 +0,0 @@
|
|||||||
@import "~veui-theme-dls/lib.less";
|
|
||||||
|
|
||||||
.veui-overlay {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.relative-overlay {
|
|
||||||
width: 200px;
|
|
||||||
height: 100px;
|
|
||||||
line-height: 100px;
|
|
||||||
text-align: center;
|
|
||||||
border: 1px solid @veui-gray-color-5;
|
|
||||||
background-color: #fff;
|
|
||||||
|
|
||||||
.veui-button {
|
|
||||||
margin-left: 10px;
|
|
||||||
}
|
|
||||||
}
|
|
@ -87,14 +87,21 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" docs scoped>
|
<style lang="less" scoped>
|
||||||
.veui-overlay {
|
.veui-overlay {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.veui-button {
|
.relative-overlay {
|
||||||
margin-right: 10px;
|
width: 200px;
|
||||||
|
height: 100px;
|
||||||
|
line-height: 100px;
|
||||||
|
text-align: center;
|
||||||
|
border: 1px solid #dbdbdb;
|
||||||
|
background-color: #fff;
|
||||||
|
|
||||||
|
.veui-button {
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style lang="less" src="./relative.less" docs></style>
|
|
||||||
|
@ -71,14 +71,21 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" docs scoped>
|
<style lang="less" scoped>
|
||||||
.veui-overlay {
|
.veui-overlay {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.veui-button {
|
.relative-overlay {
|
||||||
margin-right: 10px;
|
width: 200px;
|
||||||
|
height: 100px;
|
||||||
|
line-height: 100px;
|
||||||
|
text-align: center;
|
||||||
|
border: 1px solid #dbdbdb;
|
||||||
|
background-color: #fff;
|
||||||
|
|
||||||
|
.veui-button {
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style lang="less" src="./relative.less" docs></style>
|
|
||||||
|
@ -60,10 +60,21 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" docs scoped>
|
<style lang="less" scoped>
|
||||||
.veui-button {
|
.veui-overlay {
|
||||||
margin-right: 10px;
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.relative-overlay {
|
||||||
|
width: 200px;
|
||||||
|
height: 100px;
|
||||||
|
line-height: 100px;
|
||||||
|
text-align: center;
|
||||||
|
border: 1px solid #dbdbdb;
|
||||||
|
background-color: #fff;
|
||||||
|
|
||||||
|
.veui-button {
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style lang="less" src="./relative.less" docs></style>
|
|
||||||
|
@ -30,7 +30,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
article {
|
article {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
@ -41,7 +41,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
article {
|
article {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
@ -192,7 +192,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.veui-grid-container {
|
.veui-grid-container {
|
||||||
width: 80%;
|
width: 80%;
|
||||||
min-width: 600px;
|
min-width: 600px;
|
||||||
|
@ -62,7 +62,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
section + section {
|
section + section {
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
}
|
}
|
||||||
|
@ -53,7 +53,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
section + section {
|
section + section {
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
}
|
}
|
||||||
|
@ -66,7 +66,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
section + section {
|
section + section {
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
}
|
}
|
||||||
|
@ -66,7 +66,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
section {
|
section {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
@ -51,7 +51,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
section {
|
section {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
@ -40,7 +40,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.veui-radio {
|
.veui-radio {
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
}
|
}
|
||||||
|
@ -36,7 +36,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped docs>
|
<style lang="less" scoped>
|
||||||
.veui-radio {
|
.veui-radio {
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
}
|
}
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user