Skip to content

Commit

Permalink
Merge pull request #74 from GetTerminus/master
Browse files Browse the repository at this point in the history
Adds basic dark mode support
  • Loading branch information
rbreeze authored Mar 14, 2024
2 parents b8454e8 + b8fb50e commit 75b167a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.idea
7 changes: 7 additions & 0 deletions ui/src/dark.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.theme-dark .revision {
background: #999999;
}

.theme-dark .info {
background-color: #555555;
}
1 change: 1 addition & 0 deletions ui/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import {RolloutWidget} from 'argo-rollouts/ui/src/app/components/rollout/rollout
import {ObjectMeta, TypeMeta} from 'argo-rollouts/ui/src/models/kubernetes';
import {RolloutAnalysisRunInfo, RolloutReplicaSetInfo, RolloutRolloutInfo} from 'argo-rollouts/ui/src/models/rollout/generated';
import { default as axios } from 'axios';
import './dark.css'

export type State = TypeMeta & {metadata: ObjectMeta} & {
status: any;
Expand Down

0 comments on commit 75b167a

Please sign in to comment.