summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-02-13 18:32:02 +0300
committerAndrew Dolgov <[email protected]>2021-02-13 18:32:02 +0300
commit17413078a72e1298c6dc8953c40e8d83ce38c49c (patch)
tree3951793b50ded20a5b15cf78b1727e787c014ad2 /themes
parent9684ce5c4b94c21002209f88c26f5ead94406198 (diff)
pref feeds: index cleanup, split into several methods, use tabs to maximize space for feed tree, persist feed tree state
Diffstat (limited to 'themes')
-rw-r--r--themes/compact.css15
-rw-r--r--themes/compact_night.css15
-rw-r--r--themes/light.css15
-rw-r--r--themes/light/prefs.less14
-rw-r--r--themes/night.css15
-rw-r--r--themes/night_blue.css15
6 files changed, 19 insertions, 70 deletions
diff --git a/themes/compact.css b/themes/compact.css
index 080f82961..f923b2ee1 100644
--- a/themes/compact.css
+++ b/themes/compact.css
@@ -1450,21 +1450,12 @@ body.ttrss_prefs .dijitAccordionTitle i.material-icons {
body.ttrss_prefs .dijitAccordionTitleSelected i.material-icons {
color: white;
}
+body.ttrss_prefs #feedsTab {
+ background: #f5f5f5;
+}
body.ttrss_prefs .dijitDialog #pref-profiles-list .dijitInlineEditBoxDisplayMode {
padding: 0px;
}
-body.ttrss_prefs div#feedlistLoading,
-body.ttrss_prefs div#filterlistLoading,
-body.ttrss_prefs div#labellistLoading {
- text-align: center;
- padding: 5px;
- color: #555;
-}
-body.ttrss_prefs div#feedlistLoading img,
-body.ttrss_prefs div#filterlistLoading img,
-body.ttrss_prefs div#labellistLoading {
- margin-right: 5px;
-}
body.ttrss_prefs #errorButton {
color: red;
}
diff --git a/themes/compact_night.css b/themes/compact_night.css
index be6a25a2e..e512e8176 100644
--- a/themes/compact_night.css
+++ b/themes/compact_night.css
@@ -1450,21 +1450,12 @@ body.ttrss_prefs .dijitAccordionTitle i.material-icons {
body.ttrss_prefs .dijitAccordionTitleSelected i.material-icons {
color: white;
}
+body.ttrss_prefs #feedsTab {
+ background: #222;
+}
body.ttrss_prefs .dijitDialog #pref-profiles-list .dijitInlineEditBoxDisplayMode {
padding: 0px;
}
-body.ttrss_prefs div#feedlistLoading,
-body.ttrss_prefs div#filterlistLoading,
-body.ttrss_prefs div#labellistLoading {
- text-align: center;
- padding: 5px;
- color: #ccc;
-}
-body.ttrss_prefs div#feedlistLoading img,
-body.ttrss_prefs div#filterlistLoading img,
-body.ttrss_prefs div#labellistLoading {
- margin-right: 5px;
-}
body.ttrss_prefs #errorButton {
color: red;
}
diff --git a/themes/light.css b/themes/light.css
index e16ff83dd..a19467c41 100644
--- a/themes/light.css
+++ b/themes/light.css
@@ -1450,21 +1450,12 @@ body.ttrss_prefs .dijitAccordionTitle i.material-icons {
body.ttrss_prefs .dijitAccordionTitleSelected i.material-icons {
color: white;
}
+body.ttrss_prefs #feedsTab {
+ background: #f5f5f5;
+}
body.ttrss_prefs .dijitDialog #pref-profiles-list .dijitInlineEditBoxDisplayMode {
padding: 0px;
}
-body.ttrss_prefs div#feedlistLoading,
-body.ttrss_prefs div#filterlistLoading,
-body.ttrss_prefs div#labellistLoading {
- text-align: center;
- padding: 5px;
- color: #555;
-}
-body.ttrss_prefs div#feedlistLoading img,
-body.ttrss_prefs div#filterlistLoading img,
-body.ttrss_prefs div#labellistLoading {
- margin-right: 5px;
-}
body.ttrss_prefs #errorButton {
color: red;
}
diff --git a/themes/light/prefs.less b/themes/light/prefs.less
index 95ddefc34..0206916ae 100644
--- a/themes/light/prefs.less
+++ b/themes/light/prefs.less
@@ -57,18 +57,12 @@ body.ttrss_prefs {
color : white;
}
- .dijitDialog #pref-profiles-list .dijitInlineEditBoxDisplayMode {
- padding : 0px;
- }
-
- div#feedlistLoading, div#filterlistLoading, div#labellistLoading {
- text-align : center;
- padding : 5px;
- color : @default-text;
+ #feedsTab {
+ background : @color-panel-bg;
}
- div#feedlistLoading img, div#filterlistLoading img, div#labellistLoading {
- margin-right : 5px;
+ .dijitDialog #pref-profiles-list .dijitInlineEditBoxDisplayMode {
+ padding : 0px;
}
#errorButton {
diff --git a/themes/night.css b/themes/night.css
index 6090890e2..e2bd50142 100644
--- a/themes/night.css
+++ b/themes/night.css
@@ -1451,21 +1451,12 @@ body.ttrss_prefs .dijitAccordionTitle i.material-icons {
body.ttrss_prefs .dijitAccordionTitleSelected i.material-icons {
color: white;
}
+body.ttrss_prefs #feedsTab {
+ background: #222;
+}
body.ttrss_prefs .dijitDialog #pref-profiles-list .dijitInlineEditBoxDisplayMode {
padding: 0px;
}
-body.ttrss_prefs div#feedlistLoading,
-body.ttrss_prefs div#filterlistLoading,
-body.ttrss_prefs div#labellistLoading {
- text-align: center;
- padding: 5px;
- color: #ccc;
-}
-body.ttrss_prefs div#feedlistLoading img,
-body.ttrss_prefs div#filterlistLoading img,
-body.ttrss_prefs div#labellistLoading {
- margin-right: 5px;
-}
body.ttrss_prefs #errorButton {
color: red;
}
diff --git a/themes/night_blue.css b/themes/night_blue.css
index 4bea2256f..93027e8be 100644
--- a/themes/night_blue.css
+++ b/themes/night_blue.css
@@ -1451,21 +1451,12 @@ body.ttrss_prefs .dijitAccordionTitle i.material-icons {
body.ttrss_prefs .dijitAccordionTitleSelected i.material-icons {
color: white;
}
+body.ttrss_prefs #feedsTab {
+ background: #222;
+}
body.ttrss_prefs .dijitDialog #pref-profiles-list .dijitInlineEditBoxDisplayMode {
padding: 0px;
}
-body.ttrss_prefs div#feedlistLoading,
-body.ttrss_prefs div#filterlistLoading,
-body.ttrss_prefs div#labellistLoading {
- text-align: center;
- padding: 5px;
- color: #ccc;
-}
-body.ttrss_prefs div#feedlistLoading img,
-body.ttrss_prefs div#filterlistLoading img,
-body.ttrss_prefs div#labellistLoading {
- margin-right: 5px;
-}
body.ttrss_prefs #errorButton {
color: red;
}