User:Irukaza/common.css

H萌娘,万物皆可H的百科全书!
< User:Irukaza
imported>=海豚=2020年4月19日 (日) 22:33的版本 ([InPageEdit] 没有编辑摘要 (编辑自Special:Diff/40802))
跳到导航 跳到搜索

注意:这类代码页面在保存之后,您可能需要清除浏览器缓存才能看到所作出的变更的影响。

  • 按住CTRL+SHIFT+DEL 或 ⌘-Shift-R来清除缓存!
  • 或尝试在地址栏的地址最后添加代码?_=1来访问最新页面。
    添加代码后的本页地址如下:-{R|https://hmoegirl.com/User:Irukaza/common.css?_=1}-
  • 你还可以在设置中勾选小工具在页面右上角添加清除缓存按钮!
/* 浮动目录效果
    .toc-custom类添加逻辑在Mediawiki:Common.js
*/
.toc-custom {
  position: fixed;
  right: -180px;
  top: 200px;
  background: rgba(255, 255, 255, 0.7);
  z-index: 10;
  max-width: 170px;
  opacity: 0.5;
  filter: alpha(opacity=50);
  -webkit-transition: -webkit-transform .2s ease-in;
  transition: transform .2s ease-in;
}

.toc-custom:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  box-shadow: 0 0 4px black;
  -webkit-transform: translate(-85%, 0);
  -ms-transform: translate(-85%, 0);
  transform: translate(-85%, 0);
}
.toc-custom>ul {
  max-height: 35vh;
  overflow-y: scroll;
}