mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-31 17:20:28 -04:00
* Merge from vscode 37cb23d3dd4f9433d56d4ba5ea3203580719a0bd * fix issues with merges * bump node version in azpipe * replace license headers * remove duplicate launch task * fix build errors * fix build errors * fix tslint issues * working through package and linux build issues * more work * wip * fix packaged builds * working through linux build errors * wip * wip * wip * fix mac and linux file limits * iterate linux pipeline * disable editor typing * revert series to parallel * remove optimize vscode from linux * fix linting issues * revert testing change * add work round for new node * readd packaging for extensions * fix issue with angular not resolving decorator dependencies
75 lines
2.2 KiB
CSS
75 lines
2.2 KiB
CSS
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
.monaco-workbench .part.editor.has-watermark > .content.empty .editor-group-container > .editor-group-letterpress {
|
|
background-position-y: calc(50% - 100px);
|
|
}
|
|
|
|
.monaco-workbench .part.editor.max-height-478px > .content.empty .editor-group-container > .editor-group-letterpress {
|
|
background-position-y: 50%;
|
|
}
|
|
|
|
.monaco-workbench .part.editor > .content > .watermark {
|
|
display: none; /* only visible when no editors are opened */
|
|
}
|
|
|
|
.monaco-workbench .part.editor.has-watermark > .content.empty > .watermark {
|
|
display: block;
|
|
position: absolute;
|
|
width: 100%;
|
|
top: calc(50% + 55px);
|
|
text-align: center;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.monaco-workbench .part.editor > .content.empty > .watermark > .watermark-box {
|
|
display: inline-table;
|
|
border-collapse: separate;
|
|
border-spacing: 13px 17px;
|
|
}
|
|
|
|
.monaco-workbench .part.editor.max-height-478px > .content.empty > .watermark {
|
|
display: none;
|
|
}
|
|
|
|
.monaco-workbench .part.editor > .content.empty > .watermark dl {
|
|
display: table-row;
|
|
opacity: .8;
|
|
cursor: default;
|
|
}
|
|
|
|
.monaco-workbench .part.editor > .content.empty > .watermark dt {
|
|
text-align: right;
|
|
letter-spacing: 0.04em
|
|
}
|
|
|
|
.monaco-workbench .part.editor > .content.empty > .watermark dd {
|
|
text-align: left;
|
|
}
|
|
|
|
.monaco-workbench .part.editor > .content.empty > .watermark dt,
|
|
.monaco-workbench .part.editor > .content.empty > .watermark dd {
|
|
display: table-cell;
|
|
}
|
|
|
|
.monaco-workbench .part.editor > .content.empty > .watermark dt,
|
|
.monaco-workbench .part.editor > .content.empty > .watermark dl {
|
|
color: rgba(0,0,0,.68);
|
|
}
|
|
|
|
.vs-dark .monaco-workbench .part.editor > .content.empty > .watermark dt,
|
|
.vs-dark .monaco-workbench .part.editor > .content.empty > .watermark dl {
|
|
color: rgba(255,255,255,.6);
|
|
}
|
|
|
|
.hc-black .monaco-workbench .part.editor > .content.empty > .watermark dt {
|
|
color: #FFF;
|
|
}
|
|
.hc-black .monaco-workbench .part.editor > .content.empty > .watermark dl {
|
|
color: #FFF;
|
|
opacity: 1;
|
|
}
|