[go: nahoru, domu]

Skip to content

Commit

Permalink
style: improve button overflow style (#2161)
Browse files Browse the repository at this point in the history
  • Loading branch information
erha19 authored Jan 4, 2023
1 parent fead0d1 commit 67d0522
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/i18n/src/common/en-US.lang.ts
Original file line number Diff line number Diff line change
Expand Up @@ -935,7 +935,7 @@ export const localizationBundle = {

'welcome-view.noOpenRepo': 'No source control providers registered.',
'welcome-view.noFolderHelp': 'You have not yet opened a folder.\n[Open Folder](command:{0})',
'welcome-view.noLaunchJson': 'No debug configuration detected\n[Create Debug Configuration](command:{0})',
'welcome-view.noLaunchJson': 'No debug configuration detected.\n[Create Debug Configuration](command:{0})',

'authentication.manageTrustedExtensions': 'Manage Trusted Extensions',
'authentication.manageExtensions': 'Choose which extensions can access this account',
Expand Down
6 changes: 4 additions & 2 deletions packages/main-layout/src/browser/accordion/styles.module.less
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ i.arrow_icon {
height: 100%;
display: flex;
flex-direction: column;
padding: 0 20px 1em;
padding: 0 10px 1em;
box-sizing: border-box;
align-items: center;
& > * {
Expand All @@ -199,14 +199,16 @@ i.arrow_icon {
transition: max-width 0.2s ease-out;
:global(.kt-button) {
box-sizing: border-box;
display: flex;
width: 100%;
padding: 4px;
text-align: center;
cursor: pointer;
justify-content: center;
align-items: center;
max-width: 300px;
overflow: hidden;
text-overflow: ellipsis;
display: inline-block;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
border: 1px;
border-radius: 0;
flex: 1;
overflow: hidden;
}
.secondary-button {
margin-left: 0;
Expand Down

0 comments on commit 67d0522

Please sign in to comment.