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:
parent
9f4290eb15
commit
0fc8dd4628
1 changed files with 18 additions and 18 deletions
|
|
@ -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;
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue