klaudiosinani / ao

Elegant Microsoft To-Do desktop app
https://klaussinani.github.io/ao
MIT License
2.11k stars 199 forks source link

Optionally hide bloated elements #103

Open mitchazj opened 5 years ago

mitchazj commented 5 years ago

Is your feature request related to a problem? Please describe. I find the extra visuals added by Microsoft to the top of the window to be quite distracting.

Describe the solution you'd like A menu checkbox called "Hide Office365 Menu" that hotswaps something along the lines of the following CSS:

.o365header {
    display: none;
}
#notifications {
    display: none;
}
.tasksToolbar.with-subline {
    padding-top: 4px;
}

Additional context Without the above CSS: Screenshot (Ewww)

With the above CSS injected: Screenshot

mitchazj commented 5 years ago

More than happy to create a pull-request for this too :)