-
Notifications
You must be signed in to change notification settings - Fork 1
228 table component #271
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
228 table component #271
Changes from 1 commit
b0ff656
eac05a8
dba661e
a93d03e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +0,0 @@ | ||
| @import '../../../../../../../styles/colors.scss'; | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -51,3 +51,35 @@ $info: #00BAEE; | |
| .btn:active { | ||
| border: none; | ||
| } | ||
|
|
||
|
|
||
| /** | ||
| General Datatable adjustment styles | ||
| */ | ||
| .dataTables_wrapper { | ||
| .dataTables_scroll { | ||
| .dataTables_scrollBody { | ||
| table { | ||
| thead { | ||
| display: none; | ||
| } | ||
| } | ||
| } | ||
| } | ||
| } | ||
|
|
||
| .dt-buttons { | ||
| .dt-button { | ||
| background-image: linear-gradient($info); | ||
| color: white; | ||
| } | ||
| .dt-button:hover:not(.disabled){ | ||
| background-image: linear-gradient($info); | ||
|
Contributor
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. I think you should replace this by: |
||
| opacity: 0.5; | ||
| } | ||
|
|
||
| .dt-button.disabled{ | ||
| background-image: linear-gradient($info); | ||
|
Contributor
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. I think you should replace this by: |
||
| opacity: 0.5; | ||
| } | ||
| } | ||
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 think you should replace this by:
background-color: $info