Skip to content

Commit

Permalink
docs: update example styles for website (#3310)
Browse files Browse the repository at this point in the history
  • Loading branch information
NewByVector committed Feb 27, 2023
1 parent 2571cb4 commit 672f104
Show file tree
Hide file tree
Showing 92 changed files with 922 additions and 999 deletions.
18 changes: 9 additions & 9 deletions sites/x6-sites/src/tutorial/basic/edge/connector/index.less
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
.app {
.connector-app {
display: flex;
width: 100%;
padding: 0;
padding: 16px 8px;
font-family: sans-serif;
}

.app-content {
flex: 1;
height: 320px;
margin-right: 8px;
margin-left: 8px;
box-shadow: 0 0 10px 1px #e9e9e9;
.app-content {
flex: 1;
height: 320px;
margin-right: 8px;
margin-left: 8px;
box-shadow: 0 0 10px 1px #e9e9e9;
}
}
6 changes: 3 additions & 3 deletions sites/x6-sites/src/tutorial/basic/edge/connector/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import { Graph } from '@antv/x6'
import styles from './index.less'
import './index.less'

Graph.registerNode(
'custom-node',
Expand Down Expand Up @@ -92,8 +92,8 @@ export default class Example extends React.Component {

render() {
return (
<div className={styles.app}>
<div className={styles['app-content']} ref={this.refContainer} />
<div className="connector-app">
<div className="app-content" ref={this.refContainer} />
</div>
)
}
Expand Down
18 changes: 9 additions & 9 deletions sites/x6-sites/src/tutorial/basic/edge/custom-marker/index.less
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
.app {
.custom-marker-app {
display: flex;
width: 100%;
padding: 0;
padding: 16px 8px;
font-family: sans-serif;
}

.app-content {
flex: 1;
height: 320px;
margin-right: 8px;
margin-left: 8px;
box-shadow: 0 0 10px 1px #e9e9e9;
.app-content {
flex: 1;
height: 320px;
margin-right: 8px;
margin-left: 8px;
box-shadow: 0 0 10px 1px #e9e9e9;
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import { Graph } from '@antv/x6'
import styles from './index.less'
import './index.less'

export default class Example extends React.Component {
private container: HTMLDivElement
Expand Down Expand Up @@ -43,8 +43,8 @@ export default class Example extends React.Component {

render() {
return (
<div className={styles.app}>
<div className={styles['app-content']} ref={this.refContainer} />
<div className="custom-marker-app">
<div className="app-content" ref={this.refContainer} />
</div>
)
}
Expand Down
18 changes: 9 additions & 9 deletions sites/x6-sites/src/tutorial/basic/edge/labels/index.less
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
.app {
.labels-app {
display: flex;
width: 100%;
padding: 0;
padding: 16px 8px;
font-family: sans-serif;
}

.app-content {
flex: 1;
height: 320px;
margin-right: 8px;
margin-left: 8px;
box-shadow: 0 0 10px 1px #e9e9e9;
.app-content {
flex: 1;
height: 320px;
margin-right: 8px;
margin-left: 8px;
box-shadow: 0 0 10px 1px #e9e9e9;
}
}
6 changes: 3 additions & 3 deletions sites/x6-sites/src/tutorial/basic/edge/labels/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import { Graph } from '@antv/x6'
import styles from './index.less'
import './index.less'

Graph.registerNode(
'custom-node',
Expand Down Expand Up @@ -106,8 +106,8 @@ export default class Example extends React.Component {

render() {
return (
<div className={styles.app}>
<div className={styles['app-content']} ref={this.refContainer} />
<div className="labels-app ">
<div className="app-content" ref={this.refContainer} />
</div>
)
}
Expand Down
18 changes: 9 additions & 9 deletions sites/x6-sites/src/tutorial/basic/edge/native-marker/index.less
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
.app {
.native-marker-app {
display: flex;
width: 100%;
padding: 0;
padding: 16px 8px;
font-family: sans-serif;
}

.app-content {
flex: 1;
height: 320px;
margin-right: 8px;
margin-left: 8px;
box-shadow: 0 0 10px 1px #e9e9e9;
.app-content {
flex: 1;
height: 320px;
margin-right: 8px;
margin-left: 8px;
box-shadow: 0 0 10px 1px #e9e9e9;
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import { Graph } from '@antv/x6'
import styles from './index.less'
import './index.less'

const markers = [
'block',
Expand Down Expand Up @@ -47,8 +47,8 @@ export default class Example extends React.Component {

render() {
return (
<div className={styles.app}>
<div className={styles['app-content']} ref={this.refContainer} />
<div className="native-marker-app ">
<div className="app-content" ref={this.refContainer} />
</div>
)
}
Expand Down
30 changes: 14 additions & 16 deletions sites/x6-sites/src/tutorial/basic/edge/prop/index.less
Original file line number Diff line number Diff line change
@@ -1,21 +1,19 @@
.app {
display: flex;
flex-direction: column;
.prop-app {
padding: 0;
padding: 16px 8px;
font-family: sans-serif;
}

.app-btns {
bottom: 0;
padding: 0 8px;
}
.app-btns {
bottom: 0;
margin: 0;
padding: 0 8px;
}

.app-content {
height: 240px;
margin-top: 16px;
margin-right: 8px;
margin-left: 8px;
border-radius: 5px;
box-shadow: 0 12px 5px -10px rgb(0 0 0 / 10%), 0 0 4px 0 rgb(0 0 0 / 10%);
.app-content {
width: 100%;
height: 240px;
margin: 0;
margin-top: 16px;
border-radius: 5px;
box-shadow: 0 12px 5px -10px rgb(0 0 0 / 10%), 0 0 4px 0 rgb(0 0 0 / 10%);
}
}
8 changes: 4 additions & 4 deletions sites/x6-sites/src/tutorial/basic/edge/prop/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import { Graph, Color } from '@antv/x6'
import { Button } from 'antd'
import styles from './index.less'
import './index.less'

const commands = [
{
Expand Down Expand Up @@ -103,8 +103,8 @@ export default class Example extends React.Component {

render() {
return (
<div className={styles.app}>
<div className={styles['app-btns']}>
<div className="prop-app">
<div className="app-btns">
<Button.Group>
{commands.map((item) => (
<Button onClick={() => this.change(item.key)} key={item.key}>
Expand All @@ -113,7 +113,7 @@ export default class Example extends React.Component {
))}
</Button.Group>
</div>
<div className={styles['app-content']} ref={this.refContainer} />
<div className="app-content" ref={this.refContainer} />
</div>
)
}
Expand Down
22 changes: 11 additions & 11 deletions sites/x6-sites/src/tutorial/basic/edge/registry/index.less
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
.app {
.registry-app {
display: flex;
width: 100%;
padding: 0;
padding: 16px 8px;
font-family: sans-serif;
}

.app-content {
flex: 1;
height: 280px;
margin-right: 8px;
margin-left: 8px;
border-radius: 5px;
box-shadow: 0 12px 5px -10px rgb(0 0 0 / 10%), 0 0 4px 0 rgb(0 0 0 / 10%);
}
.app-content {
flex: 1;
height: 280px;
margin-right: 8px;
margin-left: 8px;
border-radius: 5px;
box-shadow: 0 12px 5px -10px rgb(0 0 0 / 10%), 0 0 4px 0 rgb(0 0 0 / 10%);
}
}
6 changes: 3 additions & 3 deletions sites/x6-sites/src/tutorial/basic/edge/registry/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import { Graph } from '@antv/x6'
import styles from './index.less'
import './index.less'

Graph.registerEdge('double-edge', {
inherit: 'edge',
Expand Down Expand Up @@ -134,8 +134,8 @@ export default class Example extends React.Component {

render() {
return (
<div className={styles.app}>
<div className={styles['app-content']} ref={this.refContainer} />
<div className="registry-app">
<div className="app-content" ref={this.refContainer} />
</div>
)
}
Expand Down
18 changes: 9 additions & 9 deletions sites/x6-sites/src/tutorial/basic/edge/router/index.less
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
.app {
.router-app {
display: flex;
width: 100%;
padding: 0;
padding: 16px 8px;
font-family: sans-serif;
}

.app-content {
flex: 1;
height: 320px;
margin-right: 8px;
margin-left: 8px;
box-shadow: 0 0 10px 1px #e9e9e9;
.app-content {
flex: 1;
height: 320px;
margin-right: 8px;
margin-left: 8px;
box-shadow: 0 0 10px 1px #e9e9e9;
}
}
6 changes: 3 additions & 3 deletions sites/x6-sites/src/tutorial/basic/edge/router/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import { Graph } from '@antv/x6'
import styles from './index.less'
import './index.less'

Graph.registerNode(
'custom-node',
Expand Down Expand Up @@ -91,8 +91,8 @@ export default class Example extends React.Component {

render() {
return (
<div className={styles.app}>
<div className={styles['app-content']} ref={this.refContainer} />
<div className="router-app">
<div className="app-content" ref={this.refContainer} />
</div>
)
}
Expand Down
18 changes: 9 additions & 9 deletions sites/x6-sites/src/tutorial/basic/edge/vertices/index.less
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
.app {
.vertices-app {
display: flex;
width: 100%;
padding: 0;
padding: 16px 8px;
font-family: sans-serif;
}

.app-content {
flex: 1;
height: 320px;
margin-right: 8px;
margin-left: 8px;
box-shadow: 0 0 10px 1px #e9e9e9;
.app-content {
flex: 1;
height: 320px;
margin-right: 8px;
margin-left: 8px;
box-shadow: 0 0 10px 1px #e9e9e9;
}
}
6 changes: 3 additions & 3 deletions sites/x6-sites/src/tutorial/basic/edge/vertices/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import { Graph } from '@antv/x6'
import styles from './index.less'
import './index.less'

Graph.registerNode(
'custom-node',
Expand Down Expand Up @@ -90,8 +90,8 @@ export default class Example extends React.Component {

render() {
return (
<div className={styles.app}>
<div className={styles['app-content']} ref={this.refContainer} />
<div className="vertices-app">
<div className="app-content" ref={this.refContainer} />
</div>
)
}
Expand Down
18 changes: 9 additions & 9 deletions sites/x6-sites/src/tutorial/basic/event/custom-click/index.less
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
.app {
.custom-click-app {
display: flex;
width: 100%;
padding: 0;
padding: 16px 8px;
font-family: sans-serif;
}

.app-content {
flex: 1;
height: 200px;
margin-right: 8px;
margin-left: 8px;
box-shadow: 0 0 10px 1px #e9e9e9;
.app-content {
flex: 1;
height: 200px;
margin-right: 8px;
margin-left: 8px;
box-shadow: 0 0 10px 1px #e9e9e9;
}
}
Loading

0 comments on commit 672f104

Please sign in to comment.