css max-width for tooltips
This commit is contained in:
parent
cf030b62c7
commit
9d56bff8bc
|
@ -2,6 +2,7 @@
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: 3000;
|
z-index: 3000;
|
||||||
border: 1px solid #aaa;
|
border: 1px solid #aaa;
|
||||||
|
max-width: 350px;
|
||||||
background-color: #393939;
|
background-color: #393939;
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
|
7
radia.js
7
radia.js
|
@ -28,6 +28,13 @@ $(function() {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$('#heartspng').hover(function() {
|
||||||
|
$('#rajakani').css({"stroke": "#FF00FF"});
|
||||||
|
}, function() {
|
||||||
|
$('#rajakani').css({'stroke': '#000000'});
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
$('text').each(function() {
|
$('text').each(function() {
|
||||||
$(this).css({'cursor': 'pointer'});
|
$(this).css({'cursor': 'pointer'});
|
||||||
var $tspan = $(this).children('tspan').eq(0);
|
var $tspan = $(this).children('tspan').eq(0);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user