mirror of
https://github.com/next-theme/hexo-theme-next.git
synced 2026-01-20 19:02:33 +00:00
Remove CSS vendor prefixes
This commit is contained in:
parent
183e89ae1e
commit
b0a428533a
@ -27,6 +27,7 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (hexo-config('body_scrollbar.stable')) {
|
if (hexo-config('body_scrollbar.stable')) {
|
||||||
|
// https://caniuse.com/mdn-css_properties_scrollbar-gutter
|
||||||
scrollbar-gutter: stable;
|
scrollbar-gutter: stable;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -11,7 +11,6 @@
|
|||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
position: -webkit-sticky;
|
|
||||||
position: sticky;
|
position: sticky;
|
||||||
top: 0;
|
top: 0;
|
||||||
// Fix issue #398
|
// Fix issue #398
|
||||||
|
|||||||
@ -71,8 +71,6 @@ word-wrap() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
disable-user-select() {
|
disable-user-select() {
|
||||||
-moz-user-select: none;
|
|
||||||
-ms-user-select: none;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,7 +1,6 @@
|
|||||||
+desktop() {
|
+desktop() {
|
||||||
.sidebar {
|
.sidebar {
|
||||||
// https://caniuse.com/css-sticky
|
// https://caniuse.com/css-sticky
|
||||||
position: -webkit-sticky;
|
|
||||||
position: sticky;
|
position: sticky;
|
||||||
top: $sidebar-offset;
|
top: $sidebar-offset;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user