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

MediaWiki:Citizen.css:修订间差异

MediaWiki界面页面
Xp00000000留言 | 贡献
无编辑摘要
卡介菌留言 | 贡献
无编辑摘要
标签已被回退
第24行: 第24行:
     overflow-x: auto;
     overflow-x: auto;
   }
   }
  /*注册问题框*/
  #wpCaptchaWord {
    padding: 8px 12px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 1em;
    line-height: 1.5;
    width: 250px;
    max-width: 100%;
    box-sizing: border-box;
    margin-top: 5px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    color: #333333;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
#wpCaptchaWord:focus {
    border-color: #007bff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    background-color: #ffffff;
}
editform .captcha,
userloginForm .captcha,
createaccountform .captcha
{
   
    padding: 15px;
    background-color: #f0f0f0;
    border: 1px dashed #ddd;
    border-radius: 5px;
   
}
}
}

2025年6月10日 (二) 23:45的版本

/* 这里所有CSS都会加载给Citizen皮肤的用户 */

/* 移动端特定表格样式 */
@media (max-width: 768px) {
  table.mobile-250-width {
    width: 250% ;
    transform-origin: left top; 
    margin-bottom: 2em;
  }

  .mw-body table.mobile-250-width {
    overflow-x: auto;
  }
}

@media (max-width: 768px) {
  table.mobile-200-width {
    width: 200% ;
    transform-origin: left top; 
    margin-bottom: 2em;
  }

  .mw-body table.mobile-200-width {
    overflow-x: auto;
  }
  /*注册问题框*/
  #wpCaptchaWord {
    padding: 8px 12px; 
    border: 1px solid #cccccc; 
    border-radius: 4px; 
    font-size: 1em; 
    line-height: 1.5; 
    width: 250px; 
    max-width: 100%; 
    box-sizing: border-box; 
    margin-top: 5px; 
    margin-bottom: 10px; 
    background-color: #f9f9f9; 
    color: #333333; 
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; 
}
#wpCaptchaWord:focus {
    border-color: #007bff; 
    outline: 0; 
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); 
    background-color: #ffffff; 
}
editform .captcha,
userloginForm .captcha, 
createaccountform .captcha 
{
    
    padding: 15px;
    background-color: #f0f0f0;
    border: 1px dashed #ddd;
    border-radius: 5px;
    
}
}