codecamp

全局样式修改

文件:static\css\common.css

自行查询css样式修改下面的代码

.form-group{
width: 100%;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 10%);
  border-radius:  var(--radius);
  padding: 10px;
  display: flex;
  justify-content:flex-start;
  flex-direction:row;
  align-items:center;
  align-content:flex-start;
  flex-wrap:wrap;
border: 1px solid #ebeef5;
}
html,body{
  margin:0;
  padding:0;
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  font-family:Tahoma,'Microsoft Yahei','Simsun';
  word-break:break-all;
  overflow: hidden;
  --radius: 5px;
    background:rgba(242,242,242);
}

文件:static\bootstrap\css\bootstrap.min.css

自行查询css样式修改下面的代码

dl{
    margin-top:0;
    width: 100%;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 10%);
  border-radius:  var(--radius);
  padding: 10px;
  display: flex;
    flex-direction:column;
    border: 1px solid #ebeef5;
}


应用权限说明
添加页面水印
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

技术交流

数据备份恢复和迁移

dzzoffice网盘文件

Dzzoffice系统

插件

媒体播放器

任务板

B站dzzoffice 技术交流的视频文稿

应用市场

dzzoffice中使用onlyoffice协同办公

登录模板

模板1

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }