Skip to content

Commit

Permalink
WCM-115: More visible sidebrush toggler
Browse files Browse the repository at this point in the history
  • Loading branch information
adrian-zon committed Sep 20, 2024
1 parent db3900c commit 42f2bec
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 5 deletions.
1 change: 1 addition & 0 deletions core/docs/changelog/WCM-115.changelog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
WCM-115: More visible sidebrush toggler
3 changes: 3 additions & 0 deletions core/src/zeit/cms/browser/main_template.pt
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,9 @@
</div>
<div id="sidebar-dragger"
tal:attributes="class sidebar_css">
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10 1L4 7L10 13" stroke-width="1.5"/>
</svg>
</div>

<script type="text/javascript" tal:content="string:
Expand Down
20 changes: 15 additions & 5 deletions core/src/zeit/cms/browser/resources/cms.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
* normal HTML element CSS defs
*
* */
:root {
--sidebar-folded-width: 1em;
}

body {
position: absolute;
top: 0;
Expand Down Expand Up @@ -156,7 +160,7 @@ pre {

.sidebar-folded #breadcrumbs,
#visualContentSeparator.sidebar-folded {
left: 1em;
left: calc(var(--sidebar-folded-width) + 0.66em);
}

#header.sidebar-folded > #main-navigation {
Expand Down Expand Up @@ -209,9 +213,15 @@ pre {
top: 0em;
bottom: 0;
cursor: pointer;
background: transparent url("layout/sidebardragger.png") no-repeat center;
border-right: 1px solid #e4e4e4;
border-left: 1px solid #e4e4e4;
align-items: center;
display: flex;
justify-content: center;
stroke: #999999;
}
#sidebar-dragger:hover {
background: #f7f7f7;
}

#sidebar.sidebar-folded {
Expand All @@ -220,18 +230,18 @@ pre {

#sidebar-dragger.sidebar-folded {
left: 0;
width: 0.34em;
width: var(--sidebar-folded-width);
cursor: pointer;
background: transparent url("layout/sidebardragger-open.png") no-repeat center;
border-right: 1px solid #e4e4e4;
transform: rotate(180deg);
}

#sidebar .required {
float: right;
}

#visualContentWrapper.sidebar-folded {
left: 0.5em;
left: calc(var(--sidebar-folded-width) + 0.1em);
}

#content {
Expand Down
Binary file not shown.
Binary file not shown.

0 comments on commit 42f2bec

Please sign in to comment.