Skip to content

Commit

Permalink
Remove CSS vendor prefixes
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenjoezhang committed Nov 21, 2024
1 parent 183e89a commit b0a4285
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
1 change: 1 addition & 0 deletions source/css/_common/scaffolding/base.styl
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ body {
}

if (hexo-config('body_scrollbar.stable')) {
// https://caniuse.com/mdn-css_properties_scrollbar-gutter
scrollbar-gutter: stable;
}
}
Expand Down
1 change: 0 additions & 1 deletion source/css/_common/scaffolding/tags/tabs.styl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
flex-wrap: wrap;
margin: 0;
padding: 0;
position: -webkit-sticky;
position: sticky;
top: 0;
// Fix issue #398
Expand Down
2 changes: 0 additions & 2 deletions source/css/_mixins.styl
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,6 @@ word-wrap() {
}

disable-user-select() {
-moz-user-select: none;
-ms-user-select: none;
-webkit-user-select: none;
user-select: none;
}
Expand Down
1 change: 0 additions & 1 deletion source/css/_schemes/Pisces/_sidebar.styl
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
+desktop() {
.sidebar {
// https://caniuse.com/css-sticky
position: -webkit-sticky;
position: sticky;
top: $sidebar-offset;
}
Expand Down

0 comments on commit b0a4285

Please sign in to comment.