mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1105802 - Added beta tag to standalone room layout. r=dmose
This commit is contained in:
parent
668b6fe245
commit
67793bcbba
@ -22,7 +22,18 @@ body,
|
||||
* Note: the is-standalone-room class is dynamically set by the StandaloneRoomView.
|
||||
*/
|
||||
.standalone.is-standalone-room {
|
||||
background-color: #000;
|
||||
background: #000;
|
||||
}
|
||||
|
||||
.standalone .beta-logo {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
background: transparent url(../shared/img/beta-ribbon.svg) no-repeat;
|
||||
background-size: 50px;
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
.standalone-header {
|
||||
|
@ -351,6 +351,7 @@ loop.standaloneRoomViews = (function(mozL10n) {
|
||||
|
||||
return (
|
||||
React.DOM.div({className: "room-conversation-wrapper"},
|
||||
React.DOM.div({className: "beta-logo"}),
|
||||
StandaloneRoomHeader(null),
|
||||
StandaloneRoomInfoArea({roomState: this.state.roomState,
|
||||
failureReason: this.state.failureReason,
|
||||
|
@ -351,6 +351,7 @@ loop.standaloneRoomViews = (function(mozL10n) {
|
||||
|
||||
return (
|
||||
<div className="room-conversation-wrapper">
|
||||
<div className="beta-logo" />
|
||||
<StandaloneRoomHeader />
|
||||
<StandaloneRoomInfoArea roomState={this.state.roomState}
|
||||
failureReason={this.state.failureReason}
|
||||
|
Loading…
Reference in New Issue
Block a user