Skip to content
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

Best way to remove unneeded days/hours rotors? #31

Open
tsummerall opened this issue Jun 4, 2020 · 6 comments
Open

Best way to remove unneeded days/hours rotors? #31

tsummerall opened this issue Jun 4, 2020 · 6 comments

Comments

@tsummerall
Copy link

For example I just need minutes and seconds. What's the best approach to hide the unneeded rotors?

@PButcher
Copy link
Owner

PButcher commented Jun 4, 2020

This was being discussed in #24 but I haven't got around to completely integrating it in a sensible way yet.

@felipeacelino
Copy link

  • up

@ARemaity
Copy link

ARemaity commented Dec 7, 2020

we need this feature

@developerashikur1
Copy link

any update of removing days and hours?

@SmileSoftSr
Copy link

You can do it in CSS alone. It's a fix, but it would be better if there were ways of doing it in JS.

This one hides the days and hours.

#flipdown {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: unset !important;
}
#flipdown .rotor-group:first-child,
#flipdown .rotor-group:nth-child(2) {
  display:none !important;
}

@LeadMagnet
Copy link

You can do it in CSS alone. It's a fix, but it would be better if there were ways of doing it in JS.

This one hides the days and hours.

#flipdown {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: unset !important;
}
#flipdown .rotor-group:first-child,
#flipdown .rotor-group:nth-child(2) {
  display:none !important;
}

Thank You @SmileSoftSr this works great! I'm building 3D printer status pages and just need HH:MM:SS

Agree that a hide option in JS would be idea, but this works just fine :D

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

7 participants