Styling for Nad

This commit is contained in:
Half-Shot 2020-01-28 14:42:58 +00:00
parent 71233a5aff
commit 85bcad0ea0
3 changed files with 63 additions and 45 deletions

View file

@ -33,64 +33,80 @@ limitations under the License.
border-style: solid; border-style: solid;
border-radius: 5px; border-radius: 5px;
.protocol-icon {
float: left;
margin-right: 5px;
img {
border-radius: 5px;
border-width: 1px 1px;
border-color: $primary-hairline-color;
}
span {
/* Correct letter placement */
left: auto;
}
}
h3 {
margin-top: 0;
margin-bottom: 4px;
font-size: 16pt;
color: $primary-fg-color;
}
.column-icon { .column-icon {
float: left; float: left;
padding-right: 10px; padding-right: 10px;
* {
border-radius: 5px;
border: 1px solid $input-darker-bg-color;
}
.noProtocolIcon { .noProtocolIcon {
width: 48px; width: 48px;
height: 48px; height: 48px;
background: $settings-profile-placeholder-bg-color; background: $input-darker-bg-color;
border-radius: 5px; border-radius: 5px;
} }
.protocol-icon {
float: left;
margin-right: 5px;
img {
border-radius: 5px;
border-width: 1px 1px;
border-color: $primary-hairline-color;
}
span {
/* Correct letter placement */
left: auto;
}
}
} }
.column-data { .column-data {
display: inline-block; display: inline-block;
width: 85%; width: 85%;
}
.workspace-channel-details { > h3 {
margin-top: 0; margin-top: 0px;
color: $primary-fg-color; margin-bottom: 0px;
font-size: 16pt;
color: $primary-fg-color;
}
.channel { > * {
margin-left: 15px; margin-top: 4px;
margin-bottom: 0;
}
.workspace-channel-details {
color: $primary-fg-color;
font-weight: 600;
.channel {
margin-left: 5px;
}
}
.showMore {
display: block;
text-align: left;
margin-top: 10px;
}
.metadata {
color: $muted-fg-color;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
margin-bottom: 0;
}
.metadata.visible {
overflow-y: visible;
text-overflow: ellipsis;
white-space: normal;
} }
} }
.metadata {
color: $muted-fg-color;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
margin-bottom: 0;
}
.metadata.visible {
overflow-y: visible;
text-overflow: ellipsis;
white-space: normal;
}
} }

View file

@ -105,7 +105,7 @@ export default class BridgeTile extends React.PureComponent {
<p className={metadataClassname}> <p className={metadataClassname}>
{creator} {bot} {creator} {bot}
</p> </p>
<AccessibleButton kind="secondary" onClick={this._toggleVisible.bind(this)}> <AccessibleButton className="showMore" kind="secondary" onClick={this._toggleVisible.bind(this)}>
{ this.state.visible ? _t("Show less") : _t("Show more") } { this.state.visible ? _t("Show less") : _t("Show more") }
</AccessibleButton> </AccessibleButton>
</div> </div>

View file

@ -25,6 +25,8 @@ const BRIDGE_EVENT_TYPES = [
// m.bridge // m.bridge
]; ];
const BRIDGES_LINK = "https://matrix.org/bridges/";
export default class BridgeSettingsTab extends React.Component { export default class BridgeSettingsTab extends React.Component {
static propTypes = { static propTypes = {
roomId: PropTypes.string.isRequired, roomId: PropTypes.string.isRequired,
@ -66,7 +68,7 @@ export default class BridgeSettingsTab extends React.Component {
{ {
// TODO: We don't have this link yet: this will prevent the translators // TODO: We don't have this link yet: this will prevent the translators
// having to re-translate the string when we do. // having to re-translate the string when we do.
a: sub => sub, a: sub => <a href={BRIDGES_LINK} target="_blank" rel="noopener">{sub}</a>,
}, },
)}</p> )}</p>
<ul className="mx_RoomSettingsDialog_BridgeList"> <ul className="mx_RoomSettingsDialog_BridgeList">
@ -80,7 +82,7 @@ export default class BridgeSettingsTab extends React.Component {
{ {
// TODO: We don't have this link yet: this will prevent the translators // TODO: We don't have this link yet: this will prevent the translators
// having to re-translate the string when we do. // having to re-translate the string when we do.
a: sub => sub, a: sub => <a href={BRIDGES_LINK} target="_blank" rel="noopener">{sub}</a>,
}, },
)}</p>; )}</p>;
} }