Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Ant Design instead of Semantic UI #169

Merged
merged 18 commits into from
Jan 29, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix bug with text ellipsis in FF
Signed-off-by: Joe Farro <joef@uber.com>
  • Loading branch information
tiffon committed Jan 11, 2018
commit 785a88f8d0f635fa1b9f4f501fbc6050e0c536a9
6 changes: 3 additions & 3 deletions src/components/TracePage/TraceTimelineViewer/SpanBarRow.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ limitations under the License.

.span-name-column {
position: relative;
text-overflow: ellipsis;
white-space: nowrap;
z-index: 1;
}
Expand All @@ -43,7 +42,7 @@ limitations under the License.
background: #f8f8f8;
line-height: 27px;
overflow: hidden;
text-overflow: ellipsis;
display: flex;
}

.span-name-wrapper:hover {
Expand All @@ -66,11 +65,12 @@ limitations under the License.
.span-name {
color: #000;
cursor: pointer;
display: inline-block;
outline: none;
overflow: hidden;
padding-left: 4px;
padding-right: 0.25em;
position: relative;
text-overflow: ellipsis;
}

.span-name::before {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ limitations under the License.

.SpanTreeOffset {
color: #000;
display: inline-block;
position: relative;
}

Expand Down