-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow moving of map with pinned file explorer #2788
- Loading branch information
1 parent
4d3b797
commit 61d9c5b
Showing
6 changed files
with
54 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
visualization/app/codeCharta/ui/searchPanel/searchPanel.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,21 @@ | ||
cc-search-panel { | ||
.search-panel-card { | ||
border-left: none; | ||
width: 100%; | ||
} | ||
.search-panel-card .section-body { | ||
display: flex; | ||
flex-direction: column; | ||
padding: 6px; | ||
position: absolute; | ||
top: 45px; | ||
background: white; | ||
border: 1px solid #b5b5b5; | ||
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12); | ||
|
||
&.hidden { | ||
display: none; | ||
pointer-events: none; | ||
} | ||
} | ||
} |
7 changes: 6 additions & 1 deletion
7
visualization/app/codeCharta/ui/searchPanel/sortingOption/sortingOption.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
visualization/app/codeCharta/ui/searchPanel/sortingOption/sortingOption.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.sorting-option-select { | ||
max-width: 88px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters