Rename the "Layers" panel to "Layer Graph"

This commit is contained in:
Keavon Chambers
2021-04-01 21:55:15 -07:00
parent 4992bdee0e
commit 273aa652df
9 changed files with 17 additions and 18 deletions

View File

@@ -166,10 +166,10 @@
<script lang="ts">
import { defineComponent } from "vue";
import Document from "../panels/DocumentPanel.vue";
import Properties from "../panels/PropertiesPanel.vue";
import Layers from "../panels/LayersPanel.vue";
import Minimap from "../panels/MinimapPanel.vue";
import Document from "../panels/Document.vue";
import Properties from "../panels/Properties.vue";
import LayerTree from "../panels/LayerTree.vue";
import Minimap from "../panels/Minimap.vue";
import VerticalEllipsis from "../../../assets/svg/16x24-bounds-8x16-icon/vertical-ellipsis.svg";
import CloseX from "../../../assets/svg/16x16-bounds-12x12-icon/close-x.svg";
@@ -177,7 +177,7 @@ export default defineComponent({
components: {
Document,
Properties,
Layers,
LayerTree,
Minimap,
CloseX,
VerticalEllipsis,

View File

@@ -10,7 +10,7 @@
</LayoutRow>
<LayoutRow class="dockable-grid-resize-gutter"></LayoutRow>
<LayoutRow class="dockable-grid-subdivision">
<DockablePanel :panelType="'Layers'" :tabLabels="['Layers']" :tabActiveIndex="0" />
<DockablePanel :panelType="'LayerTree'" :tabLabels="['Layer Tree']" :tabActiveIndex="0" />
</LayoutRow>
<LayoutRow class="dockable-grid-resize-gutter"></LayoutRow>
<LayoutRow class="dockable-grid-subdivision" style="flex-grow: 0; height: 0;">

View File

@@ -10,8 +10,8 @@
<!-- <span class="label">Layer 1</span> -->
</div>
</LayoutRow>
<LayoutRow :class="'toolbar-and-viewport'">
<LayoutCol :class="'toolbar'"></LayoutCol>
<LayoutRow :class="'shelf-and-viewport'">
<LayoutCol :class="'shelf'"></LayoutCol>
<LayoutCol :class="'viewport'">
<div
class="canvas"
@@ -61,8 +61,8 @@
}
}
.toolbar-and-viewport {
.toolbar {
.shelf-and-viewport {
.shelf {
flex: 0 0 32px;
}
@@ -79,9 +79,8 @@
height: 100%;
}
}
}
}
}
}
</style>