forked from 0x2620/oxjs
add progress bar demo
This commit is contained in:
parent
d160699e00
commit
16ef28d260
8 changed files with 148 additions and 17 deletions
|
|
@ -30,12 +30,29 @@ Bars
|
|||
}
|
||||
|
||||
.OxThemeClassic .OxProgressbar {
|
||||
border-color: rgb(176, 176, 176);
|
||||
background: -moz-linear-gradient(top, rgb(208, 208, 208), rgb(255, 255, 255));
|
||||
background: -webkit-linear-gradient(top, rgb(208, 208, 208), rgb(255, 255, 255));
|
||||
}
|
||||
.OxThemeClassic .OxProgressbar > div {
|
||||
background: -moz-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
|
||||
background: -webkit-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
|
||||
border-color: rgb(176, 176, 176);
|
||||
background-image:
|
||||
-moz-repeating-linear-gradient(
|
||||
-45deg, transparent 0, transparent 25%,
|
||||
rgba(0, 0, 0, 0.05) 25%, rgba(0, 0, 0, 0.05) 50%,
|
||||
transparent 50%, transparent 75%,
|
||||
rgba(0, 0, 0, 0.05) 75%, rgba(0, 0, 0, 0.05) 100%
|
||||
),
|
||||
-moz-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
|
||||
background-image:
|
||||
-webkit-repeating-linear-gradient(
|
||||
-45deg, transparent 0, transparent 25%,
|
||||
rgba(0, 0, 0, 0.05) 25%, rgba(0, 0, 0, 0.05) 50%,
|
||||
transparent 50%, transparent 75%,
|
||||
rgba(0, 0, 0, 0.05) 75%, rgba(0, 0, 0, 0.05) 100%
|
||||
),
|
||||
-webkit-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
|
||||
background-size: 32px 32px, 16px 16px;
|
||||
}
|
||||
|
||||
.OxThemeClassic .OxResizebar > .OxLine {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue