diff options
| author | Darren Jeacocke | 2012-07-04 16:47:19 +1000 | 
|---|---|---|
| committer | Darren Jeacocke | 2012-07-04 16:47:19 +1000 | 
| commit | f4349d735075088b204612f1d133f510dc8d5f2c (patch) | |
| tree | 87cdec1435fa5662bc784b08d58624f6f278d215 /background_scripts | |
| parent | b6ba1c4979877adae005dc61945abf6f965376e9 (diff) | |
| download | vimium-f4349d735075088b204612f1d133f510dc8d5f2c.tar.bz2 | |
Use block strings for settings
Diffstat (limited to 'background_scripts')
| -rw-r--r-- | background_scripts/settings.coffee | 37 | 
1 files changed, 22 insertions, 15 deletions
| diff --git a/background_scripts/settings.coffee b/background_scripts/settings.coffee index 3b80dba6..af0f8f16 100644 --- a/background_scripts/settings.coffee +++ b/background_scripts/settings.coffee @@ -8,21 +8,28 @@ Settings =      filterLinkHints: false      hideHud: false      userDefinedLinkHintCss: -      "div > .vimiumHintMarker {" + "\n" + -      "/* linkhint boxes */ " + "\n" + -      "background-color: yellow;" + "\n" + -      "border: 1px solid #E3BE23;" + "\n" + -      "}" + "\n\n" + -      "div > .vimiumHintMarker span {" + "\n" + -      "/* linkhint text */ " + "\n" + -      "color: black;" + "\n" + -      "font-weight: bold;" + "\n" + -      "font-size: 12px;" + "\n" + -      "}" + "\n\n" + -      "div > .vimiumHintMarker > .matchingCharacter {" + "\n" + -      "}" -    excludedUrls: "http*://mail.google.com/*\n" + -                  "http*://www.google.com/reader/*\n" +      """ +      div > .vimiumHintMarker { +      /* linkhint boxes */ +      background-color: yellow; +      border: 1px solid #E3BE23; +      } + +      div > .vimiumHintMarker span { +      /* linkhint text */ +      color: black; +      font-weight: bold; +      font-size: 12px; +      } + +      div > .vimiumHintMarker > .matchingCharacter { +      } +      """ +    excludedUrls: +      """ +      http*://mail.google.com/* +      http*://www.google.com/reader/* +      """      # NOTE : If a page contains both a single angle-bracket link and a double angle-bracket link, then in      # most cases the single bracket link will be "prev/next page" and the double bracket link will be | 
