fix opacity for light theme (#9944)

This commit is contained in:
Kim Santiago
2020-04-13 15:02:45 -07:00
committed by GitHub
parent 3f08d5d714
commit d9b7711a2c
2 changed files with 14 additions and 0 deletions

View File

@@ -2,6 +2,7 @@
* 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!./propertiesWidget';
import { Component, Inject, forwardRef, ChangeDetectorRef, OnInit, ElementRef, ViewChild } from '@angular/core';

View File

@@ -0,0 +1,13 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the Source EULA. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
.propertiesName {
opacity: 0.6;
}
.vs-dark .propertiesName,
.hc-black .propertiesName {
opacity: 1;
}