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: 3 additions & 1 deletion rd_ui/app/scripts/ng_smart_table.js
Original file line number Diff line number Diff line change
Expand Up @@ -713,7 +713,9 @@ angular.module("partials/smartTable.html", []).run(["$templateCache", function (
" <tbody>\n" +
" <tr ng-repeat=\"dataRow in displayedCollection\" ng-class=\"{selected:dataRow.isSelected}\"\n" +
" class=\"smart-table-data-row\">\n" +
" <td ng-repeat=\"column in columns\" class=\"smart-table-data-cell {{column.cellClass}}\"></td>\n" +
" <td ng-repeat=\"column in columns\">\n" +
" <div class=\"smart-table-data-cell {{column.cellClass}}\"></div>\n" +
" </td>\n" +
" </tr>\n" +
" </tbody>\n" +
" <tfoot ng-show=\"isPaginationEnabled\">\n" +
Expand Down
13 changes: 13 additions & 0 deletions rd_ui/app/styles/redash.css
Original file line number Diff line number Diff line change
Expand Up @@ -492,6 +492,19 @@ div.table-name:hover {
cursor: pointer;
}

.smart-table-data-cell {
width: 150px;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}

.smart-table-data-cell:active {
text-overflow: normal;
white-space: normal;
word-wrap: break-word;
}

.voffset {
margin-top: 2px;
}
Expand Down
4 changes: 2 additions & 2 deletions rd_ui/app/styles/superflat_redash.css
Original file line number Diff line number Diff line change
Expand Up @@ -7009,7 +7009,7 @@ button.close {
/* --------------------------------------------------------
Container
-----------------------------------------------------------*/
/* --------------------------------------------------------
/* --------------------------------------------------------
Template Variables
-----------------------------------------------------------*/
/* --------------------------------------------------------
Expand Down Expand Up @@ -7059,7 +7059,7 @@ button.close {
Carousel
-----------------------------------------------------------*/
/* --------------------------------------------------------
Modal
Modal
-----------------------------------------------------------*/
/* --------------------------------------------------------
Tooltips
Expand Down
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,6 @@ semver==2.2.1
xlsxwriter==0.8.4
pystache==0.5.4
parsedatetime==2.1
cffi==1.8.3
cryptography==1.4
oauthlib==2.0.0