打开/关闭菜单
打开/关闭外观设置菜单
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。

style.css:修订间差异

来自电棍ottowiki
第19行: 第19行:
border-radius:15px
border-radius:15px
}
}
.citizen-search-trigger::before {
#SearchIcon {
  content: '';
  display: inline-block;
   width: 20px;
   width: 20px;
   height: 20px;
   height: 20px;

2025年6月13日 (五) 20:34的版本

.citizen-search-trigger {
    background-color: var(--color-surface-2);
    width: 100%;
    height: 55px;
    border-style: solid;
    border-color: #ADBEDF;
    border-width: 3px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 15px;
	transition-property: background-color,border-width,border-radius;
	transition-duration: 300ms;
}
.citizen-search-trigger:hover {
	background-color: var(--color-surface-0);
	border-width: 0px;
	border-radius:15px
}
#SearchIcon {
  width: 20px;
  height: 20px;
  position: absolute;
  background: url('/resources/lib/ooui/themes/wikimediaui/images/icons/search.svg') no-repeat center;
  background-size: 20px;
}