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

Side by Side Diff: experimental/webtry/res/webtry/sass/webtry.scss

Issue 660573003: Properly parse compiler errors for fiddles and mark them in the editor. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: log --> glog Created 6 years, 2 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
OLDNEW
1 @import "bootstrap-compass"; 1 @import "bootstrap-compass";
2 @import "bootstrap-variables"; 2 @import "bootstrap-variables";
3 @import "bootstrap"; 3 @import "bootstrap";
4 4
5 $sidebar-width: 200px; 5 $sidebar-width: 200px;
6 $content-background: white; 6 $content-background: white;
7 $sidebar-background: #eee; 7 $sidebar-background: #eee;
8 8
9 html, body { 9 html, body {
10 min-height: 100%; 10 min-height: 100%;
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 128
129 #sourceCode { 129 #sourceCode {
130 display: none; 130 display: none;
131 margin-top: 10px; 131 margin-top: 10px;
132 } 132 }
133 133
134 #gitInfo { 134 #gitInfo {
135 font-size: 70%; 135 font-size: 70%;
136 } 136 }
137 137
138 #output, #stdout { 138 #output-wrapper {
139 display: none; 139 display: none;
140 } 140 }
141 141
142 .compile-error {
143 cursor: pointer;
144 }
145
142 /* CodeMirror customization */ 146 /* CodeMirror customization */
143 147
148 .CodeMirror .error {
149 background: #f88;
150 }
151
144 .CodeMirror-lines, 152 .CodeMirror-lines,
145 .CodeMirror-scroll 153 .CodeMirror-scroll
146 { 154 {
147 background-color: #eee; 155 background-color: #eee;
148 } 156 }
149 157
150 .CodeMirror { 158 .CodeMirror {
151 border: solid gray 1px; 159 border: solid gray 1px;
152 height: auto; 160 height: auto;
153 } 161 }
(...skipping 13 matching lines...) Expand all
167 175
168 .navbar-brand { 176 .navbar-brand {
169 padding: 0; 177 padding: 0;
170 178
171 img { 179 img {
172 height: 50px; 180 height: 50px;
173 box-shadow: none; 181 box-shadow: none;
174 background: none; 182 background: none;
175 } 183 }
176 } 184 }
OLDNEW
« no previous file with comments | « experimental/webtry/res/webtry/css/webtry.css ('k') | experimental/webtry/templates/content.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698