1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
|
/* TOOLTIPS */
.scatterD3-tooltip {
position: absolute;
color: #222;
background: #fff;
padding: .5em;
text-shadow: #f5f5f5 0 1px 0;
border-radius: 2px;
box-shadow: 0px 0px 7px 1px #a6a6a6;
opacity: 0.95;
font-family: Open Sans, Droid Sans, Helvetica, Verdana, sans-serif;
font-size: 10px;
z-index: 10;
}
/* GEAR MENU */
.scatterD3-menu {
position: absolute;
opacity: 0;
width: 0;
overflow: hidden;
top: 37px;
right: 15px;
z-index: 10;
background: #F5F7F9;
box-shadow: 0px 0px 2px 1px #d6d6d6;
font-family: Open Sans, Droid Sans, Helvetica, Verdana, sans-serif;
font-size: 11px;
text-align: right;
list-style: none;
padding: 0.2em;
margin: 0;
}
.scatterD3-menu li {
white-space: nowrap;
padding: 0.6em 0.8em;
margin: 0;
}
.scatterD3-menu li a {
cursor: pointer;
color: #727476;
/* font-weight: 600; */
text-decoration: none;
text-transform: uppercase;
}
.scatterD3-menu li a:hover {
color: #25282A;
}
/* GEAR ICON */
.scatterD3 .gear-menu {
cursor: pointer;
height: 25px;
width: 25px;
}
.scatterD3 .gear-menu path {
opacity: 0.2;
transition: opacity .3s;
}
.scatterD3 .gear-menu:hover path,
.scatterD3 .gear-menu.selected path {
opacity: 0.8;
transition: opacity .3s;
}
/* CAPTION */
.scatterD3-caption {
background: #F5F7F9;
color: #727476;
box-shadow: 0px 0px 2px 1px #d6d6d6;
font-family: Open Sans, Droid Sans, Helvetica, Verdana, sans-serif;
font-size: 1px;
text-align: left;
padding: 10px 0;
margin: 0;
position: absolute;
z-index: 10;
width: 100%;
transition: all .3s;
opacity: 0;
}
.scatterD3-caption.visible {
opacity: 0.97;
cursor: pointer;
}
.scatterD3-caption h1,
.scatterD3-caption h2,
.scatterD3-caption p
{
margin: 5px 15px;
line-height: 1.35;
padding: 0;
border: none;
}
.scatterD3-caption h1 {
font-size: 14px;
font-weight: bold;
}
.scatterD3-caption h2 {
font-size: 13px;
font-weight: normal;
}
.scatterD3-caption .caption {
font-size: 11px;
font-weight: normal;
}
/* CAPTION ICON */
.scatterD3 .caption-icon {
cursor: pointer;
height: 25px;
width: 25px;
}
.scatterD3 .caption-icon path {
opacity: 0.2;
transition: opacity .3s;
}
.scatterD3 .caption-icon:hover path,
.scatterD3 .caption-icon.selected path {
opacity: 0.8;
transition: opacity .3s;
}
/* OTHER STYLES */
.hidden {
display: none;
}
.scatterD3 .dot {
cursor: default;
}
.scatterD3 .point-label {
cursor: pointer;
}
.scatterD3, .scatterD3:focus {
outline: 0px solid transparent
}
.scatterD3 .root {
cursor: move;
}
/* Specific styles for shiny apps */
.shiny-bound-output .label {
font-size: 100%;
font-weight: normal;
text-align: left;
}
|