mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-21 17:22:55 -05:00
add required indicator (#22971)
This commit is contained in:
8
src/sql/base/browser/ui/label/label.ts
Normal file
8
src/sql/base/browser/ui/label/label.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
import 'vs/css!./media/label';
|
||||
|
||||
export const RequiredIndicatorClassName = 'required-indicator';
|
||||
10
src/sql/base/browser/ui/label/media/label.css
Normal file
10
src/sql/base/browser/ui/label/media/label.css
Normal file
@@ -0,0 +1,10 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
.required-indicator:after {
|
||||
content: '*';
|
||||
color: red;
|
||||
margin-left: 2px;
|
||||
}
|
||||
Reference in New Issue
Block a user