User:Irukaza/common.css:修订间差异

H萌娘,万物皆可H的百科全书!
跳到导航 跳到搜索
imported>=海豚=
([InPageEdit] 没有编辑摘要)
imported>=海豚=
([InPageEdit] 没有编辑摘要)
第12行: 第12行:
   -webkit-transition: -webkit-transform .2s ease-in;
   -webkit-transition: -webkit-transform .2s ease-in;
   transition: transform .2s ease-in;
   transition: transform .2s ease-in;
   -webkit-transform: translate(-10%, 0);
   -webkit-transform: translate(10%, 0);
   -ms-transform: translate(-10%, 0);
   -ms-transform: translate(10%, 0);
   transform: translate(-10%, 0);
   transform: translate(10%, 0);
}
}



2020年4月19日 (日) 21:54的版本

/* 浮动目录效果
    .toc-custom类添加逻辑在Mediawiki:Common.js
*/
.toc-custom {
  position: fixed;
  top: 200px;
  background: rgba(255, 255, 255, 0.8);
  z-index: 10;
  max-width: 347px;
  opacity: 0.5;
  filter: alpha(opacity=50);
  -webkit-transition: -webkit-transform .2s ease-in;
  transition: transform .2s ease-in;
  -webkit-transform: translate(10%, 0);
  -ms-transform: translate(10%, 0);
  transform: translate(10%, 0);
}

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

.toc-custom>ul {
  max-height: 55vh;
  overflow-y: scroll;
}