diff options
author | Adam Spiers <git@adamspiers.org> | 2015-01-07 23:47:18 +0000 |
---|---|---|
committer | Adam Spiers <git@adamspiers.org> | 2015-01-08 02:10:24 +0000 |
commit | 2c55a2e586e8bfbc602ae65b6a8d68253d11e09c (patch) | |
tree | c1abbb50f54c1ea4b99ef528acc5c0d13967cbc9 /html/git-deps-tips.css | |
parent | e642a233cea4ea4dae447da5115763d9582464b2 (diff) | |
download | git-deps-2c55a2e586e8bfbc602ae65b6a8d68253d11e09c.tar.gz |
improve commit tip
Diffstat (limited to 'html/git-deps-tips.css')
-rw-r--r-- | html/git-deps-tips.css | 34 |
1 files changed, 30 insertions, 4 deletions
diff --git a/html/git-deps-tips.css b/html/git-deps-tips.css index 4edd887..abd3980 100644 --- a/html/git-deps-tips.css +++ b/html/git-deps-tips.css @@ -1,11 +1,11 @@ .d3-tip { line-height: 1; - font-weight: bold; - padding: 12px; - background: rgba(0, 0, 0, 0.8); - color: #fff; + padding: 5px; + background: rgba(247, 251, 252, 0.9); + font-family: Helvetica, arial, freesans, clean, sans-serif, 'Segoe UI Emoji', 'Segoe UI Symbol'; border-radius: 2px; pointer-events: none; + border: 1px solid #e5e5e5; } /* Creates a small triangle extender for the tooltip */ @@ -53,3 +53,29 @@ top: 50%; left: 100%; } + +.d3-tip p.commit-title { + font-weight: bold; + color: #4e575b; + font-size: 15px; + margin: 0.5em 0; +} + +.d3-tip .commit-describe { + font-weight: bold; + color: #26894d; + font-size: 12px; + margin: 0.5em 0; +} + +.d3-tip .commit-meta { + color: #979a9c; + font-size: 11px; +} + +.d3-tip .commit-body pre { + color: #596063; + margin: 0.5em 0; + /* padding-left: 8px; */ + /* border-left: 1px solid #e5e5e5; */ +} |