Channel names in pages appear highlighted #815

Merged
hackrush01 merged 1 commit from channel-name-page into master 2017-12-06 20:09:32 +01:00
3 changed files with 12 additions and 4 deletions

View file

@ -14,6 +14,8 @@ Web UI version numbers should always match the corresponding version of LBRY App
### Changed
* The credit balance displayed in the main app navigation displays two decimal places instead of one.
* Moved all redux code into /redux folder
* Channel names in pages are highlighted to indicate them being clickable(#814)
*
### Fixed
* Long channel names causing inconsistent thumbnail sizes (#721)

View file

@ -1,7 +1,8 @@
import React from "react";
import { Icon } from "component/common";
import Link from "component/link";
import lbryuri from "lbryuri.js";
import lbryuri from "lbryuri";
import classnames from "classnames";
class UriIndicator extends React.PureComponent {
componentWillMount() {
@ -60,7 +61,12 @@ class UriIndicator extends React.PureComponent {
const inner = (
<span>
<span className={`channel-name ${smallCard && "channel-name--small"}`}>
<span
className={classnames("channel-name", {
"channel-name--small": smallCard,
"button-text no-underline": link,
})}
>
{channelName}
</span>{" "}
{!signatureIsValid ? (

View file

@ -1,9 +1,9 @@
.channel-name {
display: inline-block;
display: inline-flex;
overflow: hidden;
neb-b commented 2017-12-06 16:22:28 +01:00 (Migrated from github.com)
Review

👍

👍
white-space: nowrap;
text-overflow: ellipsis
text-overflow: ellipsis;
}
// this shouldn't know about the card width