找到\themes\next\source\css\_mixins.styl
中的
_mixins.styl1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| sidebar-toggle() { background: $b2t-bg-color; cursor: pointer; opacity: $b2t-opacity; position: fixed; z-index: $zindex-3; sidebar-toggle-position(false);
&:hover { opacity: $b2t-opacity-hover; }
+tablet-mobile() { opacity: $b2t-opacity-hover; } }
|
将sidebar-toggle-position(false);
修改为true
,修改后的代码:
_mixins.styl1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| sidebar-toggle() { background: $b2t-bg-color; cursor: pointer; opacity: $b2t-opacity; position: fixed; z-index: $zindex-3; sidebar-toggle-position(true);
&:hover { opacity: $b2t-opacity-hover; }
+tablet-mobile() { opacity: $b2t-opacity-hover; } }
|