mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-16 09:35:36 -05:00
29 lines
1.3 KiB
TypeScript
29 lines
1.3 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';
|
|
|
|
// font-styles
|
|
export namespace fontStyle {
|
|
export const normal = 'normal';
|
|
export const italics = 'italic';
|
|
}
|
|
}
|