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

FIX: Adjust border-radius in multiple locations #23278

Merged
merged 2 commits into from Aug 25, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 12 additions & 0 deletions app/assets/stylesheets/common/admin/customize.scss
Expand Up @@ -209,6 +209,16 @@
width: 50%;
box-sizing: border-box;
text-align: center;
&.themes-tab {
border-top-right-radius: 0px;
border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
}
&.components-tab {
border-top-left-radius: 0px;
border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
}

&.active {
background-color: var(--quaternary);
Expand All @@ -228,6 +238,8 @@
overflow-y: auto;
box-sizing: border-box;
max-height: 60vh;
border-bottom-right-radius: var(--d-border-radius);
border-bottom-left-radius: var(--d-border-radius);
@media screen and (max-height: 1000px) {
max-height: 50vh;
}
Expand Down
3 changes: 3 additions & 0 deletions app/assets/stylesheets/common/base/menu-panel.scss
Expand Up @@ -17,6 +17,7 @@
top: 100%; // directly underneath .panel
right: -10px; // 10px to the right of .panel - adjust as needed
max-height: 80vh;
border-radius: var(--d-border-radius-large);
}

.menu-panel {
Expand Down Expand Up @@ -100,6 +101,7 @@
right: 0;
width: 320px;
padding: 0;
border-top-right-radius: 0px;

.panel-body-bottom {
flex: 0;
Expand All @@ -122,6 +124,7 @@
display: flex;
padding: 0.857em;
position: relative;
border-radius: 0px;

.d-icon {
color: var(--primary-medium);
Expand Down
2 changes: 2 additions & 0 deletions app/assets/stylesheets/common/base/search-menu.scss
Expand Up @@ -25,6 +25,8 @@ $search-pad-horizontal: 0.5em;
display: flex;
align-items: center;
border: 1px solid var(--primary-medium);
border-radius: var(--d-border-radius-large);
overflow: hidden;
input#search-term {
border-width: 0;
margin-bottom: 0;
Expand Down
5 changes: 5 additions & 0 deletions app/assets/stylesheets/common/components/navs.scss
Expand Up @@ -124,3 +124,8 @@
line-height: var(--line-height-large);
}
}

.user-navigation .nav-pills li a,
button {
border-radius: 0px;
}
jordanvidrine marked this conversation as resolved.
Show resolved Hide resolved