gitea init
This commit is contained in:
+2279
File diff suppressed because it is too large
Load Diff
+121
@@ -0,0 +1,121 @@
|
||||
svg {
|
||||
-ms-touch-action: none;
|
||||
touch-action: none;
|
||||
}
|
||||
|
||||
image, text, .jvm-zoomin, .jvm-zoomout {
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.jvm-container {
|
||||
-ms-touch-action: none;
|
||||
touch-action: none;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.jvm-tooltip {
|
||||
border-radius: 3px;
|
||||
background-color: #5c5cff;
|
||||
font-family: sans-serif, Verdana;
|
||||
font-size: smaller;
|
||||
box-shadow: 1px 2px 12px rgba(0, 0, 0, 0.2);
|
||||
padding: 3px 5px;
|
||||
white-space: nowrap;
|
||||
position: absolute;
|
||||
display: none;
|
||||
color: #FFF;
|
||||
}
|
||||
.jvm-tooltip.active {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.jvm-zoom-btn {
|
||||
border-radius: 3px;
|
||||
background-color: #292929;
|
||||
padding: 3px;
|
||||
box-sizing: border-box;
|
||||
position: absolute;
|
||||
line-height: 10px;
|
||||
cursor: pointer;
|
||||
color: #FFF;
|
||||
height: 15px;
|
||||
width: 15px;
|
||||
left: 10px;
|
||||
}
|
||||
.jvm-zoom-btn.jvm-zoomout {
|
||||
top: 30px;
|
||||
}
|
||||
.jvm-zoom-btn.jvm-zoomin {
|
||||
top: 10px;
|
||||
}
|
||||
|
||||
.jvm-series-container {
|
||||
right: 15px;
|
||||
position: absolute;
|
||||
}
|
||||
.jvm-series-container.jvm-series-h {
|
||||
bottom: 15px;
|
||||
}
|
||||
.jvm-series-container.jvm-series-v {
|
||||
top: 15px;
|
||||
}
|
||||
.jvm-series-container .jvm-legend {
|
||||
background-color: #FFF;
|
||||
border: 1px solid #e5e7eb;
|
||||
margin-left: 0.75rem;
|
||||
border-radius: 0.25rem;
|
||||
border-color: #e5e7eb;
|
||||
padding: 0.6rem;
|
||||
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
||||
float: left;
|
||||
}
|
||||
.jvm-series-container .jvm-legend .jvm-legend-title {
|
||||
line-height: 1;
|
||||
border-bottom: 1px solid #e5e7eb;
|
||||
padding-bottom: 0.5rem;
|
||||
margin-bottom: 0.575rem;
|
||||
text-align: left;
|
||||
}
|
||||
.jvm-series-container .jvm-legend .jvm-legend-inner {
|
||||
overflow: hidden;
|
||||
}
|
||||
.jvm-series-container .jvm-legend .jvm-legend-inner .jvm-legend-tick {
|
||||
overflow: hidden;
|
||||
min-width: 40px;
|
||||
}
|
||||
.jvm-series-container .jvm-legend .jvm-legend-inner .jvm-legend-tick:not(:first-child) {
|
||||
margin-top: 0.575rem;
|
||||
}
|
||||
.jvm-series-container .jvm-legend .jvm-legend-inner .jvm-legend-tick .jvm-legend-tick-sample {
|
||||
border-radius: 4px;
|
||||
margin-right: 0.65rem;
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
float: left;
|
||||
}
|
||||
.jvm-series-container .jvm-legend .jvm-legend-inner .jvm-legend-tick .jvm-legend-tick-text {
|
||||
font-size: 12px;
|
||||
text-align: center;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.jvm-line[animation=true] {
|
||||
-webkit-animation: jvm-line-animation 10s linear forwards infinite;
|
||||
animation: jvm-line-animation 10s linear forwards infinite;
|
||||
}
|
||||
@-webkit-keyframes jvm-line-animation {
|
||||
from {
|
||||
stroke-dashoffset: 250;
|
||||
}
|
||||
}
|
||||
@keyframes jvm-line-animation {
|
||||
from {
|
||||
stroke-dashoffset: 250;
|
||||
}
|
||||
}
|
||||
+2277
File diff suppressed because it is too large
Load Diff
+2285
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1 @@
|
||||
svg{-ms-touch-action:none;touch-action:none}image,text,.jvm-zoomin,.jvm-zoomout{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.jvm-container{-ms-touch-action:none;touch-action:none;position:relative;overflow:hidden;height:100%;width:100%}.jvm-tooltip{border-radius:3px;background-color:#5c5cff;font-family:sans-serif,Verdana;font-size:smaller;box-shadow:1px 2px 12px rgba(0,0,0,.2);padding:3px 5px;white-space:nowrap;position:absolute;display:none;color:#fff}.jvm-tooltip.active{display:block}.jvm-zoom-btn{border-radius:3px;background-color:#292929;padding:3px;box-sizing:border-box;position:absolute;line-height:10px;cursor:pointer;color:#fff;height:15px;width:15px;left:10px}.jvm-zoom-btn.jvm-zoomout{top:30px}.jvm-zoom-btn.jvm-zoomin{top:10px}.jvm-series-container{right:15px;position:absolute}.jvm-series-container.jvm-series-h{bottom:15px}.jvm-series-container.jvm-series-v{top:15px}.jvm-series-container .jvm-legend{background-color:#fff;border:1px solid #e5e7eb;margin-left:.75rem;border-radius:.25rem;border-color:#e5e7eb;padding:.6rem;box-shadow:0 1px 2px 0 rgba(0,0,0,.05);float:left}.jvm-series-container .jvm-legend .jvm-legend-title{line-height:1;border-bottom:1px solid #e5e7eb;padding-bottom:.5rem;margin-bottom:.575rem;text-align:left}.jvm-series-container .jvm-legend .jvm-legend-inner{overflow:hidden}.jvm-series-container .jvm-legend .jvm-legend-inner .jvm-legend-tick{overflow:hidden;min-width:40px}.jvm-series-container .jvm-legend .jvm-legend-inner .jvm-legend-tick:not(:first-child){margin-top:.575rem}.jvm-series-container .jvm-legend .jvm-legend-inner .jvm-legend-tick .jvm-legend-tick-sample{border-radius:4px;margin-right:.65rem;height:16px;width:16px;float:left}.jvm-series-container .jvm-legend .jvm-legend-inner .jvm-legend-tick .jvm-legend-tick-text{font-size:12px;text-align:center;float:left}.jvm-line[animation=true]{-webkit-animation:jvm-line-animation 10s linear forwards infinite;animation:jvm-line-animation 10s linear forwards infinite}@-webkit-keyframes jvm-line-animation{from{stroke-dashoffset:250}}@keyframes jvm-line-animation{from{stroke-dashoffset:250}}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+1
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user