-
Notifications
You must be signed in to change notification settings - Fork 14.6k
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
[SIP-5] Refactor table #5707
Merged
Merged
[SIP-5] Refactor table #5707
Changes from 14 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
eb9d304
update indent
kristw 1d1404e
extract formData and data.
kristw 114ac67
take filter
kristw f2ef891
remove dependencies
kristw 90b1ad8
remove removeFilter
kristw 9421da8
add comment
kristw ae7c2ae
Merge branch 'master' into kristw-table
kristw dc0b635
remove columnFormats and verboseMap from props. clarify a few more props
kristw cd1d82d
fix linting issue
kristw cfba6ff
minor syntax
kristw 0298756
syntax fix
kristw f23c597
Move check to adaptor
kristw 5d83af8
Merge branch 'master' into kristw-table
kristw 1d034cf
update unit test
kristw 66c5667
remove code related to .widget
kristw 25cd3b5
rename variables for clarity
kristw 0e7ce7f
move Option fix to browser.js
kristw File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.slice-grid .widget.table .slice_container { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. possibly good news: anything with |
||
overflow: auto !important; | ||
overflow: auto !important; | ||
} | ||
|
||
.slice_container.table table.table { | ||
|
@@ -9,21 +9,22 @@ | |
} | ||
|
||
.widget.table td.filtered { | ||
background-color: #005a63; | ||
color: white; | ||
background-color: #005a63; | ||
color: white; | ||
} | ||
|
||
.widget.table tr>th { | ||
padding: 1px 5px !important; | ||
font-size: small !important; | ||
padding: 1px 5px !important; | ||
font-size: small !important; | ||
} | ||
|
||
.widget.table tr>td { | ||
padding: 1px 5px !important; | ||
font-size: small !important; | ||
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 { | ||
|
@@ -34,6 +35,7 @@ table.table thead th.sorting:after, table.table thead th.sorting_asc:after, tabl | |
width: auto; | ||
max-width: unset; | ||
} | ||
|
||
.widget.table thead tr { | ||
height: 25px; | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure if it'd be useful to put this into the
spec/helpers/browser.js
file, that's where other things like this currently are. but once we move to packages, this type of config should be specific to each package.