From 4e73e7a14812703e3795f5aa9142309505dbb73e Mon Sep 17 00:00:00 2001 From: Alex Wolfe Date: Mon, 2 Mar 2015 23:14:05 -0800 Subject: [PATCH] fixed curly braces --- public/docs/dart/latest/quickstart.jade | 7 +++---- public/resources/css/_options.scss | 2 +- public/resources/css/module/_code.scss | 5 +++++ 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/public/docs/dart/latest/quickstart.jade b/public/docs/dart/latest/quickstart.jade index bf8a4977f8..70db2dba5b 100644 --- a/public/docs/dart/latest/quickstart.jade +++ b/public/docs/dart/latest/quickstart.jade @@ -31,7 +31,7 @@ p. pre.prettyprint code. - > pub get + > pub get Resolving dependencies... (7.3s) + angular2 2.0.0-alpha.6 + browser 0.10.0+2 @@ -128,11 +128,10 @@ p. A template has access to all the public properties and methods of its component controller. The template above binds to a name property through - the double-mustache syntax ({{ }}). + the double-mustache syntax ({{ }}). The body of the constructor assigns "Alice" to the name property. When the - template renders, Alice appears instead of {{ name }}. + template renders, Alice appears instead of {{ name }}. - // TODO: fix double mustaches above. // [PENDING: Do we really want to use the term "component controller"? // If so, set it up beforehand. diff --git a/public/resources/css/_options.scss b/public/resources/css/_options.scss index f6e8fdf797..a13f62f49c 100644 --- a/public/resources/css/_options.scss +++ b/public/resources/css/_options.scss @@ -16,7 +16,7 @@ $blueberry: #0262C2; $ocean: #0143A3; //PURPLE -$grape: #5E35B1; +$grape: #9575CD; // RED COLORS $squid: #EF3872; diff --git a/public/resources/css/module/_code.scss b/public/resources/css/module/_code.scss index 17403e17f3..3f5cbfcdb7 100644 --- a/public/resources/css/module/_code.scss +++ b/public/resources/css/module/_code.scss @@ -29,6 +29,11 @@ margin-bottom: $unit * 3; border-radius: 4px; box-shadow: 0px 2px 5px rgba($coal, .3); + padding: ($unit * 2) ($unit * 4); + + &.linenums { + padding: 0px; + } ol { background: $steel;