From 7dfce12381d8394bae5ff8c0d3241ef8c1ccd9d8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=B0=8F=E8=83=A1?= <3203164629@qq.com>
Date: Mon, 17 Jun 2024 14:05:17 +0000
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=AA=E4=BA=BA=E8=B5=84?=
=?UTF-8?q?=E6=96=99=E5=B1=95=E7=A4=BA=E9=A1=B5=E9=9D=A2UI=E5=92=8C?=
=?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=A1=B5=E9=9D=A2=E9=BB=98=E8=AE=A4=E5=85=81?=
=?UTF-8?q?=E8=AE=B8=E8=BF=90=E8=A1=8C=E7=94=A8=E6=88=B7=E9=80=89=E4=B8=AD?=
=?UTF-8?q?=E6=96=87=E6=9C=AC?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Signed-off-by: 小胡 <3203164629@qq.com>
---
static/bootstrap/css/bootstrap.min.css | 46 ++++++++++++++------------
user/space/index.php | 2 +-
2 files changed, 25 insertions(+), 23 deletions(-)
diff --git a/static/bootstrap/css/bootstrap.min.css b/static/bootstrap/css/bootstrap.min.css
index e786364..82b5213 100644
--- a/static/bootstrap/css/bootstrap.min.css
+++ b/static/bootstrap/css/bootstrap.min.css
@@ -4526,28 +4526,30 @@ input[type=file] {
}
}
html,body {
- margin: 0;
- padding:0;
- width: 100%;
- height: 100%;
- font-family: var(--bs-body-font-family);
- font-size: var(--bs-body-font-size);
- font-weight: var(--bs-body-font-weight);
- line-height: var(--bs-body-line-height);
- color: var(--bs-body-color);
- text-align: var(--bs-body-text-align);
- background-color: var(--bs-body-bg);
- -webkit-text-size-adjust: 100%;
- -webkit-tap-highlight-color: transparent;
- -webkit-overflow-scrolling: touch;
- background:#fff;
- word-break:break-all;
- overflow:hidden;
- -moz-user-select: none; /* 火狐 */
- -webkit-user-select: none; /* webkit浏览器 */
- -ms-user-select: none; /* IE10 */
- -khtml-user-select: none; /* 早期浏览器 */
- user-select: none;
+ margin: 0;
+ padding:0;
+ width: 100%;
+ height: 100%;
+ font-family: var(--bs-body-font-family);
+ font-size: var(--bs-body-font-size);
+ font-weight: var(--bs-body-font-weight);
+ line-height: var(--bs-body-line-height);
+ color: var(--bs-body-color);
+ text-align: var(--bs-body-text-align);
+ background-color: var(--bs-body-bg);
+ -webkit-text-size-adjust: 100%;
+ -webkit-tap-highlight-color: transparent;
+ -webkit-overflow-scrolling: touch;
+ background:#fff;
+ word-break:break-all;
+ overflow:hidden;
+ /* 是否允许用户选中文本,默认关闭
+ -moz-user-select: none; // 火狐
+ -webkit-user-select: none; //webkit浏览器
+ -ms-user-select: none; //IE10
+ -khtml-user-select: none; //早期浏览器
+ user-select: none;
+ */
}
hr {
diff --git a/user/space/index.php b/user/space/index.php
index 7ca817f..3f07e26 100644
--- a/user/space/index.php
+++ b/user/space/index.php
@@ -39,7 +39,7 @@ $profiles['usergroup']=array('title'=>lang('usergroup'),'value'=>$usergroup['gro
$department='';
foreach(C::t('organization_user')->fetch_orgids_by_uid($uid) as $orgid){
$orgpath=getPathByOrgid($orgid);
- $department.=''.implode('-',($orgpath)).'';
+ $department.=''.implode('-',($orgpath)).'';
}
if(empty($department)) $department=lang('not_join_agency_department');
$profiles['department']=array('title'=>lang('category_department'),'value'=>$department);