Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 4 additions & 0 deletions core/src/main/resources/org/apache/spark/ui/static/webui.css
Original file line number Diff line number Diff line change
Expand Up @@ -246,4 +246,8 @@ a.expandbutton {
text-align: center;
margin: 0;
padding: 4px 0;
}

.table-cell-width-limited td {
max-width: 600px;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit, but should this be indented like other blocks?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Other blocks are indented with 2 white spaces as well right?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oops, I misread the diff. It's fine.

}
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,8 @@ private[ui] class JobPagedTable(
override def tableId: String = jobTag + "-table"

override def tableCssClass: String =
"table table-bordered table-condensed table-striped table-head-clickable"
"table table-bordered table-condensed table-striped " +
"table-head-clickable table-cell-width-limited"

override def pageSizeFormField: String = jobTag + ".pageSize"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,8 @@ private[ui] class StagePagedTable(
override def tableId: String = stageTag + "-table"

override def tableCssClass: String =
"table table-bordered table-condensed table-striped table-head-clickable"
"table table-bordered table-condensed table-striped " +
"table-head-clickable table-cell-width-limited"

override def pageSizeFormField: String = stageTag + ".pageSize"

Expand Down