mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 17:22:20 -05:00
* update project from database * update project from database * Leftover merge update * Slight refactor to add vscode entrypoints * Re-adding leftover schemacompare bits that reference database project changes * Removing unnecessary function * Addiung GetDSP command to package.json * tests and a race condition fix * remove custom UUID generation code * swapping awaits for voids on promises * PR feedback * PR feedback * Hide update project command from vscode * Swapping cross-extension commands for bound extension contract * Re-adding schema compare radio buttons for sqlproj * Adding refresh after project update * Populating list of project scripts just before comparison to avoid missing script errors of project was separately edited * Adding missing await for okay button enable check * Correcting schema compare source when populated from a project * Rename UpdateDataModel to be more clear * Fix incorrectly changed type * Added new runComparison schema compare command, hooked up to sqlproj extension * Added progress indicator for "apply now" option * moved string literal to constant * Added missing await * Setting missing "saveScmpButton" state to fix test * Revert "Setting missing "saveScmpButton" state to fix test" This reverts commit 55612c9def24ac9e3398f5bbd153d21d9d3ca37f. * Removing preemptive resetWindow() call * general cleanup * PR feedback * property renames * Reverting rename; requires Tools Service change first * Adding header to updateProject * Adding missing header * PR feedback * adding missing await * Handing race condition for UI enable * Fixing broken okay enable case * Fixing enum comparison wonk Co-authored-by: Noureldine Yehia <t-nyehia@microsoft.com>
32 lines
1.4 KiB
TypeScript
32 lines
1.4 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
// CSS Styles
|
|
export namespace cssStyles {
|
|
export const text = { 'user-select': 'text', 'cursor': 'text' };
|
|
export const tableHeader = { ...text, 'text-align': 'left', 'border': 'none', 'font-size': '12px', 'font-weight': 'normal', 'color': '#666666' };
|
|
export const tableRow = { ...text, 'border-top': 'solid 1px #ccc', 'border-bottom': 'solid 1px #ccc', 'border-left': 'none', 'border-right': 'none', 'font-size': '12px' };
|
|
export const fontWeightBold = { 'font-weight': 'bold' };
|
|
export const titleFontSize = 13;
|
|
|
|
export const publishDialogLabelWidth = '205px';
|
|
export const publishDialogTextboxWidth = '190px';
|
|
|
|
export const addDatabaseReferenceDialogLabelWidth = '215px';
|
|
export const addDatabaseReferenceInputboxWidth = '220px';
|
|
|
|
export const createProjectFromDatabaseLabelWidth = '110px';
|
|
export const createProjectFromDatabaseTextboxWidth = '310px';
|
|
|
|
export const updateProjectFromDatabaseLabelWidth = '110px';
|
|
export const updateProjectFromDatabaseTextboxWidth = '310px';
|
|
|
|
// font-styles
|
|
export namespace fontStyle {
|
|
export const normal = 'normal';
|
|
export const italics = 'italic';
|
|
}
|
|
}
|