Skip to content

Commit 54cc07c

Browse files
authored
fix(global): set the color of Tag a as inherit (#216)
* chore: update the package description * fix(global): set the color of Tag a as inherit fix #187
1 parent 72bb73b commit 54cc07c

File tree

7 files changed

+8
-1
lines changed

7 files changed

+8
-1
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "molecule",
33
"version": "0.9.0-alpha.2.1",
4-
"description": "A Web IDE UI Framework built by React.js, inspired by VSCode.",
4+
"description": "A Web IDE UI Framework built with React.js, inspired by VSCode.",
55
"module": "./esm/index.js",
66
"typings": "./esm/index.d.ts",
77
"scripts": {

src/components/button/style.scss

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
align-items: center;
55
border: 0;
66
box-sizing: border-box;
7+
color: inherit;
78
cursor: pointer;
89
display: flex;
910
justify-content: center;

src/components/list/style.scss

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
background-position: center center;
4343
background-repeat: no-repeat;
4444
background-size: 16px;
45+
color: inherit;
4546
display: flex;
4647
height: 100%;
4748
justify-content: center;

src/components/menu/style.scss

+1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454

5555
&__content {
5656
align-items: center;
57+
color: inherit;
5758
cursor: pointer;
5859
display: flex;
5960
flex: 1 1 auto;

src/components/tabs/style.scss

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
}
5858

5959
&__op {
60+
color: inherit;
6061
margin-left: 10px;
6162
width: 20px;
6263

src/workbench/activityBar/style.scss

+2
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646

4747
&__label {
4848
box-sizing: border-box;
49+
color: inherit;
4950
display: flex;
5051
height: 48px;
5152
margin-right: 0;
@@ -55,6 +56,7 @@
5556

5657
&.codicon {
5758
align-items: center;
59+
color: inherit;
5860
display: flex;
5961
font-size: 24px;
6062
justify-content: center;

src/workbench/statusBar/style.scss

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939

4040
a {
4141
align-items: center;
42+
color: inherit;
4243
cursor: pointer;
4344
display: flex;
4445
height: 100%;

0 commit comments

Comments
 (0)