Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Commit e1caef2

Browse files
authored
Merge pull request #13235 from parthsharma2/master
Fixes issue #13227
2 parents 2529210 + 21dfae1 commit e1caef2

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/styles/brackets_patterns_override.less

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ a:focus {
377377
width: max-content;
378378

379379
background-color: @bc-menu-bg;
380-
.border-radius(0 0 3px 3px);
380+
border-radius: 0 0 3px 3px;
381381
box-shadow: 0 3px 9px @bc-shadow;
382382
border: none;
383383

@@ -475,7 +475,7 @@ a:focus {
475475
list-style-type: none;
476476

477477
.dropdown-menu {
478-
.border-radius(3px);
478+
border-radius: 3px;
479479
box-shadow: 0 3px 9px @bc-shadow;
480480

481481
.dark & {
@@ -1414,7 +1414,7 @@ input[type="color"],
14141414
font-weight: normal;
14151415
-webkit-font-smoothing: antialiased;
14161416
box-shadow: inset 0 1px 0 @bc-shadow-small;
1417-
.border-radius(@bc-border-radius);
1417+
border-radius: @bc-border-radius;
14181418
.transition(~"border linear 180ms, box-shadow linear 180ms");
14191419

14201420
.dark & {
@@ -1552,7 +1552,7 @@ input[type="color"],
15521552
font-weight: @font-weight-semibold;
15531553
line-height: normal;
15541554
border: 1px solid @bc-btn-border;
1555-
.border-radius(@bc-border-radius);
1555+
border-radius: @bc-border-radius;
15561556
box-shadow: inset 0 1px @bc-highlight-hard;
15571557
-webkit-font-smoothing: antialiased;
15581558
text-shadow: none;
@@ -1709,7 +1709,7 @@ input[type="color"],
17091709
// Button Sizes
17101710
&.large {
17111711
font-size: (@baseFontSize + 1px);
1712-
.border-radius(@bc-border-radius);
1712+
border-radius: @bc-border-radius;
17131713
}
17141714
&.small {
17151715
font-size: (@baseFontSize - 1px);

0 commit comments

Comments
 (0)