oxjs/source/Ox.UI/css/Ox.UI.css

2374 lines
48 KiB
CSS
Raw Normal View History

@import url("../themes/classic/css/classic.css");
@import url("../themes/modern/css/modern.css");
2010-01-07 20:21:07 +00:00
/*
================================================================================
Base
================================================================================
*/
2011-08-05 18:27:13 +00:00
a {
text-decoration: none;
}
2011-08-07 17:06:12 +00:00
a:hover {
2011-08-05 18:27:13 +00:00
text-decoration: underline;
2011-08-07 16:29:56 +00:00
cursor: pointer;
2011-08-05 18:27:13 +00:00
}
blockquote {
margin: 0 1.5em 0 1.5em;
}
2010-01-07 20:21:07 +00:00
body {
margin: 0;
overflow: hidden;
2011-01-02 10:30:33 +00:00
-moz-user-select: -moz-none;
2011-09-03 15:25:52 +00:00
-o-user-select: none;
2010-06-28 09:16:36 +00:00
-webkit-user-select: none;
}
div {
2011-01-02 10:30:33 +00:00
-moz-user-select: -moz-none;
2011-09-03 15:25:52 +00:00
-o-user-select: none;
2010-06-28 09:16:36 +00:00
-webkit-user-select: none;
2010-01-07 20:21:07 +00:00
}
2010-02-26 13:25:56 +00:00
div, input, textarea {
2010-09-05 15:51:11 +00:00
font-family: Lucida Grande, Segoe UI, DejaVu Sans, Arial;
2010-01-07 20:21:07 +00:00
font-size: 11px;
}
h1 {
margin: 0;
font-size: 16px;
font-weight: normal;
}
img {
-moz-user-drag: none;
2011-09-03 15:25:52 +00:00
-o-user-drag: none;
-webkit-user-drag: none;
}
ol, ul {
padding-left: 1.5em;
margin: 0;
}
p {
text-align: justify;
}
p:first-child {
margin-top: 0;
}
p:last-child {
margin-bottom: 0;
}
2010-02-04 08:02:23 +00:00
td {
padding: 0;
2010-02-04 08:02:23 +00:00
}
2011-01-02 10:30:33 +00:00
.OxSelectable {
-moz-user-select: text;
2011-09-03 15:25:52 +00:00
-o-user-select: text;
2011-01-02 10:30:33 +00:00
-webkit-user-select: text;
}
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;
}
2011-09-01 09:35:45 +00:00
.OxProgressbar {
2011-09-01 21:38:57 +00:00
height: 14px;
border-width: 1px;
border-style: solid;
2011-09-01 09:35:45 +00:00
border-radius: 8px;
}
2011-09-01 13:13:47 +00:00
.OxProgressbar .OxTrack {
float: left;
width: 14px;
height: 14px;
border-width: 1px;
border-style: solid;
border-radius: 8px;
margin: -1px;
}
.OxProgressbar .OxProgress {
2011-09-01 21:38:57 +00:00
width: 14px;
height: 14px;
border-width: 1px;
border-style: solid;
2011-09-01 09:35:45 +00:00
border-radius: 8px;
2011-09-01 21:38:57 +00:00
margin: -1px;
}
2011-09-01 13:13:47 +00:00
.OxProgressbar .OxProgress.OxAnimate {
-webkit-animation: progress 1s linear infinite;
2011-09-01 21:38:57 +00:00
}
2011-09-01 13:13:47 +00:00
@-webkit-keyframes progress {
2011-09-01 21:38:57 +00:00
0% {
background-position: 0 0;
}
100% {
background-position: -32px 0;
}
2011-09-01 09:35:45 +00:00
}
2011-09-01 13:13:47 +00:00
.OxProgressbar .OxText {
float: left;
height: 14px;
//padding-top: 2px;
//font-size: 8px;
text-align: center;
}
.OxProgressbar .OxText.OxSmall {
//padding-top: 1px;
//font-size: 9px;
}
.OxProgressbar .OxButton {
float: left;
margin: -1px;
}
2011-09-01 09:35:45 +00:00
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;
}
.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;
}
.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;
}
2011-04-20 11:29:34 +00:00
/*
================================================================================
Calendar
================================================================================
*/
.OxCalendar {
position: absolute;
2011-05-27 23:49:36 +00:00
overflow: hidden;
2011-04-20 11:29:34 +00:00
}
.OxCalendar > .OxCalendarContainer {
position: absolute;
left: 0;
right: 0;
overflow: hidden;
}
.OxCalendar > .OxCalendarContent {
position: absolute;
}
2011-04-20 11:29:34 +00:00
2011-04-21 03:10:49 +00:00
.OxCalendar .OxBackground {
position: absolute;
top: 0;
bottom: 0;
}
.OxCalendar .OxBackground > div {
position: absolute;
top: 0;
bottom: 0;
}
2011-04-20 11:29:34 +00:00
.OxCalendar .OxLine {
position: absolute;
}
2011-05-25 09:22:16 +00:00
.OxCalendar .OxEvent {
2011-04-20 11:29:34 +00:00
position: absolute;
height: 15px;
padding-top: 1px;
text-overflow: ellipsis;
cursor: pointer;
overflow: hidden;
white-space: nowrap;
}
.OxCalendar .OxEvent .OxEventText {
2011-04-20 11:29:34 +00:00
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
2011-05-25 09:22:16 +00:00
.OxCalendar .OxLine > .OxEvent {
2011-10-10 08:39:20 +00:00
//box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.5);
border-radius: 4px;
2011-05-25 09:22:16 +00:00
}
2011-05-26 18:18:20 +00:00
.OxCalendar .OxLine > .OxEvent.OxCurrent {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.OxCalendar .OxLine > .OxEvent.OxDate {
2011-10-10 08:39:20 +00:00
background: -moz-linear-gradient(top, rgba(96, 96, 192, 0.9), rgba(64, 64, 160, 0.9));
background: -o-linear-gradient(top, rgba(96, 96, 192, 0.9), rgba(64, 64, 160, 0.9));
2011-10-11 07:30:01 +00:00
background: -webkit-linear-gradient(top, rgba(96, 96, 255, 0.9), rgba(64, 64, 224, 0.9));
}
.OxCalendar .OxLine > .OxEvent.OxPlace {
2011-10-10 08:39:20 +00:00
background: -moz-linear-gradient(top, rgba(0, 128, 96, 0.9), rgba(0, 96, 64, 0.9));
background: -o-linear-gradient(top, rgba(0, 128, 96, 0.9), rgba(0, 96, 64, 0.9));
background: -webkit-linear-gradient(top, rgba(0, 128, 96, 0.9), rgba(0, 96, 64, 0.9));
}
.OxCalendar .OxLine > .OxEvent.OxPerson {
2011-10-10 08:39:20 +00:00
background: -moz-linear-gradient(top, rgba(255, 96, 0, 0.9), rgba(224, 64, 0, 0.9));
background: -o-linear-gradient(top, rgba(255, 96, 0, 0.9), rgba(224, 64, 0, 0.9));
background: -webkit-linear-gradient(top, rgba(255, 96, 0, 0.9), rgba(224, 64, 0, 0.9));
}
2011-10-09 21:13:16 +00:00
.OxCalendar .OxLine > .OxEvent.OxOther {
2011-10-10 08:39:20 +00:00
background: -moz-linear-gradient(top, rgba(192, 32, 32, 0.9), rgba(160, 0, 0, 0.9));
background: -o-linear-gradient(top, rgba(192, 32, 32, 0.9), rgba(160, 0, 0, 0.9));
background: -webkit-linear-gradient(top, rgba(192, 32, 32, 0.9), rgba(160, 0, 0, 0.9));
2011-04-20 11:29:34 +00:00
}
2011-04-21 03:10:49 +00:00
2011-04-20 11:29:34 +00:00
.OxCalendar .OxTimeline {
position: absolute;
height: 16px;
//overflow: hidden;
}
2011-05-25 09:22:16 +00:00
.OxCalendar .OxTimeline .OxEvent {
2011-04-20 11:29:34 +00:00
position: absolute;
border-radius: 0;
cursor: ew-resize;
}
.OxCalendar .OxOverlay {
position: absolute;
left: 0;
right: 0;
height: 16px;
}
.OxCalendar .OxOverlay div {
position: absolute;
height: 16px;
cursor: ew-resize;
}
.OxCalendar .OxOverlay div:nth-child(even) {
2011-10-11 07:30:01 +00:00
border-radius: 4px;
}
2011-10-31 12:45:08 +00:00
.OxCalendar .OxCalendarControl,
.OxCalendar .OxEventControl {
position: absolute;
}
.OxCalendar .OxCalendarControl.OxCalendarButtonCenter {
left: 24px;
bottom: 56px;
}
.OxCalendar .OxCalendarControl.OxCalendarButtonDown {
left: 24px;
bottom: 36px;
}
.OxCalendar .OxCalendarControl.OxCalendarButtonLeft {
left: 4px;
bottom: 56px;
}
.OxCalendar .OxCalendarControl.OxCalendarButtonRight {
left: 44px;
bottom: 56px;
}
.OxCalendar .OxCalendarControl.OxCalendarButtonUp {
left: 24px;
bottom: 76px;
}
.OxCalendar .OxEventControl.OxEventName {
right: 24px;
bottom: 36px;
width: 128px;
text-overflow: ellipsis;
}
.OxCalendar .OxEventControl.OxEventDeselectButton {
right: 4px;
bottom: 36px;
}
.OxCalendar .OxRange .OxArrow {
border-radius: 0;
2011-04-20 11:29:34 +00:00
}
2010-01-31 08:03:22 +00:00
/*
================================================================================
Dialog
================================================================================
*/
.OxDialog {
2011-08-15 12:18:14 +00:00
position: absolute;
border-radius: 8px;
z-index: 11;
}
2011-08-15 12:25:58 +00:00
.OxDialog > .OxTitlebar {
2011-08-15 12:18:14 +00:00
position: absolute;
height: 24px;
text-align: center;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
}
2011-08-15 12:25:58 +00:00
.OxDialog > .OxTitlebar > .OxButton {
2011-08-15 12:18:14 +00:00
position: absolute;
}
2011-08-15 12:25:58 +00:00
.OxDialog > .OxTitlebar > .OxTitle {
2011-08-17 11:39:33 +00:00
margin-top: 4px;
font-size: 11px;
2011-08-15 12:18:14 +00:00
font-weight: bold;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
2011-08-15 12:25:58 +00:00
.OxDialog > .OxContent {
2011-08-15 12:18:14 +00:00
position: absolute;
left: 0;
top: 24px;
right: 0;
overflow: auto;
}
2011-08-15 12:25:58 +00:00
.OxDialog > .OxButtonsbar {
2011-08-15 12:18:14 +00:00
position: absolute;
bottom: 0;
height: 24px;
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
cursor: move;
}
2011-08-15 12:25:58 +00:00
.OxDialog > .OxButtonsbar > .OxButtonsLeft {
2011-08-15 12:18:14 +00:00
margin-left: 4px;
float: left;
}
2011-08-15 12:25:58 +00:00
.OxDialog > .OxButtonsbar > .OxButtonsRight {
2011-08-15 12:18:14 +00:00
margin-right: 4px;
float: right;
}
2011-08-15 12:25:58 +00:00
.OxDialog > .OxButtonsbar .OxButton {
2011-08-15 12:18:14 +00:00
margin: 4px 2px 4px 2px;
}
2011-08-15 12:25:58 +00:00
.OxDialog > .OxResize {
2011-08-15 12:18:14 +00:00
position: absolute;
2011-08-15 14:18:27 +00:00
z-index: 12;
2011-08-15 12:18:14 +00:00
}
2011-08-15 12:25:58 +00:00
.OxDialog > .OxResizeTopLeft {
2011-08-15 12:18:14 +00:00
left: -2px;
top: -2px;
width: 10px;
height: 10px;
cursor: nwse-resize;
}
2011-08-15 12:25:58 +00:00
.OxDialog > .OxResizeTop {
2011-08-15 12:18:14 +00:00
left: 8px;
top: -2px;
right: 8px;
height: 5px;
cursor: ns-resize;
}
2011-08-15 12:25:58 +00:00
.OxDialog > .OxResizeTopRight {
2011-08-15 12:18:14 +00:00
right: -2px;
top: -2px;
width: 10px;
height: 10px;
cursor: nesw-resize;
}
2011-08-15 12:25:58 +00:00
.OxDialog > .OxResizeLeft {
2011-08-15 12:18:14 +00:00
left: -2px;
top: 8px;
width: 5px;
bottom: 8px;
cursor: ew-resize;
}
2011-08-15 12:25:58 +00:00
.OxDialog > .OxResizeRight {
2011-08-15 12:18:14 +00:00
right: -2px;
top: 8px;
width: 5px;
bottom: 8px;
cursor: ew-resize;
}
2011-08-15 12:25:58 +00:00
.OxDialog > .OxResizeBottomLeft {
2011-08-15 12:18:14 +00:00
left: -2px;
bottom: -2px;
width: 10px;
height: 10px;
cursor: nesw-resize;
}
2011-08-15 12:25:58 +00:00
.OxDialog > .OxResizeBottom {
2011-08-15 12:18:14 +00:00
left: 8px;
bottom: -2px;
right: 8px;
height: 5px;
cursor: ns-resize;
}
2011-08-15 12:25:58 +00:00
.OxDialog > .OxResizeBottomRight {
2011-08-15 12:18:14 +00:00
right: -2px;
bottom: -2px;
width: 10px;
height: 10px;
cursor: nwse-resize;
}
.OxDialogBox {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
overflow: hidden;
}
2011-05-12 03:29:35 +00:00
/*
================================================================================
Document
================================================================================
*/
.OxDocument {
padding: 8px;
-moz-user-select: text;
2011-09-03 15:25:52 +00:00
-o-user-select: text;
2011-05-12 03:29:35 +00:00
-webkit-user-select: text;
}
.OxDocument div {
border-width: 0;
2011-05-22 12:39:57 +00:00
border-style: solid;
2011-05-12 03:29:35 +00:00
//font-size: 12px;
line-height: 15px;
-moz-user-select: text;
2011-09-03 15:25:52 +00:00
-o-user-select: text;
2011-05-12 03:29:35 +00:00
-webkit-user-select: text;
}
.OxDocument code {
font-family: Menlo, Monaco, DejaVu Sans Mono, Bitstream Vera Sans Mono, Consolas, Lucida Console;
}
.OxDocument h1 {
font-weight: bold;
font-size: 16px;
line-height: 20px;
}
.OxDocument table {
border-spacing: 0;
//border: 1px solid red;
}
.OxDocument td {
padding: 0 4px 0 4px;
//border: 1px solid rgb(128, 128, 128);
vertical-align: top;
}
.OxDocument td:first-child {
padding-left: 0;
}
.OxDocument td:last-child {
padding-right: 0;
}
/*
================================================================================
Documentation
================================================================================
*/
.OxDocPage code {
//border: 1px solid rgb(232, 232, 232);
//background: rgb(248, 248, 248);
white-space: nowrap;
}
2010-07-05 07:09:34 +00:00
/*
================================================================================
Drag & Drop
================================================================================
*/
.OxDrag {
cursor: move;
2011-01-13 01:58:38 +00:00
opacity: 0.5;
2010-07-05 07:09:34 +00:00
}
2010-01-07 20:21:07 +00:00
/*
================================================================================
Forms
================================================================================
*/
2011-11-02 10:23:15 +00:00
input {
border: 1px;
}
2010-02-26 13:22:27 +00:00
input,
textarea {
2010-01-07 20:21:07 +00:00
padding: 0;
2011-11-02 10:23:15 +00:00
//border: 1px;
2010-01-07 20:21:07 +00:00
margin: 0;
}
input[type=button],
input[type=reset],
input[type=submit] {
-moz-box-sizing: content-box;
2011-09-03 15:25:52 +00:00
-o-box-sizing: content-box;
2010-01-07 20:21:07 +00:00
-webkit-box-sizing: content-box;
}
2010-02-06 06:35:40 +00:00
input[type=image] {
cursor: default;
2011-03-07 22:31:46 +00:00
-moz-user-select: none;
2011-09-03 15:25:52 +00:00
-o-user-select: none;
2011-03-07 22:31:46 +00:00
-webkit-user-select: none;
2010-02-06 06:35:40 +00:00
}
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;
2011-09-03 15:25:52 +00:00
border-radius: 10px;
2010-01-07 20:21:07 +00:00
}
input.OxMedium {
2010-01-07 20:21:07 +00:00
height: 14px;
padding: 0 6px 0 6px;
font-size: 11px;
2011-09-03 15:25:52 +00:00
border-radius: 8px;
2010-01-07 20:21:07 +00:00
}
input.OxMedium.OxRounded {
padding: 0 6px 0 6px;
2011-09-03 15:25:52 +00:00
border-radius: 8px;
}
input.OxMedium.OxSquare {
padding: 0 2px 0 2px;
2011-09-03 15:25:52 +00:00
border-radius: 0;
}
input.OxSmall {
2010-01-07 20:21:07 +00:00
height: 10px;
padding: 0 4px 0 4px;
font-size: 8px;
2011-09-03 15:25:52 +00:00
border-radius: 6px;
2010-01-07 20:21:07 +00:00
}
2011-03-07 22:31:46 +00:00
2010-01-07 20:21:07 +00:00
input[type=image] {
2011-03-07 22:31:46 +00:00
height: 10px;
2011-03-07 23:48:47 +00:00
width: 10px;
2011-03-07 22:31:46 +00:00
padding: 2px;
}
2011-03-07 22:31:46 +00:00
2010-01-07 20:21:07 +00:00
input::-moz-focus-inner {
border: none;
}
2010-02-26 13:22:27 +00:00
textarea {
2011-11-02 10:23:15 +00:00
padding: 2px 6px 2px 6px;
//padding: 0 4px 0 4px;
2011-09-03 15:25:52 +00:00
border-radius: 8px;
2010-02-26 13:26:50 +00:00
resize: none;
2010-02-26 13:22:27 +00:00
}
2011-02-09 17:56:35 +00:00
textarea.OxSquare {
2011-09-03 15:25:52 +00:00
border-radius: 0;
2011-02-09 17:56:35 +00:00
}
2011-08-12 21:00:42 +00:00
2012-01-03 10:25:15 +00:00
/*
--------------------------------------------------------------------------------
OxArrayEditable
--------------------------------------------------------------------------------
*/
2012-01-10 14:49:28 +00:00
.OxArrayEditable.OxArrayEditableInput {
2012-01-03 10:25:15 +00:00
padding: 4px;
}
2012-01-10 14:49:28 +00:00
.OxArrayEditable.OxArrayEditableTextarea .OxEditableElement {
padding: 4px;
border-top: 1px solid rgb(128, 128, 128);
}
.OxArrayEditable.OxArrayEditableTextarea .OxEditableElement:first-child {
border-top: 0px
}
2012-01-03 10:25:15 +00:00
2010-09-03 08:47:40 +00:00
/*
--------------------------------------------------------------------------------
OxButton
--------------------------------------------------------------------------------
*/
.OxButton {
2011-05-22 12:39:57 +00:00
border-width: 1px;
border-style: solid;
2010-09-03 08:47:40 +00:00
text-align: center;
}
2010-01-07 20:21:07 +00:00
.OxButton.OxSymbol,
2010-02-19 14:55:10 +00:00
.OxButton.OxSymbol:active,
.OxButton.OxSymbol:focus {
2011-03-07 22:31:46 +00:00
padding: 2;
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);
2011-09-03 15:25:52 +00:00
-o-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
-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;
2011-09-03 15:25:52 +00:00
border-radius: 0;
2010-01-07 20:21:07 +00:00
}
.OxButtonGroup > .OxButton:last-child {
border-right-width: 1px;
}
2010-02-10 09:59:59 +00:00
.OxButtonGroup > .OxButton.OxLarge:first-child {
2011-09-03 15:25:52 +00:00
border-top-left-radius: 6px;
border-bottom-left-radius: 6px;
2010-02-10 09:59:59 +00:00
}
.OxButtonGroup > .OxButton.OxLarge:last-child {
2011-09-03 15:25:52 +00:00
border-top-right-radius: 6px;
border-bottom-right-radius: 6px;
2010-02-10 09:59:59 +00:00
}
.OxButtonGroup > .OxButton.OxMedium:first-child {
2011-09-03 15:25:52 +00:00
border-top-left-radius: 8px;
border-bottom-left-radius: 8px;
2010-01-07 20:21:07 +00:00
}
2010-02-10 09:59:59 +00:00
.OxButtonGroup > .OxButton.OxMedium:last-child {
2011-09-03 15:25:52 +00:00
border-top-right-radius: 8px;
border-bottom-right-radius: 8px;
2010-01-07 20:21:07 +00:00
}
2010-02-10 09:59:59 +00:00
.OxButtonGroup > .OxButton.OxSmall:first-child {
2011-09-03 15:25:52 +00:00
border-top-left-radius: 2px;
border-bottom-left-radius: 2px;
2010-01-07 20:21:07 +00:00
}
2010-02-10 09:59:59 +00:00
.OxButtonGroup > .OxButton.OxSmall:last-child {
2011-09-03 15:25:52 +00:00
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
2010-01-07 20:21:07 +00:00
}
.OxButtonGroup > .OxButton.OxTab {
2011-09-03 15:25:52 +00:00
border-top-left-radius: 8px;
border-top-right-radius: 8px;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
2010-01-07 20:21:07 +00:00
}
.OxButtonGroup > .OxButton.OxTab:first-child {
2011-09-03 15:25:52 +00:00
border-bottom-left-radius: 0;
2010-01-07 20:21:07 +00:00
}
.OxButtonGroup > .OxButton.OxTab:last-child {
2011-09-03 15:25:52 +00:00
border-bottom-right-radius: 0;
2010-01-07 20:21:07 +00:00
}
/*
--------------------------------------------------------------------------------
2010-09-03 08:47:40 +00:00
OxCheckbox
--------------------------------------------------------------------------------
*/
div.OxCheckbox {
height: 16px;
2011-09-03 15:25:52 +00:00
border-radius: 8px;
2010-09-03 08:47:40 +00:00
}
input.OxCheckbox {
2011-05-22 12:39:57 +00:00
border-width: 1px;
border-style: solid;
2011-09-03 15:25:52 +00:00
border-radius: 8px;
2010-09-03 08:47:40 +00:00
}
2011-11-30 14:51:29 +00:00
.OxCheckboxGroup.OxGroup > div.OxCheckbox {
2010-09-03 08:47:40 +00:00
float: left;
}
2011-11-30 14:51:29 +00:00
.OxCheckboxGroup.OxGroup > div.OxCheckbox {
2010-09-03 08:47:40 +00:00
//padding-right: 16px;
margin-right: -16px;
}
2011-11-30 14:51:29 +00:00
.OxCheckboxGroup.OxGroup > div.OxCheckbox:last-child {
2010-09-03 08:47:40 +00:00
//padding-right: 0;
margin-right: 0;
}
2011-11-30 14:51:29 +00:00
.OxCheckboxGroup.OxList > div.OxCheckbox {
margin-bottom: 8px;
}
.OxCheckboxGroup.OxList > div.OxCheckbox:last-child {
margin-bottom: 0;
}
2010-09-03 08:47:40 +00:00
/*
--------------------------------------------------------------------------------
2011-08-12 21:00:42 +00:00
OxForm
--------------------------------------------------------------------------------
*/
2011-11-30 14:51:29 +00:00
.OxFormDescription {
margin-bottom: 8px;
}
2011-08-12 21:00:42 +00:00
.OxFormItem {
margin-top: 8px;
}
.OxFormItem:first-child {
margin-top: 0;
}
.OxFormMessage {
//width: 100%;
height: 10px;
margin: 2px 8px 0 0;
text-align: right;
display: none;
}
/*
--------------------------------------------------------------------------------
2010-02-19 10:24:02 +00:00
OxInput
--------------------------------------------------------------------------------
*/
2011-05-22 12:39:57 +00:00
2010-02-19 10:24:02 +00:00
div.OxInput {
2010-09-03 08:47:40 +00:00
height: 16px;
2010-02-19 10:24:02 +00:00
}
div.OxInput.OxMedium {
2010-09-03 08:47:40 +00:00
height: 16px;
2010-02-19 10:24:02 +00:00
}
div.OxInput.OxRounded {
2011-09-03 15:25:52 +00:00
border-radius: 8px;
}
div.OxInput.OxSquare {
2011-09-03 15:25:52 +00:00
border-radius: 0;
}
2010-02-27 08:46:49 +00:00
div.OxInput > .OxInputLabel {
2010-02-20 07:46:31 +00:00
float: left;
2010-09-03 08:47:40 +00:00
padding: 0 6px 0 6px;
2010-02-20 07:46:31 +00:00
cursor: default;
}
2010-09-03 08:47:40 +00:00
input.OxInput {
2011-05-22 12:39:57 +00:00
border-width: 1px;
border-style: solid;
}
div.OxInput > input.OxInput {
2010-02-19 10:24:02 +00:00
float: left;
}
2011-08-12 21:00:42 +00:00
/*
--------------------------------------------------------------------------------
OxEditable
--------------------------------------------------------------------------------
*/
2011-10-24 15:58:51 +00:00
.OxEditableElement > .OxValue {
2011-11-03 17:10:12 +00:00
//cursor: pointer;
2011-08-12 21:00:42 +00:00
padding: 0 0 0 1px;
}
2011-10-24 15:58:51 +00:00
.OxEditableElement div.OxInput {
2011-08-12 21:00:42 +00:00
padding: 0 1px 0 0;
2011-11-03 17:10:12 +00:00
//margin-bottom: -3px;
2011-08-12 21:00:42 +00:00
}
2011-10-24 15:58:51 +00:00
.OxEditableElement input.OxInput {
2011-08-12 21:00:42 +00:00
padding: 0 1px 0 0;
border: 0;
}
2011-10-24 15:58:51 +00:00
.OxEditableElement textarea.OxInput {
2011-08-15 16:41:54 +00:00
padding: 0 0 0 1px;
border: 0;
}
2011-08-12 21:00:42 +00:00
2010-09-03 08:47:40 +00:00
/*
--------------------------------------------------------------------------------
OxInputGroup
--------------------------------------------------------------------------------
*/
.OxInputGroup {
height: 16px;
2010-02-19 10:24:02 +00:00
}
2010-09-03 08:47:40 +00:00
.OxInputGroup > div {
2010-02-19 10:24:02 +00:00
float: left;
2010-02-26 13:22:27 +00:00
}
2010-02-27 08:46:49 +00:00
/*
--------------------------------------------------------------------------------
OxLabel
--------------------------------------------------------------------------------
*/
.OxLabel {
height: 14px;
2011-05-22 12:39:57 +00:00
border-width: 1px;
border-style: solid;
2011-09-03 15:25:52 +00:00
border-radius: 8px;
2010-09-03 08:47:40 +00:00
padding: 0 6px 0 6px;
text-overflow: ellipsis;
cursor: default;
overflow: hidden;
white-space: nowrap;
2010-02-19 10:24:02 +00:00
}
2011-11-30 14:51:29 +00:00
.OxLabel.OxSquare {
padding: 0 2px 0 2px;
border-radius: 0;
}
/*
--------------------------------------------------------------------------------
OxObjectInput
--------------------------------------------------------------------------------
*/
.OxObjectInput > div {
2011-12-01 10:52:23 +00:00
margin-top: 8px;
2011-11-30 14:51:29 +00:00
}
2011-12-01 10:52:23 +00:00
.OxObjectInput > div:first-child {
margin-top: 0;
}
.OxObjectArrayInput > div {
padding: 8px 0 8px 0;
border-top-width: 1px;
border-top-style: dashed;
border-top-color: rgb(128, 128, 128);
}
.OxObjectArrayInput > div.OxFirst {
padding-top: 0;
border-top-width: 0;
}
.OxObjectArrayInput > div.OxLast {
padding-bottom: 0;
2011-11-30 14:51:29 +00:00
}
2010-02-19 10:24:02 +00:00
/*
--------------------------------------------------------------------------------
2010-09-03 08:47:40 +00:00
OxPicker
--------------------------------------------------------------------------------
*/
.OxPicker {
position: absolute;
2010-12-26 20:16:35 +00:00
z-index: 13;
2011-09-03 15:25:52 +00:00
border-radius: 0 8px 8px 8px;
2010-09-03 08:47:40 +00:00
-moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.75);
2011-09-03 15:25:52 +00:00
-o-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.75);
2010-09-03 08:47:40 +00:00
-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.75);
}
.OxPicker > div:first-child {
background: rgb(240, 240, 240);
2011-09-03 15:25:52 +00:00
border-radius: 0 8px 0 0;
2010-09-03 08:47:40 +00:00
}
.OxPicker > .OxBar {
2011-09-03 15:25:52 +00:00
border-radius: 0 0 8px 8px;
2010-09-03 08:47:40 +00:00
}
.OxPicker > .OxBar > .OxLabel {
float: left;
margin: 4px 0 4px 4px;
}
.OxPicker > .OxBar > .OxButton {
float: right;
margin: 4px 4px 4px 0;
}
/*
--------------------------------------------------------------------------------
2010-01-07 20:21:07 +00:00
OxRange
--------------------------------------------------------------------------------
*/
.OxRange {
2010-09-03 08:47:40 +00:00
height: 16px;
2010-01-07 20:21:07 +00:00
}
2010-09-03 08:47:40 +00:00
.OxRange > .OxArrow {
float: right;
2010-01-07 20:21:07 +00:00
}
2010-09-03 08:47:40 +00:00
.OxRange > .OxArrow:first-child {
2010-01-07 20:21:07 +00:00
float: left;
}
.OxRange > .OxTrack {
2010-09-03 08:47:40 +00:00
float: right;
2011-05-22 12:39:57 +00:00
border-width: 1px;
border-style: solid;
2010-01-07 20:21:07 +00:00
height: 14px;
2011-09-03 15:25:52 +00:00
border-radius: 8px;
2010-01-07 20:21:07 +00:00
}
2010-09-03 08:47:40 +00:00
.OxRange > .OxTrack > div {
float: left;
height: 16px;
padding: 1px;
margin: -1px;
}
.OxRange > .OxTrack > div > img {
2010-01-07 20:21:07 +00:00
float: left;
height: 14px;
2010-09-03 08:47:40 +00:00
-webkit-user-select: none;
}
.OxRange > .OxTrack > div > img.OxFirstChild {
2011-09-03 15:25:52 +00:00
border-top-left-radius: 7px;
border-bottom-left-radius: 7px;
2010-09-03 08:47:40 +00:00
}
.OxRange > .OxTrack > div > img.OxLastChild {
2011-09-03 15:25:52 +00:00
border-top-right-radius: 7px;
border-bottom-right-radius: 7px;
2010-09-03 08:47:40 +00:00
}
.OxRange > .OxTrack > div > img.OxFirstChild.OxLastChild {
margin-left: 7px;
2011-09-03 15:25:52 +00:00
border-radius: 0;
2010-01-07 20:21:07 +00:00
}
.OxRange > .OxTrack > .OxThumb {
float: left;
2010-09-03 08:47:40 +00:00
margin: -1px;
text-align: center;
2010-01-07 20:21:07 +00:00
}
2011-12-21 13:42:47 +00:00
.OxRange > .OxTrack > .OxThumb.OxTransparent {
border: 1px solid white;
2011-12-22 05:52:46 +00:00
background: rgba(255, 255, 255, 0.25);
2011-12-21 13:42:47 +00:00
box-shadow: 0 0 1px white inset;
2010-01-07 20:21:07 +00:00
}
/*
--------------------------------------------------------------------------------
OxSelect
--------------------------------------------------------------------------------
*/
2011-05-22 12:39:57 +00:00
.OxSelect {
2010-09-03 08:47:40 +00:00
height: 14px;
2011-05-22 12:39:57 +00:00
border-width: 1px;
border-style: solid;
2011-09-03 15:25:52 +00:00
border-radius: 8px;
}
2011-11-30 14:51:29 +00:00
.OxSelect.OxRounded.OxSelected {
2011-09-03 15:25:52 +00:00
border-radius: 8px 8px 0 0;
}
2011-11-30 14:51:29 +00:00
.OxSelect.OxSquare {
border-radius: 0;
}
2010-09-03 08:47:40 +00:00
.OxSelect > .OxTitle {
float: left;
height: 14px;
padding-left: 6px;
2011-05-22 12:39:57 +00:00
border-width: 1px;
2010-09-03 08:47:40 +00:00
text-align: left;
text-overflow: ellipsis;
2010-02-06 06:35:40 +00:00
cursor: default;
2010-09-03 08:47:40 +00:00
overflow: hidden;
white-space: nowrap;
//margin-right: -16px;
}
2010-09-03 08:47:40 +00:00
.OxSelect > .OxButton {
2010-03-06 09:54:30 +00:00
float: right;
2010-09-03 08:47:40 +00:00
margin: -1px;
}
.OxLabelSelect > .OxLabel {
float: left;
margin: -1px;
2010-09-03 08:47:40 +00:00
}
.OxLabelSelect > .OxTitle {
border-left-width: 1px;
border-left-style: solid;
border-top-left-radius: 8px;
border-bottom-left-radius: 8px;
}
.OxLabelSelect.OxSelected {
border-bottom-left-radius: 8px;
2010-09-03 08:47:40 +00:00
}
.OxLabelSelect.OxSelected > .OxTitle {
border-bottom-left-radius: 0;
}
2010-09-03 08:47:40 +00:00
/*
*/
.OxButton.OxOverlapLeft,
2011-01-23 04:59:16 +00:00
.OxxxCheckbox.OxOverlapLeft,
2010-09-03 08:47:40 +00:00
.OxLabel.OxOverlapLeft,
.OxxxSelect.OxOverlapLeft {
padding-left: 20px;
padding-right: 8px;
margin-left: -16px;
}
.OxButton.OxOverlapRight,
2011-01-23 04:59:16 +00:00
.OxxxCheckbox.OxOverlapRight,
2010-09-03 08:47:40 +00:00
.OxLabel.OxOverlapRight,
.OxxxSelect.OxOverlapRight {
padding-left: 8px;
padding-right: 20px;
margin-right: -16px;
}
.OxButton[type=image].OxOverlapLeft {
2011-03-07 22:31:46 +00:00
padding-left: 17px;
padding-right: 3px;
2010-09-03 08:47:40 +00:00
}
.OxButton[type=image].OxOverlapRight {
2011-03-07 22:31:46 +00:00
padding-left: 3px;
padding-right: 17px;
2010-09-03 08:47:40 +00:00
}
2011-01-23 04:59:16 +00:00
.OxCheckbox.OxOverlapLeft > .OxInput {
padding-left: 20px;
margin-left: -16px;
}
.OxCheckbox.OxOverlapRight > .OxLabel {
//padding-left: 8px;
padding-right: 20px;
margin-right: -16px;
}
2010-09-03 08:47:40 +00:00
.OxSelect.OxOverlapLeft {
//padding-left: 8px;
padding-left: 16px;
margin-left: -18px;
}
.OxSelect.OxOverlapRight {
//padding-left: 8px;
padding-right: 16px;
margin-right: -18px;
}
2010-02-09 05:43:36 +00:00
2011-11-30 14:51:29 +00:00
/*
--------------------------------------------------------------------------------
OxSpreadsheet
--------------------------------------------------------------------------------
*/
.OxSpreadsheet {
border-width: 1px;
border-style: solid;
border-color: rgb(192, 192, 192);
}
.OxSpreadsheet > * {
float: left;
}
2011-08-07 16:29:56 +00:00
/*
================================================================================
Images
================================================================================
*/
.OxReflection > img {
-moz-transform: scaleY(-1);
2011-09-03 15:25:52 +00:00
-o-transform: scaleY(-1);
2011-08-07 16:29:56 +00:00
-webkit-transform: scaleY(-1);
}
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
opacity: 0;
2010-02-09 05:43:36 +00:00
overflow: hidden;
z-index: 10;
}
.OxLayer.OxDialogLayer {
z-index: 10;
2010-12-26 20:16:35 +00:00
}
.OxLayer.OxMenuLayer {
z-index: 11;
2010-02-09 05:43:36 +00:00
}
2010-06-25 15:55:25 +00:00
/*
================================================================================
Lists
================================================================================
*/
.OxIconList.OxBoth {
overflow-x: hidden;
2010-06-25 15:55:25 +00:00
}
.OxIconList .OxPage {
2011-03-04 03:50:37 +00:00
position: absolute;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
}
2011-10-16 13:06:56 +00:00
.OxInfoList .OxPage {
position: absolute;
}
.OxIconList .OxItem {
float: left;
2011-09-29 17:25:50 +00:00
margin: 2px;
//opacity: 0.9;
2010-09-06 23:44:37 +00:00
}
.OxIconList .OxItem.OxHover,
.OxIconList .OxItem.OxSelected {
//opacity: 1;
}
2011-08-19 06:41:48 +00:00
.OxIconList .OxItem > div,
2011-10-16 12:32:02 +00:00
.OxInfoList .OxInfoIcon > div {
position: relative;
}
2011-10-16 12:32:02 +00:00
.OxIconList .OxItem > .OxIcon {
2011-08-07 02:33:26 +00:00
overflow: hidden;
}
2011-08-18 14:03:48 +00:00
.OxIconList .OxItem > .OxIcon > img,
2011-08-19 06:41:48 +00:00
.OxIconList .OxItem > .OxIcon > .OxVideoPlayer,
2011-10-16 12:32:02 +00:00
.OxInfoList .OxInfoIcon > .OxIcon > img,
.OxInfoList .OxInfoIcon > .OxIcon > .OxVideoPlayer {
position: absolute;
left: 0;
right: 0;
2010-09-06 23:44:37 +00:00
bottom: 0;
margin: auto;
2010-09-06 23:44:37 +00:00
border: 2px solid rgba(0, 0, 0, 0);
cursor: pointer;
2011-08-06 17:41:01 +00:00
border-radius: 4px;
2010-09-06 23:44:37 +00:00
}
2011-08-18 14:03:48 +00:00
2011-08-19 06:41:48 +00:00
.OxIconList .OxItem > .OxReflection,
2011-10-16 12:32:02 +00:00
.OxIconList .OxInfoIcon > .OxReflection {
2010-09-06 23:44:37 +00:00
overflow: hidden;
}
2011-08-19 06:41:48 +00:00
.OxIconList .OxItem > .OxReflection > div,
2011-10-16 12:32:02 +00:00
.OxInfoList .OxInfoIcon > .OxReflection > div {
2010-09-06 23:44:37 +00:00
position: absolute;
left: 0;
top: 0;
right: 0;
margin: auto;
}
2011-08-19 06:41:48 +00:00
.OxIconList .OxItem > .OxReflection > img,
2011-10-16 12:32:02 +00:00
.OxInfoList .OxInfoIcon > .OxReflection > img {
2010-09-06 23:44:37 +00:00
position: absolute;
left: 0;
top: 0;
right: 0;
margin: auto;
}
2011-08-19 06:41:48 +00:00
.OxIconList .OxItem > .OxText,
2011-10-16 12:32:02 +00:00
.OxInfoList .OxInfoIcon > .OxText {
2010-09-06 23:44:37 +00:00
text-align: center;
}
2011-08-19 06:41:48 +00:00
.OxIconList .OxItem > .OxText > div,
2011-10-16 12:32:02 +00:00
.OxInfoList .OxInfoIcon > .OxText > div {
2010-09-06 23:44:37 +00:00
display: inline-block;
2011-10-13 12:47:02 +00:00
//font-size: 9px;
font-weight: bold;
text-align: center;
2010-09-06 23:44:37 +00:00
padding: 1px 2px;
border: 2px solid rgba(0, 0, 0, 0);
max-width: 124px;
2010-09-06 23:44:37 +00:00
word-wrap: break-word;
cursor: pointer;
2011-09-03 15:25:52 +00:00
border-radius: 4px;
2010-09-06 23:44:37 +00:00
//-moz-user-select: text;
//-webkit-user-select: text;
}
.OxIconList .OxItem > .OxText > div > div,
2011-10-16 12:32:02 +00:00
.OxIconList .OxInfoIcon > .OxText > div > div > div {
2011-10-13 12:47:02 +00:00
//font-size: 9px;
font-weight: bold;
text-align: center;
}
2011-10-16 12:32:02 +00:00
.OxInfoList .OxInfoIcon {
text-align: center;
//overflow: hidden;
}
.OxInfoList .OxInfoIcon .OxReflection {
overflow: hidden;
}
2011-03-04 03:50:37 +00:00
.OxTextList {
top: 0;
bottom: 0;
}
2010-06-25 15:55:25 +00:00
.OxTextList .OxBar {
2010-09-05 15:51:11 +00:00
//z-index: 10;
//-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 .OxHead {
2011-03-03 23:16:49 +00:00
position: absolute;
2010-06-25 15:55:25 +00:00
left: 0;
height: 16px;
overflow: hidden;
white-space: nowrap;
}
.OxTextList .OxHead .OxHeadCell {
2010-06-25 15:55:25 +00:00
float: left;
}
.OxTextList .OxHead .OxHeadCell:first-child {
padding-left: 2px;
2010-06-25 15:55:25 +00:00
}
.OxTextList .OxHead .OxTitle {
2010-06-25 15:55:25 +00:00
float: left;
height: 14px;
padding: 2px 2px 0 2px;
2010-06-25 15:55:25 +00:00
font-weight: bold;
font-size: 10px;
text-overflow: ellipsis;
2010-09-05 14:24:22 +00:00
//cursor: pointer;
2010-06-25 15:55:25 +00:00
overflow: hidden;
white-space: nowrap;
}
.OxTextList .OxHead .OxTitle img {
2011-11-02 18:21:49 +00:00
display: block;
width: 10px;
height: 10px;
margin: 1px 0 0 -1px;
2010-06-25 15:55:25 +00:00
}
.OxTextList .OxHead .OxOrder {
2010-06-25 15:55:25 +00:00
float: left;
display: none;
}
.OxTextList .OxHead .OxHeadCell.OxSelected .OxOrder {
2010-09-05 14:24:22 +00:00
//cursor: pointer;
2010-06-25 15:55:25 +00:00
display: block;
}
.OxTextList .OxHead .OxResize {
2010-06-25 15:55:25 +00:00
float: left;
width: 5px;
height: 16px;
}
.OxTextList .OxHead .OxResize.OxResizable {
cursor: ew-resize;
}
.OxTextList .OxHead .OxResize div {
2010-06-25 15:55:25 +00:00
float: left;
width: 2px;
height: 16px;
2010-06-25 15:55:25 +00:00
}
.OxTextList .OxHead .OxResize div.OxCenter {
2010-06-25 15:55:25 +00:00
width: 1px;
}
2010-09-04 14:28:40 +00:00
.OxTextList .OxBar .OxSelect {
2011-03-03 23:16:49 +00:00
position: absolute;
2010-06-25 15:55:25 +00:00
right: 0px;
2011-01-03 12:01:38 +00:00
width: 11px;
2010-06-25 15:55:25 +00:00
height: 16px;
2011-01-03 12:01:38 +00:00
border-width: 0 1px 0 0;
2011-05-22 12:39:57 +00:00
border-style: solid;
2010-09-04 14:28:40 +00:00
background: rgba(0, 0, 0, 0);
2010-06-25 15:55:25 +00:00
font-size: 11px;
text-align: center;
cursor: pointer;
2010-09-04 14:28:40 +00:00
overflow: hidden;
2011-09-03 15:25:52 +00:00
border-radius: 0;
2010-09-04 14:28:40 +00:00
}
.OxTextList .OxBar .OxSelect > input {
margin-right: -3px;
2010-06-25 15:55:25 +00:00
}
.OxTextList .OxBody {
2011-03-03 23:16:49 +00:00
float: left;
2011-03-04 03:50:37 +00:00
position: absolute;
2010-06-25 15:55:25 +00:00
left: 0;
2011-01-06 03:10:40 +00:00
top: 0;
2010-06-25 15:55:25 +00:00
right: 0;
bottom: 0;
}
2011-02-07 18:57:05 +00:00
.OxTextList .OxContent {
2010-06-29 21:58:17 +00:00
//width: 100%;
2010-06-25 15:55:25 +00:00
}
2011-02-07 18:57:05 +00:00
.OxTextList .OxItem {
2010-06-25 15:55:25 +00:00
height: 16px;
cursor: default;
2010-06-25 15:55:25 +00:00
}
2011-02-07 18:57:05 +00:00
.OxTextList .OxItem .OxCell {
2010-06-25 15:55:25 +00:00
float: left;
height: 14px;
2011-01-06 03:10:40 +00:00
padding: 1px 4px 1px 4px;
2011-02-07 18:57:05 +00:00
border-right: 1px solid;
2010-06-25 15:55:25 +00:00
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
2011-02-07 18:57:05 +00:00
.OxTextList .OxItem .OxCell.OxEdit {
height: 16px;
padding: 0;
}
2011-02-07 18:57:05 +00:00
.OxTextList .OxItem .OxCell > img {
2011-11-02 18:21:49 +00:00
display: block;
2011-01-06 03:10:40 +00:00
width: 16px;
height: 16px;
margin: -1px 0 0 -4px;
}
2011-02-07 18:57:05 +00:00
.OxTextList .OxItem .OxSpace {
2010-06-25 15:55:25 +00:00
float: left;
width: 4px;
height: 16px;
}
2011-02-07 18:57:05 +00:00
.OxTextList .OxItem .OxLine {
2010-06-25 15:55:25 +00:00
float: left;
width: 1px;
height: 16px;
}
2011-02-07 18:57:05 +00:00
.OxTextList .OxItem.OxSelected .OxCell.OxClickable {
2011-01-13 01:58:38 +00:00
cursor: pointer;
}
2011-02-07 18:57:05 +00:00
.OxTextList .OxItem.OxSelected .OxCell.OxEditable {
2011-01-13 01:58:38 +00:00
cursor: text;
}
2011-02-07 18:57:05 +00:00
.OxTextList .OxItem.OxSelected.OxDrag .OxCell {
2011-01-16 22:33:48 +00:00
cursor: ns-resize;
}
2010-06-29 21:58:17 +00:00
.OxTextList .OxPage {
2011-03-04 03:50:37 +00:00
position: absolute;
2010-06-29 21:58:17 +00:00
}
2011-08-28 06:23:15 +00:00
2011-02-07 18:57:05 +00:00
.OxTreeList .OxItem .OxCell {
border-right-width: 0
}
2010-07-06 18:28:58 +00:00
2011-03-05 02:08:30 +00:00
/*
================================================================================
Maps
================================================================================
*/
2011-03-05 17:46:35 +00:00
.OxMap {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
}
.OxMap > * {
position: absolute;
}
2011-05-21 17:56:15 +00:00
.OxMap .OxRange .OxArrow {
border-radius: 0;
}
2011-03-05 17:46:35 +00:00
2011-10-30 21:05:32 +00:00
.OxMap .OxMapControl,
.OxMap .OxPlaceControl {
2011-03-05 02:08:30 +00:00
position: absolute;
2011-10-30 21:05:32 +00:00
border-width: 2px;
}
.OxMap .OxMapControl.OxButton,
.OxMap .OxPlaceControl.OxButton {
2011-05-22 12:39:57 +00:00
width: 10px;
height: 10px;
padding: 1px;
2011-04-19 14:11:04 +00:00
}
2011-10-30 21:05:32 +00:00
.OxMap .OxMapControl.OxLabel,
.OxMap .OxPlaceControl.OxLabel {
height: 12px;
font-size: 10px;
}
.OxMap .OxMapControl.OxMapButtonCenter {
2011-10-04 02:26:24 +00:00
left: 24px;
top: 24px;
}
2011-10-30 21:05:32 +00:00
.OxMap .OxMapControl.OxMapButtonEast {
2011-10-04 02:26:24 +00:00
left: 44px;
top: 24px;
}
2011-10-30 21:05:32 +00:00
.OxMap .OxMapControl.OxMapButtonNorth {
2011-10-04 02:26:24 +00:00
left: 24px;
top: 4px;
}
2011-10-30 21:05:32 +00:00
.OxMap .OxMapControl.OxMapButtonSouth {
2011-10-04 02:26:24 +00:00
left: 24px;
top: 44px;
}
2011-10-30 21:05:32 +00:00
.OxMap .OxMapControl.OxMapButtonWest {
2011-10-04 02:26:24 +00:00
left: 4px;
top: 24px;
}
2011-10-30 21:05:32 +00:00
.OxMap .OxLabel.OxMapControl.OxMapScale {
2011-10-04 02:26:24 +00:00
right: 4px;
2011-11-11 00:06:15 +00:00
bottom: 19px;
2011-10-30 21:05:32 +00:00
}
.OxMap .OxPlaceControl.OxPlaceFlag {
right: 180px;
2011-10-30 21:17:10 +00:00
top: 4px;
2011-10-30 21:05:32 +00:00
width: 12px;
2011-05-22 12:39:57 +00:00
height: 12px;
2011-10-31 11:29:59 +00:00
border-width: 2px;
border-style: solid;
2011-10-30 21:05:32 +00:00
border-radius: 8px;
}
.OxMap .OxPlaceControl.OxPlaceFlag > img {
width: 12px;
height: 12px;
border-radius: 6px;
}
.OxMap .OxPlaceControl.OxPlaceName {
right: 24px;
2011-10-30 21:17:10 +00:00
top: 4px;
2011-10-30 21:05:32 +00:00
width: 136px;
text-overflow: ellipsis;
}
.OxMap .OxPlaceControl.OxPlaceDeselectButton {
right: 4px;
2011-10-30 21:17:10 +00:00
top: 4px;
2011-03-05 02:08:30 +00:00
}
2011-05-22 17:12:21 +00:00
.OxFlag {
width: 16px;
height: 16px;
border-radius: 8px;
}
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-09-03 22:12:25 +00:00
-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
2011-09-03 15:25:52 +00:00
-o-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
2010-09-03 22:12:25 +00:00
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
2010-02-08 09:35:24 +00:00
}
.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;
2011-09-03 15:25:52 +00:00
-o-user-select: none;
2010-02-08 11:02:43 +00:00
-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-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;
2010-12-26 20:16:35 +00:00
z-index: 12;
2011-09-03 15:25:52 +00:00
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
2010-02-08 14:42:00 +00:00
-moz-user-select: none;
2011-09-03 15:25:52 +00:00
-o-user-select: none;
2010-02-08 14:42:00 +00:00
-webkit-user-select: none;
2010-02-03 12:12:21 +00:00
}
.OxMenu.OxRight {
2011-09-03 15:25:52 +00:00
border-top-right-radius: 4px;
2010-02-03 12:12:21 +00:00
}
.OxMenu .OxTop {
height: 4px;
}
.OxMenu.OxRight .OxTop {
2011-09-03 15:25:52 +00:00
border-top-right-radius: 4px;
2010-02-03 12:12:21 +00:00
}
.OxMenu .OxBottom {
height: 4px;
2011-09-03 15:25:52 +00:00
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
2010-02-03 12:12:21 +00:00
}
.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;
2011-09-03 15:25:52 +00:00
border-radius: 2px;
2010-02-03 12:12:21 +00:00
}
.OxMenu.OxMedium .OxItem .OxCell.OxIcon img {
width: 12px;
height: 12px;
2011-09-03 15:25:52 +00:00
border-radius: 2px;
2010-02-03 12:12:21 +00:00
}
.OxMenu.OxSmall .OxItem .OxCell.OxIcon img {
width: 8px;
height: 8px;
2011-09-03 15:25:52 +00:00
border-radius: 1px;
2010-02-03 12:12:21 +00:00
}
.OxMenu .OxItem .OxCell.OxTitle {
padding-left: 4px;
2011-11-02 18:21:49 +00:00
text-overflow: ellipsis;
overflow: hidden;
2010-02-03 12:12:21 +00:00
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;
2010-11-28 15:06:47 +00:00
margin: 0 0 0 0;
2010-01-07 20:21:07 +00:00
}
.OxCollapsePanel > .OxBar > .OxTitle {
float: left;
2010-11-28 15:06:47 +00:00
margin: 1px 0 0 0;
2010-01-07 20:21:07 +00:00
font-weight: bold;
}
2011-01-14 09:54:28 +00:00
.OxCollapsePanel > .OxBar > .OxExtras {
float: right;
}
.OxCollapsePanel > .OxBar > .OxExtras > .OxButton {
//position: absolute;
//right: 0px;
2011-09-03 15:25:52 +00:00
border-radius: 0;
2011-01-14 09:54:28 +00:00
}
.OxCollapsePanel > .OxBar > .OxExtras > .OxSelect {
//position: absolute;
//right: 0px;
width: 16px;
2010-12-23 17:05:46 +00:00
height: 16px;
padding: 1px 1px 0 0;
border-width: 0;
2011-09-03 15:25:52 +00:00
border-radius: 0;
background: rgba(0, 0, 0, 0);
}
.OxCollapsePanel > .OxBar > .OxExtras > .OxSelect.OxFocus {
-moz-box-shadow: 0 0 0;
-o-box-shadow: 0 0 0;
-webkit-box-shadow: 0 0 0;
2010-12-23 17:05:46 +00:00
}
2010-01-07 20:21:07 +00:00
.OxCollapsePanel > .OxContent {
position: relative;
left: 0;
right: 0;
}
.OxPanel {
overflow: auto;
}
.OxSplitPanel {
2011-03-03 23:16:49 +00:00
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
overflow: hidden;
}
.OxSplitPanel > * {
position: absolute;
}
.OxSplitPanel_ {
2011-03-03 21:02:35 +00:00
display: box;
display: -moz-box;
2011-09-03 15:25:52 +00:00
display: -o-box;
2011-03-03 21:02:35 +00:00
display: -webkit-box;
overflow: hidden;
box-flex: 0;
-mox-box-flex: 0;
-webkit-box-flex: 0;
}
2011-03-03 23:16:49 +00:00
.OxSplitPanel_.OxHorizontal {
2011-03-03 21:02:35 +00:00
box-orient: horizontal;
-moz-box-orient: horizontal;
2011-09-03 15:25:52 +00:00
-o-box-orient: horizontal;
2011-03-03 21:02:35 +00:00
-webkit-box-orient: horizontal;
}
2011-03-03 23:16:49 +00:00
.OxSplitPanel_.OxVertical {
2011-03-03 21:02:35 +00:00
box-orient: vertical;
-moz-box-orient: vertical;
2011-09-03 15:25:52 +00:00
-o-box-orient: vertical;
2011-03-03 21:02:35 +00:00
-webkit-box-orient: vertical;
}
2011-03-03 23:16:49 +00:00
.OxSplitPanel_ > * {
2011-03-03 21:02:35 +00:00
box-flex: 0;
-mox-box-flex: 0;
-webkit-box-flex: 0;
}
2011-03-03 23:16:49 +00:00
.OxSplitPanel_ > .OxSeparator {
2011-03-03 21:02:35 +00:00
display: -webkit-box;
position: relative;
z-index: 2;
}
2011-03-03 23:16:49 +00:00
.OxSplitPanel_ > .OxSeparator > * {
2011-03-03 21:02:35 +00:00
-webkit-box-flex: 0;
}
2011-03-03 23:16:49 +00:00
.OxSplitPanel_ > .OxSeparator > .OxLine {
2011-03-03 21:02:35 +00:00
background-color: black;
}
2011-03-03 23:16:49 +00:00
.OxSplitPanel_.OxHorizontal > .OxSeparator {
2011-03-03 21:02:35 +00:00
width: 5px;
margin: 0 -2px 0 -2px;
cursor: ew-resize;
}
2011-03-03 23:16:49 +00:00
.OxSplitPanel_.OxHorizontal > .OxSeparator > .OxLine {
2011-03-03 21:02:35 +00:00
width: 1px;
}
2011-03-03 23:16:49 +00:00
.OxSplitPanel_.OxHorizontal > .OxSeparator > .OxSpace {
2011-03-03 21:02:35 +00:00
width: 2px;
}
2011-03-03 23:16:49 +00:00
.OxSplitPanel_.OxVertical > .OxSeparator {
2011-03-03 21:02:35 +00:00
height: 5px;
margin: -2px 0 -2px 0;
cursor: ns-resize;
}
2011-03-03 23:16:49 +00:00
.OxSplitPanel_.OxVertical > .OxSeparator > .OxLine {
2011-03-03 21:02:35 +00:00
height: 1px;
}
2011-03-03 23:16:49 +00:00
.OxSplitPanel_.OxVertical > .OxSeparator > .OxSpace {
2011-03-03 21:02:35 +00:00
height: 2px;
}
2011-08-17 14:59:37 +00:00
.OxTabPanel > .OxBar {
text-align: center;
}
.OxTabPanel > .OxBar > .OxButtonGroup {
position: absolute;
left: 0;
top: 4px;
right: 0;
margin: auto;
}
2010-02-20 08:29:03 +00:00
/*
================================================================================
Requests
================================================================================
*/
.OxLoadingIcon {
opacity: 0;
2010-02-20 08:50:52 +00:00
-moz-user-select: none;
2011-09-03 15:25:52 +00:00
-o-user-select: none;
2010-02-20 08:50:52 +00:00
-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 {
2011-09-03 15:25:52 +00:00
border-radius: 6px;
2010-07-05 07:09:34 +00:00
}
::-webkit-scrollbar-track {
2011-09-03 15:25:52 +00:00
border-radius: 6px;
2010-07-05 07:09:34 +00:00
}
/*
================================================================================
SyntaxHightlighter
================================================================================
*/
.OxSyntaxHighlighter > div {
display: table-cell;
padding: 4px;
font-family: Menlo, Monaco, DejaVu Sans Mono, Bitstream Vera Sans Mono, Consolas, Lucida Console;
//line-height: 14px;
}
.OxSyntaxHighlighter > .OxLineNumbers {
text-align: right;
-moz-user-select: none;
2011-09-03 15:25:52 +00:00
-o-user-select: none;
-webkit-user-select: none;
}
.OxSyntaxHighlighter > .OxSourceCode {
white-space: nowrap;
-moz-user-select: text;
2011-09-03 15:25:52 +00:00
-o-user-select: text;
-webkit-user-select: text;
}
.OxSyntaxHighlighter > .OxSourceCode .OxLinebreak {
//-moz-user-select: none;
//-webkit-user-select: none;
}
2010-09-17 22:10:07 +00:00
/*
================================================================================
Video
================================================================================
*/
2011-02-03 22:58:31 +00:00
.OxAnnotation {
border-width: 0 0 1px 0;
border-style: solid;
2011-10-27 13:13:28 +00:00
//padding: 4px 4px 0 4px;
2011-02-03 22:58:31 +00:00
}
.OxAnnotation:last-child {
border-width: 0;
}
2011-10-27 13:13:28 +00:00
/*
2011-02-09 17:56:35 +00:00
.OxAnnotation.OxEdit {
padding: 0;
}
.OxAnnotation textarea {
padding: 4px;
border: 0;
}
2011-10-27 13:13:28 +00:00
*/
2011-02-03 22:58:31 +00:00
.OxPosterMarker {
position: absolute;
display: none;
}
.OxPosterMarkerCenter {
position: absolute;
border: 1px solid rgba(255, 255, 255, 0.1);
background: transparent;
}
.OxPosterMarkerLeft,
.OxPosterMarkerRight {
position: absolute;
background: rgba(0, 0, 0, 0.5);
}
.OxVideoEditor {
2010-12-31 11:01:35 +00:00
overflow-x: hidden;
overflow-y: auto;
}
.OxVideoEditor .OxVideoPlayer {
2010-09-17 22:10:07 +00:00
position: absolute;
margin: 4px;
//background: red;
}
.OxLargeVideoTimeline {
2010-09-17 22:10:07 +00:00
position: absolute;
height: 72px;
margin: 0 4px 0 4px;
overflow: hidden;
}
.OxLargeVideoTimeline > div {
2010-09-17 22:10:07 +00:00
position: absolute;
height: 72px;
}
.OxLargeVideoTimeline > div > img {
2010-09-17 22:10:07 +00:00
position: absolute;
top: 4px;
}
.OxLargeVideoTimeline .OxCut {
2010-09-17 22:10:07 +00:00
position: absolute;
top: 64px;
width: 6px;
height: 6px;
margin-left: -3px;
z-index: 8;
2010-09-17 22:10:07 +00:00
}
.OxLargeVideoTimeline .OxMarkerPointIn {
2010-09-17 22:10:07 +00:00
position: absolute;
top: 63px;
width: 7px;
height: 7px;
margin-left: -6px;
z-index: 8;
}
.OxLargeVideoTimeline .OxMarkerPointOut {
position: absolute;
top: 63px;
width: 7px;
height: 7px;
z-index: 8;
2010-09-17 22:10:07 +00:00
}
.OxLargeVideoTimeline .OxMarkerPosition {
2010-09-17 22:10:07 +00:00
position: absolute;
top: 2px;
width: 11px;
height: 11px;
margin-left: -5px;
z-index: 8;
2010-09-17 22:10:07 +00:00
}
.OxLargeVideoTimeline .OxSubtitle {
2010-09-17 22:10:07 +00:00
position: absolute;
bottom: 9px;
border: 1px solid rgba(255, 255, 255, 0.5);
padding: 1px;
background: rgba(0, 0, 0, 0.25);
font-size: 8px;
line-height: 10px;
text-align: center;
text-overflow: ellipsis;
text-shadow: rgba(0, 0, 0, 1) 1px 1px 1px;
color: rgb(255, 255, 255);
cursor: default;
overflow: hidden;
z-index: 8;
2010-09-17 22:10:07 +00:00
-moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
2011-09-03 15:25:52 +00:00
-o-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
2010-09-17 22:10:07 +00:00
-webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}
.OxLargeVideoTimeline .OxSubtitle.OxHighlight {
2010-09-17 22:10:07 +00:00
border-color: rgba(255, 255, 0, 1);
}
.OxTimelineSmall {
position: absolute;
}
.OxTimelineSmall > div {
position: absolute;
height: 18px;
margin: 3px 4px 3px 4px;
overflow: hidden;
}
.OxTimelineSmall > div > img {
position: absolute;
left: 0;
top: 0;
}
.OxTimelineSmall > div > .OxTimelineSmallImage {
margin-top: 1px;
}
.OxSmallVideoTimeline .OxInterface,
.OxBlockVideoTimeline .OxInterface {
position: absolute;
z-index: 9;
}
.OxSmallVideoTimeline .OxMarkerPlay {
2010-09-17 22:10:07 +00:00
position: absolute;
width: 14px;
height: 14px;
border-width: 1px;
border-style: solid;
border-radius: 8px;
}
.OxSmallVideoTimeline .OxMarkerPlay > div {
width: 10px;
height: 10px;
border-width: 2px;
border-style: solid;
border-radius: 7px;
}
.OxSmallVideoTimeline .OxMarkerPlay > div > div {
width: 8px;
height: 8px;
border-width: 1px;
border-style: solid;
border-radius: 5px;
2010-09-17 22:10:07 +00:00
}
.OxSmallVideoTimeline .OxMarkerPointIn,
.OxBlockVideoTimeline .OxMarkerPointIn {
2010-09-17 22:10:07 +00:00
position: absolute;
width: 7px;
height: 7px;
margin-left: -2px;
z-index: 8;
}
.OxSmallVideoTimeline .OxMarkerPointIn {
top: 15px;
}
.OxSmallVideoTimeline .OxMarkerPointOut,
.OxBlockVideoTimeline .OxMarkerPointOut {
position: absolute;
width: 7px;
height: 7px;
2010-09-17 22:10:07 +00:00
margin-left: 4px;
z-index: 8;
}
.OxSmallVideoTimeline .OxMarkerPointOut {
top: 15px;
}
.OxSmallVideoTimeline .OxMarkerPosition,
.OxBlockVideoTimeline .OxMarkerPosition {
position: absolute;
width: 11px;
height: 11px;
z-index: 8;
}
.OxSmallVideoTimeline .OxMarkerPosition {
top: 2px;
2010-09-17 22:10:07 +00:00
}
.OxVideoPlayer {
position: absolute;
2010-09-17 22:10:07 +00:00
}
.OxVideoPlayer.OxFocus {
-moz-box-shadow: 0 0 2px rgb(128, 128, 128);
2011-09-03 15:25:52 +00:00
-o-box-shadow: 0 0 2px rgb(128, 128, 128);
-webkit-box-shadow: 0 0 2px rgb(128, 128, 128);
2010-09-17 22:10:07 +00:00
}
2011-12-23 08:26:51 +00:00
.OxVideoPlayer .OxBar.OxControls > * {
float: left;
}
.OxVideoPlayer .OxControls {
position: absolute;
2010-09-17 22:10:07 +00:00
}
.OxVideoPlayer .OxFind {
position: absolute;
right: 0;
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
display: none;
}
.OxVideoPlayer .OxFind > * {
float: left;
2010-09-17 22:10:07 +00:00
}
.OxVideoPlayer .OxFind .OxResults {
width: 24px;
padding-top: 2px;
font-size: 9px;
text-align: center;
}
.OxVideoPlayer .OxInput {
background: transparent;
-moz-box-shadow: 0 0 0;
2011-09-03 15:25:52 +00:00
-o-box-shadow: 0 0 0;
-webkit-box-shadow: 0 0 0;
}
.OxVideoPlayer div.OxInput.OxFocus {
-moz-box-shadow: 0 0 0;
2011-09-03 15:25:52 +00:00
-o-box-shadow: 0 0 0;
-webkit-box-shadow: 0 0 0;
}
.OxVideoPlayer input.OxInput {
height: 16px;
//padding: 0 4px 0 4px;
border: 0;
border-radius: 8px;
}
.OxVideoPlayer .OxPositionInput > input.OxInput {
padding: 0 3px 0 3px;
}
.OxVideoPlayer .OxSelect {
width: 16px;
height: 16px;
border-width: 0;
border-radius: 0;
background: rgba(0, 0, 0, 0);
}
.OxVideoPlayer .OxSelect > .OxButton {
margin: 0;
}
2011-10-22 21:03:42 +00:00
.OxVideoPlayer .OxCopyrightIcon {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
margin: auto;
}
2010-09-17 22:10:07 +00:00
.OxVideoPlayer .OxLoadingIcon {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
2010-09-17 22:10:07 +00:00
margin: auto;
opacity: 1;
2010-09-17 22:10:07 +00:00
}
.OxVideoPlayer .OxLogo {
position: absolute;
opacity: 0.25;
}
.OxVideoPlayer .OxPlayIcon {
2010-09-17 22:10:07 +00:00
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
margin: auto;
border: 2px solid rgb(255, 255, 255);
2010-09-17 22:10:07 +00:00
background: rgba(0, 0, 0, 0.5);
opacity: 0;
2010-09-17 22:10:07 +00:00
}
.OxVideoPlayer .OxPointMarker {
2011-09-02 00:32:23 +00:00
display: none;
2010-09-17 22:10:07 +00:00
position: absolute;
width: 16px;
height: 16px;
2011-09-02 00:32:23 +00:00
opacity: 0.5;
2010-09-17 22:10:07 +00:00
}
.OxVideoPlayer .OxPointMarkerInTop {
2010-09-17 22:10:07 +00:00
left: 4px;
top: 4px;
}
.OxVideoPlayer .OxPointMarkerInBottom {
2010-09-17 22:10:07 +00:00
left: 4px;
bottom: 4px;
2010-09-17 22:10:07 +00:00
}
.OxVideoPlayer .OxPointMarkerOutTop {
2010-09-17 22:10:07 +00:00
right: 4px;
top: 4px;
}
.OxVideoPlayer .OxPointMarkerOutBottom {
2010-09-17 22:10:07 +00:00
right: 4px;
bottom: 4px;
}
.OxVideoPlayer .OxPosition {
height: 12px;
padding: 2px;
font-size: 9px;
text-align: center;
}
.OxVideoPlayer .OxPositionInput {
display: none;
}
.OxVideoPlayer .OxPoster {
position: absolute;
}
2011-12-22 15:47:46 +00:00
.OxVideoPlayer .OxSettings {
position: absolute;
right: 0;
bottom: 16px;
display: none;
}
2011-12-22 15:47:46 +00:00
.OxVideoPlayer .OxSettings > div {
width: 64px;
}
.OxVideoPlayer .OxSettings > .OxItem {
height: 16px;
}
2011-12-22 15:47:46 +00:00
.OxVideoPlayer .OxSettings > .OxItem:first-child {
border-top-left-radius: 8px;
border-top-right-radius: 8px;
}
2011-12-22 15:47:46 +00:00
.OxVideoPlayer .OxSettings > .OxItem > * {
float: left;
}
2011-12-22 15:47:46 +00:00
.OxVideoPlayer .OxSettings > .OxItem > div {
width: 48px;
height: 14px;
padding-top: 2px;
font-size: 9px;
text-align: right;
cursor: default;
}
2011-12-22 15:47:46 +00:00
.OxVideoPlayer .OxSettings > .OxItem > img {
width: 9px;
height: 9px;
padding: 3px 3px 4px 4px;
}
2011-12-22 15:47:46 +00:00
.OxVideoPlayer .OxSettings > .OxLine {
height: 1px;
}
.OxVideoPlayer .OxSettings > .OxSpace {
height: 0;
}
2010-09-17 22:10:07 +00:00
.OxVideoPlayer .OxSubtitle {
position: absolute;
left: 0;
right: 0;
text-align: center;
text-shadow: rgba(0, 0, 0, 1) 0 0 4px;
color: rgb(255, 255, 255);
}
.OxVideoPlayer .OxTitle {
padding-top: 1px;
text-align: center;
overflow: hidden;
text-overflow: ellipsis;
}
.OxVideoPlayer .OxVideoContainer {
position: absolute;
background: rgb(0, 0, 0);
overflow: hidden;
}
.OxVideoPlayer .OxVolume {
position: absolute;
left: 0;
height: 16px;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
display: none;
}
.OxVideoPlayer .OxVolume > * {
float: left;
}
.OxVideoPlayer .OxVolume .OxRange .OxTrack {
padding: 1px;
border: 0;
}
.OxVideoPlayer .OxVolume .OxRange .OxThumb {
padding: 1px 7px 1px 7px;
border: 0;
}
.OxVideoPlayer .OxVolume .OxVolumeValue {
width: 24px;
padding-top: 2px;
font-size: 9px;
text-align: center;
2010-09-17 22:10:07 +00:00
}
2011-08-08 13:58:19 +00:00
.OxVideoPreview {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
}
.OxVideoPreview > .OxFrame {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 16px;
overflow: hidden;
}
.OxVideoPreview > OxFrame > img {
position: absolute;
2011-08-08 13:58:19 +00:00
}
.OxVideoPreview > .OxTimeline {
position: absolute;
bottom: 0;
height: 16px;
}
.OxVideoPreview > .OxInterface {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
cursor: pointer;
}
2010-07-24 01:32:08 +00:00
/*
================================================================================
Miscellaneous
================================================================================
*/
2010-07-05 07:09:34 +00:00
2011-10-26 14:52:03 +00:00
.OxColor {
border-radius: 8px;
padding: 0 4px 1px 4px;
overflow: hidden;
text-overflow: ellipsis;
}
.OxLabel.OxColor, .OxSelect.OxColor {
padding: 0;
}
2010-12-26 20:16:35 +00:00
.OxText {
//line-height: 15px;
}
.OxTooltip {
2010-07-24 01:32:08 +00:00
position: absolute;
2011-08-28 06:23:15 +00:00
padding: 1px 3px 1px 3px;
2010-09-03 08:47:40 +00:00
font-size: 9px;
//opacity: 0;
z-index: 1001;
2011-09-03 15:25:52 +00:00
border-radius: 4px;
2010-07-24 01:32:08 +00:00
}