1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-22 04:31:29 +00:00

replace plugin.png with scalable icon

This commit is contained in:
Andrew Dolgov
2018-12-05 16:37:09 +03:00
parent 2dac797704
commit b16c57d29c
7 changed files with 36 additions and 11 deletions

View File

@@ -1484,6 +1484,12 @@ body.ttrss_prefs table.prefUserList td {
body.ttrss_prefs table.prefPluginsList label {
white-space: nowrap;
}
body.ttrss_prefs table.prefPluginsList i.plugin-enabled {
color: #69C671;
}
body.ttrss_prefs table.prefPluginsList i.plugin-disabled {
color: #999;
}
body.ttrss_prefs table.prefPluginsList label img {
vertical-align: middle;
}
@@ -1934,7 +1940,7 @@ body.ttrss_zoom div.post div.content pre {
font-family: 'Material Icons';
font-weight: normal;
font-style: normal;
font-size: 24px;
font-size: 18px;
/* Preferred icon size */
display: inline-block;
line-height: 1;
@@ -1943,6 +1949,7 @@ body.ttrss_zoom div.post div.content pre {
word-wrap: normal;
white-space: nowrap;
direction: ltr;
vertical-align: middle;
/* Support for all WebKit browsers. */
-webkit-font-smoothing: antialiased;
/* Support for Safari and Chrome. */

File diff suppressed because one or more lines are too long

View File

@@ -42,7 +42,7 @@ body.ttrss_prefs,
font-family: 'Material Icons';
font-weight: normal;
font-style: normal;
font-size: 24px; /* Preferred icon size */
font-size: 18px; /* Preferred icon size */
display: inline-block;
line-height: 1;
text-transform: none;
@@ -50,6 +50,7 @@ body.ttrss_prefs,
word-wrap: normal;
white-space: nowrap;
direction: ltr;
vertical-align: middle;
/* Support for all WebKit browsers. */
-webkit-font-smoothing: antialiased;

View File

@@ -122,8 +122,18 @@ body.ttrss_prefs {
cursor : pointer;
}
table.prefPluginsList label {
white-space : nowrap;
table.prefPluginsList{
label {
white-space : nowrap;
}
i.plugin-enabled {
color : #69C671;
}
i.plugin-disabled {
color : #999;
}
}
table.prefPluginsList label img {