-
-
Notifications
You must be signed in to change notification settings - Fork 8.8k
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
Yui button inspired style #10061
base: master
Are you sure you want to change the base?
Yui button inspired style #10061
Conversation
Signed-off-by: Thorsten Scherler <scherler@gmail.com>
Signed-off-by: Thorsten Scherler <scherler@gmail.com>
Heyo. The existing classes for Button should work for your primary/destructive use cases - see https://weekly.ci.jenkins.io/design-library/Buttons/ e.g. You'd want to add an 'outline' modifier though for the 'Analyse now' button, e.g. |
Signed-off-by: Thorsten Scherler <scherler@gmail.com>
Signed-off-by: Thorsten Scherler <scherler@gmail.com>
@janfaracik makes a lot of sense and thanks for pointing it out (I will follow up with a sample in the design-lib) I renamed the outline example |
@@ -75,6 +75,35 @@ | |||
} | |||
} | |||
|
|||
.jenkins-button--outline { | |||
color: var(--btn-secondary-color) !important; |
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.
--btn-*
vars are deprecated (YUI only), would just use var(--text-color)
if it needs to be set.
.jenkins-button--outline { | ||
color: var(--btn-secondary-color) !important; | ||
border: 2px solid var(--btn-secondary-border); | ||
font-weight: bold; |
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.
These props could be inherited from the base jenkins-button
class.
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.
|
||
&:not(:disabled) { | ||
&:hover { | ||
border: 2px solid var(--accent-color) !important; |
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.
This wouldn't work if paired with colour modifiers. We've been using currentColor
in our other button modifiers to inherit the colour from modifiers.
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.
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.
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.
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.
Heya, I'm travelling today but I'll take a look as soon as I can :)
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.
good traveling and MCAAHNY
Signed-off-by: Thorsten Scherler <scherler@gmail.com>
…ns into yui_button_inspired_style
Signed-off-by: Thorsten Scherler <scherler@gmail.com>
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.
@scherler LGTM.
Testing done
.jenkins-button--outline
.jenkins-button--outline
(on hover)Proposed changelog entries
Proposed upgrade guidelines
N/A
Submitter checklist
Desired reviewers
@mention
Before the changes are marked as
ready-for-merge
:Maintainer checklist