refactor
parent
3a36d4f6ab
commit
ceecdf97d8
|
@ -59,7 +59,7 @@ html {
|
||||||
<CodeHighlight>
|
<CodeHighlight>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
:deep(.dark-panel.p-panel) {
|
:deep(.dark-panel.p-panel) {
|
||||||
.p-panel-titlebar {
|
.p-panel-title {
|
||||||
background: #212121;
|
background: #212121;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1229,6 +1229,23 @@ export default {
|
||||||
this.nodeService.getTreeTableNodes().then(data => this.nodes = data);
|
this.nodeService.getTreeTableNodes().then(data => this.nodes = data);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
</CodeHighlight>
|
||||||
|
|
||||||
|
<CodeHighlight lang="css">
|
||||||
|
.sm-visible {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 40em) {
|
||||||
|
:deep(.sm-invisible) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
:deep(.sm-visible) {
|
||||||
|
display: inline;
|
||||||
|
margin-right: .5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
</CodeHighlight>
|
</CodeHighlight>
|
||||||
|
|
||||||
<h5>Properties</h5>
|
<h5>Properties</h5>
|
||||||
|
|
|
@ -91,11 +91,11 @@ export default {
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 40em) {
|
@media screen and (max-width: 40em) {
|
||||||
.sm-invisible {
|
:deep(.sm-invisible) {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sm-visible {
|
:deep(.sm-visible) {
|
||||||
display: inline;
|
display: inline;
|
||||||
margin-right: .5rem;
|
margin-right: .5rem;
|
||||||
}
|
}
|
||||||
|
@ -133,11 +133,11 @@ export default {
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 40em) {
|
@media screen and (max-width: 40em) {
|
||||||
.sm-invisible {
|
:deep(.sm-invisible) {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sm-visible {
|
:deep(.sm-visible) {
|
||||||
display: inline;
|
display: inline;
|
||||||
margin-right: .5rem;
|
margin-right: .5rem;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue