-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix PR screen in github #17
Changes from 4 commits
df802e4
d5d0088
7b4f7eb
353103c
79fcf30
b704208
d6018f2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,8 +12,8 @@ | |
|
||
// ** Misc | ||
|
||
.link-gray-dark | ||
a.link-gray-dark | ||
color() | ||
.text-gray-dark | ||
color() | ||
|
||
|
@@ -251,6 +251,9 @@ a.filter-item | |
> h3 | ||
background-color color-background-highlight-extra-less | ||
color emphasized | ||
.more-repos | ||
background-color color-background-highlight-extra-less | ||
box-shadow inset 0 1px 0 color-background-highlight-extra | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do you need to add |
||
|
||
.boxed-group-inner | ||
background-color() | ||
|
@@ -269,14 +272,37 @@ a.filter-item | |
.branch-action-state-dirty | ||
.branch-action-state-unstable | ||
.branch-action-state-unknown | ||
.branch-action-icon | ||
.branch-action-icon | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why did you remove the indentation here? IIUC it will now make all There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah, this is a mistake, I didn't know what the difference was, correcting! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No prob. Indentation with selectors is equivalent to putting them on the same line separated by a space in regular CSS, so this selector only applies to |
||
background-color yellow i | ||
color white i | ||
|
||
.text-shadow-light | ||
.branch-group-name | ||
.branch-summary | ||
color color-text i | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The |
||
text-shadow none i | ||
|
||
.branch-a-b-count .meter | ||
background-color yellow | ||
|
||
.more-branches | ||
.branch-group-heading | ||
.branch-infobar | ||
.branch-name | ||
border-color comment | ||
background-color highlight | ||
|
||
.State | ||
.State:visited | ||
.octoicon-git-pull-request | ||
color color-background-highlight i | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The |
||
.State--red | ||
background-color red | ||
color color-background i | ||
.State--green | ||
background-color green | ||
color color-background i | ||
|
||
// ** build | ||
.build-status-item | ||
background-color color-background-highlight-extra-less | ||
|
@@ -583,10 +609,13 @@ a.label | |
color transparentify(green, color-background, 0.65) | ||
|
||
.octicon-alert | ||
.octicon-check | ||
color white | ||
.octicon-x | ||
color red | ||
.octicon-check | ||
color green | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Without having investigated it myself, is this the best way to do this? I'm guessing that I set OTOH maybe the CSS has changed and this is now the right way to do it. :) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a bit finiky. Github uses the I don't think that the check is ever on a green background, I've only seen it on the background, like in branches. If there was a way of 'turning off' the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ok, sounds good, thanks! |
||
.octicon-primitive-dot | ||
color yellow | ||
|
||
.octicon-clippy | ||
color emphasized | ||
|
@@ -649,11 +678,15 @@ a.label | |
.merge-status-item | ||
background-color color-background-highlight-extra-less | ||
|
||
.merge-message | ||
background-color color-background-highlight-extra-less-less | ||
|
||
.pr-toolbar | ||
background-color() | ||
|
||
// *** Code reviews | ||
|
||
|
||
.review-thread-reply | ||
background-color highlight | ||
|
||
|
@@ -681,6 +714,17 @@ a.label | |
img | ||
background-color() | ||
|
||
.range-editor | ||
background-color highlight | ||
|
||
.compare-pr-placeholder | ||
background-color color-background-highlight-extra-less-less | ||
|
||
ul.comparison-list > li.title | ||
background-color color-background-highlight-extra-less | ||
ul.comparison-list | ||
background-color color-background-highlight-extra-less-less | ||
|
||
// ** repository | ||
.repository-description | ||
color() | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since you added the plain class selector, can we remove the
a.link-gray-dark
selector?