1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 17:56:34 +00:00

simplify preference layout, remove some unnecessary css classes

This commit is contained in:
Andrew Dolgov
2019-02-21 12:35:40 +03:00
parent e66d6b7646
commit 4db13b8a17
9 changed files with 118 additions and 101 deletions

View File

@@ -1368,6 +1368,19 @@ body.ttrss_prefs {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
}
body.ttrss_prefs h1,
body.ttrss_prefs h2,
body.ttrss_prefs h3,
body.ttrss_prefs h4 {
font-family: "Segoe WP Semibold", "Segoe UI Semibold", "Segoe UI Web Semibold", "Segoe UI", Ubuntu, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 600;
color: #555;
}
body.ttrss_prefs .dijitContentPane h1:first-of-type,
body.ttrss_prefs .dijitContentPane h2:first-of-type,
body.ttrss_prefs .dijitContentPane h3:first-of-type {
margin-top: 0px;
}
body.ttrss_prefs #footer,
body.ttrss_prefs #header {
padding: 8px;
@@ -1404,14 +1417,6 @@ body.ttrss_prefs .dijitAccordionTitleSelected i.material-icons {
body.ttrss_prefs .dijitDialog #pref-profiles-list .dijitInlineEditBoxDisplayMode {
padding: 0px;
}
body.ttrss_prefs tr.title td {
border: 0px solid #ecf4ff;
border-bottom-width: 1px;
color: #257aa7;
}
body.ttrss_prefs .prefPrefsList td {
padding-bottom: 4px;
}
body.ttrss_prefs div#feedlistLoading,
body.ttrss_prefs div#filterlistLoading,
body.ttrss_prefs div#labellistLoading {
@@ -1431,6 +1436,10 @@ body.ttrss_prefs .user-css-editor {
height: 300px;
width: 575px;
}
body.ttrss_prefs fieldset.prefs-set .help-text {
display: inline-block;
margin-left: 10px;
}
body.ttrss_prefs table.prefPluginsList td label,
body.ttrss_prefs table.prefUserList td {
cursor: pointer;

File diff suppressed because one or more lines are too long

View File

@@ -3,6 +3,20 @@ body.ttrss_prefs {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
h1, h2, h3, h4 {
font-family : @fonts-ui-bold;
font-weight : 600;
color : @default-text;
}
.dijitContentPane {
h1:first-of-type,
h2:first-of-type,
h3:first-of-type {
margin-top: 0px;
}
}
#footer, #header {
padding : 8px;
font-size : 13px;
@@ -47,16 +61,6 @@ body.ttrss_prefs {
padding : 0px;
}
tr.title td {
border: 0px solid #ecf4ff;
border-bottom-width: 1px;
color : @color-link;
}
.prefPrefsList td {
padding-bottom : 4px;
}
div#feedlistLoading, div#filterlistLoading, div#labellistLoading {
text-align : center;
padding : 5px;
@@ -76,6 +80,13 @@ body.ttrss_prefs {
width : 575px;
}
fieldset.prefs-set {
.help-text {
display : inline-block;
margin-left : 10px;
}
}
table.prefPluginsList td label, table.prefUserList td {
cursor : pointer;
}