mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1049565 - Update style for feedback form back button. r=nperriault
This commit is contained in:
parent
1c90c7fae7
commit
8b325a5094
@ -393,15 +393,14 @@
|
||||
background-image: url("../img/sad.png");
|
||||
}
|
||||
|
||||
.feedback button.back {
|
||||
.fx-embedded-btn-back {
|
||||
margin-bottom: 1rem;
|
||||
padding: .2rem .8rem;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 2px;
|
||||
border: 1px solid #CCC;
|
||||
color: #CCC;
|
||||
font-size: 11px;
|
||||
background: transparent;
|
||||
color: #777;
|
||||
cursor: pointer;
|
||||
padding: 3px 10px;
|
||||
display: inline;
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
|
||||
.feedback label {
|
||||
|
@ -407,7 +407,8 @@ loop.shared.views = (function(_, OT, l10n) {
|
||||
var backButton = React.DOM.div(null);
|
||||
if (this.props.reset) {
|
||||
backButton = (
|
||||
React.DOM.button({className: "back", type: "button", onClick: this.props.reset},
|
||||
React.DOM.button({className: "fx-embedded-btn-back", type: "button",
|
||||
onClick: this.props.reset},
|
||||
"« ", l10n.get("feedback_back_button")
|
||||
)
|
||||
);
|
||||
|
@ -407,7 +407,8 @@ loop.shared.views = (function(_, OT, l10n) {
|
||||
var backButton = <div />;
|
||||
if (this.props.reset) {
|
||||
backButton = (
|
||||
<button className="back" type="button" onClick={this.props.reset}>
|
||||
<button className="fx-embedded-btn-back" type="button"
|
||||
onClick={this.props.reset}>
|
||||
« {l10n.get("feedback_back_button")}
|
||||
</button>
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user