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

Unified Diff: pkg/analyzer/doc/support/style.css

Issue 1817913002: Generate the task model graph as an HTML file and put it in the doc directory. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Copy support files into local directory Created 4 years, 8 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
« no previous file with comments | « pkg/analyzer/doc/support/dart.js ('k') | pkg/analyzer/doc/support/web_app.dart.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/doc/support/style.css
diff --git a/pkg/analyzer/doc/support/style.css b/pkg/analyzer/doc/support/style.css
new file mode 100644
index 0000000000000000000000000000000000000000..0964121e850f7d577eaa14379357a7bb709f0d8d
--- /dev/null
+++ b/pkg/analyzer/doc/support/style.css
@@ -0,0 +1,29 @@
+*, *:before, *:after {
+ -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
+}
+button {
+ position: fixed;
+ padding: 10px;
+ top: 5px;
+ left: 5px;
+ opacity: 0.8;
+ display: none;
+}
+g > * {
+ transition-property: stroke, stroke-width, transform, fill, font-size;
+ transition-duration: .2s;
+}
+g.active > text {
+ fill: blue;
+ font-size: 100%;
+}
+g.active > polygon, g.active > ellipse, g.active > path {
+ stroke: blue;
+ stroke-width: 3px !important;
+}
+g.active.edge > polygon {
+ fill: blue;
+}
+html, body { margin:10px; padding:0; }
+svg { height:100%; width:100%; }
+svg.zoom {height: inherit; width: inherit;}
« no previous file with comments | « pkg/analyzer/doc/support/dart.js ('k') | pkg/analyzer/doc/support/web_app.dart.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698