This project is mirrored from https://gitee.com/mirrors_kinvolk/headlamp.git. Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
  1. 27 Nov, 2020 3 commits
  2. 18 Nov, 2020 1 commit
    • ashu8912's avatar
      backend: Don't stop the server if no config is found · 06f109cb
      ashu8912 authored
      We were using log.Fatal whenever there is no config present and as
      log.Fatal internally gives a call to os.exit and because of which our
      server stops. We don't want this behaviour and whenever there is no
      config present we just want to log that info without stopping the
      server.
      06f109cb
  3. 16 Nov, 2020 12 commits
  4. 12 Nov, 2020 1 commit
  5. 11 Nov, 2020 1 commit
  6. 10 Nov, 2020 12 commits
  7. 09 Nov, 2020 6 commits
  8. 06 Nov, 2020 1 commit
  9. 05 Nov, 2020 3 commits
    • ashu8912's avatar
      frontend: Add colors for resources,charts and tooltips · 9ec5537e
      ashu8912 authored
      For dark theme we want to use a different set of colors than what we use
      for light theme for charts,resources and tooltips.
      
      This patch adds these colors to the theme and uses them.
      9ec5537e
    • ashu8912's avatar
      frontend: Refactor App component · d693f7ca
      ashu8912 authored
      We want to use the theme when setting styles for the AppBar but right
      now we were using useStyles outside the ThemeProvider which was leading
      to use the default theme configs to be used in AppBar and not the one
      we want to set.
      
      This patch refactors the App component and segregates the entire App in
      a seperate AppContainer component which receives the current theme to be
      used via ThemeProvider.
      d693f7ca
    • Joaquim Rocha's avatar
      frontend: Setup app to use dark theme · 784a453f
      Joaquim Rocha authored
      We want to switch between dark and light themes with a click of button.
      
      Thus this patch configures the app to have the button on the top bar for
      theme change and also configure theme settings for light and dark theme.
      784a453f