forked from apache/superset
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SIP-5] Refactor table (apache#5707)
* update indent * extract formData and data. * take filter * remove dependencies * remove removeFilter * add comment * remove columnFormats and verboseMap from props. clarify a few more props * fix linting issue * minor syntax * syntax fix * Move check to adaptor * update unit test * remove code related to .widget * rename variables for clarity * move Option fix to browser.js
- Loading branch information
1 parent
5e3f833
commit 8a4b1b7
Showing
5 changed files
with
184 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,13 @@ | ||
.slice-grid .widget.table .slice_container { | ||
overflow: auto !important; | ||
} | ||
|
||
.slice_container.table table.table { | ||
margin: 0px !important; | ||
background: transparent; | ||
background-color: white; | ||
} | ||
|
||
.widget.table td.filtered { | ||
background-color: #005a63; | ||
color: white; | ||
} | ||
|
||
.widget.table tr>th { | ||
padding: 1px 5px !important; | ||
font-size: small !important; | ||
} | ||
|
||
.widget.table tr>td { | ||
padding: 1px 5px !important; | ||
font-size: small !important; | ||
} | ||
table.table thead th.sorting:after, table.table thead th.sorting_asc:after, table.table thead th.sorting_desc:after { | ||
top: 0px; | ||
top: 0px; | ||
} | ||
|
||
.like-pre { | ||
white-space: pre-wrap; | ||
} | ||
|
||
.widget.table { | ||
width: auto; | ||
max-width: unset; | ||
} | ||
.widget.table thead tr { | ||
height: 25px; | ||
} |
Oops, something went wrong.