mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-19 17:22:48 -05:00
* Added toggle more actions to cell * Resolve PR comments -- Added INotificationService for notification msg * Reduced ToggleMoreAction to smaller size. So the dropdown could be displayed closer to it instead of at the buttom of the cell.
41 lines
1.0 KiB
CSS
41 lines
1.0 KiB
CSS
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
code-component {
|
|
height: 100%;
|
|
width: 100%;
|
|
display: block;
|
|
}
|
|
|
|
code-component .toolbar {
|
|
border-right-width: 1px;
|
|
border-right-style: solid;
|
|
}
|
|
|
|
code-component .toolbarIconRun {
|
|
height: 20px;
|
|
background-image: url('../media/light/execute_cell.svg');
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.vs-dark code-component .toolbarIconRun,
|
|
.hc-black code-component .toolbarIconRun {
|
|
background-image: url('../media/dark/execute_cell_inverse.svg');
|
|
}
|
|
|
|
code-component .carbon-taskbar .icon {
|
|
background-size: 20px;
|
|
width: 40px;
|
|
}
|
|
|
|
code-component .action-label.icon.toggle-more {
|
|
height: 20px;
|
|
width: 20px;
|
|
}
|
|
|
|
code-component .carbon-taskbar.monaco-toolbar .monaco-action-bar.animated .actions-container
|
|
{
|
|
padding-left: 10px
|
|
} |