mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-28 08:02:41 +02:00
Merge commit 'dd04c360082eb7e0c54425907224ecf692307906' into update_visjs_again
This commit is contained in:
Vendored
+333
-276
@@ -20,6 +20,294 @@
|
||||
width: auto;
|
||||
}
|
||||
|
||||
div.vis-configuration {
|
||||
position:relative;
|
||||
display:block;
|
||||
float:left;
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
div.vis-configuration-wrapper {
|
||||
display:block;
|
||||
width:700px;
|
||||
}
|
||||
|
||||
div.vis-configuration-wrapper::after {
|
||||
clear: both;
|
||||
content: "";
|
||||
display: block;
|
||||
}
|
||||
|
||||
div.vis-configuration.vis-config-option-container{
|
||||
display:block;
|
||||
width:495px;
|
||||
background-color: #ffffff;
|
||||
border:2px solid #f7f8fa;
|
||||
border-radius:4px;
|
||||
margin-top:20px;
|
||||
left:10px;
|
||||
padding-left:5px;
|
||||
}
|
||||
|
||||
div.vis-configuration.vis-config-button{
|
||||
display:block;
|
||||
width:495px;
|
||||
height:25px;
|
||||
vertical-align: middle;
|
||||
line-height:25px;
|
||||
background-color: #f7f8fa;
|
||||
border:2px solid #ceced0;
|
||||
border-radius:4px;
|
||||
margin-top:20px;
|
||||
left:10px;
|
||||
padding-left:5px;
|
||||
cursor: pointer;
|
||||
margin-bottom:30px;
|
||||
}
|
||||
|
||||
div.vis-configuration.vis-config-button.hover{
|
||||
background-color: #4588e6;
|
||||
border:2px solid #214373;
|
||||
color:#ffffff;
|
||||
}
|
||||
|
||||
div.vis-configuration.vis-config-item{
|
||||
display:block;
|
||||
float:left;
|
||||
width:495px;
|
||||
height:25px;
|
||||
vertical-align: middle;
|
||||
line-height:25px;
|
||||
}
|
||||
|
||||
|
||||
div.vis-configuration.vis-config-item.vis-config-s2{
|
||||
left:10px;
|
||||
background-color: #f7f8fa;
|
||||
padding-left:5px;
|
||||
border-radius:3px;
|
||||
}
|
||||
div.vis-configuration.vis-config-item.vis-config-s3{
|
||||
left:20px;
|
||||
background-color: #e4e9f0;
|
||||
padding-left:5px;
|
||||
border-radius:3px;
|
||||
}
|
||||
div.vis-configuration.vis-config-item.vis-config-s4{
|
||||
left:30px;
|
||||
background-color: #cfd8e6;
|
||||
padding-left:5px;
|
||||
border-radius:3px;
|
||||
}
|
||||
|
||||
div.vis-configuration.vis-config-header{
|
||||
font-size:18px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
div.vis-configuration.vis-config-label{
|
||||
width:120px;
|
||||
height:25px;
|
||||
line-height: 25px;
|
||||
}
|
||||
|
||||
div.vis-configuration.vis-config-label.vis-config-s3{
|
||||
width:110px;
|
||||
}
|
||||
div.vis-configuration.vis-config-label.vis-config-s4{
|
||||
width:100px;
|
||||
}
|
||||
|
||||
div.vis-configuration.vis-config-colorBlock{
|
||||
top:1px;
|
||||
width:30px;
|
||||
height:19px;
|
||||
border:1px solid #444444;
|
||||
border-radius:2px;
|
||||
padding:0px;
|
||||
margin:0px;
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
input.vis-configuration.vis-config-checkbox {
|
||||
left:-5px;
|
||||
}
|
||||
|
||||
|
||||
input.vis-configuration.vis-config-rangeinput{
|
||||
position:relative;
|
||||
top:-5px;
|
||||
width:60px;
|
||||
/*height:13px;*/
|
||||
padding:1px;
|
||||
margin:0;
|
||||
pointer-events:none;
|
||||
}
|
||||
|
||||
input.vis-configuration.vis-config-range{
|
||||
/*removes default webkit styles*/
|
||||
-webkit-appearance: none;
|
||||
|
||||
/*fix for FF unable to apply focus style bug */
|
||||
border: 0px solid white;
|
||||
background-color:rgba(0,0,0,0);
|
||||
|
||||
/*required for proper track sizing in FF*/
|
||||
width: 300px;
|
||||
height:20px;
|
||||
}
|
||||
input.vis-configuration.vis-config-range::-webkit-slider-runnable-track {
|
||||
width: 300px;
|
||||
height: 5px;
|
||||
background: #dedede; /* Old browsers */
|
||||
background: -moz-linear-gradient(top, #dedede 0%, #c8c8c8 99%); /* FF3.6+ */
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dedede), color-stop(99%,#c8c8c8)); /* Chrome,Safari4+ */
|
||||
background: -webkit-linear-gradient(top, #dedede 0%,#c8c8c8 99%); /* Chrome10+,Safari5.1+ */
|
||||
background: -o-linear-gradient(top, #dedede 0%, #c8c8c8 99%); /* Opera 11.10+ */
|
||||
background: -ms-linear-gradient(top, #dedede 0%,#c8c8c8 99%); /* IE10+ */
|
||||
background: linear-gradient(to bottom, #dedede 0%,#c8c8c8 99%); /* W3C */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dedede', endColorstr='#c8c8c8',GradientType=0 ); /* IE6-9 */
|
||||
|
||||
border: 1px solid #999999;
|
||||
box-shadow: #aaaaaa 0px 0px 3px 0px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
input.vis-configuration.vis-config-range::-webkit-slider-thumb {
|
||||
-webkit-appearance: none;
|
||||
border: 1px solid #14334b;
|
||||
height: 17px;
|
||||
width: 17px;
|
||||
border-radius: 50%;
|
||||
background: #3876c2; /* Old browsers */
|
||||
background: -moz-linear-gradient(top, #3876c2 0%, #385380 100%); /* FF3.6+ */
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3876c2), color-stop(100%,#385380)); /* Chrome,Safari4+ */
|
||||
background: -webkit-linear-gradient(top, #3876c2 0%,#385380 100%); /* Chrome10+,Safari5.1+ */
|
||||
background: -o-linear-gradient(top, #3876c2 0%,#385380 100%); /* Opera 11.10+ */
|
||||
background: -ms-linear-gradient(top, #3876c2 0%,#385380 100%); /* IE10+ */
|
||||
background: linear-gradient(to bottom, #3876c2 0%,#385380 100%); /* W3C */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3876c2', endColorstr='#385380',GradientType=0 ); /* IE6-9 */
|
||||
box-shadow: #111927 0px 0px 1px 0px;
|
||||
margin-top: -7px;
|
||||
}
|
||||
input.vis-configuration.vis-config-range:focus {
|
||||
outline: none;
|
||||
}
|
||||
input.vis-configuration.vis-config-range:focus::-webkit-slider-runnable-track {
|
||||
background: #9d9d9d; /* Old browsers */
|
||||
background: -moz-linear-gradient(top, #9d9d9d 0%, #c8c8c8 99%); /* FF3.6+ */
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9d9d9d), color-stop(99%,#c8c8c8)); /* Chrome,Safari4+ */
|
||||
background: -webkit-linear-gradient(top, #9d9d9d 0%,#c8c8c8 99%); /* Chrome10+,Safari5.1+ */
|
||||
background: -o-linear-gradient(top, #9d9d9d 0%,#c8c8c8 99%); /* Opera 11.10+ */
|
||||
background: -ms-linear-gradient(top, #9d9d9d 0%,#c8c8c8 99%); /* IE10+ */
|
||||
background: linear-gradient(to bottom, #9d9d9d 0%,#c8c8c8 99%); /* W3C */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9d9d9d', endColorstr='#c8c8c8',GradientType=0 ); /* IE6-9 */
|
||||
}
|
||||
|
||||
input.vis-configuration.vis-config-range::-moz-range-track {
|
||||
width: 300px;
|
||||
height: 10px;
|
||||
background: #dedede; /* Old browsers */
|
||||
background: -moz-linear-gradient(top, #dedede 0%, #c8c8c8 99%); /* FF3.6+ */
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dedede), color-stop(99%,#c8c8c8)); /* Chrome,Safari4+ */
|
||||
background: -webkit-linear-gradient(top, #dedede 0%,#c8c8c8 99%); /* Chrome10+,Safari5.1+ */
|
||||
background: -o-linear-gradient(top, #dedede 0%, #c8c8c8 99%); /* Opera 11.10+ */
|
||||
background: -ms-linear-gradient(top, #dedede 0%,#c8c8c8 99%); /* IE10+ */
|
||||
background: linear-gradient(to bottom, #dedede 0%,#c8c8c8 99%); /* W3C */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dedede', endColorstr='#c8c8c8',GradientType=0 ); /* IE6-9 */
|
||||
|
||||
border: 1px solid #999999;
|
||||
box-shadow: #aaaaaa 0px 0px 3px 0px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
input.vis-configuration.vis-config-range::-moz-range-thumb {
|
||||
border: none;
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
|
||||
border-radius: 50%;
|
||||
background: #385380;
|
||||
}
|
||||
|
||||
/*hide the outline behind the border*/
|
||||
input.vis-configuration.vis-config-range:-moz-focusring{
|
||||
outline: 1px solid white;
|
||||
outline-offset: -1px;
|
||||
}
|
||||
|
||||
input.vis-configuration.vis-config-range::-ms-track {
|
||||
width: 300px;
|
||||
height: 5px;
|
||||
|
||||
/*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
|
||||
background: transparent;
|
||||
|
||||
/*leave room for the larger thumb to overflow with a transparent border */
|
||||
border-color: transparent;
|
||||
border-width: 6px 0;
|
||||
|
||||
/*remove default tick marks*/
|
||||
color: transparent;
|
||||
}
|
||||
input.vis-configuration.vis-config-range::-ms-fill-lower {
|
||||
background: #777;
|
||||
border-radius: 10px;
|
||||
}
|
||||
input.vis-configuration.vis-config-range::-ms-fill-upper {
|
||||
background: #ddd;
|
||||
border-radius: 10px;
|
||||
}
|
||||
input.vis-configuration.vis-config-range::-ms-thumb {
|
||||
border: none;
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
border-radius: 50%;
|
||||
background: #385380;
|
||||
}
|
||||
input.vis-configuration.vis-config-range:focus::-ms-fill-lower {
|
||||
background: #888;
|
||||
}
|
||||
input.vis-configuration.vis-config-range:focus::-ms-fill-upper {
|
||||
background: #ccc;
|
||||
}
|
||||
|
||||
.vis-configuration-popup {
|
||||
position: absolute;
|
||||
background: rgba(57, 76, 89, 0.85);
|
||||
border: 2px solid #f2faff;
|
||||
line-height:30px;
|
||||
height:30px;
|
||||
width:150px;
|
||||
text-align:center;
|
||||
color: #ffffff;
|
||||
font-size:14px;
|
||||
border-radius:4px;
|
||||
-webkit-transition: opacity 0.3s ease-in-out;
|
||||
-moz-transition: opacity 0.3s ease-in-out;
|
||||
transition: opacity 0.3s ease-in-out;
|
||||
}
|
||||
.vis-configuration-popup:after, .vis-configuration-popup:before {
|
||||
left: 100%;
|
||||
top: 50%;
|
||||
border: solid transparent;
|
||||
content: " ";
|
||||
height: 0;
|
||||
width: 0;
|
||||
position: absolute;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.vis-configuration-popup:after {
|
||||
border-color: rgba(136, 183, 213, 0);
|
||||
border-left-color: rgba(57, 76, 89, 0.85);
|
||||
border-width: 8px;
|
||||
margin-top: -8px;
|
||||
}
|
||||
.vis-configuration-popup:before {
|
||||
border-color: rgba(194, 225, 245, 0);
|
||||
border-left-color: #f2faff;
|
||||
border-width: 12px;
|
||||
margin-top: -12px;
|
||||
}
|
||||
|
||||
.vis-timeline {
|
||||
position: relative;
|
||||
@@ -115,6 +403,10 @@
|
||||
border-bottom: 1px solid #bfbfbf;
|
||||
}
|
||||
|
||||
.vis-labelset .vis-label.draggable {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.vis-labelset .vis-label:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
@@ -297,6 +589,11 @@
|
||||
cursor: e-resize;
|
||||
}
|
||||
|
||||
.vis-range.vis-item.vis-readonly .vis-drag-left,
|
||||
.vis-range.vis-item.vis-readonly .vis-drag-right {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.vis-time-axis {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
@@ -616,17 +913,18 @@ div.vis-network div.vis-manipulation {
|
||||
background: linear-gradient(to bottom, #ffffff 0%,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%); /* W3C */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fcfcfc',GradientType=0 ); /* IE6-9 */
|
||||
|
||||
padding-top:4px;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 30px;
|
||||
height: 28px;
|
||||
}
|
||||
|
||||
div.vis-network div.vis-edit-mode {
|
||||
position:absolute;
|
||||
left: 0;
|
||||
top: 15px;
|
||||
top: 5px;
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
@@ -657,8 +955,7 @@ div.vis-network div.vis-close:hover {
|
||||
|
||||
div.vis-network div.vis-manipulation div.vis-button,
|
||||
div.vis-network div.vis-edit-mode div.vis-button {
|
||||
position:relative;
|
||||
top:-7px;
|
||||
float:left;
|
||||
font-family: verdana;
|
||||
font-size: 12px;
|
||||
-moz-border-radius: 15px;
|
||||
@@ -667,8 +964,8 @@ div.vis-network div.vis-edit-mode div.vis-button {
|
||||
background-position: 0px 0px;
|
||||
background-repeat:no-repeat;
|
||||
height:24px;
|
||||
margin: 0px 0px 0px 10px;
|
||||
vertical-align:middle;
|
||||
margin-left: 10px;
|
||||
/*vertical-align:middle;*/
|
||||
cursor: pointer;
|
||||
padding: 0px 8px 0px 8px;
|
||||
-webkit-touch-callout: none;
|
||||
@@ -734,11 +1031,12 @@ div.vis-network div.vis-edit-mode div.vis-label {
|
||||
line-height: 25px;
|
||||
}
|
||||
div.vis-network div.vis-manipulation div.vis-separator-line {
|
||||
float:left;
|
||||
display:inline-block;
|
||||
width:1px;
|
||||
height:20px;
|
||||
height:21px;
|
||||
background-color: #bdbdbd;
|
||||
margin: 5px 7px 0 15px;
|
||||
margin: 0px 7px 0 15px; /*top right bottom left*/
|
||||
}
|
||||
|
||||
/* TODO: is this redundant?
|
||||
@@ -750,6 +1048,25 @@ div.network-navigation_wrapper {
|
||||
height: 100%;
|
||||
}
|
||||
*/
|
||||
div.vis-network-tooltip {
|
||||
position: absolute;
|
||||
visibility: hidden;
|
||||
padding: 5px;
|
||||
white-space: nowrap;
|
||||
|
||||
font-family: verdana;
|
||||
font-size:14px;
|
||||
font-color:#000000;
|
||||
background-color: #f5f4ed;
|
||||
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
border: 1px solid #808074;
|
||||
|
||||
box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
|
||||
pointer-events: none;
|
||||
}
|
||||
div.vis-network div.vis-navigation div.vis-button {
|
||||
width:34px;
|
||||
height:34px;
|
||||
@@ -811,280 +1128,20 @@ div.vis-network div.vis-navigation div.vis-button.vis-zoomExtends {
|
||||
bottom:50px;
|
||||
right:15px;
|
||||
}
|
||||
div.vis-network-tooltip {
|
||||
position: absolute;
|
||||
visibility: hidden;
|
||||
padding: 5px;
|
||||
white-space: nowrap;
|
||||
|
||||
font-family: verdana;
|
||||
font-size:14px;
|
||||
font-color:#000000;
|
||||
background-color: #f5f4ed;
|
||||
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
border: 1px solid #808074;
|
||||
|
||||
box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
|
||||
pointer-events: none;
|
||||
}
|
||||
div.vis-network-configuration {
|
||||
position:relative;
|
||||
display:block;
|
||||
float:left;
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
div.vis-network-configuration-wrapper {
|
||||
display:block;
|
||||
width:700px;
|
||||
}
|
||||
|
||||
|
||||
div.vis-network-configuration.vis-option-container{
|
||||
display:block;
|
||||
width:495px;
|
||||
background-color: #ffffff;
|
||||
border:2px solid #f7f8fa;
|
||||
border-radius:4px;
|
||||
margin-top:20px;
|
||||
left:10px;
|
||||
padding-left:5px;
|
||||
}
|
||||
|
||||
div.vis-network-configuration.button{
|
||||
display:block;
|
||||
width:495px;
|
||||
height:25px;
|
||||
vertical-align: middle;
|
||||
line-height:25px;
|
||||
background-color: #f7f8fa;
|
||||
border:2px solid #ceced0;
|
||||
border-radius:4px;
|
||||
margin-top:20px;
|
||||
left:10px;
|
||||
padding-left:5px;
|
||||
cursor: pointer;
|
||||
margin-bottom:30px;
|
||||
}
|
||||
|
||||
div.vis-network-configuration.button.hover{
|
||||
background-color: #4588e6;
|
||||
border:2px solid #214373;
|
||||
color:#ffffff;
|
||||
}
|
||||
|
||||
div.vis-network-configuration.item{
|
||||
display:block;
|
||||
float:left;
|
||||
width:495px;
|
||||
height:25px;
|
||||
vertical-align: middle;
|
||||
line-height:25px;
|
||||
}
|
||||
|
||||
|
||||
div.vis-network-configuration.item.s2{
|
||||
left:10px;
|
||||
background-color: #f7f8fa;
|
||||
padding-left:5px;
|
||||
border-radius:3px;
|
||||
}
|
||||
div.vis-network-configuration.item.s3{
|
||||
left:20px;
|
||||
background-color: #e4e9f0;
|
||||
padding-left:5px;
|
||||
border-radius:3px;
|
||||
}
|
||||
div.vis-network-configuration.item.s4{
|
||||
left:30px;
|
||||
background-color: #cfd8e6;
|
||||
padding-left:5px;
|
||||
border-radius:3px;
|
||||
}
|
||||
|
||||
div.vis-network-configuration.header{
|
||||
font-size:18px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
div.vis-network-configuration.label{
|
||||
width:120px;
|
||||
height:25px;
|
||||
line-height: 25px;
|
||||
}
|
||||
|
||||
div.vis-network-configuration.label.s3{
|
||||
width:110px;
|
||||
}
|
||||
div.vis-network-configuration.label.s4{
|
||||
width:100px;
|
||||
}
|
||||
|
||||
div.vis-network-configuration.colorBlock{
|
||||
top:1px;
|
||||
width:30px;
|
||||
height:19px;
|
||||
border:1px solid #444444;
|
||||
border-radius:2px;
|
||||
padding:0px;
|
||||
margin:0px;
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
input.vis-network-configuration.checkbox {
|
||||
left:-5px;
|
||||
}
|
||||
|
||||
|
||||
input.vis-network-configuration.rangeinput{
|
||||
position:relative;
|
||||
top:-5px;
|
||||
width:60px;
|
||||
height:13px;
|
||||
padding:1px;
|
||||
margin:0;
|
||||
pointer-events:none;
|
||||
}
|
||||
|
||||
input.vis-network-configuration.range{
|
||||
/*removes default webkit styles*/
|
||||
-webkit-appearance: none;
|
||||
|
||||
/*fix for FF unable to apply focus style bug */
|
||||
border: 0px solid white;
|
||||
background-color:rgba(0,0,0,0);
|
||||
|
||||
/*required for proper track sizing in FF*/
|
||||
width: 300px;
|
||||
height:20px;
|
||||
}
|
||||
input.vis-network-configuration.range::-webkit-slider-runnable-track {
|
||||
width: 300px;
|
||||
height: 5px;
|
||||
background: #dedede; /* Old browsers */
|
||||
background: -moz-linear-gradient(top, #dedede 0%, #c8c8c8 99%); /* FF3.6+ */
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dedede), color-stop(99%,#c8c8c8)); /* Chrome,Safari4+ */
|
||||
background: -webkit-linear-gradient(top, #dedede 0%,#c8c8c8 99%); /* Chrome10+,Safari5.1+ */
|
||||
background: -o-linear-gradient(top, #dedede 0%, #c8c8c8 99%); /* Opera 11.10+ */
|
||||
background: -ms-linear-gradient(top, #dedede 0%,#c8c8c8 99%); /* IE10+ */
|
||||
background: linear-gradient(to bottom, #dedede 0%,#c8c8c8 99%); /* W3C */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dedede', endColorstr='#c8c8c8',GradientType=0 ); /* IE6-9 */
|
||||
|
||||
border: 1px solid #999999;
|
||||
box-shadow: #aaaaaa 0px 0px 3px 0px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
input.vis-network-configuration.range::-webkit-slider-thumb {
|
||||
-webkit-appearance: none;
|
||||
border: 1px solid #14334b;
|
||||
height: 17px;
|
||||
width: 17px;
|
||||
border-radius: 50%;
|
||||
background: #3876c2; /* Old browsers */
|
||||
background: -moz-linear-gradient(top, #3876c2 0%, #385380 100%); /* FF3.6+ */
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3876c2), color-stop(100%,#385380)); /* Chrome,Safari4+ */
|
||||
background: -webkit-linear-gradient(top, #3876c2 0%,#385380 100%); /* Chrome10+,Safari5.1+ */
|
||||
background: -o-linear-gradient(top, #3876c2 0%,#385380 100%); /* Opera 11.10+ */
|
||||
background: -ms-linear-gradient(top, #3876c2 0%,#385380 100%); /* IE10+ */
|
||||
background: linear-gradient(to bottom, #3876c2 0%,#385380 100%); /* W3C */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3876c2', endColorstr='#385380',GradientType=0 ); /* IE6-9 */
|
||||
box-shadow: #111927 0px 0px 1px 0px;
|
||||
margin-top: -7px;
|
||||
}
|
||||
input.vis-network-configuration.range:focus {
|
||||
outline: none;
|
||||
}
|
||||
input.vis-network-configuration.range:focus::-webkit-slider-runnable-track {
|
||||
background: #9d9d9d; /* Old browsers */
|
||||
background: -moz-linear-gradient(top, #9d9d9d 0%, #c8c8c8 99%); /* FF3.6+ */
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9d9d9d), color-stop(99%,#c8c8c8)); /* Chrome,Safari4+ */
|
||||
background: -webkit-linear-gradient(top, #9d9d9d 0%,#c8c8c8 99%); /* Chrome10+,Safari5.1+ */
|
||||
background: -o-linear-gradient(top, #9d9d9d 0%,#c8c8c8 99%); /* Opera 11.10+ */
|
||||
background: -ms-linear-gradient(top, #9d9d9d 0%,#c8c8c8 99%); /* IE10+ */
|
||||
background: linear-gradient(to bottom, #9d9d9d 0%,#c8c8c8 99%); /* W3C */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9d9d9d', endColorstr='#c8c8c8',GradientType=0 ); /* IE6-9 */
|
||||
}
|
||||
|
||||
input.vis-network-configuration.range::-moz-range-track {
|
||||
width: 300px;
|
||||
height: 10px;
|
||||
background: #dedede; /* Old browsers */
|
||||
background: -moz-linear-gradient(top, #dedede 0%, #c8c8c8 99%); /* FF3.6+ */
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dedede), color-stop(99%,#c8c8c8)); /* Chrome,Safari4+ */
|
||||
background: -webkit-linear-gradient(top, #dedede 0%,#c8c8c8 99%); /* Chrome10+,Safari5.1+ */
|
||||
background: -o-linear-gradient(top, #dedede 0%, #c8c8c8 99%); /* Opera 11.10+ */
|
||||
background: -ms-linear-gradient(top, #dedede 0%,#c8c8c8 99%); /* IE10+ */
|
||||
background: linear-gradient(to bottom, #dedede 0%,#c8c8c8 99%); /* W3C */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dedede', endColorstr='#c8c8c8',GradientType=0 ); /* IE6-9 */
|
||||
|
||||
border: 1px solid #999999;
|
||||
box-shadow: #aaaaaa 0px 0px 3px 0px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
input.vis-network-configuration.range::-moz-range-thumb {
|
||||
border: none;
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
|
||||
border-radius: 50%;
|
||||
background: #385380;
|
||||
}
|
||||
|
||||
/*hide the outline behind the border*/
|
||||
input.vis-network-configuration.range:-moz-focusring{
|
||||
outline: 1px solid white;
|
||||
outline-offset: -1px;
|
||||
}
|
||||
|
||||
input.vis-network-configuration.range::-ms-track {
|
||||
width: 300px;
|
||||
height: 5px;
|
||||
|
||||
/*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
|
||||
background: transparent;
|
||||
|
||||
/*leave room for the larger thumb to overflow with a transparent border */
|
||||
border-color: transparent;
|
||||
border-width: 6px 0;
|
||||
|
||||
/*remove default tick marks*/
|
||||
color: transparent;
|
||||
}
|
||||
input.vis-network-configuration.range::-ms-fill-lower {
|
||||
background: #777;
|
||||
border-radius: 10px;
|
||||
}
|
||||
input.vis-network-configuration.range::-ms-fill-upper {
|
||||
background: #ddd;
|
||||
border-radius: 10px;
|
||||
}
|
||||
input.vis-network-configuration.range::-ms-thumb {
|
||||
border: none;
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
border-radius: 50%;
|
||||
background: #385380;
|
||||
}
|
||||
input.vis-network-configuration.range:focus::-ms-fill-lower {
|
||||
background: #888;
|
||||
}
|
||||
input.vis-network-configuration.range:focus::-ms-fill-upper {
|
||||
background: #ccc;
|
||||
}
|
||||
|
||||
div.vis-color-picker {
|
||||
position:absolute;
|
||||
top: 0px;
|
||||
left: 30px;
|
||||
margin-top:-140px;
|
||||
margin-left:30px;
|
||||
width:293px;
|
||||
height:425px;
|
||||
width:310px;
|
||||
height:444px;
|
||||
z-index: 1;
|
||||
padding: 10px;
|
||||
border-radius:15px;
|
||||
background-color:#ffffff;
|
||||
display:none;
|
||||
display: none;
|
||||
box-shadow: rgba(0,0,0,0.5) 0px 0px 10px 0px;
|
||||
}
|
||||
|
||||
@@ -1094,8 +1151,8 @@ div.vis-color-picker div.vis-arrow {
|
||||
left:5px;
|
||||
}
|
||||
|
||||
div.vis-color-picker div.vis-arrow:after,
|
||||
div.vis-color-picker div.vis-arrow:before {
|
||||
div.vis-color-picker div.vis-arrow::after,
|
||||
div.vis-color-picker div.vis-arrow::before {
|
||||
right: 100%;
|
||||
top: 50%;
|
||||
border: solid transparent;
|
||||
|
||||
Reference in New Issue
Block a user