Skip to content

Commit

Permalink
fix(tabPanel): Update styles
Browse files Browse the repository at this point in the history
  • Loading branch information
marker-dao committed Sep 13, 2023
1 parent 54f3269 commit acd35e3
Show file tree
Hide file tree
Showing 7 changed files with 76 additions and 100 deletions.
30 changes: 13 additions & 17 deletions JSDemos/Demos/TabPanel/Overview/Angular/app/app.component.css
Original file line number Diff line number Diff line change
Expand Up @@ -136,14 +136,14 @@
bottom: -150%;
}

::ng-deep .dx-color-scheme-lime-light,
::ng-deep .dx-color-scheme-blue-light,
::ng-deep .dx-color-scheme-orange-light,
::ng-deep .dx-color-scheme-purple-light,
::ng-deep .dx-color-scheme-teal-light {
::ng-deep .dx-theme-material .widget-container {
background-color: rgba(191, 191, 191, 0.15);
}

::ng-deep .dx-color-scheme-contrast .task-item {
border: 1px solid #dedede;
}

::ng-deep .dx-color-scheme-teal-light .dx-tabpanel,
::ng-deep .dx-color-scheme-orange-light .dx-tabpanel,
::ng-deep .dx-color-scheme-lime-light .dx-tabpanel,
Expand All @@ -152,6 +152,14 @@
background-color: #fff;
}

::ng-deep .dx-color-scheme-teal-dark .dx-tabpanel,
::ng-deep .dx-color-scheme-purple-dark .dx-tabpanel,
::ng-deep .dx-color-scheme-orange-dark .dx-tabpanel,
::ng-deep .dx-color-scheme-lime-dark .dx-tabpanel,
::ng-deep .dx-color-scheme-blue-dark .dx-tabpanel {
background-color: #363640;
}

::ng-deep .dx-color-scheme-teal-light .option-label,
::ng-deep .dx-color-scheme-purple-light .option-label,
::ng-deep .dx-color-scheme-orange-light .option-label,
Expand All @@ -163,18 +171,6 @@
color: rgba(0, 0, 0, 0.6);
}

::ng-deep .dx-color-scheme-teal-dark .task-item,
::ng-deep .dx-color-scheme-purple-dark .task-item,
::ng-deep .dx-color-scheme-orange-dark .task-item,
::ng-deep .dx-color-scheme-lime-dark .task-item,
::ng-deep .dx-color-scheme-blue-dark .task-item,
::ng-deep .dx-color-scheme-darkviolet .task-item,
::ng-deep .dx-color-scheme-darkmoon .task-item,
::ng-deep .dx-color-scheme-contrast .task-item,
::ng-deep .dx-color-scheme-dark .task-item {
box-shadow: 0 1px 4px 0 rgba(255, 255, 255, 0.1);
}

::ng-deep .dx-color-scheme-teal-dark .task-item-info,
::ng-deep .dx-color-scheme-purple-dark .task-item-info,
::ng-deep .dx-color-scheme-orange-dark .task-item-info,
Expand Down
30 changes: 13 additions & 17 deletions JSDemos/Demos/TabPanel/Overview/React/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -136,14 +136,14 @@
bottom: -150%;
}

.dx-color-scheme-lime-light,
.dx-color-scheme-blue-light,
.dx-color-scheme-orange-light,
.dx-color-scheme-purple-light,
.dx-color-scheme-teal-light {
.dx-theme-material .widget-container {
background-color: rgba(191, 191, 191, 0.15);
}

.dx-color-scheme-contrast .task-item {
border: 1px solid #dedede;
}

.dx-color-scheme-teal-light .dx-tabpanel,
.dx-color-scheme-orange-light .dx-tabpanel,
.dx-color-scheme-lime-light .dx-tabpanel,
Expand All @@ -152,6 +152,14 @@
background-color: #fff;
}

.dx-color-scheme-teal-dark .dx-tabpanel,
.dx-color-scheme-purple-dark .dx-tabpanel,
.dx-color-scheme-orange-dark .dx-tabpanel,
.dx-color-scheme-lime-dark .dx-tabpanel,
.dx-color-scheme-blue-dark .dx-tabpanel {
background-color: #363640;
}

.dx-color-scheme-teal-light .option-label,
.dx-color-scheme-purple-light .option-label,
.dx-color-scheme-orange-light .option-label,
Expand All @@ -163,18 +171,6 @@
color: rgba(0, 0, 0, 0.6);
}

.dx-color-scheme-teal-dark .task-item,
.dx-color-scheme-purple-dark .task-item,
.dx-color-scheme-orange-dark .task-item,
.dx-color-scheme-lime-dark .task-item,
.dx-color-scheme-blue-dark .task-item,
.dx-color-scheme-darkviolet .task-item,
.dx-color-scheme-darkmoon .task-item,
.dx-color-scheme-contrast .task-item,
.dx-color-scheme-dark .task-item {
box-shadow: 0 1px 4px 0 rgba(255, 255, 255, 0.1);
}

.dx-color-scheme-teal-dark .task-item-info,
.dx-color-scheme-purple-dark .task-item-info,
.dx-color-scheme-orange-dark .task-item-info,
Expand Down
14 changes: 9 additions & 5 deletions JSDemos/Demos/TabPanel/Overview/Vue/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -183,11 +183,7 @@ export default {
margin-top: 20px;
}
.dx-color-scheme-lime-light,
.dx-color-scheme-blue-light,
.dx-color-scheme-orange-light,
.dx-color-scheme-purple-light,
.dx-color-scheme-teal-light {
.dx-theme-material .widget-container {
background-color: rgba(191, 191, 191, 0.15);
}
Expand All @@ -199,6 +195,14 @@ export default {
background-color: #fff;
}
.dx-color-scheme-teal-dark .dx-tabpanel,
.dx-color-scheme-purple-dark .dx-tabpanel,
.dx-color-scheme-orange-dark .dx-tabpanel,
.dx-color-scheme-lime-dark .dx-tabpanel,
.dx-color-scheme-blue-dark .dx-tabpanel {
background-color: #363640;
}
.dx-color-scheme-teal-light .option-label,
.dx-color-scheme-purple-light .option-label,
.dx-color-scheme-orange-light .option-label,
Expand Down
12 changes: 2 additions & 10 deletions JSDemos/Demos/TabPanel/Overview/Vue/TaskItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -125,16 +125,8 @@ export default {
bottom: -150%;
}
.dx-color-scheme-teal-dark .task-item,
.dx-color-scheme-purple-dark .task-item,
.dx-color-scheme-orange-dark .task-item,
.dx-color-scheme-lime-dark .task-item,
.dx-color-scheme-blue-dark .task-item,
.dx-color-scheme-darkviolet .task-item,
.dx-color-scheme-darkmoon .task-item,
.dx-color-scheme-contrast .task-item,
.dx-color-scheme-dark .task-item {
box-shadow: 0 1px 4px 0 rgba(255, 255, 255, 0.1);
.dx-color-scheme-contrast .task-item {
border: 1px solid #dedede;
}
.dx-color-scheme-teal-dark .task-item-info,
Expand Down
30 changes: 13 additions & 17 deletions JSDemos/Demos/TabPanel/Overview/jQuery/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -136,14 +136,14 @@
bottom: -150%;
}

.dx-color-scheme-lime-light,
.dx-color-scheme-blue-light,
.dx-color-scheme-orange-light,
.dx-color-scheme-purple-light,
.dx-color-scheme-teal-light {
.dx-theme-material .widget-container {
background-color: rgba(191, 191, 191, 0.15);
}

.dx-color-scheme-contrast .task-item {
border: 1px solid #dedede;
}

.dx-color-scheme-teal-light .dx-tabpanel,
.dx-color-scheme-orange-light .dx-tabpanel,
.dx-color-scheme-lime-light .dx-tabpanel,
Expand All @@ -152,6 +152,14 @@
background-color: #fff;
}

.dx-color-scheme-teal-dark .dx-tabpanel,
.dx-color-scheme-purple-dark .dx-tabpanel,
.dx-color-scheme-orange-dark .dx-tabpanel,
.dx-color-scheme-lime-dark .dx-tabpanel,
.dx-color-scheme-blue-dark .dx-tabpanel {
background-color: #363640;
}

.dx-color-scheme-teal-light .option-label,
.dx-color-scheme-purple-light .option-label,
.dx-color-scheme-orange-light .option-label,
Expand All @@ -163,18 +171,6 @@
color: rgba(0, 0, 0, 0.6);
}

.dx-color-scheme-teal-dark .task-item,
.dx-color-scheme-purple-dark .task-item,
.dx-color-scheme-orange-dark .task-item,
.dx-color-scheme-lime-dark .task-item,
.dx-color-scheme-blue-dark .task-item,
.dx-color-scheme-darkviolet .task-item,
.dx-color-scheme-darkmoon .task-item,
.dx-color-scheme-contrast .task-item,
.dx-color-scheme-dark .task-item {
box-shadow: 0 1px 4px 0 rgba(255, 255, 255, 0.1);
}

.dx-color-scheme-teal-dark .task-item-info,
.dx-color-scheme-purple-dark .task-item-info,
.dx-color-scheme-orange-dark .task-item-info,
Expand Down
30 changes: 13 additions & 17 deletions MVCDemos/Content/DemosStyles/TabPanel/Overview.css
Original file line number Diff line number Diff line change
Expand Up @@ -136,14 +136,14 @@
bottom: -150%;
}

.dx-color-scheme-lime-light,
.dx-color-scheme-blue-light,
.dx-color-scheme-orange-light,
.dx-color-scheme-purple-light,
.dx-color-scheme-teal-light {
.dx-theme-material .widget-container {
background-color: rgba(191, 191, 191, 0.15);
}

.dx-color-scheme-contrast .task-item {
border: 1px solid #dedede;
}

.dx-color-scheme-teal-light .dx-tabpanel,
.dx-color-scheme-orange-light .dx-tabpanel,
.dx-color-scheme-lime-light .dx-tabpanel,
Expand All @@ -152,6 +152,14 @@
background-color: #fff;
}

.dx-color-scheme-teal-dark .dx-tabpanel,
.dx-color-scheme-purple-dark .dx-tabpanel,
.dx-color-scheme-orange-dark .dx-tabpanel,
.dx-color-scheme-lime-dark .dx-tabpanel,
.dx-color-scheme-blue-dark .dx-tabpanel {
background-color: #363640;
}

.dx-color-scheme-teal-light .option-label,
.dx-color-scheme-purple-light .option-label,
.dx-color-scheme-orange-light .option-label,
Expand All @@ -163,18 +171,6 @@
color: rgba(0, 0, 0, 0.6);
}

.dx-color-scheme-teal-dark .task-item,
.dx-color-scheme-purple-dark .task-item,
.dx-color-scheme-orange-dark .task-item,
.dx-color-scheme-lime-dark .task-item,
.dx-color-scheme-blue-dark .task-item,
.dx-color-scheme-darkviolet .task-item,
.dx-color-scheme-darkmoon .task-item,
.dx-color-scheme-contrast .task-item,
.dx-color-scheme-dark .task-item {
box-shadow: 0 1px 4px 0 rgba(255, 255, 255, 0.1);
}

.dx-color-scheme-teal-dark .task-item-info,
.dx-color-scheme-purple-dark .task-item-info,
.dx-color-scheme-orange-dark .task-item-info,
Expand Down
30 changes: 13 additions & 17 deletions NetCoreDemos/wwwroot/css/DemosStyles/TabPanel/Overview.css
Original file line number Diff line number Diff line change
Expand Up @@ -136,14 +136,14 @@
bottom: -150%;
}

.dx-color-scheme-lime-light,
.dx-color-scheme-blue-light,
.dx-color-scheme-orange-light,
.dx-color-scheme-purple-light,
.dx-color-scheme-teal-light {
.dx-theme-material .widget-container {
background-color: rgba(191, 191, 191, 0.15);
}

.dx-color-scheme-contrast .task-item {
border: 1px solid #dedede;
}

.dx-color-scheme-teal-light .dx-tabpanel,
.dx-color-scheme-orange-light .dx-tabpanel,
.dx-color-scheme-lime-light .dx-tabpanel,
Expand All @@ -152,6 +152,14 @@
background-color: #fff;
}

.dx-color-scheme-teal-dark .dx-tabpanel,
.dx-color-scheme-purple-dark .dx-tabpanel,
.dx-color-scheme-orange-dark .dx-tabpanel,
.dx-color-scheme-lime-dark .dx-tabpanel,
.dx-color-scheme-blue-dark .dx-tabpanel {
background-color: #363640;
}

.dx-color-scheme-teal-light .option-label,
.dx-color-scheme-purple-light .option-label,
.dx-color-scheme-orange-light .option-label,
Expand All @@ -163,18 +171,6 @@
color: rgba(0, 0, 0, 0.6);
}

.dx-color-scheme-teal-dark .task-item,
.dx-color-scheme-purple-dark .task-item,
.dx-color-scheme-orange-dark .task-item,
.dx-color-scheme-lime-dark .task-item,
.dx-color-scheme-blue-dark .task-item,
.dx-color-scheme-darkviolet .task-item,
.dx-color-scheme-darkmoon .task-item,
.dx-color-scheme-contrast .task-item,
.dx-color-scheme-dark .task-item {
box-shadow: 0 1px 4px 0 rgba(255, 255, 255, 0.1);
}

.dx-color-scheme-teal-dark .task-item-info,
.dx-color-scheme-purple-dark .task-item-info,
.dx-color-scheme-orange-dark .task-item-info,
Expand Down

0 comments on commit acd35e3

Please sign in to comment.