forked from 0x2620/oxjs
init
This commit is contained in:
commit
5b8b31271c
87 changed files with 73788 additions and 0 deletions
111
build/css/ox.ui.modern.css
Normal file
111
build/css/ox.ui.modern.css
Normal file
|
|
@ -0,0 +1,111 @@
|
|||
body.OxThemeModern {
|
||||
background: rgb(16, 16, 16);
|
||||
}
|
||||
.OxThemeModern div {
|
||||
color: rgb(240, 240, 240);
|
||||
}
|
||||
|
||||
/*
|
||||
================================================================================
|
||||
Bars
|
||||
================================================================================
|
||||
*/
|
||||
|
||||
.OxThemeModern .OxBar.OxHorizontal {
|
||||
//background: -moz-linear-gradient(left top, left bottom, from(rgb(96, 96, 96)), to(rgb(64, 64, 64)));
|
||||
//background: -webkit-gradient(linear, left top, left bottom, from(rgb(96, 96, 96)), to(rgb(64, 64, 64)));
|
||||
background: -moz-linear-gradient(left top, left bottom, from(rgb(64, 64, 64)), to(rgb(32, 32, 32)));
|
||||
background: -webkit-gradient(linear, left top, left bottom, from(rgb(64, 64, 64)), to(rgb(32, 32, 32)));
|
||||
}
|
||||
|
||||
/*
|
||||
================================================================================
|
||||
Forms
|
||||
================================================================================
|
||||
*/
|
||||
|
||||
.OxThemeModern .OxButton,
|
||||
.OxThemeModern .OxInput,
|
||||
.OxThemeModern .OxRange,
|
||||
.OxThemeModern .OxTrack {
|
||||
//border: 1px solid rgb(80, 80, 80);
|
||||
border: 1px solid rgb(48, 48, 48);
|
||||
color: rgb(192, 192, 192);
|
||||
}
|
||||
.OxThemeModern .OxButton,
|
||||
.OxThemeModern .OxRange {
|
||||
background: -moz-linear-gradient(left top, left bottom, from(rgb(96, 96, 96)), to(rgb(64, 64, 64)));
|
||||
background: -webkit-gradient(linear, left top, left bottom, from(rgb(96, 96, 96)), to(rgb(64, 64, 64)));
|
||||
//background: -moz-linear-gradient(left top, left bottom, from(rgb(64, 64, 64)), to(rgb(32, 32, 32)));
|
||||
//background: -webkit-gradient(linear, left top, left bottom, from(rgb(64, 64, 64)), to(rgb(32, 32, 32)));
|
||||
}
|
||||
.OxThemeModern .OxButton:active,
|
||||
.OxThemeModern .OxRange.OxActive {
|
||||
background: rgb(80, 80, 80);
|
||||
//background: rgb(64, 64, 64);
|
||||
}
|
||||
.OxThemeModern .OxButton.OxDisabled {
|
||||
background: rgb(80, 80, 80);
|
||||
color: rgb(128, 128, 128);
|
||||
}
|
||||
.OxThemeModern .OxButton.OxSelected {
|
||||
//background: -moz-linear-gradient(left top, left bottom, from(rgb(80, 80, 80)), to(rgb(112, 112, 112)));
|
||||
//background: -webkit-gradient(linear, left top, left bottom, from(rgb(80, 80, 80)), to(rgb(112, 112, 112)));
|
||||
background: -moz-linear-gradient(left top, left bottom, from(rgb(0, 0, 0)), color-stop(0.1, rgb(32, 32, 32)), to(rgb(64, 64, 64)));
|
||||
background: -webkit-gradient(linear, left top, left bottom, from(rgb(0, 0, 0)), color-stop(0.1, rgb(32, 32, 32)), to(rgb(64, 64, 64)));
|
||||
color: rgb(224, 224, 224);
|
||||
}
|
||||
.OxThemeModern .OxButton.OxTab.OxSelected {
|
||||
border-bottom: 1px solid rgb(64, 64, 64);
|
||||
}
|
||||
.OxThemeModern .OxInput,
|
||||
.OxThemeModern .OxTrack {
|
||||
background: -moz-linear-gradient(left top, left bottom, from(rgb(0, 0, 0)), to(rgb(32, 32, 32)));
|
||||
background: -webkit-gradient(linear, left top, left bottom, from(rgb(0, 0, 0)), to(rgb(32, 32, 32)));
|
||||
}
|
||||
.OxThemeModern .OxInput:focus {
|
||||
border: 1px solid rgb(80, 80, 80);
|
||||
-moz-box-shadow: 0 0 2px rgb(128, 128, 128);
|
||||
-webkit-box-shadow: 0 0 2px rgb(128, 128, 128);
|
||||
}
|
||||
.OxThemeModern .OxInput.OxPlaceholder {
|
||||
color: rgb(96, 96, 96)
|
||||
}
|
||||
|
||||
/*
|
||||
================================================================================
|
||||
Scrollbars
|
||||
================================================================================
|
||||
*/
|
||||
|
||||
.OxThemeModern ::-webkit-scrollbar {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
border-left: 1px solid rgb(48, 48, 48);
|
||||
border-right: 1px solid rgb(48, 48, 48);
|
||||
background: -webkit-gradient(linear, left top, right top, from(rgb(96, 96, 96)), to(rgb(64, 64, 64)));
|
||||
}
|
||||
.OxThemeModern ::-webkit-scrollbar-button {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
}
|
||||
.OxThemeModern ::-webkit-scrollbar-button:vertical:decrement {
|
||||
background: url(../png/ox.ui.modern/scrollbarVerticalDecrement.png);
|
||||
}
|
||||
.OxThemeModern ::-webkit-scrollbar-button:vertical:increment {
|
||||
background: url(../png/ox.ui.modern/scrollbarVerticalIncrement.png);
|
||||
}
|
||||
.OxThemeModern ::-webkit-scrollbar-thumb:vertical {
|
||||
border: 1px solid rgb(48, 48, 48);
|
||||
background: -webkit-gradient(linear, left top, right top, from(rgb(96, 96, 96)), to(rgb(64, 64, 64)));
|
||||
-webkit-border-radius: 6px;
|
||||
}
|
||||
.OxThemeModern ::-webkit-scrollbar-track:vertical {
|
||||
border: 1px solid rgb(32, 32, 32);
|
||||
background: -webkit-gradient(linear, left top, right top, from(rgb(0, 0, 0)), to(rgb(32, 32, 32)));
|
||||
-webkit-border-radius: 6px;
|
||||
}
|
||||
.OxThemeModern ::-webkit-scrollbar:active,
|
||||
.OxThemeModern ::-webkit-scrollbar-thumb:vertical:active {
|
||||
background: rgb(64, 64, 64);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue