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
|
|
@ -31,12 +31,29 @@ Bars
|
|||
}
|
||||
|
||||
.OxThemeModern .OxProgressbar {
|
||||
border-color: rgb(48, 48, 48);
|
||||
background: -moz-linear-gradient(top, rgb(0, 0, 0), rgb(32, 32, 32));
|
||||
background: -webkit-linear-gradient(top, rgb(0, 0, 0), rgb(32, 32, 32));
|
||||
}
|
||||
.OxThemeModern .OxProgressbar > div {
|
||||
background: -moz-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
|
||||
background: -webkit-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
|
||||
border-color: rgb(48, 48, 48);
|
||||
background-image:
|
||||
-moz-repeating-linear-gradient(
|
||||
-45deg, transparent 0, transparent 25%,
|
||||
rgba(0, 0, 0, 0.05) 25%, rgba(0, 0, 0, 0.1) 50%,
|
||||
transparent 50%, transparent 75%,
|
||||
rgba(0, 0, 0, 0.05) 75%, rgba(0, 0, 0, 0.1) 100%
|
||||
),
|
||||
-moz-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
|
||||
background-image:
|
||||
-webkit-repeating-linear-gradient(
|
||||
-45deg, transparent 0, transparent 25%,
|
||||
rgba(0, 0, 0, 0.05) 25%, rgba(0, 0, 0, 0.1) 50%,
|
||||
transparent 50%, transparent 75%,
|
||||
rgba(0, 0, 0, 0.05) 75%, rgba(0, 0, 0, 0.1) 100%
|
||||
),
|
||||
-webkit-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
|
||||
background-size: 32px 32px, 16px 16px;
|
||||
}
|
||||
|
||||
.OxThemeModern .OxResizebar > .OxLine {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue