Skip to content

Commit

Permalink
Removes deprecated vendor prefixes (#3838)
Browse files Browse the repository at this point in the history
  • Loading branch information
walmazacn authored Aug 6, 2024
1 parent 98c394e commit b02af53
Show file tree
Hide file tree
Showing 9 changed files with 1 addition and 50 deletions.
2 changes: 0 additions & 2 deletions core/src/Alerts.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,6 @@
z-index: 1100;
flex-direction: column;
left: 50%;
-webkit-transform: translate(-50%);
transform: translate(-50%);
margin-top: calc(var(--luigi__shellbar--height) - 0.625rem);
.fd-message-strip:not(:first-child) {
Expand All @@ -154,7 +153,6 @@
line-height: 1.42857;
color: #0a6ed1;
color: var(--sapLinkColor, #0a6ed1);
-webkit-transition: all 125ms ease-in;
transition: all 125ms ease-in;
text-decoration: none;
Expand Down
2 changes: 0 additions & 2 deletions core/src/SplitView.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -367,9 +367,7 @@
border-radius: 4px;
cursor: pointer;
&:focus {
-webkit-box-shadow: 0 0 0 1px #fafafa;
box-shadow: 0 0 0 1px #fafafa;
-webkit-box-shadow: 0 0 0 1px var(--fd-color-action-focus);
box-shadow: 0 0 0 1px var(--fd-color-action-focus);
}
&:hover {
Expand Down
10 changes: 0 additions & 10 deletions core/src/navigation/LeftNav.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -1293,7 +1293,6 @@
cursor: pointer;
outline-offset: -1px;
user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
}
Expand Down Expand Up @@ -1669,15 +1668,6 @@
background: var(--sapList_Background, #fff);
}
@-webkit-keyframes flyoutAnimation {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes flyoutAnimation {
0% {
opacity: 0;
Expand Down
1 change: 0 additions & 1 deletion core/src/navigation/LeftNavGroup.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@
<style lang="scss">
.fd-navigation__link {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
Expand Down
7 changes: 0 additions & 7 deletions core/src/styles/_mixins.scss
Original file line number Diff line number Diff line change
@@ -1,20 +1,13 @@
@mixin transition($args...) {
-webkit-transition: $args;
-moz-transition: $args;
-o-transition: $args;
transition: $args;
}

@mixin box-shadow($shadow...) {
-webkit-box-shadow: $shadow;
-moz-box-shadow: $shadow;
box-shadow: $shadow;
}

@mixin border-radius($radius) {
border-radius: $radius;
-webkit-border-radius: $radius;
-moz-border-radius: $radius;
}

@mixin luigi-menu__link--border-radius($position) {
Expand Down
2 changes: 0 additions & 2 deletions website/docs/src/styles/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -457,8 +457,6 @@ body {

select {
color: #3c4553;
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
background: #edf2f7;
border: 1px solid #d0d8e2;
Expand Down
23 changes: 0 additions & 23 deletions website/docs/static/public/docsearch.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@
vertical-align: middle;
white-space: normal;
font-size: 12px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none
}

Expand Down Expand Up @@ -80,7 +78,6 @@
text-align: center;
font-size: inherit;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
right: inherit;
left: 0
Expand Down Expand Up @@ -122,7 +119,6 @@
padding: 0;
font-size: inherit;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
fill: rgba(0, 0, 0, .5)
}
Expand All @@ -144,35 +140,17 @@

.searchbox__input:valid~.searchbox__reset {
display: block;
-webkit-animation-name: sbx-reset-in;
animation-name: sbx-reset-in;
-webkit-animation-duration: .15s;
animation-duration: .15s
}

@-webkit-keyframes sbx-reset-in {
0% {
-webkit-transform: translate3d(-20%, 0, 0);
transform: translate3d(-20%, 0, 0);
opacity: 0
}

to {
-webkit-transform: none;
transform: none;
opacity: 1
}
}

@keyframes sbx-reset-in {
0% {
-webkit-transform: translate3d(-20%, 0, 0);
transform: translate3d(-20%, 0, 0);
opacity: 0
}

to {
-webkit-transform: none;
transform: none;
opacity: 1
}
Expand Down Expand Up @@ -223,7 +201,6 @@
top: -7px;
border-top: 1px solid #d9d9d9;
border-right: 1px solid #d9d9d9;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
border-radius: 2px
}
Expand Down
2 changes: 1 addition & 1 deletion website/docs/static/public/search-input.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions website/fiddle/src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -413,15 +413,13 @@
display: inline-block;
border: 2px solid #2deb8a;
border-radius: 8px;
-webkit-box-shadow: 0 8px 24px -17px #000101;
box-shadow: 0 8px 24px -17px #000101;
background-color: #2deb8a;
font-size: 12px;
font-weight: 600;
font-family: 'Open Sans', sans-serif;
color: #29303a;
cursor: pointer;
-webkit-transition: all 0.2s ease;
transition: all 0.2s ease;
}
Expand Down

0 comments on commit b02af53

Please sign in to comment.