Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7-Res
提交
825b2707
提交
825b2707
编写于
12月 09, 2022
作者:
LUCIFER-ZHU
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update: 更新样式
上级
c955c5be
变更
10
隐藏空白字符变更
内嵌
并排
正在显示
10 个修改的文件
包含
53 行增加
和
25 行删除
+53
-25
app-autocomplete.scss
src/components/app-autocomplete/app-autocomplete.scss
+0
-5
autocomplete.scss
src/styles/element/autocomplete.scss
+1
-7
index.scss
src/styles/element/index.scss
+2
-1
input.scss
src/styles/element/input.scss
+15
-4
select.scss
src/styles/element/select.scss
+6
-0
checkbox-group.scss
src/styles/iview/checkbox-group.scss
+6
-0
checkbox.scss
src/styles/iview/checkbox.scss
+3
-1
input.scss
src/styles/iview/input.scss
+1
-1
radio-group.scss
src/styles/iview/radio-group.scss
+7
-1
select.scss
src/styles/iview/select.scss
+12
-5
未找到文件。
src/components/app-autocomplete/app-autocomplete.scss
浏览文件 @
825b2707
.ivu-auto-complete
{
.ivu-select-dropdown-list
{
height
:
300px
;
}
}
src/styles/element/autocomplete.scss
浏览文件 @
825b2707
.el-autocomplete
{
.el-input
{
font-size
:
14px
;
input
{
border-radius
:
0
;
}
input
:hover
{
border-color
:
var
(
--
app-color-blue
);
}
font-size
:
14px
;
}
}
\ No newline at end of file
src/styles/element/index.scss
浏览文件 @
825b2707
...
...
@@ -2,4 +2,5 @@
@import
'./menu.scss'
;
@import
'./autocomplete.scss'
;
@import
'./input.scss'
;
@import
'./stepper.scss'
;
\ No newline at end of file
@import
'./stepper.scss'
;
@import
'./select.scss'
;
\ No newline at end of file
src/styles/element/input.scss
浏览文件 @
825b2707
.el-input
{
input
{
border-radius
:
0
;
}
.el-input__inner
{
height
:
34px
;
border-radius
:
0
;
min-height
:
34px
;
line-height
:
34px
;
}
// 悬浮
.el-input__inner
:hover
{
border-color
:
var
(
--
app-color-blue
);
}
// 占位
.
el-input__inner
:
:-
webkit-input-placeholder
{
color
:
var
(
--
app-color-gray-200
);
}
// 禁用
&
.is-disabled
.el-input__inner
{
color
:
var
(
--
app-color-gray-200
);
background-color
:
var
(
--
app-color-gray-250
);
}
}
\ No newline at end of file
src/styles/element/select.scss
0 → 100644
浏览文件 @
825b2707
.el-select
{
// 悬浮
&
:hover
.el-input__inner
{
border-color
:
var
(
--
app-color-blue
);
}
}
\ No newline at end of file
src/styles/iview/checkbox-group.scss
浏览文件 @
825b2707
...
...
@@ -5,13 +5,19 @@
width
:
16px
;
height
:
16px
;
margin-right
:
6px
;
// 激活
&
.ivu-checkbox-checked
{
border-color
:
var
(
--
app-color-blue
);
background-color
:
var
(
--
app-color-blue
);
}
}
// 悬浮
.ivu-checkbox
:hover
.ivu-checkbox-inner
{
border-color
:
var
(
--
app-color-blue
);
}
// 禁用
.ivu-checkbox-disabled
+
span
{
color
:
var
(
--
app-color-gray-250
);
}
}
}
\ No newline at end of file
src/styles/iview/checkbox.scss
浏览文件 @
825b2707
...
...
@@ -3,6 +3,7 @@
.ivu-checkbox-inner
{
border-radius
:
0
;
}
// 激活
&
.ivu-checkbox-checked
{
.ivu-checkbox-inner
{
border-color
:
var
(
--
app-color-blue
);
...
...
@@ -10,7 +11,8 @@
}
}
}
// 悬浮
.ivu-checkbox
:hover
.ivu-checkbox-inner
{
border-color
:
var
(
--
app-color-blue
);
}
}
}
\ No newline at end of file
src/styles/iview/input.scss
浏览文件 @
825b2707
.ivu-input
{
height
:
34px
;
min-
height
:
34px
;
line-height
:
34px
;
border-radius
:
0
;
}
\ No newline at end of file
src/styles/iview/radio-group.scss
浏览文件 @
825b2707
...
...
@@ -4,7 +4,8 @@
.ivu-radio
{
margin-right
:
6px
;
width
:
16px
;
height
:
16px
;
height
:
16px
;
// 激活
&
.ivu-radio-checked
{
.ivu-radio-inner
{
border-color
:
var
(
--
app-color-blue
);
...
...
@@ -14,8 +15,13 @@
}
}
}
// 悬浮
.ivu-radio
:hover
.ivu-radio-inner
{
border-color
:
var
(
--
app-color-blue
);
}
// 禁用
.ivu-radio-disabled
+
span
{
color
:
var
(
--
app-color-gray-200
);
}
}
}
\ No newline at end of file
src/styles/iview/select.scss
浏览文件 @
825b2707
.ivu-select
{
.ivu-select-selection
{
height
:
34px
;
min-
height
:
34px
;
border-radius
:
0
;
input
:
:-
webkit-input-placeholder
{
// 占位
.
ivu-select-input
:
:-
webkit-input-placeholder
{
color
:var
(
--app-color-gray-200
)
;
}
// 禁用
.ivu-select-input
[
disabled
]
{
color
:
var
(
--
app-color-gray-200
);
-webkit-text-fill-color
:
var
(
--
app-color-gray-200
);
}
}
.ivu-select-input
[
disabled
]
{
color
:
var
(
--
app-color-gray-200
);
-webkit-text-fill-color
:
var
(
--
app-color-gray-200
);
// 悬浮
.ivu-select-selection
:hover
{
border-color
:
var
(
--
app-color-blue
);
}
}
...
...
@@ -16,6 +22,7 @@
padding
:
10px
0
10px
;
.ivu-select-dropdown-list
{
.ivu-select-item
{
// 激活
&
.ivu-select-item-selected
{
color
:
var
(
--
app-color-blue
);
background-color
:
transparent
;
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录