Skip to content

Commit

Permalink
fix button disabled text color
Browse files Browse the repository at this point in the history
  • Loading branch information
the-j0k3r committed Apr 30, 2020
1 parent 67a45d7 commit 49f5abb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions github-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -4434,33 +4434,33 @@
body[class="page-responsive"] .reponav-item,
body[class="page-responsive"] .reponav-wrapper .reponav,
body[class="page-responsive"] .reponav-wrapper .reponav-item {
color: hsla(0, 0%, 100%, .75);
color: hsla(0, 0%, 100%, .4);
}
body[class="page-responsive"] .header-search-input::-webkit-input-placeholder {
color: hsla(0, 0%, 100%, .75);
color: hsla(0, 0%, 100%, .4);
}
.CheckRun-search-input:-ms-input-placeholder,
.CheckRun-search-input::-ms-input-placeholder,
.header-search-input:-ms-input-placeholder,
.header-search-input::-ms-input-placeholder {
color: hsla(0, 0%, 100%, .75);
color: hsla(0, 0%, 100%, .4);
}
/* remap-css rule for "color: hsla(0,0%,100%,.75) !important" */
.HeaderMenu--logged-out .header-search-input::placeholder,
.page-responsive .HeaderMenu--logged-out .header-search-input::placeholder,
.project-full-screen .project-header .project-header-link,
body[class="page-responsive"] .HeaderMenu--logged-out .header-search-input::placeholder {
color: hsla(0, 0%, 100%, .75) !important;
color: hsla(0, 0%, 100%, .4) !important;
}
.page-responsive .HeaderMenu--logged-out .header-search-input::-webkit-input-placeholder,
body[class="page-responsive"] .HeaderMenu--logged-out .header-search-input::-webkit-input-placeholder {
color: hsla(0, 0%, 100%, .75) !important;
color: hsla(0, 0%, 100%, .4) !important;
}
.HeaderMenu--logged-out .header-search-input:-ms-input-placeholder,
.HeaderMenu--logged-out .header-search-input::-ms-input-placeholder,
.page-responsive .HeaderMenu--logged-out .header-search-input:-ms-input-placeholder,
.page-responsive .HeaderMenu--logged-out .header-search-input::-ms-input-placeholder {
color: hsla(0, 0%, 100%, .75) !important;
color: hsla(0, 0%, 100%, .4) !important;
}
/* remap-css rule for "fill: #959da5" */
.activity-overview-percentage, .contrib-person .midlabel,
Expand Down
2 changes: 1 addition & 1 deletion tools/generate.js
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ const mappings = {
"color: rgba(36,41,46,.4)": "color: rgba(210,210,210,.4)",
"color: hsla(0,0%,100%,.5)": "color: hsla(0,0%,100%,.5)",
"color: hsla(0,0%,100%,.6)": "color: hsla(0,0%,100%,.6)",
"color: hsla(0,0%,100%,.75)": "color: hsla(0,0%,100%,.75)",
"color: hsla(0,0%,100%,.75)": "color: hsla(0,0%,100%,.4)",

"fill: #959da5": "fill: #757575",
"fill: #0366d6": "fill: /*[[base-color]]*/ #4f8cc9",
Expand Down

3 comments on commit 49f5abb

@the-j0k3r
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I still thik its still too bright, but the again this affects all sorts and its the mai reason why buttos i generator werent doe earlier as it breaks more than it fixes.

genericybutto

@silverwind
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess we can plainly invert these hslas.

@silverwind
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done in 2f72ad4.

Please sign in to comment.