FIX: Adjust border-radius in multiple locations (#23278)

This commit is contained in:
Jordan Vidrine 2023-08-25 16:09:18 -05:00 committed by GitHub
parent 887772db6b
commit 1209efb63c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 24 additions and 0 deletions

View File

@ -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);
@ -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;
}

View File

@ -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 {
@ -100,6 +101,7 @@
right: 0;
width: 320px;
padding: 0;
border-top-right-radius: 0px;
.panel-body-bottom {
flex: 0;
@ -122,6 +124,7 @@
display: flex;
padding: 0.857em;
position: relative;
border-radius: 0px;
.d-icon {
color: var(--primary-medium);

View File

@ -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;

View File

@ -124,3 +124,10 @@
line-height: var(--line-height-large);
}
}
.user-navigation .nav-pills > li {
a,
button {
border-radius: 0px;
}
}