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

Remove brandable border radius from vuetify file #690

Merged
merged 1 commit into from
Oct 12, 2023
Merged
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
48 changes: 24 additions & 24 deletions platform-ui-skin/src/main/webapp/skin/less/vuetify/lib/vuetify.less
Original file line number Diff line number Diff line change
Expand Up @@ -18091,7 +18091,7 @@ html.overflow-y-hidden {

.v-btn {
align-items: center;
border-radius: @borderRadius;
border-radius: @baseBorderRadius;
display: inline-flex;
flex: 0 0 auto;
font-weight: 500;
Expand Down Expand Up @@ -18534,7 +18534,7 @@ html.overflow-y-hidden {
}

.v-sheet.v-alert {
border-radius: @borderRadius;
border-radius: @baseBorderRadius;
}
.v-sheet.v-alert:not(.v-sheet--outlined) {
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
Expand All @@ -18552,7 +18552,7 @@ html.overflow-y-hidden {
transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
}
.v-alert:not(.v-sheet--tile) {
border-radius: @borderRadius;
border-radius: @baseBorderRadius;
}
.v-application--is-ltr .v-alert > .v-icon,
.v-application--is-ltr .v-alert > .v-alert__content {
Expand Down Expand Up @@ -19041,7 +19041,7 @@ html.overflow-y-hidden {
min-height: 40px;
}
.v-text-field--outlined {
border-radius: @borderRadius;
border-radius: @baseBorderRadius;
}
.v-text-field--full-width .v-input__prepend-outer,
.v-text-field--full-width .v-input__prepend-inner,
Expand Down Expand Up @@ -19095,7 +19095,7 @@ html.overflow-y-hidden {
top: 11px;
}
.v-text-field--filled {
border-radius: @borderRadius @borderRadius 0 0;
border-radius: @baseBorderRadius @baseBorderRadius 0 0;
}
.v-text-field--filled:not(.v-text-field--single-line) input {
margin-top: 22px;
Expand Down Expand Up @@ -19152,7 +19152,7 @@ html.overflow-y-hidden {
display: none;
}
.v-text-field--outlined, .v-text-field--solo {
border-radius: @borderRadius;
border-radius: @baseBorderRadius;
}
.v-text-field--outlined {
margin-bottom: 16px;
Expand Down Expand Up @@ -19614,7 +19614,7 @@ html.overflow-y-hidden {
}

.v-chip--label {
border-radius: @borderRadius !important;
border-radius: @baseBorderRadius !important;
}

.v-chip.v-chip--outlined {
Expand Down Expand Up @@ -19678,7 +19678,7 @@ html.overflow-y-hidden {
contain: content;
will-change: transform;
box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
border-radius: @borderRadius;
border-radius: @baseBorderRadius;
}
.v-menu__content--active {
pointer-events: none;
Expand Down Expand Up @@ -19885,7 +19885,7 @@ html.overflow-y-hidden {
}
.v-list--nav .v-list-item,
.v-list--nav .v-list-item:before {
border-radius: @borderRadius;
border-radius: @baseBorderRadius;
}

.v-application--is-ltr .v-list.v-sheet--shaped .v-list-item, .v-application--is-ltr .v-list.v-sheet--shaped .v-list-item::before,
Expand Down Expand Up @@ -21451,7 +21451,7 @@ html.overflow-y-hidden {
}
}
.v-dialog {
border-radius: @borderRadius;
border-radius: @baseBorderRadius;
margin: 24px;
overflow-y: auto;
pointer-events: auto;
Expand Down Expand Up @@ -21695,7 +21695,7 @@ html.overflow-y-hidden {
}

.v-btn-toggle {
border-radius: @borderRadius;
border-radius: @baseBorderRadius;
display: inline-flex;
max-width: 100%;
}
Expand Down Expand Up @@ -21802,7 +21802,7 @@ html.overflow-y-hidden {
line-height: 20px;
margin-right: -1px;
z-index: 1;
border-radius: @borderRadius;
border-radius: @baseBorderRadius;
}
.v-calendar .v-event-more {
overflow: hidden;
Expand Down Expand Up @@ -21830,7 +21830,7 @@ html.overflow-y-hidden {
text-overflow: ellipsis;
font-size: 12px;
cursor: pointer;
border-radius: @borderRadius;
border-radius: @baseBorderRadius;
pointer-events: all;
}
.v-calendar.v-calendar-events .v-calendar-weekly__head-weekday {
Expand Down Expand Up @@ -22256,7 +22256,7 @@ html.overflow-y-hidden {
}

.v-sheet.v-card {
border-radius: @borderRadius;
border-radius: @baseBorderRadius;
}
.v-sheet.v-card:not(.v-sheet--outlined) {
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
Expand Down Expand Up @@ -22773,7 +22773,7 @@ html.overflow-y-hidden {

.v-color-picker {
align-self: flex-start;
border-radius: @borderRadius;
border-radius: @baseBorderRadius;
contain: content;
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
Expand Down Expand Up @@ -23190,7 +23190,7 @@ html.overflow-y-hidden {
margin-left: 8px;
}
.v-color-picker__input input {
border-radius: @borderRadius;
border-radius: @baseBorderRadius;
margin-bottom: 8px;
min-width: 0;
outline: none;
Expand Down Expand Up @@ -23354,7 +23354,7 @@ html.overflow-y-hidden {
}

.v-data-table {
border-radius: @borderRadius;
border-radius: @baseBorderRadius;
}
.v-data-table tbody tr.v-data-table__expanded {
border-bottom: 0;
Expand Down Expand Up @@ -23912,7 +23912,7 @@ html.overflow-y-hidden {
}

.v-picker {
border-radius: @borderRadius;
border-radius: @baseBorderRadius;
contain: layout style;
display: inline-flex;
flex-direction: column;
Expand Down Expand Up @@ -24079,7 +24079,7 @@ html.overflow-y-hidden {
}

.v-expansion-panels {
border-radius: @borderRadius;
border-radius: @baseBorderRadius;
display: flex;
flex-wrap: wrap;
justify-content: center;
Expand All @@ -24100,15 +24100,15 @@ html.overflow-y-hidden {
border-bottom-right-radius: inherit;
}
.v-expansion-panels:not(.v-expansion-panels--accordion):not(.v-expansion-panels--tile) > .v-expansion-panel--active {
border-radius: @borderRadius;
border-radius: @baseBorderRadius;
}
.v-expansion-panels:not(.v-expansion-panels--accordion):not(.v-expansion-panels--tile) > .v-expansion-panel--active + .v-expansion-panel {
border-top-left-radius: @borderRadius;
border-top-right-radius: @borderRadius;
border-top-left-radius: @baseBorderRadius;
border-top-right-radius: @baseBorderRadius;
}
.v-expansion-panels:not(.v-expansion-panels--accordion):not(.v-expansion-panels--tile) > .v-expansion-panel--next-active {
border-bottom-left-radius: @borderRadius;
border-bottom-right-radius: @borderRadius;
border-bottom-left-radius: @baseBorderRadius;
border-bottom-right-radius: @baseBorderRadius;
}
.v-expansion-panels:not(.v-expansion-panels--accordion):not(.v-expansion-panels--tile) > .v-expansion-panel--next-active .v-expansion-panel-header {
border-bottom-left-radius: inherit;
Expand Down