1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-06 05:59:15 +00:00

display filter tree rules as a list

This commit is contained in:
Andrew Dolgov
2018-12-19 12:08:06 +03:00
parent e3c4540c12
commit 51b069a1ee
10 changed files with 33 additions and 55 deletions

View File

@@ -1486,9 +1486,6 @@ body.ttrss_prefs .user-css-editor {
height: 300px;
width: 575px;
}
body.ttrss_prefs #filterTree .filterRules * {
white-space: normal;
}
body.ttrss_prefs table.prefPluginsList td label,
body.ttrss_prefs table.prefUserList td {
cursor: pointer;
@@ -1758,10 +1755,6 @@ body#sharepopup input {
.flat li {
padding: 2px;
}
.flat .filterRules span {
display: block;
color: green;
}
.flat #filterDlg_Matches span.filterRule {
color: green;
}
@@ -1806,7 +1799,7 @@ body#sharepopup input {
.flat .dijitTree .dijitFolderOpened {
display: none;
}
.flat .dijitTree .dijitTreeRowSelected .filterRules span {
.flat .dijitTree .dijitTreeRowSelected .filterRules li {
color: white;
}
.flat .dijitTree .dijitTreeRowSelected .dijitTreeExpando {
@@ -1833,11 +1826,13 @@ body#sharepopup input {
float: right;
}
.flat .dijitTree .filterRules {
display: block;
color: #ccc;
font-size: 12px;
margin-left: 100px;
line-height: normal;
white-space: normal;
margin-left: 28px;
}
.flat .dijitTree .filterRules li {
color: green;
}
.flat .dijitTree .dijitTreeContainer {
max-width: 100%;

File diff suppressed because one or more lines are too long

View File

@@ -1486,9 +1486,6 @@ body.ttrss_prefs .user-css-editor {
height: 300px;
width: 575px;
}
body.ttrss_prefs #filterTree .filterRules * {
white-space: normal;
}
body.ttrss_prefs table.prefPluginsList td label,
body.ttrss_prefs table.prefUserList td {
cursor: pointer;
@@ -1758,10 +1755,6 @@ body#sharepopup input {
.flat li {
padding: 2px;
}
.flat .filterRules span {
display: block;
color: green;
}
.flat #filterDlg_Matches span.filterRule {
color: green;
}
@@ -1806,7 +1799,7 @@ body#sharepopup input {
.flat .dijitTree .dijitFolderOpened {
display: none;
}
.flat .dijitTree .dijitTreeRowSelected .filterRules span {
.flat .dijitTree .dijitTreeRowSelected .filterRules li {
color: white;
}
.flat .dijitTree .dijitTreeRowSelected .dijitTreeExpando {
@@ -1833,11 +1826,13 @@ body#sharepopup input {
float: right;
}
.flat .dijitTree .filterRules {
display: block;
color: #ccc;
font-size: 12px;
margin-left: 100px;
line-height: normal;
white-space: normal;
margin-left: 28px;
}
.flat .dijitTree .filterRules li {
color: green;
}
.flat .dijitTree .dijitTreeContainer {
max-width: 100%;

File diff suppressed because one or more lines are too long