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

Side by Side Diff: lib/runtime/messages.css

Issue 1419953002: Fix the error message widget (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Rebase Created 5 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « no previous file | lib/runtime/messages_widget.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /** Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 /** Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
2 for details. All rights reserved. Use of this source code is governed by a 2 for details. All rights reserved. Use of this source code is governed by a
3 BSD-style license that can be found in the LICENSE file. **/ 3 BSD-style license that can be found in the LICENSE file. **/
4 .dev-compiler-messages { 4 .dev-compiler-messages {
5 position: fixed; 5 position: fixed;
6 bottom: 0; 6 bottom: 0;
7 right: 0; 7 right: 0;
8 max-width: 80vw; 8 max-width: 80vw;
9 z-index: 10000; 9 z-index: 10000;
10 font-family: sans-serif !important; 10 font-family: sans-serif !important;
11 } 11 }
12 .dev-compiler-messages .message { 12 .dev-compiler-messages .message {
13 padding: 0.6em; 13 padding: 0.6em;
14 background: black; 14 background: black;
15 color: white; 15 color: white;
16 border: solid 1px #666; 16 border: solid 1px #666;
17 border-bottom: 0px; 17 border-bottom: 0px;
18 text-overflow: ellipsis; 18 text-overflow: ellipsis;
19 overflow-x: hidden; 19 overflow-x: hidden;
20 } 20 }
21 .dev-compiler-messages .fine { 21 .dev-compiler-messages .fine {
22 color: green; 22 color: green;
23 } 23 }
24 .dev-compiler-messages .info { 24 .dev-compiler-messages .info {
25 color: yellow; 25 color: yellow;
26 } 26 }
27 .dev-compiler-messages .warning { 27 .dev-compiler-messages .warning {
28 color: orange; 28 color: orange;
29 } 29 }
30 .dev-compiler-messages .severe { 30 .dev-compiler-messages .error {
31 color: red; 31 color: red;
32 } 32 }
33 .dev-compiler-messages div.text { 33 .dev-compiler-messages div.text {
34 white-space: nowrap; 34 white-space: nowrap;
35 cursor: pointer; 35 cursor: pointer;
36 } 36 }
37 .dev-compiler-messages div.text.expanded { 37 .dev-compiler-messages div.text.expanded {
38 white-space: normal; 38 white-space: normal;
39 } 39 }
40 .dev-compiler-messages div.text a { 40 .dev-compiler-messages div.text a {
(...skipping 28 matching lines...) Expand all
69 .dev-compiler-messages .content > div.active { 69 .dev-compiler-messages .content > div.active {
70 display: block; 70 display: block;
71 } 71 }
72 72
73 .dev-compiler-messages .content span.text { 73 .dev-compiler-messages .content span.text {
74 padding: 0.4em 0.2em 0.2em 2em; 74 padding: 0.4em 0.2em 0.2em 2em;
75 white-space: pre; 75 white-space: pre;
76 display: block; 76 display: block;
77 font-family: monospace !important; 77 font-family: monospace !important;
78 } 78 }
OLDNEW
« no previous file with comments | « no previous file | lib/runtime/messages_widget.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698