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

Commit 845d83a

Browse files
committed
Removed Quick Open dropdown menu border and tweaked its dropshadow to compensate.
1 parent f9667cb commit 845d83a

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

src/styles/brackets.less

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1293,11 +1293,14 @@ textarea.exclusions-editor {
12931293

12941294
.smart_autocomplete_container {
12951295
// the borders show up even if the container is empty, must set height to zero using JS.
1296-
border: 1px solid @tc-gray-panel-border;
12971296
background-color: @tc-gray-panel;
12981297
border-radius: 0 0 4px 4px;
12991298
box-shadow: @tc-normal-shadow-bottom;
13001299
opacity: 0;
1300+
1301+
// Need this for border-radius because there are no borders
1302+
overflow: hidden;
1303+
13011304
.animation (autocomplete, 90ms, cubic-bezier(.01, .91, 0, .99), 0, 1);
13021305
-webkit-animation-fill-mode: forwards;
13031306
animation-fill-mode: forwards;

src/styles/brackets_colors.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
@tc-panel-border-radius: 5px;
9999
@tc-small-shadow-top: 0 -1px 3px rgba(0, 0, 0, 0.12);
100100
@tc-small-shadow-bottom: 0 1px 3px rgba(0, 0, 0, 0.12);
101-
@tc-normal-shadow-bottom: 0 5px 10px rgba(0, 0, 0, 0.1);
101+
@tc-normal-shadow-bottom: 0 5px 10px rgba(0, 0, 0, 0.21);
102102
@tc-highlight: #e0f0fa;
103103
@tc-selected-row: #d0d5d5;
104104
@tc-hover-highlight: rgba(255, 255, 255, 0.6);

0 commit comments

Comments
 (0)