1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 15:25:59 +00:00

remove old fatalError(), move everything to App.Error

update exception dialog css
This commit is contained in:
Andrew Dolgov
2018-12-11 13:18:38 +03:00
parent 071ca5aa96
commit 7a98105960
8 changed files with 83 additions and 74 deletions

View File

@@ -577,14 +577,21 @@ body.ttrss_main #feed_browser_spinner {
height: 18px;
width: 18px;
}
body.ttrss_main .error-contents .message {
body.ttrss_main #exceptionDlg .dijitDialogTitleBar {
background: red;
color: white;
}
body.ttrss_main #exceptionDlg .dijitDialogPaneContent {
background: #fcc;
}
body.ttrss_main #exceptionDlg .error-contents .message {
color: red;
}
body.ttrss_main .error-contents textarea {
body.ttrss_main #exceptionDlg .error-contents textarea {
width: 99%;
height: 200px;
}
body.ttrss_main .error-contents .dlgButtons {
body.ttrss_main #exceptionDlg .error-contents .dlgButtons {
text-align: center;
}
body.ttrss_main #content-wrap {

File diff suppressed because one or more lines are too long

View File

@@ -676,17 +676,28 @@ body.ttrss_main {
width : 18px;
}
.error-contents {
.message {
color : red;
#exceptionDlg {
.dijitDialogTitleBar {
background : red;
color : white;
}
textarea {
width : 99%;
height : 200px;
.dijitDialogPaneContent {
background : #fcc;
}
.dlgButtons {
text-align : center;
.error-contents {
.message {
color : red;
}
textarea {
width : 99%;
height : 200px;
}
.dlgButtons {
text-align : center;
}
}
}