Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
margin: 2px 4px 2px 0;
display: inline-block;
position: relative;
display: flex;
align-items: center;
padding: 0 8px 0 8px;
background-color: $devui-label-bg;
Expand Down
4 changes: 0 additions & 4 deletions packages/devui-vue/devui/comment/src/comment.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@
margin: 0 16px 0 0;
}

&-right{

}

&-head {
display: flex;
align-items: center;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,17 +105,18 @@
.devui-select-chevron-icon {
transform: rotate(180deg);
}

.devui-select-chevron-icon svg path {
fill: $devui-text-weak;
}
}

.devui-editable-select.devui-form-group.devui-has-feedback > .devui-form-control-feedback {
line-height: 26px;
}

.devui-editable-select-dropdown {
.devui-dropdown-menu {
width: 100%;
display: block;
width: 100%;
display: block;
// TODO: 全局样式被污染,暂时只能这么写
Expand Down
9 changes: 5 additions & 4 deletions packages/devui-vue/devui/form/src/directive/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@
}

.devui-error {
input, .devui-tags {
border-color: var(--devui-danger-line,#f66f6a) !important;
background-color: var(--devui-danger-bg,#ffeeed) !important;
input,
.devui-tags {
border-color: var(--devui-danger-line, #f66f6a) !important;
background-color: var(--devui-danger-bg, #ffeeed) !important;
}
}
}
1 change: 0 additions & 1 deletion packages/devui-vue/devui/form/src/form-item/form-item.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
margin-bottom: 20px;
}


.devui-validate-tip {
display: flex;
justify-content: center;
Expand Down
6 changes: 4 additions & 2 deletions packages/devui-vue/devui/upload/src/upload.scss
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@
border-bottom: 1px solid $devui-form-control-line;
border-right: 1px solid $devui-form-control-line;
border-radius: 0 $devui-border-radius $devui-border-radius 0;
transition: border-color $devui-animation-duration-slow $devui-animation-ease-in-out-smooth,
transition:
border-color $devui-animation-duration-slow $devui-animation-ease-in-out-smooth,
background-color $devui-animation-duration-slow $devui-animation-ease-in-out-smooth;
cursor: pointer;
height: 100%;
Expand All @@ -65,7 +66,8 @@
background-image: none;
border: 1px solid $devui-form-control-line;
border-radius: $devui-border-radius 0 0 $devui-border-radius;
transition: border-color $devui-animation-duration-slow $devui-animation-ease-in-out-smooth,
transition:
border-color $devui-animation-duration-slow $devui-animation-ease-in-out-smooth,
box-shadow $devui-animation-duration-slow $devui-animation-ease-in-out-smooth;

&.devui-files-list {
Expand Down