Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Remove Roles dropdown and align the sidenav to match latest designs & Fix sidenav items wrapping on hover #301

Merged
merged 1 commit into from
Sep 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,3 +256,9 @@
## 2024-08-14
### Bugfix
- Center navbar header content, fix navbar header image size & improve how navbar determines height. @CharlRitterDev https://spandigital.atlassian.net/browse/PRSDM-6146

## 2024-09-09
### Features
- Remove Roles dropdown and align the sidenav to match latest designs. @CharlRitterDev https://spandigital.atlassian.net/browse/PRSDM-6329
### Bugfix
- Fix sidenav items wrapping on hover. @CharlRitterDev https://spandigital.atlassian.net/browse/PRSDM-6206
146 changes: 21 additions & 125 deletions assets/_sass/_navbar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -94,21 +94,8 @@ $nav-item-border: darken($navbar-default-bg, 8%);
.menu-row {
background-color: transparent;

&:not(.open) {
&:hover {
background-color: $brand-primary;

> div.link > a {
> .menu-title {
color: white;
}

> div.menu-expander > span.glyphicon {
margin: 0 5px;
-webkit-text-stroke: 1px $brand-primary;
}
}
}
&:not(.open):hover {
background-color: $gray-lighter;
}

&.open {
Expand Down Expand Up @@ -144,8 +131,8 @@ $nav-item-border: darken($navbar-default-bg, 8%);
margin-bottom: 8px;

img {
max-width: 100%;
height: 87px;
max-width: 260px;
max-height: 87px;
}
}

Expand All @@ -156,8 +143,6 @@ $nav-item-border: darken($navbar-default-bg, 8%);
appearance: none;
appearance: none;
width: auto;
font-weight: 600;
font-size: 12px;
margin-top: -10px;

&:hover {
Expand All @@ -184,67 +169,6 @@ $nav-item-border: darken($navbar-default-bg, 8%);
width: 100%;
margin: 0;
}

.dropdown {
display: block;
z-index: $zindex-navbar;

.dropdown__control {
background-color: transparent;
}

.dropdown__menu {
width: 200px;
}

.dropdown__option {
color: white;
}

.dropdown__option--is-focused {
background-color: $brand-primary;
}

.dropdown__option--is-selected {
background-color: $brand-primary;
}

.dropdown__indicator--is-focused {
color: white;
background-color: $brand-primary;
}

.dropdown__indicator--is-selected {
color: $brand-primary;
background-color: $brand-primary;
}

.dropdown__indicator-separator {
display: none;
}

.dropdown__indicators {
max-height: 10px;
margin: auto;
}

.dropdown__value-container {
padding: 0;
}

.dropdown__control--is-focused .dropdown__dropdown-indicator > svg {
fill: $brand-primary;
}

.dropdown__control--is-selected .dropdown__dropdown-indicator > svg {
fill: $brand-primary;
}

.dropdown__single-value,
.dropdown__placeholder {
display: none;
}
}
}
}

Expand All @@ -253,36 +177,21 @@ $nav-item-border: darken($navbar-default-bg, 8%);
margin-left: 0;
margin-right: 0;
flex-grow: 1;
padding: 0 20px;
padding: 0 8px;
word-break: break-all;
overflow-wrap: anywhere;
hyphens: auto;
overflow-y: auto;

.menu-title {
font-style: normal;
font-weight: 400;
line-height: 18px;
}

.filter {
margin: 20px 0;

.control-label {
font-size: 12px;
font-weight: normal;
}
}

span.glyphicon {
padding: 4px;
-webkit-text-stroke: 1px $navbar-default-bg;
line-height: 0.6;

&:hover {
background-color: $brand-tint;
background-color: #e2e2e2;
border-radius: 4px;
-webkit-text-stroke: 1px $brand-tint;
-webkit-text-stroke: 1px #e2e2e2;
}
}

Expand Down Expand Up @@ -311,8 +220,7 @@ $nav-item-border: darken($navbar-default-bg, 8%);
float: none;
position: relative;
display: block;
font-size: 12px;
font-weight: bold;
font-weight: 600;

&.hidden {
display: none;
Expand All @@ -334,7 +242,7 @@ $nav-item-border: darken($navbar-default-bg, 8%);
.menu-row {
a {
display: flex;
padding: 8px 10px;
padding: 4px 8px;
color: $color-grey;
flex-grow: 1;
text-decoration: none;
Expand All @@ -348,12 +256,11 @@ $nav-item-border: darken($navbar-default-bg, 8%);
text-decoration: none;
flex-grow: 1;

&:hover > .article-navbar-options .add-icon {
display: block;
}

&:hover > .article-navbar-options .delete-icon {
display: block;
&:hover > .article-navbar-options {
.add-icon,
.delete-icon {
visibility: visible;
}
}

&.level-1 {
Expand All @@ -376,7 +283,7 @@ $nav-item-border: darken($navbar-default-bg, 8%);
margin: auto 5px auto auto;

.option-button {
display: none;
visibility: hidden;
width: 22px;
height: 22px;
background-color: transparent;
Expand Down Expand Up @@ -409,42 +316,31 @@ $nav-item-border: darken($navbar-default-bg, 8%);
}
}

&.child > .link > a > div {
a > div {
padding-left: 5px;
}

&.active,
.active {
&.child .add-icon,
&.closed .add-icon {
background-image: url('assets/svg/plus-white.svg');
}

&.child .delete-icon,
&.closed .delete-icon {
background-image: url('assets/svg/trash-white.svg');
}

&.child {
background-color: $brand-primary;
background-color: $gray-lighter;
}

&.child > div > a,
&.closed > div > a {
background-color: $brand-primary;
color: $navbar-default-link-hover-bg;
background-color: $gray-lighter;

span {
-webkit-text-stroke: $brand-primary;
-webkit-text-stroke: $gray-lighter;
}
}
}

.menu-expander {
margin-left: -25px;
margin-left: -33px;

.glyphicon {
margin: 0 5px;
margin-left: 5px;
}
}

Expand Down
22 changes: 0 additions & 22 deletions assets/_sass/bootstrap/bootstrap/_forms.scss
Zalaras marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -207,16 +207,6 @@ input[type="search"] {
}


// Form groups
//
// Designed to help with the organization and spacing of vertical forms. For
// horizontal forms, use the predefined grid classes.

.form-group {
margin-bottom: $form-group-margin-bottom;
}


// Checkboxes and radios
//
// Indent the labels to position radios/checkboxes as hanging controls.
Expand Down Expand Up @@ -474,13 +464,6 @@ input[type="checkbox"] {

// Kick in the inline
@media (min-width: $screen-sm-min) {
// Inline-block all the things for "inline"
.form-group {
display: inline-block;
margin-bottom: 0;
vertical-align: middle;
}

// In navbar-form, allow folks to *not* use `.form-group`
.form-control {
display: inline-block;
Expand Down Expand Up @@ -571,11 +554,6 @@ input[type="checkbox"] {
min-height: ($line-height-computed + ($padding-base-vertical + 1));
}

// Make form groups behave like rows
.form-group {
@include make-row;
}

// Reset spacing and right align labels, but scope to media queries so that
// labels on narrow viewports stack the same as a default form example.
@media (min-width: $screen-sm-min) {
Expand Down
10 changes: 0 additions & 10 deletions assets/_sass/bootstrap/bootstrap/_navbar.scss
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

here too

Original file line number Diff line number Diff line change
Expand Up @@ -295,16 +295,6 @@
// Mixin behavior for optimum display
@include form-inline;

.form-group {
@media (max-width: $grid-float-breakpoint-max) {
margin-bottom: 5px;

&:last-child {
margin-bottom: 0;
}
}
}

// Vertically center in expanded, horizontal navbar
@include navbar-vertical-align($input-height-base);

Expand Down
12 changes: 1 addition & 11 deletions layouts/partials/navigation/root.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,7 @@
<nav class="navbar scrollable-container">
<div class="navbar-header">{{ partial "navigation/brand.html" . }}</div>
<div class="navbar-items">
{{ $roles := .Site.Params.roles.options | default slice }} {{ if and (gt (len $roles) 0) .Site.Params.show.role }}
<div class="filter form-group">
<label class="control-label" for="roles-select">{{ .Site.Params.roles.label }}:</label>
<select id="roles-select" class="form-control">
<option value="All Roles">{{ .Site.Params.roles.all }}</option>
{{ range sort $roles }}
<option value="{{ . }}">{{ . }}</option>
{{ end }}
</select>
</div>
{{ end }} {{ $currentPage := . }}
{{ $currentPage := . }}
<ul class="nav navbar-nav">
{{ range $menu := .Site.Menus.main.ByWeight }} {{ $isRendering := true }} {{ if (isset $menu.Params "scope" ) }}
{{ if $scopingEnabled }} {{ $menuScope := $menu.Params.scope }} {{ $isRendering = gt (len (intersect $menuScope
Expand Down
3 changes: 0 additions & 3 deletions static/assets/svg/plus-white.svg

This file was deleted.

3 changes: 0 additions & 3 deletions static/assets/svg/trash-white.svg

This file was deleted.