-
-
Notifications
You must be signed in to change notification settings - Fork 962
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
SAK-51017 Portal skin fixes and design improvements #13427
Conversation
&.current, | ||
a.current { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added a.current
becuase of gradebook toolnavbar structure. so we need it or we can change the gradebook code.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sorry, I hadn't seen the recent SAK-51050
grid-area: header; | ||
background-color: var(--top-header-background); | ||
border-bottom: 3px solid var(--sakai-border-color); | ||
/*box-shadow: rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px;*/ // scrollbar issue |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we need the comment?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no, initially a teammate suggested adding a shadow. I left it commented to remind myself to tell them why I removed it
&:hover::before, | ||
&:focus::before { | ||
content: "\f4ec"; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why do we need to add this content?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think, @st-manu can tell if I'm wrong, that this is the unselected pin icon to make it visible always and not only on mouseover
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what @SedueRey says (which we’ve also done) isn’t exactly this. it’s to visually indicate that the pin will be removed. in fact, it’s the unselected pin icon
max-height: 0; | ||
overflow: hidden; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
spacing
thanks for the review @kunaljaykam |
with the changes in portal, a cypress test needs to be modified: https://github.com/sakaicontrib/cypress-sakai/blob/7097aa4157f2bfebc7ba7fb12c7533e28c4c7bc0/cypress/e2e/sakai-trunk/assignment.js#L170 . for the mobile view, the site list access has been unified, so the button is now: <button class="btn icon-button responsive-allsites-button"
data-bs-toggle="offcanvas"
data-bs-target="#portal-nav-sidebar"
aria-controls="portal-nav-sidebar"
aria-label="$rloader.sit_navigation"
aria-expanded="false"
title="$rloader.sit_navigation">
<i class="bi bi-grid-3x3-gap-fill"></i>
</button> I've never worked with cypress before. would replacing |
<a class="btn" href="/portal" title="$rloader.portal_home"> | ||
<img class="logo-light" src="/library/skin/$!{pageSkin}/images/sakaiLogoBlack.png" alt="Sakai Logo"> | ||
<img class="logo-dark" src="/library/skin/$!{pageSkin}/images/sakaiLogo.png" alt="Sakai Logo"> | ||
</a> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do you think we can use js to load only one logo as per the selected theme? Its 75kb each i guess, so not massive.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think it's best to have a logo hidden in the js that each institution has to adapt. but, from my side, I don't have a problem with it, whatever is considered best
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But ... What if the institution needs to customize it further?
A logo for dark mode, another one for mobile view, etc etc.
I think the best thing to do is to remove the velocity logo and add it via CSS.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
after merging these changes, I'll create a Jira to move the logo to the css, and we'll get started on it @kunaljaykam @SedueRey
if (currentSiteElement) { | ||
// to add margin top | ||
const offsetLi = document.createElement('li'); | ||
currentSiteElement.parentNode.insertBefore(offsetLi, currentSiteElement); | ||
offsetLi.scrollIntoView({behavior: 'auto', block: 'start', inline: 'nearest'}); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please explain, why we are creating li
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just changed it because, in addition, it was discussed to always place the selected site in the first position, not just scroll to it
Yes |
@@ -46,7 +37,7 @@ For opening help sidebar | |||
aria-label="$rloader.sit_allsites" | |||
aria-controls="select-site-sidebar" | |||
title="$rloader.sit_allsites"> | |||
<i class="si si-all-sites"></i> | |||
<i class="bi bi-grid-3x3-gap-fill"></i> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<i class="bi bi-grid-3x3-gap-fill"></i> | |
<span class="bi bi-grid-3x3-gap-fill" aria-hidden="true"></span> |
aria-label="$rloader.sit_navigation" | ||
aria-expanded="false" | ||
title="$rloader.sit_navigation"> | ||
<i class="bi bi-grid-3x3-gap-fill"></i> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<i class="bi bi-grid-3x3-gap-fill"></i> | |
<span class="bi bi-grid-3x3-gap-fill" aria-hidden="true"></span> |
|
||
#if (${currentRole} && $roleSwitchState == false) | ||
<div class="current-role mb-3"> | ||
<i class="fa fa-user" aria-hidden="true"></i> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<i class="fa fa-user" aria-hidden="true"></i> | |
<span class="fa fa-user" aria-hidden="true"></span> |
<path d="M1 2a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V2zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1V2zM1 7a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V7zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V7zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1V7zM1 12a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-2zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1v-2zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-2z"></path> | ||
</svg> | ||
<i class="bi bi-grid-3x3-gap-fill d-none d-md-inline"></i> | ||
<i class="bi bi-arrow-right-circle-fill d-inline d-md-none"></i> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using a <span> instead of an <i> tag is often favored for semantic reasons:
• Semantic Clarity: The <i> tag originally denotes text that is set off in an alternate voice (often italicized), not icons.
A <span> is a neutral inline container that doesn’t imply any specific presentation,
making it a cleaner semantic choice when the element doesn’t convey textual emphasis.
• Accessibility: A semantically neutral element paired with appropriate ARIA roles (if needed) can improve clarity
for assistive technologies, ensuring the icon’s purpose is clear.
• Convention vs. Meaning: While frameworks like Font Awesome popularized the <i> tag for icons, this is more of a
historical convention than a semantic mandate. Using <span> aligns more with the idea of marking up content based on its
meaning rather than its default presentation.
</div> | ||
<div class="bi bi-chevron-right portal-header-breadcrumb-separator"></div> | ||
#end | ||
#end |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#end | |
#end |
https://sakaiproject.atlassian.net/browse/SAK-51017