Code Style Cleanup as per suggestion

Code Style Cleanup as per suggesstion from Frenzie, https://github.com/FreshRSS/Extensions/pull/98#discussion_r550897011
This commit is contained in:
rom-1 2021-01-02 17:39:13 +01:00 committed by GitHub
parent 9f4290eb15
commit 0fc8dd4628
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -52,23 +52,23 @@ Mobile screen resolution:
The Top Menu within the mobile view might look a little bit cluttered, depending on the theme. The following CSS rules allow to hide unneccessary top menu buttons or input boxes. The Top Menu within the mobile view might look a little bit cluttered, depending on the theme. The following CSS rules allow to hide unneccessary top menu buttons or input boxes.
```css ```css
#nav_menu_actions /* Hides "Actions" Menu in Mobile View */ /* Hides "Actions" Menu in Mobile View */
{ #nav_menu_actions {
display: none; display: none;
} }
#nav_menu_views /* Hides "Views" Menu in Mobile View */ /* Hides "Views" Menu in Mobile View */
{ #nav_menu_views {
display: none; display: none;
} }
.nav_menu .item.search /* Hides "Search" Input Box in Mobile View */ /* Hides "Search" Input Box in Mobile View */
{ .nav_menu .item.search {
display: none; display: none;
} }
#mark-read-menu .dropdown /* Hides the Dropdown Menu Button next to the "Mark all read" Button in Mobile View */ /* Hides the Dropdown Menu Button next to the "Mark all read" Button in Mobile View */
{ #mark-read-menu .dropdown {
display: none; display: none;
} }
``` ```