Tweaked console themes so console error pages look alright in iframe

This fixes the issue where, when an iframed app was not running, the summary
bar would be displayed inside the iframe as well as outside it.
This commit is contained in:
str4d
2012-07-27 12:41:45 +00:00
parent 7526db9e6c
commit b6eef94383
4 changed files with 80 additions and 0 deletions

View File

@@ -1116,3 +1116,23 @@ input.search[type="text"] {
margin-bottom: -5px;
margin-right: 5px;
}
/* Fixes for when app is not started and console error loads inside iframe */
body.iframed {
background: transparent url('../dark/images/transparent.gif') !important;
}
.iframed div.routersummaryouter {
display: none !important;
}
.iframed h1 {
margin: 0 1px 0 0 !important;
}
.iframed div.sorry {
margin: -1px 1px 0 0 !important;
}
/* end iframed console fixes */

View File

@@ -1329,3 +1329,23 @@ div.applabel {
iframe.iframed {
margin: 10px 0 0;
}
/* Fixes for when app is not started and console error loads inside iframe */
body.iframed {
background: transparent url('images/transparent.gif') !important;
}
.iframed div.routersummaryouter {
display: none !important;
}
.iframed h1 {
margin: 0 5px 0 5px !important;
}
.iframed div.sorry {
margin: -1px 5px 10px 5px !important;
}
/* end iframed console fixes */

View File

@@ -1425,3 +1425,23 @@ div.footnote hr{
iframe.iframed {
margin: 10px 0 0;
}
/* Fixes for when app is not started and console error loads inside iframe */
body.iframed {
background: transparent url('../dark/images/transparent.gif') !important;
}
.iframed div.routersummaryouter {
display: none !important;
}
.iframed h1 {
margin: 0 10px 10px 7px !important;
}
.iframed div.sorry {
margin: 5px 10px 10px 7px !important;
}
/* end iframed console fixes */

View File

@@ -1300,3 +1300,23 @@ div.footnote hr{
margin-bottom: -10px;
margin-right: 5px;
}
/* Fixes for when app is not started and console error loads inside iframe */
body.iframed {
background: transparent url('../dark/images/transparent.gif') !important;
}
.iframed div.routersummaryouter {
display: none !important;
}
.iframed h1 {
margin: 5px 5px 0 0 !important;
}
.iframed div.sorry {
margin: 0 5px 0 0 !important;
}
/* end iframed console fixes */