Skip to content

Commit

Permalink
fix org invite page - fixes #1072
Browse files Browse the repository at this point in the history
  • Loading branch information
silverwind committed Feb 23, 2020
1 parent 1fd8334 commit 4126938
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
13 changes: 12 additions & 1 deletion github-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@
input, textarea {
color: #bebebe;
}
input[type="date"], input[type="datetime-local"], input[type="email"],
input[type="file"], input[type="number"], input[type="password"],
input[type="search"], input[type="tel"], input[type="text"],
input[type="time"], input[type="url"] {
background: #181818;
}

This comment has been minimized.

Copy link
@silverwind

silverwind Feb 23, 2020

Author Member

Maybe it'll be better to only style input and add overrules for checkbox/radio and such to remove the background again.

This comment has been minimized.

Copy link
@the-j0k3r

the-j0k3r Feb 23, 2020

Member

🤷‍♂️

svg {
fill: #bebebe;
}
Expand Down Expand Up @@ -3221,6 +3227,10 @@
body[class="page-responsive"] .box-shadow-medium {
box-shadow: 0 1px 5px #000 !important;
}
/* remap-css rule for "box-shadow: 0 0 5px rgba(27,31,35,.3)" */
.autocomplete-results {
box-shadow: 0 0 5px #000;
}
/* remap-css rule for "box-shadow: inset 0 -1px 0 #d1d5da" */
kbd, .markdown-body kbd, #graphiql kbd, #graphiql .markdown-body kbd,
body[class="page-responsive"] .markdown-body kbd,
Expand Down Expand Up @@ -7552,7 +7562,8 @@
.pinned-issue-item, #wiki-footer .border-dashed, #wiki-rightbar .border-dashed,
.list-group-item.standalone, .commit-form, .sidebar-progress-bar > .d-flex,
.pagination-loader-container .discussion-item-header .border,
.notifications-list .list-style-none.bg-gray, .pr-toolbar.is-stuck {
.notifications-list .list-style-none.bg-gray, .pr-toolbar.is-stuck,
.hx_badge-search-container {
background: #181818 !important;
}
.Box-row--hover-blue {
Expand Down
1 change: 1 addition & 0 deletions tools/generate.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ const mappings = {
"box-shadow: 0 0 0 .2em rgba(203,36,49,.4)": "box-shadow: 0 0 0 .2em rgba(255,68,68,.4)",

"box-shadow: 0 1px 5px rgba(27,31,35,.15)": "box-shadow: 0 1px 5px #000",
"box-shadow: 0 0 5px rgba(27,31,35,.3)": "box-shadow: 0 0 5px #000",

"box-shadow: inset 0 0 0 1px #e1e4e8,0 2px 4px rgba(0,0,0,.15)": "box-shadow: inset 0 0 0 1px #555",
"box-shadow: inset 0 0 0 1px #e1e4e8": "box-shadow: inset 0 0 0 1px #555",
Expand Down

0 comments on commit 4126938

Please sign in to comment.