-
Notifications
You must be signed in to change notification settings - Fork 660
CardView - support themes #29620
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
Merged
pomahtri
merged 19 commits into
DevExpress:grids/cardview/main
from
pomahtri:support_themes
Apr 16, 2025
Merged
CardView - support themes #29620
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
a722b62
implement: icon component
pomahtri 9a8ec4e
fix cover
pomahtri 56ed83f
fix overflow
pomahtri 2e7fb08
fix filterpanel
pomahtri ff8f503
fix: nodata element
pomahtri 3a62156
fix cursor prohibition color
pomahtri b3af15c
fix themes
pomahtri 3b1a32c
implement: layout
pomahtri 67da63a
fix: css lint
pomahtri f13ae75
tests
pomahtri 6cb0f7e
fix
pomahtri a43f956
fix
pomahtri d9163b5
fix lint
pomahtri fe1b494
gen: etalons
pomahtri f097bda
fix footer
pomahtri 5326754
fix header
pomahtri 06f37fd
fix borders
pomahtri 169132b
stories
pomahtri 429b6b0
gen: etalons + lint --fix
pomahtri 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| import Button from "devextreme/ui/button" | ||
|
|
||
| export function renderFooter() { | ||
| const container = document.createElement('div'); | ||
| const button1 = document.createElement('div'); | ||
| const button2 = document.createElement('div'); | ||
|
|
||
| container.append(button1, button2); | ||
|
|
||
| new Button(button1, {text: 'button 1'}); | ||
| new Button(button2, {text: 'button 2'}); | ||
|
|
||
| return container; | ||
| } | ||
wdevfx marked this conversation as resolved.
Show resolved
Hide resolved
|
||
File renamed without changes.
Binary file added
BIN
+10.5 KB
...tcafe-devextreme/tests/cardView/etalons/content-no-data (fluent-blue-light).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+9.43 KB
e2e/testcafe-devextreme/tests/cardView/etalons/content-no-data (generic-light).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+10.7 KB
...afe-devextreme/tests/cardView/etalons/content-no-data (material-blue-light).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+1.9 KB
(100%)
...-devextreme/tests/cardView/etalons/cover-default-render (fluent-blue-light).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+1.72 KB
(100%)
...cafe-devextreme/tests/cardView/etalons/cover-default-render (generic-light).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+2.32 KB
(100%)
...evextreme/tests/cardView/etalons/cover-default-render (material-blue-light).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-125 Bytes
(96%)
e2e/testcafe-devextreme/tests/cardView/etalons/header-panel (generic-light).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+650 Bytes
(120%)
...stcafe-devextreme/tests/cardView/etalons/header-panel (material-blue-light).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+120 Bytes
(100%)
...ardView/filterPanel/etalons/cardView_FilterBuilderPopup (fluent-blue-light).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-67 Bytes
(100%)
...ts/cardView/filterPanel/etalons/cardView_FilterBuilderPopup (generic-light).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+571 Bytes
(100%)
...dView/filterPanel/etalons/cardView_FilterBuilderPopup (material-blue-light).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| import { createScreenshotsComparer } from 'devextreme-screenshot-comparer'; | ||
| import CardView from 'devextreme-testcafe-models/cardView'; | ||
| import url from '../../helpers/getPageUrl'; | ||
| import { createWidget } from '../../helpers/createWidget'; | ||
| import { testScreenshot } from '../../helpers/themeUtils'; | ||
|
|
||
| fixture.disablePageReloads`CardView - HeaderPanel` | ||
| .page(url(__dirname, '../container.html')); | ||
|
|
||
| test('default render', async (t) => { | ||
| const cardView = new CardView('#container'); | ||
| const { takeScreenshot, compareResults } = createScreenshotsComparer(t); | ||
|
|
||
| await testScreenshot(t, takeScreenshot, 'content-no-data.png', { element: cardView.element }); | ||
|
|
||
| await t | ||
| .expect(compareResults.isValid()) | ||
| .ok(compareResults.errorMessages()); | ||
| }).before(async () => createWidget('dxCardView', { | ||
| width: 1000, | ||
| height: 600, | ||
| columns: ['Customer', 'Order Date'], | ||
| dataSource: [], | ||
| })); |
Binary file modified
BIN
+1.97 KB
(110%)
...dView/search/etalons/card-view_search_text-highlighting (fluent-blue-light).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+1.05 KB
(110%)
.../cardView/search/etalons/card-view_search_text-highlighting (generic-light).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+3.46 KB
(130%)
...iew/search/etalons/card-view_search_text-highlighting (material-blue-light).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+100 Bytes
(100%)
...w_checkbox_visibility_with_showCheckBoxesMode_=_onClick (fluent-blue-light).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-64 Bytes
(100%)
...-view_checkbox_visibility_with_showCheckBoxesMode_=_onClick (generic-light).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+1.3 KB
(100%)
...checkbox_visibility_with_showCheckBoxesMode_=_onClick (material-blue-light).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+97 Bytes
(100%)
...checkboxes_visibility_with_showCheckBoxesMode_=_onClick (fluent-blue-light).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+17 Bytes
(100%)
...iew_checkboxes_visibility_with_showCheckBoxesMode_=_onClick (generic-light).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+1.58 KB
(110%)
...eckboxes_visibility_with_showCheckBoxesMode_=_onClick (material-blue-light).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+41 Bytes
(100%)
...iew_miltiple_selection_with_showCheckBoxesMode_=_always (fluent-blue-light).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-191 Bytes
(99%)
...rd-view_miltiple_selection_with_showCheckBoxesMode_=_always (generic-light).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+1.05 KB
(100%)
...w_miltiple_selection_with_showCheckBoxesMode_=_always (material-blue-light).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-24 Bytes
(100%)
...-view_miltiple_selection_with_showCheckBoxesMode_=_none (fluent-blue-light).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-297 Bytes
(99%)
...card-view_miltiple_selection_with_showCheckBoxesMode_=_none (generic-light).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+823 Bytes
(100%)
...iew_miltiple_selection_with_showCheckBoxesMode_=_none (material-blue-light).png
Oops, something went wrong.
Binary file modified
BIN
+39 Bytes
(100%)
..._miltiple_selection_with_showCheckBoxesMode_=_onClick_1 (fluent-blue-light).png
Oops, something went wrong.
Binary file modified
BIN
-202 Bytes
(99%)
...view_miltiple_selection_with_showCheckBoxesMode_=_onClick_1 (generic-light).png
Oops, something went wrong.
Binary file modified
BIN
+963 Bytes
(100%)
...iltiple_selection_with_showCheckBoxesMode_=_onClick_1 (material-blue-light).png
Oops, something went wrong.
Binary file modified
BIN
+38 Bytes
(100%)
..._miltiple_selection_with_showCheckBoxesMode_=_onClick_2 (fluent-blue-light).png
Oops, something went wrong.
Binary file modified
BIN
-202 Bytes
(99%)
...view_miltiple_selection_with_showCheckBoxesMode_=_onClick_2 (generic-light).png
Oops, something went wrong.
Binary file modified
BIN
+988 Bytes
(100%)
...iltiple_selection_with_showCheckBoxesMode_=_onClick_2 (material-blue-light).png
Oops, something went wrong.
Binary file modified
BIN
+39 Bytes
(100%)
..._miltiple_selection_with_showCheckBoxesMode_=_onClick_3 (fluent-blue-light).png
Oops, something went wrong.
Binary file modified
BIN
-202 Bytes
(99%)
...view_miltiple_selection_with_showCheckBoxesMode_=_onClick_3 (generic-light).png
Oops, something went wrong.
Binary file modified
BIN
+963 Bytes
(100%)
...iltiple_selection_with_showCheckBoxesMode_=_onClick_3 (material-blue-light).png
Oops, something went wrong.
Binary file modified
BIN
-24 Bytes
(100%)
...iltiple_selection_with_showCheckBoxesMode_=_onLongTap_1 (fluent-blue-light).png
Oops, something went wrong.
Binary file modified
BIN
-297 Bytes
(99%)
...ew_miltiple_selection_with_showCheckBoxesMode_=_onLongTap_1 (generic-light).png
Oops, something went wrong.
Binary file modified
BIN
+823 Bytes
(100%)
...tiple_selection_with_showCheckBoxesMode_=_onLongTap_1 (material-blue-light).png
Oops, something went wrong.
Binary file modified
BIN
+41 Bytes
(100%)
...iltiple_selection_with_showCheckBoxesMode_=_onLongTap_2 (fluent-blue-light).png
Oops, something went wrong.
Binary file modified
BIN
-191 Bytes
(99%)
...ew_miltiple_selection_with_showCheckBoxesMode_=_onLongTap_2 (generic-light).png
Oops, something went wrong.
Binary file modified
BIN
+1.05 KB
(100%)
...tiple_selection_with_showCheckBoxesMode_=_onLongTap_2 (material-blue-light).png
Oops, something went wrong.
Binary file modified
BIN
-24 Bytes
(100%)
...iltiple_selection_with_showCheckBoxesMode_=_onLongTap_3 (fluent-blue-light).png
Oops, something went wrong.
Binary file modified
BIN
-297 Bytes
(99%)
...ew_miltiple_selection_with_showCheckBoxesMode_=_onLongTap_3 (generic-light).png
Oops, something went wrong.
Binary file modified
BIN
+823 Bytes
(100%)
...tiple_selection_with_showCheckBoxesMode_=_onLongTap_3 (material-blue-light).png
Oops, something went wrong.
Binary file modified
BIN
-51 Bytes
(100%)
...etalons/card-view_miltiple_selection_without_select-all (fluent-blue-light).png
Oops, something went wrong.
Binary file modified
BIN
-307 Bytes
(99%)
...ion/etalons/card-view_miltiple_selection_without_select-all (generic-light).png
Oops, something went wrong.
Binary file modified
BIN
+1.11 KB
(100%)
...alons/card-view_miltiple_selection_without_select-all (material-blue-light).png
Oops, something went wrong.
Binary file modified
BIN
-202 Bytes
(99%)
...s/cardView/selection/etalons/card-view_single_selection (fluent-blue-light).png
Oops, something went wrong.
Binary file modified
BIN
-470 Bytes
(98%)
...tests/cardView/selection/etalons/card-view_single_selection (generic-light).png
Oops, something went wrong.
Binary file modified
BIN
+978 Bytes
(100%)
...cardView/selection/etalons/card-view_single_selection (material-blue-light).png
Oops, something went wrong.
Binary file modified
BIN
-1.51 KB
(95%)
...sts/cardView/sorting/etalons/cardview_allow_sorting_api (fluent-blue-light).png
Oops, something went wrong.
Binary file modified
BIN
-1.65 KB
(95%)
...e/tests/cardView/sorting/etalons/cardview_allow_sorting_api (generic-light).png
Oops, something went wrong.
Binary file modified
BIN
+85 Bytes
(100%)
...s/cardView/sorting/etalons/cardview_allow_sorting_api (material-blue-light).png
Oops, something went wrong.
Binary file modified
BIN
-1.44 KB
(95%)
...ting/etalons/cardview_calculate_sort_value_is_filed_api (fluent-blue-light).png
Oops, something went wrong.
Binary file modified
BIN
-1.6 KB
(95%)
.../sorting/etalons/cardview_calculate_sort_value_is_filed_api (generic-light).png
Oops, something went wrong.
Binary file modified
BIN
-348 Bytes
(99%)
...ng/etalons/cardview_calculate_sort_value_is_filed_api (material-blue-light).png
Oops, something went wrong.
Binary file modified
BIN
-1.47 KB
(95%)
...g/etalons/cardview_calculate_sort_value_is_function_api (fluent-blue-light).png
Oops, something went wrong.
Binary file modified
BIN
-1.62 KB
(95%)
...rting/etalons/cardview_calculate_sort_value_is_function_api (generic-light).png
Oops, something went wrong.
Binary file modified
BIN
-273 Bytes
(99%)
...etalons/cardview_calculate_sort_value_is_function_api (material-blue-light).png
Oops, something went wrong.
Binary file modified
BIN
-1.51 KB
(95%)
...ardView/sorting/etalons/cardview_headers_default_render (fluent-blue-light).png
Oops, something went wrong.
Binary file modified
BIN
-1.54 KB
(95%)
...ts/cardView/sorting/etalons/cardview_headers_default_render (generic-light).png
Oops, something went wrong.
Binary file modified
BIN
-369 Bytes
(99%)
...dView/sorting/etalons/cardview_headers_default_render (material-blue-light).png
Oops, something went wrong.
Binary file modified
BIN
-1.53 KB
(95%)
...g/etalons/cardview_headers_with_multiple_sorting_render (fluent-blue-light).png
Oops, something went wrong.
Binary file modified
BIN
-1.51 KB
(95%)
...rting/etalons/cardview_headers_with_multiple_sorting_render (generic-light).png
Oops, something went wrong.
Binary file modified
BIN
-472 Bytes
(99%)
...etalons/cardview_headers_with_multiple_sorting_render (material-blue-light).png
Oops, something went wrong.
Binary file modified
BIN
-1.45 KB
(95%)
...cardView/sorting/etalons/cardview_show_sort_indexes_api (fluent-blue-light).png
Oops, something went wrong.
Binary file modified
BIN
-1.57 KB
(95%)
...sts/cardView/sorting/etalons/cardview_show_sort_indexes_api (generic-light).png
Oops, something went wrong.
Binary file modified
BIN
-426 Bytes
(99%)
...rdView/sorting/etalons/cardview_show_sort_indexes_api (material-blue-light).png
Oops, something went wrong.
Binary file modified
BIN
-1.53 KB
(95%)
.../tests/cardView/sorting/etalons/cardview_sort_index_api (fluent-blue-light).png
Oops, something went wrong.
Binary file modified
BIN
-1.5 KB
(95%)
...reme/tests/cardView/sorting/etalons/cardview_sort_index_api (generic-light).png
Oops, something went wrong.
Binary file modified
BIN
-465 Bytes
(99%)
...ests/cardView/sorting/etalons/cardview_sort_index_api (material-blue-light).png
Oops, something went wrong.
Binary file modified
BIN
-1.52 KB
(95%)
...ts/cardView/sorting/etalons/cardview_sorting_method_api (fluent-blue-light).png
Oops, something went wrong.
Binary file modified
BIN
-1.58 KB
(95%)
.../tests/cardView/sorting/etalons/cardview_sorting_method_api (generic-light).png
Oops, something went wrong.
Binary file modified
BIN
-345 Bytes
(99%)
.../cardView/sorting/etalons/cardview_sorting_method_api (material-blue-light).png
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
packages/devextreme-scss/scss/widgets/base/cardView/_index.scss
This file contains hidden or 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,6 @@ | ||
| @use './content_view'; | ||
| @use './header_panel'; | ||
| @use './filter_panel'; | ||
| @use './variables' as *; | ||
|
|
||
| // adduse | ||
|
|
||
3 changes: 2 additions & 1 deletion
3
packages/devextreme-scss/scss/widgets/base/cardView/content_view/_index.scss
This file contains hidden or 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,7 +1,8 @@ | ||
| @use '../variables' as *; | ||
| @use './content'; | ||
| @use './no_data'; | ||
|
|
||
| .dx-cardview-contentview { | ||
| .dx-gridcore-contentview { | ||
wdevfx marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| overflow: hidden; | ||
| flex-grow: 1; | ||
| } | ||
This file contains hidden or 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 hidden or 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 hidden or 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
1 change: 1 addition & 0 deletions
1
...evextreme-scss/scss/widgets/base/cardView/content_view/content/card/cover/_variables.scss
This file contains hidden or 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,3 +1,4 @@ | ||
| $cardview-card-cover-noimage-background-color: null !default; | ||
| $cardview-card-cover-noimage-icon-color: null !default; | ||
| $cardview-card-cover-noimage-icon-size: null !default; | ||
| $cardview-card-cover-background-color: null !default; |
8 changes: 7 additions & 1 deletion
8
...s/devextreme-scss/scss/widgets/base/cardView/content_view/content/card/header/_index.scss
This file contains hidden or 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
28 changes: 28 additions & 0 deletions
28
packages/devextreme-scss/scss/widgets/base/cardView/content_view/no_data/_index.scss
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| @use './variables' as *; | ||
|
|
||
| .dx-gridcore-nodata-icon-container { | ||
| height: $cardview-nodata-icon-container-size; | ||
| width: $cardview-nodata-icon-container-size; | ||
| display: flex; | ||
| align-items: center; | ||
| justify-content: center; | ||
| background-color: $cardview-nodata-icon-container-background-color; | ||
| border-radius: 999px; | ||
| margin: $cardview-nodata-icon-container-margin; | ||
|
|
||
| .dx-icon { | ||
| font-size: $cardview-nodata-icon-size; | ||
| } | ||
| } | ||
|
|
||
| .dx-gridcore-nodata-element { | ||
| color: $cardview-nodata-text-color; | ||
| text-align: center; | ||
| } | ||
|
|
||
| .dx-gridcore-nodata-container { | ||
| height: 100%; | ||
| display: flex; | ||
| align-items: center; | ||
| justify-content: center; | ||
| } |
7 changes: 7 additions & 0 deletions
7
packages/devextreme-scss/scss/widgets/base/cardView/content_view/no_data/_variables.scss
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| $cardview-nodata-text-color: null !default; | ||
|
|
||
| $cardview-nodata-icon-container-size: null !default; | ||
| $cardview-nodata-icon-container-background-color: null !default; | ||
| $cardview-nodata-icon-container-margin: null !default; | ||
|
|
||
| $cardview-nodata-icon-size: null !default; |
7 changes: 7 additions & 0 deletions
7
packages/devextreme-scss/scss/widgets/base/cardView/filter_panel/_index.scss
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| @use '../variables' as *; | ||
|
|
||
| .dx-cardview { | ||
| .dx-datagrid-filter-panel { | ||
| background-color: $cardview-background-color; | ||
| } | ||
| } |
This file contains hidden or 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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.