diff --git a/style/components/datepicker/TimePanel.less b/style/components/datepicker/TimePanel.less index 6024b4bb7e..a71882d29c 100644 --- a/style/components/datepicker/TimePanel.less +++ b/style/components/datepicker/TimePanel.less @@ -7,7 +7,6 @@ z-index: 10; position: absolute; outline: none; - border-radius: 6px; border-radius: @border-radius-base; } diff --git a/style/components/dialog/Dialog.less b/style/components/dialog/Dialog.less index 38b26e7b95..4159219890 100644 --- a/style/components/dialog/Dialog.less +++ b/style/components/dialog/Dialog.less @@ -26,7 +26,7 @@ position: relative; background-color: #fff; border: none; - border-radius: 6px 6px; + border-radius: @border-radius-base; background-clip: padding-box; outline: 0; } diff --git a/style/components/dropdown.less b/style/components/dropdown.less index 9168f3fce4..e7d4e7210d 100644 --- a/style/components/dropdown.less +++ b/style/components/dropdown.less @@ -42,7 +42,7 @@ margin: 0; text-align: left; background-color: #fff; - border-radius: 3px; + border-radius: @border-radius-base; box-shadow: @overlay-shadow; background-clip: padding-box; border: 1px solid #d9d9d9; diff --git a/style/components/pagination.less b/style/components/pagination.less index 1c25816059..03ee36ce1d 100644 --- a/style/components/pagination.less +++ b/style/components/pagination.less @@ -97,7 +97,7 @@ font-family: Arial; cursor: pointer; color: #666; - border-radius: 6px; + border-radius: @border-radius-base; list-style: none; min-width: 28px; height: 28px; @@ -210,7 +210,7 @@ margin: 0 8px; box-sizing: border-box; background-color: #fff; - border-radius: 6px; + border-radius: @border-radius-base; border: 1px solid #d9d9d9; outline: none; padding: 5px 8px; diff --git a/style/components/select.less b/style/components/select.less index 8709ba4b8f..b3b299ea3a 100644 --- a/style/components/select.less +++ b/style/components/select.less @@ -66,7 +66,7 @@ display: block; background-color: #fff; - border-radius: 6px; + border-radius: @border-radius-base; border: 1px solid #d9d9d9; .transition(all .3s @ease-in-out); diff --git a/style/components/table.less b/style/components/table.less index 6bc5e0cd37..010ddfc81f 100644 --- a/style/components/table.less +++ b/style/components/table.less @@ -43,10 +43,10 @@ } &:first-child { - border-radius: 6px 0 0 0; + border-radius: @border-radius-base 0 0 0; } &:last-child { - border-radius: 0 6px 0 0; + border-radius: 0 @border-radius-base 0 0; } } diff --git a/style/components/timeline.less b/style/components/timeline.less index 414ebc3a16..82ff6a9bf2 100644 --- a/style/components/timeline.less +++ b/style/components/timeline.less @@ -22,7 +22,7 @@ width: 12px; height: 12px; background-color: #fff; - border-radius: 6px; + border-radius: 100px; &-blue { border: 2px solid @primary-color; } diff --git a/style/mixins/input.less b/style/mixins/input.less index a944f569f4..022339bf34 100644 --- a/style/mixins/input.less +++ b/style/mixins/input.less @@ -48,7 +48,7 @@ border: 1px solid @input-border-color; border-radius: @border-radius-base; .placeholder(); // Reset placeholder - .transition(~"border .3s @{ease-in-out}, background .3s @{ease-in-out}, box-shadow .3s @{ease-in-out}"); + .transition(~"border .2s @{ease-in-out}, background .2s @{ease-in-out}, box-shadow .2s @{ease-in-out}"); &:hover { .hover();