aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorStephen Blott2017-09-30 07:22:22 +0100
committerGitHub2017-09-30 07:22:22 +0100
commit0d059c1ac60798598ad6608eca38f6008cc50f53 (patch)
tree0194f5c9869e991777f38fe2345285918f9e0a5c /lib
parent245fd88b58297733765571b4db37ff958f7a32c2 (diff)
parent55fde386c99bae9748212ef66fd57929ffd316a5 (diff)
downloadvimium-0d059c1ac60798598ad6608eca38f6008cc50f53.tar.bz2
Merge pull request #2683 from mrmr1993/inject-css-for-frames
Inject user css into all frames
Diffstat (limited to 'lib')
-rw-r--r--lib/dom_utils.coffee8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/dom_utils.coffee b/lib/dom_utils.coffee
index c2d83b1d..ff5991dc 100644
--- a/lib/dom_utils.coffee
+++ b/lib/dom_utils.coffee
@@ -408,5 +408,13 @@ DomUtils =
windowIsTooSmall: ->
return window.innerWidth < 3 or window.innerHeight < 3
+ # Inject user styles manually. This is only necessary for our chrome-extension:// pages and frames.
+ injectUserCss: ->
+ Settings.onLoaded ->
+ style = document.createElement "style"
+ style.type = "text/css"
+ style.textContent = Settings.get "userDefinedLinkHintCss"
+ document.head.appendChild style
+
root = exports ? window
root.DomUtils = DomUtils