Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7-Res
提交
d24c68d8
提交
d24c68d8
编写于
12月 09, 2022
作者:
RedPig97
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update: 表格样式更新
上级
df352ca6
变更
6
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
102 行增加
和
23 行删除
+102
-23
grid-view-layout.scss
src/layout/grid-view-layout/grid-view-layout.scss
+5
-0
default.scss
src/styles/default.scss
+1
-21
index.scss
src/styles/element/index.scss
+2
-1
table.scss
src/styles/element/table.scss
+50
-0
index.scss
src/styles/iview/index.scss
+2
-1
page.scss
src/styles/iview/page.scss
+42
-0
未找到文件。
src/layout/grid-view-layout/grid-view-layout.scss
浏览文件 @
d24c68d8
...
...
@@ -105,5 +105,10 @@
>
.view-content
{
flex
:
auto
;
height
:
0
;
background
:
var
(
--
app-color-white
);
border
:
1px
solid
var
(
--
app-color-gray-200
);
}
>
.view-footer
{
height
:
40px
;
}
}
\ No newline at end of file
src/styles/default.scss
浏览文件 @
d24c68d8
...
...
@@ -27,16 +27,7 @@
font-weight
:
400
;
}
.ivu-card-body
.grid
>
.el-table
.el-table__header-wrapper
thead
>
tr
th
{
background
:
rgb
(
245
,
245
,
245
);
border-right
:
1px
solid
rgb
(
250
,
250
,
250
);
}
.el-table
td
,
.el-table
th
.is-leaf
{
border-bottom
:
1px
solid
#ebeef5
;
}
.el-table
th
{
padding
:
5px
0
;
}
// 解决横向滚动条错位问题
.el-scrollbar__wrap
{
// 滚动条样式
...
...
@@ -58,9 +49,6 @@
.el-table--enable-row-hover
.el-table__body
tr
:hover
>
td
{
background-color
:
#badfff
ba
!
important
;
}
.grid
.grid-selected-row
{
background-color
:
#badfff
ba
!
important
;
}
.el-table
th
.sort-caret.ascending
{
border-bottom-color
:
#f0f2f5
;
...
...
@@ -177,14 +165,6 @@
}
}
}
/*** END:加载遮罩 ***/
.grid-row-select
{
background-color
:
#ecf5ff
!
important
;
td
{
background-color
:
#ecf5ff
!
important
;
}
}
/*** BRGIN:表单错误信息2 ***/
.app-form-item-error-info
{
...
...
src/styles/element/index.scss
浏览文件 @
d24c68d8
...
...
@@ -4,4 +4,5 @@
@import
'./input.scss'
;
@import
'./select.scss'
;
@import
'./switch.scss'
;
@import
'./slider.scss'
;
\ No newline at end of file
@import
'./slider.scss'
;
@import
'./table.scss'
;
\ No newline at end of file
src/styles/element/table.scss
0 → 100644
浏览文件 @
d24c68d8
.el-table
{
display
:
flex
;
flex-direction
:
column
;
padding
:
16px
20px
20px
;
gap
:
10px
;
border
:
0
;
&
:
:
before
{
display
:
none
;
}
.el-table__header-wrapper
{
.cell
{
color
:
var
(
--
app-color-black
);
font-size
:
13px
;
font-weight
:
bold
;
line-height
:
18px
;
text-align
:
center
;
.ascending
{
border-bottom-color
:
var
(
--
app-color-black
);
}
.descending
{
border-top-color
:
var
(
--
app-color-black
);
}
}
.el-table__cell
{
background-color
:
var
(
--
app-color-gray-400
);
}
}
.el-table__body-wrapper
,
.el-table__fixed-body-wrapper
{
max-height
:
calc
(
100%
-
60px
);
.el-table__body
{
height
:
100%
;
}
}
.el-table-column--selection
{
.el-checkbox__inner
{
height
:
16px
;
width
:
16px
;
}
.el-checkbox.is-checked
{
.el-checkbox__inner
{
&
:
:
after
{
left
:
5px
;
top
:
2px
;
}
}
}
}
}
\ No newline at end of file
src/styles/iview/index.scss
浏览文件 @
d24c68d8
...
...
@@ -8,4 +8,5 @@
@import
'./card.scss'
;
@import
'./data-picker.scss'
;
@import
'./button.scss'
;
@import
'./input-box.scss'
;
\ No newline at end of file
@import
'./input-box.scss'
;
@import
'./page.scss'
;
\ No newline at end of file
src/styles/iview/page.scss
0 → 100644
浏览文件 @
d24c68d8
.grid-pagination
{
height
:
44px
;
padding
:
0
80px
0
20px
;
background-color
:
var
(
--
app-color-white
);
display
:
flex
;
justify-content
:
flex-end
;
align-items
:
center
;
gap
:
15px
;
color
:
var
(
--
app-color-gray-100
);
border-top
:
1px
solid
var
(
--
app-color-gray-400
);
.ivu-page
{
height
:
25px
;
display
:
flex
;
}
.ivu-page-simple-pager
{
pointer-events
:
none
;
cursor
:
pointer
;
}
.grid-page-pre-pro
{
transform
:
rotate
(
90deg
);
}
.grid-page-next-pro
{
transform
:
rotate
(
-90deg
);
}
.grid-page-pre-pro
,
.grid-page-next-pro
{
font-size
:
24px
;
margin-top
:
-2px
;
}
.ivu-icon
{
font-size
:
24px
;
color
:
var
(
--
app-color-gray-100
);
}
.grid-pagination__dropdown
{
span
{
color
:
var
(
--
app-color-black
);
font-weight
:
600
;
}
.ivu-icon
{
margin-left
:
15px
;
}
}
}
\ No newline at end of file
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录