-
Notifications
You must be signed in to change notification settings - Fork 398
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'devel' into CB-4903-Clickhouse-driver-update
- Loading branch information
Showing
103 changed files
with
1,230 additions
and
1,156 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
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,3 +1,3 @@ | ||
.fill { | ||
flex: 1; | ||
flex: 1 !important; | ||
} |
55 changes: 0 additions & 55 deletions
55
webapp/packages/core-blocks/src/FormControls/BASE_DROPDOWN_STYLES.ts
This file was deleted.
Oops, something went wrong.
51 changes: 51 additions & 0 deletions
51
webapp/packages/core-blocks/src/FormControls/BaseDropdown.m.css
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,51 @@ | ||
/* | ||
* CloudBeaver - Cloud Database Manager | ||
* Copyright (C) 2020-2024 DBeaver Corp and others | ||
* | ||
* Licensed under the Apache License, Version 2.0. | ||
* you may not use this file except in compliance with the License. | ||
*/ | ||
.menuItem { | ||
composes: theme-ripple from global; | ||
} | ||
|
||
.menu { | ||
composes: theme-text-on-surface theme-background-surface theme-typography--caption theme-elevation-z3 from global; | ||
display: flex; | ||
flex-direction: column; | ||
max-height: 300px; | ||
overflow: auto; | ||
outline: none; | ||
z-index: 999; | ||
border-radius: var(--theme-form-element-radius); | ||
|
||
& .menuItem { | ||
background: transparent; | ||
display: flex; | ||
flex-direction: row; | ||
align-items: center; | ||
padding: 8px 12px; | ||
text-align: left; | ||
outline: none; | ||
color: inherit; | ||
cursor: pointer; | ||
gap: 8px; | ||
|
||
& .itemIcon, | ||
& .itemTitle { | ||
position: relative; | ||
} | ||
|
||
& .itemIcon { | ||
width: 16px; | ||
height: 16px; | ||
overflow: hidden; | ||
flex-shrink: 0; | ||
|
||
& .iconOrImage { | ||
width: 100%; | ||
height: 100%; | ||
} | ||
} | ||
} | ||
} |
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
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
Oops, something went wrong.