You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-22 04:02:40 +03:00
Fix merge
This commit is contained in:
@@ -57,10 +57,6 @@ limitations under the License.
|
|||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_RightPanel_headerButton_badgeHighlight .mx_RightPanel_headerButton_badge {
|
|
||||||
color: $warning-color;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mx_RightPanel_headerButton_highlight {
|
.mx_RightPanel_headerButton_highlight {
|
||||||
border-color: $button-bg-color;
|
border-color: $button-bg-color;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -186,6 +186,8 @@ $lightbox-border-color: #ffffff;
|
|||||||
// unused?
|
// unused?
|
||||||
$progressbar-color: #000;
|
$progressbar-color: #000;
|
||||||
|
|
||||||
|
$room-warning-bg-color: #fff8e3;
|
||||||
|
|
||||||
/*** form elements ***/
|
/*** form elements ***/
|
||||||
|
|
||||||
// .mx_textinput is a container for a text input
|
// .mx_textinput is a container for a text input
|
||||||
@@ -320,3 +322,11 @@ input[type=search]::-webkit-search-results-decoration {
|
|||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
padding: 0px 1.5em 0px 1.5em;
|
padding: 0px 1.5em 0px 1.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@define-mixin mx_DialogButton_secondary {
|
||||||
|
// flip colours for the secondary ones
|
||||||
|
font-weight: 600;
|
||||||
|
border: 1px solid $accent-color ! important;
|
||||||
|
color: $accent-color;
|
||||||
|
background-color: $accent-fg-color;
|
||||||
|
}
|
||||||
|
|||||||
@@ -622,7 +622,7 @@ module.exports = React.createClass({
|
|||||||
list: this.state.lists['im.vector.fake.invite'],
|
list: this.state.lists['im.vector.fake.invite'],
|
||||||
label: _t('Invites'),
|
label: _t('Invites'),
|
||||||
order: "recent",
|
order: "recent",
|
||||||
incomingCall={incomingCallIfTaggedAs('im.vector.fake.invite')},
|
incomingCall: incomingCallIfTaggedAs('im.vector.fake.invite'),
|
||||||
isInvite: true,
|
isInvite: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -630,7 +630,7 @@ module.exports = React.createClass({
|
|||||||
label: _t('Favourites'),
|
label: _t('Favourites'),
|
||||||
tagName: "m.favourite",
|
tagName: "m.favourite",
|
||||||
order: "manual",
|
order: "manual",
|
||||||
incomingCall={incomingCallIfTaggedAs('m.favourite')},
|
incomingCall: incomingCallIfTaggedAs('m.favourite'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
list: this.state.lists['im.vector.fake.direct'],
|
list: this.state.lists['im.vector.fake.direct'],
|
||||||
@@ -638,7 +638,7 @@ module.exports = React.createClass({
|
|||||||
tagName: "im.vector.fake.direct",
|
tagName: "im.vector.fake.direct",
|
||||||
headerItems: this._getHeaderItems('im.vector.fake.direct'),
|
headerItems: this._getHeaderItems('im.vector.fake.direct'),
|
||||||
order: "recent",
|
order: "recent",
|
||||||
incomingCall={incomingCallIfTaggedAs('im.vector.fake.direct')},
|
incomingCall: incomingCallIfTaggedAs('im.vector.fake.direct'),
|
||||||
onAddRoom: () => {dis.dispatch({action: 'view_create_chat'})},
|
onAddRoom: () => {dis.dispatch({action: 'view_create_chat'})},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -646,7 +646,7 @@ module.exports = React.createClass({
|
|||||||
label: _t('Rooms'),
|
label: _t('Rooms'),
|
||||||
headerItems: this._getHeaderItems('im.vector.fake.recent'),
|
headerItems: this._getHeaderItems('im.vector.fake.recent'),
|
||||||
order: "recent",
|
order: "recent",
|
||||||
incomingCall={incomingCallIfTaggedAs('im.vector.fake.recent')},
|
incomingCall: incomingCallIfTaggedAs('im.vector.fake.recent'),
|
||||||
onAddRoom: () => {dis.dispatch({action: 'view_create_room'})},
|
onAddRoom: () => {dis.dispatch({action: 'view_create_room'})},
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
@@ -660,7 +660,7 @@ module.exports = React.createClass({
|
|||||||
label: labelForTagName(tagName),
|
label: labelForTagName(tagName),
|
||||||
tagName: tagName,
|
tagName: tagName,
|
||||||
order: "manual",
|
order: "manual",
|
||||||
incomingCallIfTaggedAs(tagName),
|
incomingCall: incomingCallIfTaggedAs(tagName),
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
subLists = subLists.concat(tagSubLists);
|
subLists = subLists.concat(tagSubLists);
|
||||||
@@ -670,13 +670,13 @@ module.exports = React.createClass({
|
|||||||
label: _t('Low priority'),
|
label: _t('Low priority'),
|
||||||
tagName: "m.lowpriority",
|
tagName: "m.lowpriority",
|
||||||
order: "recent",
|
order: "recent",
|
||||||
incomingCall={incomingCallIfTaggedAs('m.lowpriority')},
|
incomingCall: incomingCallIfTaggedAs('m.lowpriority'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
list: this.state.lists['im.vector.fake.archived'],
|
list: this.state.lists['im.vector.fake.archived'],
|
||||||
label: _t('Historical'),
|
label: _t('Historical'),
|
||||||
order: "recent",
|
order: "recent",
|
||||||
incomingCall={incomingCallIfTaggedAs('im.vector.fake.archived')},
|
incomingCall: incomingCallIfTaggedAs('im.vector.fake.archived'),
|
||||||
startAsHidden: true,
|
startAsHidden: true,
|
||||||
showSpinner: this.state.isLoadingLeftRooms,
|
showSpinner: this.state.isLoadingLeftRooms,
|
||||||
onHeaderClick: this.onArchivedHeaderClick,
|
onHeaderClick: this.onArchivedHeaderClick,
|
||||||
@@ -686,7 +686,7 @@ module.exports = React.createClass({
|
|||||||
label: _t('System Alerts'),
|
label: _t('System Alerts'),
|
||||||
tagName: "m.lowpriority",
|
tagName: "m.lowpriority",
|
||||||
order: "recent",
|
order: "recent",
|
||||||
incomingCall={incomingCallIfTaggedAs('m.server_notice')},
|
incomingCall: incomingCallIfTaggedAs('m.server_notice'),
|
||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user