mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2026-01-21 10:44:14 +00:00
* added a dark theme toggle button on Copyjobs next to refresh button and covered full feature * Fix formatting in Utils.test.ts * updated infor icon , error icon and text on jobs details page * rebased from master * updated the conflicts * updated the conflicts * fixed the test suit * fixed review comments * test fix --------- Co-authored-by: Sakshi Gupta <sakshig@microsoft.com>
24 lines
592 B
CSS
24 lines
592 B
CSS
.pager-container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 12px 16px;
|
|
gap: 16px;
|
|
}
|
|
|
|
.pager-container > div {
|
|
display: flex;
|
|
gap: 8px;
|
|
align-items: center;
|
|
}
|
|
|
|
/* Override dark mode inherit for pagination icons */
|
|
body.isDarkMode .pager-container .ms-Button .ms-Button-icon,
|
|
body.isDarkMode .pager-container .ms-Button i {
|
|
color: var(--colorBrandForeground1);
|
|
}
|
|
|
|
body.isDarkMode .pager-container .ms-Button:disabled .ms-Button-icon,
|
|
body.isDarkMode .pager-container .ms-Button:disabled i {
|
|
color: var(--colorNeutralForegroundDisabled);
|
|
} |