mirror of
https://gitlab.com/JKANetwork/CheckServer.git
synced 2026-03-04 17:49:55 +01:00
Start again
This commit is contained in:
121
vendors/bootstrap-progressbar/scss/bootstrap-progressbar-2.x.x.scss
vendored
Normal file
121
vendors/bootstrap-progressbar/scss/bootstrap-progressbar-2.x.x.scss
vendored
Normal file
@@ -0,0 +1,121 @@
|
||||
$progressbarVerticalWidth: $baseLineHeight;
|
||||
$progressbarFontSize: 12px;
|
||||
|
||||
// bootstrap-progressbar global styles
|
||||
// -----------------------------------
|
||||
|
||||
.progress {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.progress .bar {
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
line-height: $baseLineHeight;
|
||||
}
|
||||
|
||||
.progress .progressbar-back-text {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
font-size: $progressbarFontSize;
|
||||
line-height: $baseLineHeight;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.progress .progressbar-front-text {
|
||||
display: block;
|
||||
width: 100%;
|
||||
font-size: $progressbarFontSize;
|
||||
line-height: $baseLineHeight;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
// bootstrap-progressbar horizontal styles
|
||||
// ---------------------------------------
|
||||
|
||||
.progress.right .bar {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.progress.right .progressbar-front-text {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
// bootstrap-progressbar vertical styles
|
||||
// -------------------------------------
|
||||
|
||||
.progress.vertical {
|
||||
width: $progressbarVerticalWidth;
|
||||
height: 100%;
|
||||
float: left;
|
||||
margin-right: $progressbarVerticalWidth;
|
||||
@include gradient-vertical(#f5f5f5, #f9f9f9);
|
||||
background-repeat: repeat;
|
||||
}
|
||||
|
||||
.progress.vertical.bottom {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.progress.vertical.bottom .progressbar-front-text {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.progress.vertical .bar {
|
||||
width: 100%;
|
||||
height: 0;
|
||||
@include transition(height .6s ease);
|
||||
background-repeat: repeat;
|
||||
}
|
||||
|
||||
.progress.vertical.bottom .bar {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
// Danger (red)
|
||||
.progress-danger.vertical .bar,
|
||||
.progress.vertical .bar-danger {
|
||||
@include gradient-vertical(#ee5f5b, #c43c35);
|
||||
background-repeat: repeat;
|
||||
}
|
||||
.progress-danger.progress-striped.vertical .bar,
|
||||
.progress.progress-striped.vertical .bar-danger {
|
||||
@include gradient-striped(#ee5f5b);
|
||||
}
|
||||
|
||||
// Success (green)
|
||||
.progress-success.vertical .bar,
|
||||
.progress.vertical .bar-success {
|
||||
@include gradient-vertical(#62c462, #57a957);
|
||||
background-repeat: repeat;
|
||||
}
|
||||
.progress-success.progress-striped.vertical .bar,
|
||||
.progress.progress-striped.vertical .bar-success {
|
||||
@include gradient-striped(#62c462);
|
||||
}
|
||||
|
||||
// Info (teal)
|
||||
.progress-info.vertical .bar,
|
||||
.progress.vertical .bar-info {
|
||||
@include gradient-vertical(#5bc0de, #339bb9);
|
||||
background-repeat: repeat;
|
||||
}
|
||||
.progress-info.progress-striped.vertical .bar,
|
||||
.progress.progress-striped.vertical .bar-info {
|
||||
@include gradient-striped(#5bc0de);
|
||||
}
|
||||
|
||||
// Warning (orange)
|
||||
.progress-warning.vertical .bar,
|
||||
.progress.vertical .bar-warning {
|
||||
@include gradient-vertical(lighten($orange, 15%), $orange);
|
||||
background-repeat: repeat;
|
||||
}
|
||||
.progress-warning.progress-striped.vertical .bar,
|
||||
.progress.progress-striped.vertical .bar-warning {
|
||||
@include gradient-striped(lighten($orange, 15%));
|
||||
}
|
||||
74
vendors/bootstrap-progressbar/scss/bootstrap-progressbar-3.0.0-3.1.x.scss
vendored
Normal file
74
vendors/bootstrap-progressbar/scss/bootstrap-progressbar-3.0.0-3.1.x.scss
vendored
Normal file
@@ -0,0 +1,74 @@
|
||||
$progressbarVerticalWidth: $line-height-computed;
|
||||
$progressbarFontSize: $font-size-small;
|
||||
|
||||
// bootstrap-progressbar global styles
|
||||
// -----------------------------------
|
||||
|
||||
.progress {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.progress .progress-bar {
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
line-height: $line-height-computed;
|
||||
}
|
||||
|
||||
.progress .progressbar-back-text {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
font-size: $progressbarFontSize;
|
||||
line-height: $line-height-computed;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.progress .progressbar-front-text {
|
||||
display: block;
|
||||
width: 100%;
|
||||
font-size: $progressbarFontSize;
|
||||
line-height: $line-height-computed;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
// bootstrap-progressbar horizontal styles
|
||||
// ---------------------------------------
|
||||
|
||||
.progress.right .progress-bar {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.progress.right .progressbar-front-text {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
// bootstrap-progressbar vertical styles
|
||||
// -------------------------------------
|
||||
|
||||
.progress.vertical {
|
||||
width: $progressbarVerticalWidth;
|
||||
height: 100%;
|
||||
float: left;
|
||||
margin-right: $progressbarVerticalWidth;
|
||||
}
|
||||
|
||||
.progress.vertical.bottom {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.progress.vertical.bottom .progressbar-front-text {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.progress.vertical .progress-bar {
|
||||
width: 100%;
|
||||
height: 0;
|
||||
@include transition(height .6s ease);
|
||||
}
|
||||
|
||||
.progress.vertical.bottom .progress-bar {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
}
|
||||
107
vendors/bootstrap-progressbar/scss/bootstrap-progressbar-3.2.0.scss
vendored
Normal file
107
vendors/bootstrap-progressbar/scss/bootstrap-progressbar-3.2.0.scss
vendored
Normal file
@@ -0,0 +1,107 @@
|
||||
$progressbarVerticalWidth: $line-height-computed;
|
||||
$progressbarFontSize: $font-size-small;
|
||||
|
||||
// bootstrap-progressbar global styles
|
||||
// -----------------------------------
|
||||
|
||||
.progress {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.progress .progress-bar {
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
line-height: $line-height-computed;
|
||||
}
|
||||
|
||||
.progress .progressbar-back-text {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
font-size: $progressbarFontSize;
|
||||
line-height: $line-height-computed;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.progress .progressbar-front-text {
|
||||
display: block;
|
||||
width: 100%;
|
||||
font-size: $progressbarFontSize;
|
||||
line-height: $line-height-computed;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
// bootstrap-progressbar horizontal styles
|
||||
// ---------------------------------------
|
||||
|
||||
.progress.right .progress-bar {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.progress.right .progressbar-front-text {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
// bootstrap-progressbar vertical styles
|
||||
// -------------------------------------
|
||||
|
||||
.progress.vertical {
|
||||
width: $progressbarVerticalWidth;
|
||||
height: 100%;
|
||||
float: left;
|
||||
margin-right: $progressbarVerticalWidth;
|
||||
}
|
||||
|
||||
.progress.vertical.bottom {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.progress.vertical.bottom .progressbar-front-text {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.progress.vertical .progress-bar {
|
||||
width: 100%;
|
||||
height: 0;
|
||||
@include transition(height .6s ease);
|
||||
}
|
||||
|
||||
.progress.vertical.bottom .progress-bar {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
// bootstrap-progressbar reverted low percentages styles
|
||||
// -----------------------------------------------------
|
||||
|
||||
.progress-bar {
|
||||
&[aria-valuenow="1"],
|
||||
&[aria-valuenow="2"] {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
&[aria-valuenow="0"] {
|
||||
color: $progress-bar-color;
|
||||
min-width: 0;
|
||||
background-color: $progress-bar-bg;
|
||||
@include box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));
|
||||
|
||||
&.progress-bar-success {
|
||||
@include progress-bar-variant($progress-bar-success-bg);
|
||||
}
|
||||
|
||||
&.progress-bar-info {
|
||||
@include progress-bar-variant($progress-bar-info-bg);
|
||||
}
|
||||
|
||||
&.progress-bar-warning {
|
||||
@include progress-bar-variant($progress-bar-warning-bg);
|
||||
}
|
||||
|
||||
&.progress-bar-danger {
|
||||
@include progress-bar-variant($progress-bar-danger-bg);
|
||||
}
|
||||
}
|
||||
}
|
||||
74
vendors/bootstrap-progressbar/scss/bootstrap-progressbar-3.3.0-3.x.x.scss
vendored
Normal file
74
vendors/bootstrap-progressbar/scss/bootstrap-progressbar-3.3.0-3.x.x.scss
vendored
Normal file
@@ -0,0 +1,74 @@
|
||||
$progressbarVerticalWidth: $line-height-computed;
|
||||
$progressbarFontSize: $font-size-small;
|
||||
|
||||
// bootstrap-progressbar global styles
|
||||
// -----------------------------------
|
||||
|
||||
.progress {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.progress .progress-bar {
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
line-height: $line-height-computed;
|
||||
}
|
||||
|
||||
.progress .progressbar-back-text {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
font-size: $progressbarFontSize;
|
||||
line-height: $line-height-computed;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.progress .progressbar-front-text {
|
||||
display: block;
|
||||
width: 100%;
|
||||
font-size: $progressbarFontSize;
|
||||
line-height: $line-height-computed;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
// bootstrap-progressbar horizontal styles
|
||||
// ---------------------------------------
|
||||
|
||||
.progress.right .progress-bar {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.progress.right .progressbar-front-text {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
// bootstrap-progressbar vertical styles
|
||||
// -------------------------------------
|
||||
|
||||
.progress.vertical {
|
||||
width: $progressbarVerticalWidth;
|
||||
height: 100%;
|
||||
float: left;
|
||||
margin-right: $progressbarVerticalWidth;
|
||||
}
|
||||
|
||||
.progress.vertical.bottom {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.progress.vertical.bottom .progressbar-front-text {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.progress.vertical .progress-bar {
|
||||
width: 100%;
|
||||
height: 0;
|
||||
@include transition(height .6s ease);
|
||||
}
|
||||
|
||||
.progress.vertical.bottom .progress-bar {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
}
|
||||
Reference in New Issue
Block a user