diff options
| author | Alon Levy <alon@pobox.com> | 2015-04-05 18:14:57 +0300 |
|---|---|---|
| committer | Alon Levy <alon@pobox.com> | 2015-04-05 21:27:16 +0300 |
| commit | 0408b28c2712157a6d4853042883be9f9e3e299f (patch) | |
| tree | f04e4c4dfcb18aef95f91a1c3dbaea339c30eee3 /res | |
| parent | 8c9b90edd74ba7f6c506865695f6aef369481d2b (diff) | |
client: rename edge_info to link_info
for f in `git grep -l edge_info`; do sed -ie 's/edge_info/link_info/g' $f; done
for f in `git grep -l EDGE_INFO`; do sed -ie 's/EDGE_INFO/LINK_INFO/g' $f; done
git mv src/client/view/edge_info.js src/client/view/link_info.js
Diffstat (limited to 'res')
| -rw-r--r-- | res/client/css/partials/info-card.scss | 2 | ||||
| -rw-r--r-- | res/client/css/style.css | 2 | ||||
| -rw-r--r-- | res/templates/index.html | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/res/client/css/partials/info-card.scss b/res/client/css/partials/info-card.scss index eeafb46c..29a481b7 100644 --- a/res/client/css/partials/info-card.scss +++ b/res/client/css/partials/info-card.scss @@ -15,7 +15,7 @@ float:right; } -.edge_info, .info { +.link_info, .info { color: $dark-grey; background-color: white; @include rz-box-shadow(0px, 1px, 6px, 0px, rgba(0,0,0,0.3) ); diff --git a/res/client/css/style.css b/res/client/css/style.css index 2edf88b1..78bcb5bc 100644 --- a/res/client/css/style.css +++ b/res/client/css/style.css @@ -484,7 +484,7 @@ body.debug .debug-ui-right { font-size: 12px; float: right; } -.edge_info, .info { +.link_info, .info { color: #363636; background-color: white; -webkit-box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.3); diff --git a/res/templates/index.html b/res/templates/index.html index 089b4dcd..e667b2f9 100644 --- a/res/templates/index.html +++ b/res/templates/index.html @@ -96,7 +96,7 @@ var rz_config = { // set as a global variable </div> </div> <div class="info-container"> - <div class="edge_info" style="display:none">Title: <span id="edgetitle"></span><br/> + <div class="link_info" style="display:none">Title: <span id="edgetitle"></span><br/> <button id="deleteedge">Delete</button> </div> <div class="info" style="display:none"> |
