Release v16.001 (from b46187f9)

Fixes tradingview/charting_library#5047
Fixes tradingview/charting_library#5165
This commit is contained in:
jenkins@nwork.local
2020-09-08 18:46:16 +00:00
parent 261fc36962
commit 4a28c600f7
485 changed files with 1148 additions and 1885 deletions

22
featuresets.css Normal file
View File

@@ -0,0 +1,22 @@
.feature-point {
display: block;
position: absolute;
width: 25px;
height: 25px;
border-radius: 25px;
box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.feature-point__image {
transition: all 0.5s;
opacity: 0.8;
overflow: visible !important;
}
.feature-point__image:hover {
transform: rotate(-90deg);
opacity: 1;
}