From 21dfae1f95b13622a76536ecd002528fcac76392 Mon Sep 17 00:00:00 2001 From: Parth Sharma Date: Mon, 27 Mar 2017 19:18:25 +0530 Subject: [PATCH] Replaced .border-radius with border-radius css in brackets_patterns_override.less This fixes #13227 --- src/styles/brackets_patterns_override.less | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/styles/brackets_patterns_override.less b/src/styles/brackets_patterns_override.less index 61d198d364d..54fd9b5966a 100644 --- a/src/styles/brackets_patterns_override.less +++ b/src/styles/brackets_patterns_override.less @@ -377,7 +377,7 @@ a:focus { width: max-content; background-color: @bc-menu-bg; - .border-radius(0 0 3px 3px); + border-radius: 0 0 3px 3px; box-shadow: 0 3px 9px @bc-shadow; border: none; @@ -475,7 +475,7 @@ a:focus { list-style-type: none; .dropdown-menu { - .border-radius(3px); + border-radius: 3px; box-shadow: 0 3px 9px @bc-shadow; .dark & { @@ -1414,7 +1414,7 @@ input[type="color"], font-weight: normal; -webkit-font-smoothing: antialiased; box-shadow: inset 0 1px 0 @bc-shadow-small; - .border-radius(@bc-border-radius); + border-radius: @bc-border-radius; .transition(~"border linear 180ms, box-shadow linear 180ms"); .dark & { @@ -1552,7 +1552,7 @@ input[type="color"], font-weight: @font-weight-semibold; line-height: normal; border: 1px solid @bc-btn-border; - .border-radius(@bc-border-radius); + border-radius: @bc-border-radius; box-shadow: inset 0 1px @bc-highlight-hard; -webkit-font-smoothing: antialiased; text-shadow: none; @@ -1709,7 +1709,7 @@ input[type="color"], // Button Sizes &.large { font-size: (@baseFontSize + 1px); - .border-radius(@bc-border-radius); + border-radius: @bc-border-radius; } &.small { font-size: (@baseFontSize - 1px);