Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
vue-flow-editor
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2023-11-01 11:34:11 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
7dccf54843c5db98257d5e778477f6f0d5c1d31c
7dccf548
1 parent
a68733b5
fix
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
113 additions
and
113 deletions
doc/App.vue
doc/selectUserView.vue
doc/App.vue
View file @
7dccf54
...
...
@@ -578,115 +578,4 @@ body {
.demo-tabs > .el-tabs__content {
/* padding: 32px; */
}
.flow-tabs__nav-wrap {
overflow: hidden;
margin-bottom: -1px;
position: relative;
}
.flow-tabs__nav-wrap::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 2px;
background-color: #e4e7ed;
/* z-index: 1; */
}
.flow-tabs__nav-scroll {
/* overflow: hidden; */
overflow: scroll;
}
.flow-tabs__active-bar {
position: absolute;
bottom: 0;
left: 0;
height: 2px;
background-color: #409eff;
z-index: 1;
transition: width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
list-style: none;
}
.flow-tabs__nav {
display: flex;
white-space: nowrap;
position: relative;
transition: transformX(0px);
float: left;
.flow-tabs__item {
padding: 0 20px;
height: 40px;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
list-style: none;
font-size: 14px;
font-weight: 500;
color: #303133;
position: relative;
&:hover {
color: #409eff;
cursor: pointer;
}
&.is-active {
color: #409eff;
}
&.is-top:nth-child(2) {
padding-left: 0;
}
}
}
.flow-tab-search {
position: absolute;
top: 0;
right: 0;
width: 100px;
display: flex;
align-items: center;
background-color: #e4e7ed;
padding: 5px 5px 5px 15px;
border-radius: 15px;
color: #b1b3b8;
&:hover {
cursor: pointer;
}
}
.flow-checkbox-group {
.el-checkbox {
display: flex !important;
}
}
.search-btn-wrapper {
.el-input-group__append {
width: 100px !important;
padding: 0 !important;
}
.search-group {
display: flex;
text-align: center;
.confirm-btn {
width: 50px;
color: #fff;
background-color: #409eff;
&:hover {
cursor: pointer;
}
}
.cancel-btn {
width: 50px;
&:hover {
cursor: pointer;
}
}
}
}
</style>
...
...
doc/selectUserView.vue
View file @
7dccf54
<!--
* @Date: 2023-11-01 10:18:53
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2023-11-01 11:
28:37
* @LastEditTime: 2023-11-01 11:
33:00
* @FilePath: /vue-flow-editor/doc/selectUserView.vue
* @Description: 文件描述
-->
...
...
@@ -656,4 +656,115 @@ watch(
);
</script>
<style lang="less" scoped></style>
<style lang="scss">
.flow-tabs__nav-wrap {
overflow: hidden;
margin-bottom: -1px;
position: relative;
}
.flow-tabs__nav-wrap::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 2px;
background-color: #e4e7ed;
/* z-index: 1; */
}
.flow-tabs__nav-scroll {
/* overflow: hidden; */
overflow: scroll;
}
.flow-tabs__active-bar {
position: absolute;
bottom: 0;
left: 0;
height: 2px;
background-color: #409eff;
z-index: 1;
transition: width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
list-style: none;
}
.flow-tabs__nav {
display: flex;
white-space: nowrap;
position: relative;
transition: transformX(0px);
float: left;
.flow-tabs__item {
padding: 0 20px;
height: 40px;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
list-style: none;
font-size: 14px;
font-weight: 500;
color: #303133;
position: relative;
&:hover {
color: #409eff;
cursor: pointer;
}
&.is-active {
color: #409eff;
}
&.is-top:nth-child(2) {
padding-left: 0;
}
}
}
.flow-tab-search {
position: absolute;
top: 0;
right: 0;
width: 100px;
display: flex;
align-items: center;
background-color: #e4e7ed;
padding: 5px 5px 5px 15px;
border-radius: 15px;
color: #b1b3b8;
&:hover {
cursor: pointer;
}
}
.flow-checkbox-group {
.el-checkbox {
display: flex !important;
}
}
.search-btn-wrapper {
.el-input-group__append {
width: 100px !important;
padding: 0 !important;
}
.search-group {
display: flex;
text-align: center;
.confirm-btn {
width: 50px;
color: #fff;
background-color: #409eff;
&:hover {
cursor: pointer;
}
}
.cancel-btn {
width: 50px;
&:hover {
cursor: pointer;
}
}
}
}
</style>
...
...
Please
register
or
login
to post a comment