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

Side by Side Diff: resources/inspector/textViewer.css

Issue 853002: Updating the Chromium reference build for Windows. The continuous... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/reference_builds/chrome/
Patch Set: Added the symbol files back. Created 10 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « resources/inspector/tests.js ('k') | resources/inspector/treeoutline.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 .text-editor {
2 position: absolute;
3 top:0;
4 left:0;
5 right:0;
6 bottom:0;
7 white-space: pre;
8 overflow: auto;
9 }
10
11 .text-editor-lines {
12 border: 0;
13 -webkit-border-horizontal-spacing: 0;
14 -webkit-border-vertical-spacing: 0;
15 -webkit-user-select: text;
16 }
17
18 .webkit-html-message-bubble {
19 -webkit-box-shadow: black 0px 2px 5px;
20 -webkit-border-radius: 9px;
21 -webkit-border-fit: lines;
22 font-size: 10px;
23 font-family: Lucida Grande, sans-serif;
24 font-weight: bold;
25 margin: 6px 25px;
26 padding: 0 7px 1px;
27 z-index:20;
28 max-width: 80%;
29
30 }
31
32 .webkit-html-warning-message {
33 background-color: rgb(100%, 62%, 42%);
34 border: 2px solid rgb(100%, 52%, 21%);
35 }
36
37 .webkit-html-error-message {
38 background-color: rgb(100%, 42%, 42%);
39 border: 2px solid rgb(100%, 31%, 31%);
40 }
41
42 .webkit-html-message-line {
43 padding-left: 23px;
44 text-indent: -20px;
45 }
46
47 .webkit-html-message-line-hover {
48 padding-left: 23px;
49 text-indent: -20px;
50 white-space: auto;
51 text-overflow: auto;
52 overflow: auto;
53 }
54
55 .webkit-html-message-icon {
56 position: relative;
57 top: 2px;
58 margin: 0 4px;
59 }
60
61 .webkit-line-number {
62 color: rgb(128, 128, 128);
63 background-color: rgb(240, 240, 240);
64 border-right: 1px solid rgb(187, 187, 187);
65 text-align: right;
66 word-break: normal;
67 -webkit-user-select: none;
68 padding-right: 4px;
69 padding-left: 6px;
70 }
71
72 .webkit-line-number-outer {
73 margin-right: -4px;
74 margin-left: -4px;
75 border-color: transparent;
76 border-style: solid;
77 border-width: 0 0 0px 2px;
78 vertical-align: top;
79 }
80
81 .webkit-line-number-inner {
82 margin-right: 4px;
83 }
84
85 .webkit-breakpoint .webkit-line-number-inner, .webkit-breakpoint-conditional .we bkit-line-number-inner, .webkit-execution-line .webkit-line-number-inner {
86 margin-right: -10px;
87 }
88
89 .webkit-line-content {
90 width: 100%;
91 padding-left: 2px;
92 vertical-align: top;
93 }
94
95 .webkit-breakpoint .webkit-line-number-outer {
96 color: white;
97 border-width: 0 14px 0px 2px;
98 -webkit-border-image: url(Images/breakpointBorder.png) 0 14 0 2;
99 }
100
101 .webkit-breakpoint-conditional .webkit-line-number-outer {
102 color: white;
103 border-width: 0 14px 0px 2px;
104 -webkit-border-image: url(Images/breakpointConditionalBorder.png) 0 14 0 2;
105 }
106
107 .webkit-execution-line .webkit-line-number-outer {
108 color: transparent;
109 border-width: 0 14px 0px 2px;
110 -webkit-border-image: url(Images/programCounterBorder.png) 0 14 0 2;
111 }
112
113 .webkit-breakpoint.webkit-execution-line .webkit-line-number-outer {
114 color: white;
115 -webkit-border-image: url(Images/breakpointCounterBorder.png) 0 14 0 2;
116 }
117
118 .webkit-breakpoint.webkit-execution-line .webkit-line-number-outer {
119 color: transparent;
120 -webkit-border-image: url(Images/breakpointCounterBorder.png) 0 14 0 2;
121 }
122
123 .webkit-breakpoint-conditional.webkit-execution-line .webkit-line-number-outer {
124 color: transparent;
125 -webkit-border-image: url(Images/breakpointConditionalCounterBorder.png) 0 1 4 0 2;
126 }
127
128 .webkit-breakpoint-disabled .webkit-line-number-outer {
129 opacity: 0.5;
130 }
131
132 .breakpoints-deactivated .webkit-breakpoint .webkit-line-number-outer {
133 opacity: 0.5;
134 }
135
136 .breakpoints-deactivated .webkit-breakpoint-disabled .webkit-line-number-outer {
137 opacity: 0.3;
138 }
139
140 .webkit-execution-line .webkit-line-content {
141 background-color: rgb(171, 191, 254);
142 outline: 1px solid rgb(64, 115, 244);
143 }
144
145 .webkit-search-result {
146 -webkit-border-radius: 4px;
147 padding: 2px 2px 2px 3px;
148 margin: -2px -2px -2px -3px;
149 opacity: 0.8;
150 -webkit-box-shadow: rgba(0, 0, 0, .5) 3px 3px 4px;
151 background-color: rgb(241, 234, 0);
152 color: black;
153 }
154
155 .webkit-highlighted-line .webkit-line-content {
156 -webkit-animation: "fadeout" 2s 0s;
157 }
158
159 @-webkit-keyframes fadeout {
160 from {background-color: rgb(255, 255, 120); }
161 to { background-color: white; }
162 }
OLDNEW
« no previous file with comments | « resources/inspector/tests.js ('k') | resources/inspector/treeoutline.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698