oxjstmp/build/css/ox.ui.css

985 lines
21 KiB
CSS
Raw Normal View History

2010-01-07 20:21:07 +00:00
@import url("ox.ui.classic.css");
@import url("ox.ui.modern.css");
@import url("ox.ui.future.css");
/*
================================================================================
Base
================================================================================
*/
body {
margin: 0;
overflow: hidden;
2010-06-28 09:16:36 +00:00
-moz-user-select: none;
-webkit-user-select: none;
}
div {
2010-06-28 09:16:36 +00:00
-moz-user-select: none;
-webkit-user-select: none;
2010-01-07 20:21:07 +00:00
}
2010-02-26 13:25:56 +00:00
div, input, textarea {
2010-01-07 20:21:07 +00:00
font-family: Lucida Grande, Lucida Sans Unicode, Segoe UI;
font-size: 11px;
}
2010-02-04 08:02:23 +00:00
td {
padding: 0;
2010-02-04 08:02:23 +00:00
}
2010-02-18 17:45:37 +00:00
2010-01-07 20:21:07 +00:00
/*
================================================================================
Core
================================================================================
*/
.OxContainer {
left: 0;
top: 0;
right: 0;
bottom: 0;
2010-06-29 21:58:17 +00:00
//overflow: hidden;
overflow: auto;
2010-01-07 20:21:07 +00:00
}
.OxContent {
2010-06-29 21:58:17 +00:00
//overflow: auto;
2010-01-07 20:21:07 +00:00
}
/*
================================================================================
Bars
================================================================================
*/
.OxBar {
overflow: hidden;
white-space: nowrap;
}
2010-07-17 08:46:27 +00:00
.OxResizebar {
z-index: 2;
}
2010-07-06 18:28:58 +00:00
.OxResizebar.OxHorizontal {
width: 100%;
height: 5px;
margin: -2px 0 -2px 0;
cursor: ns-resize;
}
.OxResizebar.OxHorizontal > .OxLine {
width: 100%;
height: 1px;
}
.OxResizebar.OxHorizontal > .OxSpace {
width: 100%;
height: 2px;
}
.OxResizebar.OxVertical {
width: 5px;
height: 100%;
margin: 0 -2px 0 -2px;
cursor: ew-resize;
}
.OxResizebar.OxVertical > .OxLine {
float: left;
width: 1px;
height: 100%;
}
.OxResizebar.OxVertical > .OxSpace {
float: left;
width: 2px;
height: 100%;
}
2010-01-07 20:21:07 +00:00
.OxTabbar > .OxButtonGroup {
margin: 4px 0 0 4px;
}
2010-01-31 08:03:22 +00:00
/*
================================================================================
Dialog
================================================================================
*/
.OxDialog {
position: absolute;
2010-02-21 06:32:48 +00:00
//left: 0;
//top: 0;
//right: 0;
//bottom: 0;
//margin: auto;
2010-02-21 07:09:32 +00:00
z-index: 11;
2010-01-31 08:03:22 +00:00
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
}
.OxDialog > .OxTitleBar {
//left: 0px;
//right: 0px;
//height: 16px;
2010-02-20 03:58:46 +00:00
//padding: 3px 8px 5px 8px;
//padding: 3px 0 5px 0;
2010-01-31 08:03:22 +00:00
cursor: move;
-moz-border-radius-topleft: 8px;
-moz-border-radius-topright: 8px;
-webkit-border-top-left-radius: 8px;
-webkit-border-top-right-radius: 8px;
}
.OxDialog > .OxTitleBar > .OxTitle {
2010-07-20 20:04:13 +00:00
margin: 4px 8px 0 8px;
font-size: 11px;
2010-01-31 08:03:22 +00:00
font-weight: bold;
text-overflow: ellipsis;
2010-07-20 20:04:13 +00:00
overflow: hidden;
white-space: nowrap;
2010-01-31 08:03:22 +00:00
}
.OxDialog > .OxContent {
top: 24px;
2010-07-24 01:32:08 +00:00
bottom: 24px;
2010-01-31 08:03:22 +00:00
height: 100%;
2010-07-24 01:32:08 +00:00
//padding: 16px;
//font-size: 12px;
//line-height: 16px;
2010-01-31 08:03:22 +00:00
}
.OxDialog > .OxButtonsBar {
2010-02-20 03:42:03 +00:00
left: 0;
right: 0;
bottom: 0;
height: 24px;
2010-02-21 05:20:39 +00:00
//text-align: right;
2010-01-31 08:03:22 +00:00
-moz-border-radius-bottomleft: 8px;
-moz-border-radius-bottomright: 8px;
-webkit-border-bottom-left-radius: 8px;
-webkit-border-bottom-right-radius: 8px;
}
2010-01-31 09:32:41 +00:00
.OxDialog > .OxButtonsBar > .OxButton {
2010-02-20 04:26:53 +00:00
margin: 4px 2px 0 2px;
}
2010-02-21 05:20:39 +00:00
.OxDialog > .OxButtonsBar > .OxButton.OxLeft {
float: left;
}
.OxDialog > .OxButtonsBar > .OxButton.OxLeft:first-child {
margin-left: 16px;
}
2010-02-21 05:20:39 +00:00
.OxDialog > .OxButtonsBar > .OxButton.OxRight {
float: right;
}
.OxDialog > .OxButtonsBar > .OxResize {
float: right;
height: 24px;
width: 14px;
cursor: se-resize;
2010-01-31 09:32:41 +00:00
}
2010-07-05 07:09:34 +00:00
/*
================================================================================
Drag & Drop
================================================================================
*/
.OxDrag {
cursor: move;
}
2010-01-07 20:21:07 +00:00
/*
================================================================================
Forms
================================================================================
*/
2010-02-26 13:22:27 +00:00
input,
textarea {
2010-01-07 20:21:07 +00:00
padding: 0;
border: 1px;
margin: 0;
}
input[type=button],
input[type=reset],
input[type=submit] {
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
}
2010-02-06 06:35:40 +00:00
input[type=image] {
cursor: default;
}
2010-02-26 13:22:27 +00:00
input:focus,
textarea:focus {
2010-01-07 20:21:07 +00:00
outline: none;
}
/*
2010-01-07 20:21:07 +00:00
input.OxXlarge {
height: 26px;
font-size: 19px;
padding: 0 12px 0 12px;
-moz-border-radius: 14px;
-webkit-border-radius: 14px;
}
input.OxLarge {
height: 22px;
font-size: 16px;
padding: 0 10px 0 10px;
-moz-border-radius: 12px;
-webkit-border-radius: 12px;
}
*/
input.OxLarge {
2010-01-07 20:21:07 +00:00
height: 18px;
font-size: 13px;
padding: 0 8px 0 8px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
}
input.OxMedium {
2010-01-07 20:21:07 +00:00
height: 14px;
padding: 0 6px 0 6px;
font-size: 11px;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
}
input.OxSmall {
2010-01-07 20:21:07 +00:00
height: 10px;
padding: 0 4px 0 4px;
font-size: 8px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
}
input[type=image] {
padding: 0;
-moz-user-select: none;
-webkit-user-select: none;
}
/*
2010-01-07 20:21:07 +00:00
input[type=image].OxLarge {
width: 22px;
}
*/
input[type=image].OxLarge {
2010-01-07 20:21:07 +00:00
width: 18px;
}
2010-03-06 09:54:30 +00:00
input[type=image].OxMedium {
2010-01-07 20:21:07 +00:00
width: 14px;
}
input[type=image].OxSmall {
width: 10px;
}
2010-01-07 20:21:07 +00:00
input::-moz-focus-inner {
border: none;
}
2010-02-26 13:22:27 +00:00
textarea {
//padding: 2px 4px 2px 4px;
padding: 0 4px 0 4px;
margin: -1px 0 0 0;
2010-02-26 13:26:50 +00:00
resize: none;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
2010-02-26 13:22:27 +00:00
}
2010-01-07 20:21:07 +00:00
.OxButton.OxSymbol,
2010-02-19 14:55:10 +00:00
.OxButton.OxSymbol:active,
.OxButton.OxSymbol:focus {
2010-03-06 09:13:17 +00:00
padding: 0;
2010-01-07 20:21:07 +00:00
border: 1px solid rgba(0, 0, 0, 0);
background: rgba(0, 0, 0, 0);
2010-02-19 14:55:10 +00:00
-moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
2010-02-26 13:22:27 +00:00
//-webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
2010-01-07 20:21:07 +00:00
}
/*
--------------------------------------------------------------------------------
OxButtonGroup
--------------------------------------------------------------------------------
*/
.OxButtonGroup {
display: table-cell;
float: left;
//overflow: hidden;
//white-space: nowrap;
}
.OxButtonGroup > .OxButton {
border-right-width: 0;
-moz-border-radius: 0;
-webkit-border-radius: 0;
}
.OxButtonGroup > .OxButton:last-child {
border-right-width: 1px;
}
2010-02-10 09:59:59 +00:00
.OxButtonGroup > .OxButton.OxLarge:first-child {
-moz-border-radius-topleft: 6px;
-moz-border-radius-bottomleft: 6px;
-webkit-border-top-left-radius: 6px;
-webkit-border-bottom-left-radius: 6px;
}
.OxButtonGroup > .OxButton.OxLarge:last-child {
-moz-border-radius-topright: 6px;
-moz-border-radius-bottomright: 6px;
-webkit-border-top-right-radius: 6px;
-webkit-border-bottom-right-radius: 6px;
}
.OxButtonGroup > .OxButton.OxMedium:first-child {
2010-01-07 20:21:07 +00:00
-moz-border-radius-topleft: 4px;
-moz-border-radius-bottomleft: 4px;
-webkit-border-top-left-radius: 4px;
-webkit-border-bottom-left-radius: 4px;
}
2010-02-10 09:59:59 +00:00
.OxButtonGroup > .OxButton.OxMedium:last-child {
2010-01-07 20:21:07 +00:00
-moz-border-radius-topright: 4px;
-moz-border-radius-bottomright: 4px;
-webkit-border-top-right-radius: 4px;
-webkit-border-bottom-right-radius: 4px;
}
2010-02-10 09:59:59 +00:00
.OxButtonGroup > .OxButton.OxSmall:first-child {
2010-01-07 20:21:07 +00:00
-moz-border-radius-topleft: 2px;
-moz-border-radius-bottomleft: 2px;
-webkit-border-top-left-radius: 2px;
-webkit-border-bottom-left-radius: 2px;
}
2010-02-10 09:59:59 +00:00
.OxButtonGroup > .OxButton.OxSmall:last-child {
2010-01-07 20:21:07 +00:00
-moz-border-radius-topright: 2px;
-moz-border-radius-bottomright: 2px;
-webkit-border-top-right-radius: 2px;
-webkit-border-bottom-right-radius: 2px;
}
.OxButtonGroup > .OxButton.OxTab {
-moz-border-radius-topleft: 4px;
-moz-border-radius-topright: 4px;
-moz-border-radius-bottomleft: 0;
-moz-border-radius-bottomright: 0;
-webkit-border-top-left-radius: 4px;
-webkit-border-top-right-radius: 4px;
-webkit-border-bottom-left-radius: 0;
-webkit-border-bottom-right-radius: 0;
}
.OxButtonGroup > .OxButton.OxTab:first-child {
-moz-border-radius-bottomleft: 0;
-webkit-border-bottom-left-radius: 0;
}
.OxButtonGroup > .OxButton.OxTab:last-child {
-moz-border-radius-bottomright: 0;
-webkit-border-bottom-right-radius: 0;
}
/*
--------------------------------------------------------------------------------
2010-07-24 01:32:08 +00:00
OxForm
2010-07-20 20:04:13 +00:00
--------------------------------------------------------------------------------
*/
.OxFormItem {
margin-top: 8px;
}
.OxFormItem:first-child {
margin-top: 0;
}
2010-07-24 01:32:08 +00:00
.OxFormMessage {
width: 100%;
height: 10px;
margin-top: 2px;
text-align: right;
display: none;
}
2010-07-20 20:04:13 +00:00
/*
--------------------------------------------------------------------------------
2010-02-19 10:24:02 +00:00
OxInput
--------------------------------------------------------------------------------
*/
div.OxInput {
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
}
div.OxInput.OxMedium {
height: 14px;
}
2010-02-27 08:46:49 +00:00
div.OxInput > .OxInputLabel {
2010-02-20 07:46:31 +00:00
float: left;
padding-left: 8px;
text-overflow: ellipsis;
cursor: default;
overflow: hidden;
}
div.OxInput > .OxButton {
2010-02-19 10:24:02 +00:00
float: left;
2010-03-06 09:13:17 +00:00
//margin-left: 1px;
2010-03-06 09:54:30 +00:00
margin-top: -1px;
2010-02-19 10:24:02 +00:00
}
div.OxInput > .OxButton:last-child {
float: left;
margin-left: -1px;
2010-03-06 09:54:30 +00:00
margin-top: -1px;
2010-02-19 10:24:02 +00:00
}
input.OxInput {
float: left;
2010-02-19 14:55:10 +00:00
margin: -1px -1px 0 -1px;
2010-02-26 13:22:27 +00:00
}
2010-02-27 08:46:49 +00:00
/*
--------------------------------------------------------------------------------
OxLabel
--------------------------------------------------------------------------------
*/
.OxLabel {
height: 14px;
border: 1px;
padding: 0 8px 0 8px;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
2010-02-19 10:24:02 +00:00
}
/*
--------------------------------------------------------------------------------
2010-01-07 20:21:07 +00:00
OxRange
--------------------------------------------------------------------------------
*/
.OxRange {
height: 14px;
border: 1px;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
}
.OxRange > .OxArrow:first-child {
float: left;
margin-top: -1px;
}
.OxRange > .OxArrow:last-child {
float: left;
margin-left: -1px;
margin-top: -1px;
}
.OxRange > .OxTrack {
float: left;
height: 14px;
margin-left: -1px;
margin-top: -1px;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
}
.OxRange > .OxTrack > .OxImage {
float: left;
height: 14px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
}
.OxRange > .OxTrack > .OxThumb {
float: left;
margin-top: -15px;
}
.OxRange > .OxTrack > .OxThumb:first-child {
margin-top: -1px;
}
/*
--------------------------------------------------------------------------------
OxSelect
--------------------------------------------------------------------------------
*/
.OxSelect.OxMedium {
2010-03-06 09:54:30 +00:00
margin-left: 0;
}
.OxSelect > .OxButton {
2010-03-06 09:54:30 +00:00
float: right;
text-align: left;
}
.OxSelect > .OxSymbol {
text-align: right;
2010-02-06 06:35:40 +00:00
cursor: default;
-moz-user-select: none;
-webkit-user-select: none;
}
.OxSelect.OxMedium > .OxSymbol {
2010-03-06 09:54:30 +00:00
float: right;
margin: -16px 0 0 -4px;
z-index: 9;
}
2010-02-09 05:43:36 +00:00
/*
================================================================================
Layers
================================================================================
*/
2010-06-25 15:55:25 +00:00
2010-02-09 05:43:36 +00:00
.OxLayer {
position: absolute;
2010-07-13 22:38:53 +00:00
left: 0;
top: 0;
right: 0;
bottom: 0;
2010-02-21 07:09:32 +00:00
background: rgb(0, 0, 0);
opacity: 0;
2010-02-09 05:43:36 +00:00
overflow: hidden;
z-index: 10;
}
2010-02-20 07:46:31 +00:00
.OxLayer.OxFront {
z-index: 100;
}
2010-02-09 05:43:36 +00:00
.OxMainMenuLayer {
position: absolute;
width: 100%;
top: 24px;
bottom: 0px;
overflow: hidden;
z-index: 10;
}
2010-06-25 15:55:25 +00:00
/*
================================================================================
Lists
================================================================================
*/
.OxListPage {
position: absolute;
}
.OxTextList .OxCell {
float: left;
height: 12px;
padding: 2px 4px 2px 4px;
}
.OxTextList .OxBar {
z-index: 10;
2010-07-07 08:45:24 +00:00
-moz-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.75);
-webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.75);
2010-06-25 15:55:25 +00:00
}
.OxTextList .OxBar .OxHead {
position: absolute;
left: 0;
right: 12px;
height: 16px;
overflow: hidden;
white-space: nowrap;
}
.OxTextList .OxBar .OxCell {
float: left;
padding: 2px 4px 2px 4px;
height: 12px;
}
.OxTextList .OxBar .OxCell:nthChild(1) {
margin-left: 0;
}
.OxTextList .OxBar .OxTitle {
float: left;
height: 15px;
padding: 1px 2px 0 2px;
font-weight: bold;
font-size: 10px;
text-overflow: ellipsis;
cursor: pointer;
overflow: hidden;
white-space: nowrap;
}
.OxTextList .OxBar .OxTitle:first-child {
padding-left: 4px;
}
.OxTextList .OxBar .OxOrder {
float: left;
width: 10px;
height: 13px;
padding: 3px 0 0 6px;
font-size: 7px;
display: none;
}
.OxTextList .OxBar .OxOrder.OxSelected {
cursor: pointer;
display: block;
}
.OxTextList .OxBar .OxResize {
float: left;
width: 5px;
height: 16px;
}
.OxTextList .OxBar .OxResize .OxLeft,
.OxTextList .OxBar .OxResize .OxCenter,
.OxTextList .OxBar .OxResize .OxRight {
float: left;
height: 16px;
cursor: ew-resize;
}
.OxTextList .OxBar .OxResize .OxLeft,
.OxTextList .OxBar .OxResize .OxRight {
width: 2px;
}
.OxTextList .OxBar .OxResize .OxCenter {
width: 1px;
}
.OxTextList .OxBar .OxResize .OxCenter {
float: left;
width: 1px;
height: 16px;
background: rgb(24, 24, 24);
cursor: ew-resize;
}
2010-06-30 15:49:49 +00:00
.OxTextList .OxBar .OxButton {
2010-06-25 15:55:25 +00:00
position: absolute;
right: 0px;
width: 11px;
height: 16px;
font-size: 11px;
text-align: center;
cursor: pointer;
}
.OxTextList .OxBody {
float: left;
position: absolute;
left: 0;
top: 16px;
right: 0;
bottom: 0;
2010-07-03 08:35:28 +00:00
overflow-y: scroll;
2010-06-25 15:55:25 +00:00
}
.OxTextList .OxBody .OxContent {
2010-06-29 21:58:17 +00:00
//width: 100%;
2010-06-25 15:55:25 +00:00
}
.OxTextList .OxBody .OxItem {
height: 16px;
cursor: default;
2010-06-25 15:55:25 +00:00
}
.OxTextList .OxBody .OxItem .OxCell {
float: left;
height: 14px;
padding: 2px 4px 0 4px;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.OxTextList .OxBody .OxItem .OxSpace {
float: left;
width: 4px;
height: 16px;
}
.OxTextList .OxBody .OxItem .OxLine {
float: left;
width: 1px;
height: 16px;
}
2010-06-29 21:58:17 +00:00
.OxTextList .OxPage {
position: absolute;
}
2010-07-06 18:28:58 +00:00
2010-02-03 12:12:21 +00:00
/*
================================================================================
Menus
================================================================================
*/
2010-02-08 09:35:24 +00:00
.OxMainMenu {
2010-02-09 05:43:36 +00:00
z-index: 9;
2010-02-08 09:35:24 +00:00
-moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.75);
-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.75);
}
.OxMainMenu.OxLarge {
height: 24px;
padding-left: 8px;
}
.OxMainMenu.OxMedium {
height: 20px;
padding-left: 6px;
}
.OxMainMenu.OxSmall {
height: 16px;
padding-left: 4px;
}
.OxMainMenu > .OxTitle {
float: left;
cursor: default;
2010-02-08 11:02:43 +00:00
-moz-user-select: none;
-webkit-user-select: none;
2010-02-08 09:35:24 +00:00
}
.OxMainMenu.OxLarge > .OxTitle {
height: 21px;
padding-left: 8px;
padding-right: 8px;
padding-top: 3px;
font-size: 14px;
}
.OxMainMenu.OxMedium > .OxTitle {
height: 17px;
padding-left: 6px;
padding-right: 6px;
padding-top: 3px;
font-size: 11px;
}
.OxMainMenu.OxSmall > .OxTitle {
height: 14px;
padding-left: 4px;
padding-right: 4px;
padding-top: 2px;
font-size: 9px;
}
2010-07-13 22:38:53 +00:00
.OxMainMenu > .OxTitle:first-child {
font-weight: bold;
}
2010-02-19 10:57:19 +00:00
.OxMainMenu > .OxTitle.OxSelected {
2010-02-08 09:35:24 +00:00
background: rgb(48, 48, 48);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgb(80, 80, 80)), color-stop(1, rgb(48, 48, 48)));
}
2010-07-01 23:51:08 +00:00
.OxMainMenu.OxLarge > .OxExtras {
2010-02-19 10:57:19 +00:00
float: right;
padding: 4px 12px 0 0;
}
2010-07-01 23:51:08 +00:00
.OxMainMenu.OxMedium > .OxExtras {
float: right;
padding: 2px 10px 0 0;
}
.OxMainMenu.OxSmall > .OxExtras {
float: right;
padding: 2px 8px 0 0;
}
2010-02-09 05:43:36 +00:00
2010-02-03 12:12:21 +00:00
.OxMenu {
position: absolute;
display: none;
z-index: 11;
-moz-border-radius-bottomleft: 4px;
-moz-border-radius-bottomright: 4px;
-webkit-border-bottom-left-radius: 4px;
-webkit-border-bottom-right-radius: 4px;
2010-02-08 14:42:00 +00:00
-moz-user-select: none;
-webkit-user-select: none;
2010-02-03 12:12:21 +00:00
}
.OxMenu.OxRight {
-moz-border-radius-topright: 4px;
-webkit-border-top-right-radius: 4px;
}
.OxMenu .OxTop {
height: 4px;
}
.OxMenu.OxRight .OxTop {
-moz-border-radius-topright: 4px;
-webkit-border-top-right-radius: 4px;
}
.OxMenu .OxBottom {
height: 4px;
-moz-border-radius-bottomleft: 4px;
-moz-border-radius-bottomright: 4px;
-webkit-border-bottom-left-radius: 4px;
-webkit-border-bottom-right-radius: 4px;
}
.OxMenu .OxContainer {
background: transparent;
overflow: hidden;
}
.OxMenu .OxContent {
position: relative;
border-collapse: collapse;
border-spacing: 0;
}
.OxMenu .OxItem {
2010-02-06 06:35:40 +00:00
cursor: default;
2010-02-03 12:12:21 +00:00
}
.OxMenu.OxLarge .OxItem {
height: 20px;
}
.OxMenu.OxMedium .OxItem {
height: 16px;
}
.OxMenu.OxSmall .OxItem {
height: 12px;
}
.OxMenu .OxItem.OxDisabled {
cursor: default;
}
.OxMenu.OxLarge .OxItem .OxCell {
height: 20px;
font-size: 14px;
}
.OxMenu.OxMedium .OxItem .OxCell {
height: 16px;
font-size: 11px;
}
.OxMenu.OxSmall .OxItem .OxCell {
height: 12px;
font-size: 9px;
}
.OxMenu .OxItem .OxCell.OxStatus {
padding-left: 4px;
text-align: right;
}
.OxMenu .OxItem .OxCell.OxIcon {
padding-left: 4px;
}
.OxMenu .OxItem .OxCell.OxIcon img {
position: relative;
top: 2px;
}
.OxMenu.OxLarge .OxItem .OxCell.OxIcon img {
width: 16px;
height: 16px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
}
.OxMenu.OxMedium .OxItem .OxCell.OxIcon img {
width: 12px;
height: 12px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
}
.OxMenu.OxSmall .OxItem .OxCell.OxIcon img {
width: 8px;
height: 8px;
-moz-border-radius: 1px;
-webkit-border-radius: 1px;
}
.OxMenu .OxItem .OxCell.OxTitle {
padding-left: 4px;
white-space: nowrap;
}
.OxMenu .OxItem .OxCell.OxModifiers {
padding-left: 4px;
text-align: right;
}
.OxMenu .OxItem .OxCell.OxKey {
padding-right: 8px;
}
.OxMenu .OxItem .OxCell.OxSubmenu {
padding-right: 8px;
text-align: right;
}
.OxMenu.OxLarge .OxItem .OxCell.OxSubmenu {
font-size: 10px;
}
.OxMenu.OxMedium .OxItem .OxCell.OxSubmenu {
font-size: 8px;
}
.OxMenu.OxSmall .OxItem .OxCell.OxSubmenu {
font-size: 6px;
}
.OxMenu.OxLarge .OxItem .OxCell.OxStatus,
.OxMenu.OxLarge .OxItem .OxCell.OxKey,
.OxMenu.OxLarge .OxItem .OxCell.OxSubmenu {
width: 12px;
}
.OxMenu.OxMedium .OxItem .OxCell.OxStatus,
.OxMenu.OxMedium .OxItem .OxCell.OxKey,
.OxMenu.OxMedium .OxItem .OxCell.OxSubmenu {
width: 10px;
}
.OxMenu.OxSmall .OxItem .OxCell.OxStatus,
.OxMenu.OxSmall .OxItem .OxCell.OxKey,
.OxMenu.OxSmall .OxItem .OxCell.OxSubmenu {
width: 8px;
}
.OxMenu .OxSpace {
height: 4px;
}
.OxMenu .OxLine {
height: 1px;
}
2010-02-05 05:20:13 +00:00
.OxMenu .OxScrollbar {
2010-02-03 12:12:21 +00:00
text-align: center;
2010-02-06 06:35:40 +00:00
cursor: default;
2010-02-03 12:12:21 +00:00
display: none;
}
2010-02-05 05:20:13 +00:00
.OxMenu.OxLarge .OxScrollbar {
2010-02-03 12:12:21 +00:00
height: 16px;
padding-top: 4px;
font-size: 10px;
}
2010-02-05 05:20:13 +00:00
.OxMenu.OxMedium .OxScrollbar {
2010-02-03 12:12:21 +00:00
height: 13px;
padding-top: 3px;
font-size: 8px;
}
2010-02-05 05:20:13 +00:00
.OxMenu.OxSmall .OxScrollbar {
2010-02-03 12:12:21 +00:00
height: 10px;
padding-top: 2px;
font-size: 6px;
}
2010-01-07 20:21:07 +00:00
/*
================================================================================
Panels
================================================================================
*/
.OxCollapsePanel > .OxBar {
position: relative;
z-index: 1;
}
.OxCollapsePanel > .OxBar > .OxButton {
float: left;
margin: 2px 0 0 4px;
}
.OxCollapsePanel > .OxBar > .OxTitle {
float: left;
margin: 3px 0 0 4px;
font-weight: bold;
}
.OxCollapsePanel > .OxContent {
position: relative;
left: 0;
right: 0;
}
.OxPanel {
overflow: auto;
}
.OxSplitPanel {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
overflow: hidden;
}
2010-07-06 18:28:58 +00:00
.OxSplitPanel > div {
position: absolute;
}
2010-02-20 08:29:03 +00:00
/*
================================================================================
Requests
================================================================================
*/
.OxLoadingIcon {
opacity: 0;
2010-02-20 08:50:52 +00:00
-moz-user-select: none;
-webkit-user-select: none;
2010-02-20 08:29:03 +00:00
}
2010-02-20 08:50:52 +00:00
.OxLoadingIcon.OxLarge {
width: 20px;
height: 20px;
}
2010-02-20 08:29:03 +00:00
.OxLoadingIcon.OxMedium {
width: 16px;
height: 16px;
}
2010-02-20 08:50:52 +00:00
.OxLoadingIcon.OxSmall {
width: 12px;
height: 12px;
}
2010-07-03 11:31:25 +00:00
/*
================================================================================
2010-07-05 07:09:34 +00:00
Scrollbars
2010-07-03 11:31:25 +00:00
================================================================================
*/
2010-07-05 07:09:34 +00:00
::-webkit-scrollbar {
width: 12px;
height: 12px;
}
::-webkit-scrollbar-button {
width: 12px;
height: 12px;
}
::-webkit-scrollbar-thumb {
-webkit-border-radius: 6px;
}
::-webkit-scrollbar-track {
-webkit-border-radius: 6px;
}
2010-07-24 01:32:08 +00:00
/*
================================================================================
Miscellaneous
================================================================================
*/
2010-07-05 07:09:34 +00:00
2010-07-24 01:32:08 +00:00
.OxThemeModern .OxTooltip {
position: absolute;
padding: 2px;
opacity: 0;
z-index: 10;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
}