Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@import '~@opensumi/ide-components/lib/style/mixins.less';

.kt_debug_action_bar {
.debug_action_bar {
height: 28px;
display: flex;
align-items: center;
Expand All @@ -10,7 +10,7 @@
pointer-events: all;
overflow: hidden;

.kt_debug_actions {
.debug_actions {
display: flex;
justify-content: space-between;
align-items: center;
Expand Down Expand Up @@ -43,7 +43,7 @@
margin-bottom: 8px;
align-items: center;

.kt_debug_actions {
.debug_actions {
display: flex;
flex: 1;
justify-content: space-between;
Expand Down Expand Up @@ -76,10 +76,10 @@
display: flex;
align-content: center;
justify-content: center;
z-index: 999;
z-index: 10;
user-select: none;

.kt_debug_action_bar {
.debug_action_bar {
height: 100%;
padding: 0px 12px;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import cls from 'classnames';
import { observer } from 'mobx-react-lite';
import React from 'react';


import { Select, Option } from '@opensumi/ide-components';
import { useInjectable, localize, isElectronRenderer, URI } from '@opensumi/ide-core-browser';
import { Select as NativeSelect } from '@opensumi/ide-core-browser/lib/components/select';
Expand Down Expand Up @@ -175,7 +174,7 @@ interface DebugActionBarProps {
}

export const DebugActionBar = React.memo(({ runDebug, openConfiguration, openDebugConsole }: DebugActionBarProps) => (
<div className={styles.kt_debug_actions}>
<div className={styles.debug_actions}>
<DebugAction
id='debug.action.start'
icon={'start'}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -202,9 +202,9 @@ export const DebugToolbarView = observer((props: DebugToolbarViewProps) => {

return (
<React.Fragment>
<div className={styles.kt_debug_action_bar}>
<div className={styles.debug_action_bar}>
{renderSelections(sessions.filter((s: DebugSession) => !s.parentSession))}
<div className={styles.kt_debug_actions}>
<div className={styles.debug_actions}>
{renderContinue(state)}
<DebugAction
run={doStepOver}
Expand Down