Add icons for the Hello theme (settings page)

This commit is contained in:
Frédéric Guillot 2015-01-02 12:07:57 -05:00
parent ab23ca816e
commit 9a980e076d
2 changed files with 60 additions and 11 deletions

View File

@ -307,6 +307,20 @@ section.page {
content: "\f014"; } content: "\f014"; }
.page-header ul li a[href="?action=feeds"]:after { .page-header ul li a[href="?action=feeds"]:after {
content: "\f143"; } content: "\f143"; }
.page-header ul li a[href="?action=config"]:after {
content: "\f013"; }
.page-header ul li a[href="?action=help"]:after {
content: "\f128"; }
.page-header ul li a[href="?action=services"]:after {
content: "\f1e0"; }
.page-header ul li a[href="?action=about"]:after {
content: "\f129"; }
.page-header ul li a[href="?action=database"]:after {
content: "\f1b3"; }
.page-header ul li a[href="?action=api"]:after {
content: "\f0ec"; }
.page-header ul li a[href*="action=refresh-feed"]:after {
content: "\f021"; }
.page-section h2 { .page-section h2 {
margin-bottom: 15px; margin-bottom: 15px;

View File

@ -269,6 +269,41 @@ section {
content: "\f143"; content: "\f143";
} }
} }
a[href="?action=config"] {
&:after {
content: "\f013";
}
}
a[href="?action=help"] {
&:after {
content: "\f128";
}
}
a[href="?action=services"] {
&:after {
content: "\f1e0";
}
}
a[href="?action=about"] {
&:after {
content: "\f129";
}
}
a[href="?action=database"] {
&:after {
content: "\f1b3";
}
}
a[href="?action=api"] {
&:after {
content: "\f0ec";
}
}
a[href*="action=refresh-feed"] {
&:after {
content: "\f021";
}
}
} }
} }
} }