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,34 +52,34 @@ 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;
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
### Sidebar: Move the unread count to the right side of a feed
|
### Sidebar: Move the unread count to the right side of a feed
|
||||||
Some people prefer to have the unread count number of a feed on the right side after the feed's name, instead placing it between the favicon and the feeds name, as this is also the common location in other tools (e.g. e-mail inbox folder). Use this CSS code to move the number to the right side.
|
Some people prefer to have the unread count number of a feed on the right side after the feed's name, instead placing it between the favicon and the feeds name, as this is also the common location in other tools (e.g. e-mail inbox folder). Use this CSS code to move the number to the right side.
|
||||||
```css
|
```css
|
||||||
.feed .item-title:not([data-unread="0"])::before {
|
.feed .item-title:not([data-unread="0"])::before {
|
||||||
display:none
|
display: none
|
||||||
}
|
}
|
||||||
.feed .item-title:not([data-unread="0"])::after {
|
.feed .item-title:not([data-unread="0"])::after {
|
||||||
content: " (" attr(data-unread) ")";
|
content: " (" attr(data-unread) ")";
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue