Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(616)

Unified Diff: runtime/observatory/lib/src/elements/script_inset.html

Issue 1123143002: Make script-insets obey their bounds, and other padding tweaks. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: runtime/observatory/lib/src/elements/script_inset.html
diff --git a/runtime/observatory/lib/src/elements/script_inset.html b/runtime/observatory/lib/src/elements/script_inset.html
index 313a84f4171ca15e6c07c7edd4ef0e6c6c0e2c1a..65ecfc028af2afa4a7fb9981f61e7390e3556dc7 100644
--- a/runtime/observatory/lib/src/elements/script_inset.html
+++ b/runtime/observatory/lib/src/elements/script_inset.html
@@ -7,50 +7,51 @@
.sourceInset {
}
.sourceTable {
- display: table;
- background-color: #f5f5f5;
- border: 1px solid #ccc;
- padding: 10px;
- overflow-y: auto;
- width: 100%;
- box-sizing: border-box;
+ display: table;
+ background-color: #f5f5f5;
+ border: 1px solid #ccc;
+ padding: 10px;
+ width: 100%;
+ box-sizing: border-box;
}
.sourceRow {
- display: table-row;
+ display: table-row;
}
.sourceItem, .sourceItemCurrent {
- display: table-cell;
- vertical-align: top;
- font: 400 14px consolas, courier, monospace;
- line-height: 125%;
- white-space: pre;
+ display: table-cell;
+ vertical-align: top;
+ font: 400 14px consolas, courier, monospace;
+ line-height: 125%;
+ white-space: pre;
+ max-width: 0;
+ overflow-x: hidden;
}
.currentLine {
- background-color: #fff;
+ background-color: #fff;
}
.currentCol {
- background-color: #6cf;
+ background-color: #6cf;
}
.hitsNone, .hitsNotExecuted, .hitsExecuted {
- display: table-cell;
- vertical-align: top;
- font: 400 14px consolas, courier, monospace;
- min-width: 32px;
- text-align: right;
- color: #a8a8a8;
+ display: table-cell;
+ vertical-align: top;
+ font: 400 14px consolas, courier, monospace;
+ width: 4em;
+ text-align: right;
+ color: #a8a8a8;
}
.hitsNotExecuted {
- background-color: #EEA7A7;
+ background-color: #EEA7A7;
}
.hitsExecuted {
- background-color: #9BDD9B;
+ background-color: #9BDD9B;
}
.emptyBreakpoint, .possibleBreakpoint, .busyBreakpoint, .unresolvedBreakpoint, .resolvedBreakpoint {
display: table-cell;
vertical-align: top;
font: 400 14px consolas, courier, monospace;
- min-width: 1em;
+ width: 1em;
text-align: center;
cursor: pointer;
}
« no previous file with comments | « runtime/observatory/lib/src/elements/function_view.html ('k') | runtime/observatory/lib/src/elements/script_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698