2011-04-27 19:24:33 +00:00
|
|
|
@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
|
|
|
}
|
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;
|
2010-06-28 09:16:36 +00:00
|
|
|
-webkit-user-select: none;
|
2010-03-06 12:59:13 +00:00
|
|
|
}
|
|
|
|
div {
|
2011-01-02 10:30:33 +00:00
|
|
|
-moz-user-select: -moz-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;
|
|
|
|
}
|
2011-01-11 06:17:45 +00:00
|
|
|
img {
|
|
|
|
-moz-user-drag: none;
|
|
|
|
-webkit-user-drag: none;
|
|
|
|
}
|
2010-02-04 08:02:23 +00:00
|
|
|
td {
|
2010-03-06 12:59:13 +00:00
|
|
|
padding: 0;
|
2010-02-04 08:02:23 +00:00
|
|
|
}
|
2011-01-02 10:30:33 +00:00
|
|
|
.OxSelectable {
|
|
|
|
-moz-user-select: text;
|
|
|
|
-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;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
2011-05-25 16:36:55 +00:00
|
|
|
.OxCalendar > .OxCalendarContent {
|
2011-05-27 09:15:55 +00:00
|
|
|
position: absolute;
|
2011-05-25 16:36:55 +00:00
|
|
|
}
|
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;
|
2011-05-25 17:32:04 +00:00
|
|
|
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-05-25 16:36:55 +00:00
|
|
|
border-radius: 4px;
|
|
|
|
background: -moz-linear-gradient(top, rgba(255, 0, 0, 0.9), rgba(224, 0, 0, 0.9));
|
|
|
|
background: -webkit-linear-gradient(top, rgba(255, 0, 0, 0.9), rgba(224, 0, 0, 0.9));
|
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;
|
|
|
|
}
|
2011-05-25 16:36:55 +00:00
|
|
|
.OxCalendar .OxLine > .OxEvent.OxDate {
|
2011-05-27 11:33:01 +00:00
|
|
|
background: -moz-linear-gradient(top, rgba(192, 0, 0, 0.9), rgba(160, 0, 0, 0.9));
|
|
|
|
background: -webkit-linear-gradient(top, rgba(192, 0, 0, 0.9), rgba(160, 0, 0, 0.9));
|
2011-05-25 16:36:55 +00:00
|
|
|
}
|
|
|
|
.OxCalendar .OxLine > .OxEvent.OxPlace {
|
|
|
|
//background: -moz-linear-gradient(top, rgba(255, 0, 64, 0.9), rgba(224, 0, 32, 0.9));
|
|
|
|
//background: -webkit-linear-gradient(top, rgba(255, 0, 64, 0.9), rgba(224, 0, 32, 0.9));
|
|
|
|
}
|
|
|
|
.OxCalendar .OxLine > .OxEvent.OxPerson {
|
2011-05-27 12:20:54 +00:00
|
|
|
background: -moz-linear-gradient(top, rgba(255, 96, 0, 0.9), rgba(224, 80, 0, 0.9));
|
|
|
|
background: -webkit-linear-gradient(top, rgba(255, 96, 0, 0.9), rgba(224, 80, 0, 0.9));
|
2011-05-25 16:36:55 +00:00
|
|
|
}
|
2011-05-25 09:22:16 +00:00
|
|
|
.OxCalendar .OxLine > .OxEvent.OxSelected {
|
2011-05-25 16:36:55 +00:00
|
|
|
background: -moz-linear-gradient(top, rgba(128, 128, 255, 0.9), rgba(96, 96, 224, 0.9));
|
|
|
|
background: -webkit-linear-gradient(top, rgba(128, 128, 255, 0.9), rgba(96, 96, 224, 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;
|
|
|
|
}
|
2011-05-27 08:19:51 +00:00
|
|
|
.OxCalendar .OxOverlay div:nth-child(even) {
|
|
|
|
height: 14px;
|
2011-05-25 19:33:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.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-15 12:18:14 +00:00
|
|
|
margin-top: 3px;
|
|
|
|
font-size: 13px;
|
|
|
|
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;
|
|
|
|
-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;
|
|
|
|
-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;
|
|
|
|
}
|
|
|
|
|
2011-05-08 12:14:07 +00:00
|
|
|
/*
|
|
|
|
================================================================================
|
|
|
|
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
|
|
|
|
================================================================================
|
|
|
|
*/
|
|
|
|
|
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;
|
2011-03-07 22:31:46 +00:00
|
|
|
-moz-user-select: none;
|
|
|
|
-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-02-06 06:21:01 +00:00
|
|
|
/*
|
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;
|
|
|
|
}
|
2010-02-06 06:21:01 +00:00
|
|
|
*/
|
|
|
|
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;
|
|
|
|
}
|
2010-02-06 06:21:01 +00:00
|
|
|
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;
|
|
|
|
}
|
2011-01-11 06:17:45 +00:00
|
|
|
input.OxMedium.OxRounded {
|
|
|
|
padding: 0 6px 0 6px;
|
|
|
|
-moz-border-radius: 8px;
|
|
|
|
-webkit-border-radius: 8px;
|
|
|
|
}
|
|
|
|
input.OxMedium.OxSquare {
|
|
|
|
padding: 0 2px 0 2px;
|
|
|
|
-moz-border-radius: 0;
|
|
|
|
-webkit-border-radius: 0;
|
|
|
|
}
|
2010-02-06 06:21:01 +00:00
|
|
|
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;
|
|
|
|
}
|
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;
|
2010-02-06 06:21:01 +00:00
|
|
|
}
|
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 {
|
2010-02-27 07:54:45 +00:00
|
|
|
//padding: 2px 4px 2px 4px;
|
|
|
|
padding: 0 4px 0 4px;
|
2010-02-26 13:26:50 +00:00
|
|
|
resize: none;
|
2010-02-27 07:54:45 +00:00
|
|
|
-moz-border-radius: 8px;
|
|
|
|
-webkit-border-radius: 8px;
|
2010-02-26 13:22:27 +00:00
|
|
|
}
|
2011-02-09 17:56:35 +00:00
|
|
|
textarea.OxSquare {
|
|
|
|
-moz-border-radius: 0;
|
|
|
|
-webkit-border-radius: 0;
|
|
|
|
}
|
2011-08-12 21:00:42 +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);
|
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-09-03 08:47:40 +00:00
|
|
|
-moz-border-radius-topleft: 8px;
|
|
|
|
-moz-border-radius-bottomleft: 8px;
|
|
|
|
-webkit-border-top-left-radius: 8px;
|
|
|
|
-webkit-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 {
|
2010-09-03 08:47:40 +00:00
|
|
|
-moz-border-radius-topright: 8px;
|
|
|
|
-moz-border-radius-bottomright: 8px;
|
|
|
|
-webkit-border-top-right-radius: 8px;
|
|
|
|
-webkit-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 {
|
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 {
|
2011-05-12 04:15:01 +00:00
|
|
|
-moz-border-radius-topleft: 8px;
|
|
|
|
-moz-border-radius-topright: 8px;
|
2010-01-07 20:21:07 +00:00
|
|
|
-moz-border-radius-bottomleft: 0;
|
|
|
|
-moz-border-radius-bottomright: 0;
|
2011-05-12 04:15:01 +00:00
|
|
|
-webkit-border-top-left-radius: 8px;
|
|
|
|
-webkit-border-top-right-radius: 8px;
|
2010-01-07 20:21:07 +00:00
|
|
|
-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-09-03 08:47:40 +00:00
|
|
|
OxCheckbox
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
div.OxCheckbox {
|
|
|
|
height: 16px;
|
|
|
|
-moz-border-radius: 8px;
|
|
|
|
-webkit-border-radius: 8px;
|
|
|
|
}
|
|
|
|
input.OxCheckbox {
|
2011-05-22 12:39:57 +00:00
|
|
|
border-width: 1px;
|
|
|
|
border-style: solid;
|
2010-09-03 08:47:40 +00:00
|
|
|
-moz-border-radius: 8px;
|
|
|
|
-webkit-border-radius: 8px;
|
|
|
|
}
|
|
|
|
.OxCheckboxGroup > div.OxCheckbox {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
.OxCheckboxGroup > div.OxCheckbox {
|
|
|
|
//padding-right: 16px;
|
|
|
|
margin-right: -16px;
|
|
|
|
}
|
|
|
|
.OxCheckboxGroup > div.OxCheckbox:last-child {
|
|
|
|
//padding-right: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
--------------------------------------------------------------------------------
|
2011-08-12 21:00:42 +00:00
|
|
|
OxForm
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
.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
|
|
|
}
|
2011-01-11 06:17:45 +00:00
|
|
|
div.OxInput.OxRounded {
|
|
|
|
-moz-border-radius: 8px;
|
|
|
|
-webkit-border-radius: 8px;
|
|
|
|
}
|
|
|
|
div.OxInput.OxSquare {
|
|
|
|
-moz-border-radius: 0;
|
|
|
|
-webkit-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;
|
2010-02-19 10:24:02 +00:00
|
|
|
float: left;
|
|
|
|
}
|
2011-08-12 21:00:42 +00:00
|
|
|
/*
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
OxEditable
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
.OxEditable > .OxValue {
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 0 0 0 1px;
|
|
|
|
}
|
|
|
|
.OxEditable div.OxInput {
|
|
|
|
height: 14px;
|
|
|
|
padding: 0 1px 0 0;
|
|
|
|
}
|
|
|
|
.OxEditable input.OxInput {
|
|
|
|
height: 14px;
|
|
|
|
padding: 0 1px 0 0;
|
|
|
|
border: 0;
|
|
|
|
}
|
2011-08-15 16:41:54 +00:00
|
|
|
.OxEditable textarea.OxInput {
|
|
|
|
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;
|
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-27 08:46:49 +00:00
|
|
|
-moz-border-radius: 8px;
|
|
|
|
-webkit-border-radius: 8px;
|
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;
|
2010-09-03 08:47:40 +00:00
|
|
|
-moz-border-radius: 0 8px 8px 8px;
|
|
|
|
-webkit-border-radius: 0 8px 8px 8px;
|
|
|
|
-moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.75);
|
|
|
|
-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.75);
|
|
|
|
}
|
|
|
|
.OxPicker > div:first-child {
|
|
|
|
background: rgb(240, 240, 240);
|
|
|
|
-moz-border-radius: 0 8px 0 0;
|
|
|
|
-webkit-border-radius: 0 8px 0 0;
|
|
|
|
}
|
|
|
|
.OxPicker > .OxBar {
|
|
|
|
-moz-border-radius: 0 0 8px 8px;
|
|
|
|
-webkit-border-radius: 0 0 8px 8px;
|
|
|
|
}
|
|
|
|
.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;
|
|
|
|
-moz-border-radius: 8px;
|
|
|
|
-webkit-border-radius: 8px;
|
|
|
|
}
|
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 {
|
|
|
|
-moz-border-radius: 7px;
|
|
|
|
-webkit-border-top-left-radius: 7px;
|
|
|
|
-webkit-border-bottom-left-radius: 7px;
|
|
|
|
}
|
|
|
|
.OxRange > .OxTrack > div > img.OxLastChild {
|
|
|
|
-moz-border-radius: 0 7px 7px 0;
|
|
|
|
-webkit-border-top-right-radius: 7px;
|
|
|
|
-webkit-border-bottom-right-radius: 7px;
|
|
|
|
}
|
|
|
|
.OxRange > .OxTrack > div > img.OxFirstChild.OxLastChild {
|
|
|
|
margin-left: 7px;
|
|
|
|
-moz-border-radius: 0;
|
|
|
|
-webkit-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;
|
|
|
|
//margin-left: -1px;
|
|
|
|
//margin-top: -1px;
|
|
|
|
text-align: center;
|
2010-01-07 20:21:07 +00:00
|
|
|
}
|
|
|
|
.OxRange > .OxTrack > .OxThumb:first-child {
|
2010-09-03 08:47:40 +00:00
|
|
|
//margin-top: -1px;
|
2010-01-07 20:21:07 +00:00
|
|
|
}
|
2010-02-06 06:21:01 +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;
|
2010-09-03 08:47:40 +00:00
|
|
|
-moz-border-radius: 8px;
|
|
|
|
-webkit-border-radius: 8px;
|
2010-02-06 06:21:01 +00:00
|
|
|
}
|
2011-05-30 11:47:30 +00:00
|
|
|
.OxSelect.OxSelected,
|
|
|
|
.OxSelect.OxSelected > .OxLabel {
|
2010-09-03 08:47:40 +00:00
|
|
|
-moz-border-radius: 8px 8px 0 0;
|
|
|
|
-webkit-border-radius: 8px 8px 0 0;
|
2010-02-06 06:21:01 +00:00
|
|
|
}
|
2011-05-30 11:47:30 +00:00
|
|
|
.OxSelect > .OxLabel {
|
|
|
|
float: left;
|
|
|
|
margin: -1px;
|
|
|
|
}
|
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-02-06 06:21:01 +00:00
|
|
|
}
|
2010-09-03 08:47:40 +00:00
|
|
|
.OxSelect.OxOverlapLeft > .OxTitle {
|
|
|
|
//padding-left: 20px;
|
|
|
|
//padding-right: 8px;
|
|
|
|
//margin-left: -32px;
|
|
|
|
}
|
|
|
|
.OxSelect.OxOverlapRight > .OxTitle {
|
|
|
|
//padding-left: 8px;
|
|
|
|
//padding-right: 20px;
|
|
|
|
//margin-right: -32px;
|
|
|
|
}
|
|
|
|
.OxSelect > .OxButton {
|
2010-03-06 09:54:30 +00:00
|
|
|
float: right;
|
2010-09-03 08:47:40 +00:00
|
|
|
margin: -1px;
|
|
|
|
}
|
|
|
|
.OxSelect.OxOverlapLeft > .OxButton {
|
|
|
|
//padding-left: 15px;
|
|
|
|
//padding-right: 1px;
|
|
|
|
//margin-left: -16px;
|
|
|
|
}
|
|
|
|
.OxSelect.OxOverlapRight > .OxButton {
|
|
|
|
//padding-left: 1px;
|
|
|
|
//padding-right: 15px;
|
|
|
|
//margin-right: -16px;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
|
|
|
|
*/
|
|
|
|
.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-06 06:21:01 +00:00
|
|
|
}
|
2010-02-09 05:43:36 +00:00
|
|
|
|
2011-08-07 16:29:56 +00:00
|
|
|
/*
|
|
|
|
================================================================================
|
|
|
|
Images
|
|
|
|
================================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
.OxReflection > img {
|
|
|
|
-moz-transform: scaleY(-1);
|
|
|
|
-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;
|
|
|
|
}
|
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%;
|
2010-09-03 08:47:40 +00:00
|
|
|
top: 20px;
|
2010-02-09 05:43:36 +00:00
|
|
|
bottom: 0px;
|
|
|
|
overflow: hidden;
|
2010-12-26 20:16:35 +00:00
|
|
|
z-index: 12;
|
|
|
|
}
|
|
|
|
.OxMenuLayer {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
opacity: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
z-index: 12;
|
2010-02-09 05:43:36 +00:00
|
|
|
}
|
2010-06-25 15:55:25 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
================================================================================
|
|
|
|
Lists
|
|
|
|
================================================================================
|
|
|
|
*/
|
|
|
|
|
2010-09-07 15:58:15 +00:00
|
|
|
.OxIconList.OxBoth {
|
|
|
|
overflow-x: hidden;
|
2010-06-25 15:55:25 +00:00
|
|
|
}
|
|
|
|
|
2010-09-05 20:18:00 +00:00
|
|
|
.OxIconList .OxPage {
|
2011-03-04 03:50:37 +00:00
|
|
|
position: absolute;
|
2010-09-07 15:58:15 +00:00
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2010-09-05 20:18:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.OxIconList .OxItem {
|
|
|
|
float: left;
|
2010-09-06 23:44:37 +00:00
|
|
|
margin: 4px;
|
|
|
|
opacity: 0.9;
|
|
|
|
}
|
|
|
|
.OxIconList .OxItem.OxHover,
|
|
|
|
.OxIconList .OxItem.OxSelected {
|
|
|
|
opacity: 1;
|
2010-09-05 20:18:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.OxIconList .OxItem > div {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2010-09-07 15:58:15 +00:00
|
|
|
.OxIconList .OxItem > .OxIcon,
|
|
|
|
.OxIconList .OxItem > .OxText {
|
2010-09-11 08:59:40 +00:00
|
|
|
//left: -2px;
|
2010-09-07 15:58:15 +00:00
|
|
|
}
|
|
|
|
|
2011-08-07 02:33:26 +00:00
|
|
|
.OxIconList .OxItem > .OxIcon {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.OxIconList .OxItem > .OxIcon > img {
|
2010-09-05 20:18:00 +00:00
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
2010-09-06 23:44:37 +00:00
|
|
|
bottom: 0;
|
2010-09-05 20:18:00 +00:00
|
|
|
margin: auto;
|
2010-09-06 23:44:37 +00:00
|
|
|
border: 2px solid rgba(0, 0, 0, 0);
|
2010-09-07 15:58:15 +00:00
|
|
|
cursor: pointer;
|
2011-08-06 17:41:01 +00:00
|
|
|
border-radius: 4px;
|
2010-09-06 23:44:37 +00:00
|
|
|
}
|
|
|
|
.OxIconList .OxItem > .OxReflection {
|
|
|
|
overflow: hidden;
|
2010-09-05 20:18:00 +00:00
|
|
|
}
|
|
|
|
|
2010-09-06 23:44:37 +00:00
|
|
|
.OxIconList .OxItem > .OxReflection > div {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.OxIconList .OxItem > .OxReflection > img {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.OxIconList .OxItem > .OxText {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2010-09-05 20:18:00 +00:00
|
|
|
.OxIconList .OxItem > .OxText > div {
|
2010-09-06 23:44:37 +00:00
|
|
|
display: inline-block;
|
2010-09-05 20:18:00 +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);
|
2010-09-07 15:58:15 +00:00
|
|
|
max-width: 124px;
|
2010-09-06 23:44:37 +00:00
|
|
|
word-wrap: break-word;
|
|
|
|
cursor: pointer;
|
|
|
|
-moz-border-radius: 4px;
|
|
|
|
-webkit-border-radius: 4px;
|
|
|
|
//-moz-user-select: text;
|
|
|
|
//-webkit-user-select: text;
|
2010-09-05 20:18:00 +00:00
|
|
|
}
|
|
|
|
|
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 .OxBar .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 .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;
|
2010-09-05 14:24:22 +00:00
|
|
|
//cursor: pointer;
|
2010-06-25 15:55:25 +00:00
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2011-01-14 03:53:18 +00:00
|
|
|
.OxTextList .OxBar .OxTitle img {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
margin: -1px 0 0 -4px;
|
|
|
|
}
|
2010-06-25 15:55:25 +00:00
|
|
|
.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 {
|
2010-09-05 14:24:22 +00:00
|
|
|
//cursor: pointer;
|
2010-06-25 15:55:25 +00:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.OxTextList .OxBar .OxResize {
|
|
|
|
float: left;
|
|
|
|
width: 5px;
|
|
|
|
height: 16px;
|
|
|
|
}
|
2010-12-22 15:25:13 +00:00
|
|
|
.OxTextList .OxBar .OxResize.OxResizable {
|
|
|
|
cursor: ew-resize;
|
|
|
|
}
|
2010-06-25 15:55:25 +00:00
|
|
|
.OxTextList .OxBar .OxResize .OxLeft,
|
|
|
|
.OxTextList .OxBar .OxResize .OxCenter,
|
|
|
|
.OxTextList .OxBar .OxResize .OxRight {
|
|
|
|
float: left;
|
|
|
|
height: 16px;
|
|
|
|
}
|
|
|
|
.OxTextList .OxBar .OxResize .OxLeft,
|
|
|
|
.OxTextList .OxBar .OxResize .OxRight {
|
|
|
|
width: 2px;
|
|
|
|
}
|
|
|
|
.OxTextList .OxBar .OxResize .OxCenter {
|
|
|
|
width: 1px;
|
|
|
|
background: rgb(24, 24, 24);
|
|
|
|
}
|
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;
|
|
|
|
-moz-border-radius: 0;
|
|
|
|
-webkit-border-radius: 0;
|
|
|
|
}
|
|
|
|
.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;
|
2010-06-30 10:39:49 +00:00
|
|
|
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 {
|
2011-01-11 06:17:45 +00:00
|
|
|
height: 16px;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2011-02-07 18:57:05 +00:00
|
|
|
.OxTextList .OxItem .OxCell > img {
|
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-01-17 21:12:17 +00:00
|
|
|
.OxTextList.OxDrop .OxItem .OxCell {
|
|
|
|
color: green;
|
|
|
|
}
|
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-05-22 12:39:57 +00:00
|
|
|
input[type=image].OxMapButton {
|
2011-03-05 02:08:30 +00:00
|
|
|
position: absolute;
|
2011-05-22 12:39:57 +00:00
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
padding: 1px;
|
|
|
|
border-width: 2px;
|
2011-04-19 14:11:04 +00:00
|
|
|
}
|
|
|
|
.OxMapLabel {
|
|
|
|
position: absolute;
|
2011-05-22 12:39:57 +00:00
|
|
|
height: 12px;
|
|
|
|
font-size: 10px;
|
|
|
|
border-width: 2px;
|
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);
|
|
|
|
-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;
|
|
|
|
-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;
|
2010-02-03 12:12:21 +00:00
|
|
|
-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;
|
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;
|
|
|
|
-moz-border-radius: 0;
|
|
|
|
-webkit-border-radius: 0;
|
|
|
|
}
|
|
|
|
.OxCollapsePanel > .OxBar > .OxExtras > .OxSelect {
|
|
|
|
//position: absolute;
|
|
|
|
//right: 0px;
|
2011-01-21 19:34:39 +00:00
|
|
|
width: 16px;
|
2010-12-23 17:05:46 +00:00
|
|
|
height: 16px;
|
2011-01-21 19:34:39 +00:00
|
|
|
padding: 1px 1px 0 0;
|
|
|
|
border-width: 0;
|
|
|
|
background: rgba(0, 0, 0, 0);
|
2010-12-23 17:05:46 +00:00
|
|
|
-moz-border-radius: 0;
|
|
|
|
-webkit-border-radius: 0;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
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;
|
|
|
|
-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;
|
|
|
|
-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;
|
|
|
|
}
|
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;
|
|
|
|
}
|
|
|
|
|
2011-04-28 18:34:19 +00:00
|
|
|
/*
|
|
|
|
================================================================================
|
|
|
|
SyntaxHightlighter
|
|
|
|
================================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
.OxSyntaxHighlighter > div {
|
2011-05-08 20:38:51 +00:00
|
|
|
display: table-cell;
|
|
|
|
padding: 4px;
|
2011-04-28 18:34:19 +00:00
|
|
|
font-family: Menlo, Monaco, DejaVu Sans Mono, Bitstream Vera Sans Mono, Consolas, Lucida Console;
|
2011-05-07 21:07:53 +00:00
|
|
|
//line-height: 14px;
|
2011-04-28 18:34:19 +00:00
|
|
|
}
|
|
|
|
.OxSyntaxHighlighter > .OxLineNumbers {
|
|
|
|
text-align: right;
|
2011-05-07 21:07:53 +00:00
|
|
|
-moz-user-select: none;
|
|
|
|
-webkit-user-select: none;
|
2011-04-28 18:34:19 +00:00
|
|
|
}
|
|
|
|
.OxSyntaxHighlighter > .OxSourceCode {
|
2011-05-08 20:38:51 +00:00
|
|
|
white-space: nowrap;
|
2011-04-28 18:34:19 +00:00
|
|
|
-moz-user-select: text;
|
|
|
|
-webkit-user-select: text;
|
|
|
|
}
|
|
|
|
.OxSyntaxHighlighter > .OxSourceCode .OxLinebreak {
|
2011-05-08 20:38:51 +00:00
|
|
|
//-moz-user-select: none;
|
|
|
|
//-webkit-user-select: none;
|
2011-04-28 18:34:19 +00:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
.OxAnnotation:last-child {
|
|
|
|
border-width: 0;
|
|
|
|
}
|
2011-02-09 17:56:35 +00:00
|
|
|
.OxAnnotation.OxEdit {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
.OxAnnotation textarea {
|
|
|
|
padding: 4px;
|
|
|
|
border: 0;
|
|
|
|
}
|
2011-02-03 22:58:31 +00:00
|
|
|
|
2011-06-07 03:16:25 +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);
|
|
|
|
}
|
|
|
|
|
2011-02-03 21:39:22 +00:00
|
|
|
.OxVideoEditor {
|
2010-12-31 11:01:35 +00:00
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
2011-02-03 21:39:22 +00:00
|
|
|
.OxVideoEditor .OxVideoPlayer {
|
2010-09-17 22:10:07 +00:00
|
|
|
position: absolute;
|
|
|
|
margin: 4px;
|
|
|
|
//background: red;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.OxTimelineLarge {
|
|
|
|
position: absolute;
|
|
|
|
height: 72px;
|
|
|
|
margin: 0 4px 0 4px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.OxTimelineLarge > div {
|
|
|
|
position: absolute;
|
|
|
|
height: 72px;
|
|
|
|
}
|
|
|
|
.OxTimelineLarge > div > img {
|
|
|
|
position: absolute;
|
|
|
|
top: 4px;
|
|
|
|
}
|
|
|
|
.OxTimelineLarge .OxCut {
|
|
|
|
position: absolute;
|
|
|
|
top: 66px;
|
|
|
|
width: 2px;
|
|
|
|
height: 4px;
|
|
|
|
margin-left: -1px;
|
|
|
|
z-index: 10;
|
|
|
|
}
|
|
|
|
.OxTimelineLarge .OxMarkerPointIn {
|
|
|
|
position: absolute;
|
|
|
|
top: 64px;
|
|
|
|
width: 6px;
|
|
|
|
height: 6px;
|
|
|
|
margin-left: -5px;
|
|
|
|
z-index: 10;
|
|
|
|
}
|
|
|
|
.OxTimelineLarge .OxMarkerPointOut {
|
|
|
|
position: absolute;
|
|
|
|
top: 64px;
|
|
|
|
width: 6px;
|
|
|
|
height: 6px;
|
|
|
|
z-index: 10;
|
|
|
|
}
|
|
|
|
.OxTimelineLarge .OxMarkerPosition {
|
|
|
|
position: absolute;
|
|
|
|
top: 2px;
|
|
|
|
width: 9px;
|
|
|
|
height: 5px;
|
|
|
|
z-index: 10;
|
|
|
|
}
|
|
|
|
.OxTimelineLarge .OxSubtitle {
|
|
|
|
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: 10;
|
|
|
|
-moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
|
|
|
|
-webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
|
|
|
|
}
|
|
|
|
.OxTimelineLarge .OxSubtitle.OxHighlight {
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
.OxTimelineSmall .OxMarkerPointIn {
|
|
|
|
position: absolute;
|
|
|
|
width: 6px;
|
|
|
|
height: 6px;
|
|
|
|
margin-left: -1px;
|
|
|
|
}
|
|
|
|
.OxTimelineSmall .OxMarkerPointOut {
|
|
|
|
position: absolute;
|
|
|
|
width: 6px;
|
|
|
|
height: 6px;
|
|
|
|
margin-left: 4px;
|
|
|
|
}
|
|
|
|
|
2011-05-18 13:02:02 +00:00
|
|
|
|
|
|
|
.OxVideoPlayer {
|
|
|
|
position: absolute;
|
2010-09-17 22:10:07 +00:00
|
|
|
}
|
2011-05-18 13:02:02 +00:00
|
|
|
.OxVideoPlayer.OxFocus {
|
|
|
|
-moz-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-05-18 13:02:02 +00:00
|
|
|
|
|
|
|
.OxVideoPlayer .OxControls {
|
|
|
|
position: absolute;
|
2010-09-17 22:10:07 +00:00
|
|
|
}
|
2011-05-18 13:02:02 +00:00
|
|
|
.OxVideoPlayer .OxControls.OxOnScreen {
|
|
|
|
background-image: -moz-linear-gradient(top, rgba(64, 64, 64, 0.5), rgba(0, 0, 0, 0.5));
|
|
|
|
background-image: -webkit-linear-gradient(top, rgba(64, 64, 64, 0.5), rgba(0, 0, 0, 0.5));
|
|
|
|
}
|
|
|
|
.OxVideoPlayer .OxControls > * {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.OxVideoPlayer .OxFind {
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
border-bottom-left-radius: 8px;
|
|
|
|
border-bottom-right-radius: 8px;
|
|
|
|
background-image: -moz-linear-gradient(top, rgba(64, 64, 64, 0.5), rgba(0, 0, 0, 0.5));
|
|
|
|
background-image: -webkit-linear-gradient(top, rgba(64, 64, 64, 0.5), rgba(0, 0, 0, 0.5));
|
|
|
|
display: none;
|
2011-03-07 23:26:36 +00:00
|
|
|
}
|
2011-05-18 13:02:02 +00:00
|
|
|
.OxVideoPlayer .OxFind > * {
|
|
|
|
float: left;
|
2010-09-17 22:10:07 +00:00
|
|
|
}
|
2011-05-18 13:02:02 +00:00
|
|
|
.OxVideoPlayer .OxFind .OxResults {
|
|
|
|
width: 24px;
|
|
|
|
padding-top: 2px;
|
|
|
|
font-size: 9px;
|
|
|
|
text-align: center;
|
|
|
|
color: rgb(255, 255, 255);
|
|
|
|
}
|
|
|
|
|
2010-09-17 22:10:07 +00:00
|
|
|
.OxVideoPlayer .OxLoadingIcon {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
2011-05-18 13:02:02 +00:00
|
|
|
bottom: 0;
|
2010-09-17 22:10:07 +00:00
|
|
|
margin: auto;
|
2011-05-18 13:02:02 +00:00
|
|
|
opacity: 1;
|
2010-09-17 22:10:07 +00:00
|
|
|
}
|
2011-05-18 13:02:02 +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;
|
2011-05-18 13:02:02 +00:00
|
|
|
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);
|
2011-05-18 13:02:02 +00:00
|
|
|
opacity: 0;
|
2010-09-17 22:10:07 +00:00
|
|
|
}
|
2011-05-18 13:02:02 +00:00
|
|
|
|
|
|
|
.OxVideoPlayer .OxPointMarker {
|
2010-09-17 22:10:07 +00:00
|
|
|
position: absolute;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2011-05-18 13:02:02 +00:00
|
|
|
display: none;
|
2010-09-17 22:10:07 +00:00
|
|
|
}
|
2011-05-18 13:02:02 +00:00
|
|
|
.OxVideoPlayer .OxPointMarkerInTop {
|
2010-09-17 22:10:07 +00:00
|
|
|
left: 4px;
|
|
|
|
top: 4px;
|
|
|
|
}
|
2011-05-18 13:02:02 +00:00
|
|
|
.OxVideoPlayer .OxPointMarkerInBottom {
|
2010-09-17 22:10:07 +00:00
|
|
|
left: 4px;
|
2011-05-18 13:02:02 +00:00
|
|
|
bottom: 4px;
|
2010-09-17 22:10:07 +00:00
|
|
|
}
|
2011-05-18 13:02:02 +00:00
|
|
|
.OxVideoPlayer .OxPointMarkerOutTop {
|
2010-09-17 22:10:07 +00:00
|
|
|
right: 4px;
|
|
|
|
top: 4px;
|
|
|
|
}
|
2011-05-18 13:02:02 +00:00
|
|
|
.OxVideoPlayer .OxPointMarkerOutBottom {
|
2010-09-17 22:10:07 +00:00
|
|
|
right: 4px;
|
2011-05-18 13:02:02 +00:00
|
|
|
bottom: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.OxVideoPlayer .OxPosition {
|
|
|
|
height: 12px;
|
|
|
|
padding: 2px;
|
|
|
|
font-size: 9px;
|
|
|
|
text-align: center;
|
|
|
|
color: rgb(255, 255, 255);
|
|
|
|
}
|
|
|
|
|
|
|
|
.OxVideoPlayer .OxPositionInput {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.OxVideoPlayer .OxPoster {
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
.OxVideoPlayer .OxResolution {
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
bottom: 16px;
|
|
|
|
background: transparent; // fixme: needed?;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.OxVideoPlayer .OxResolution > div {
|
|
|
|
width: 52px;
|
|
|
|
height: 16px;
|
|
|
|
background: rgba(32, 32, 32, 0.5);
|
|
|
|
}
|
|
|
|
.OxVideoPlayer .OxResolution > div:first-child {
|
|
|
|
border-top-left-radius: 8px;
|
|
|
|
border-top-right-radius: 8px;
|
|
|
|
}
|
|
|
|
.OxVideoPlayer .OxResolution > div.OxSelected {
|
|
|
|
background-image: -moz-linear-gradient(top, rgba(48, 48, 48, 0.5), rgba(16, 16, 16, 0.5));
|
|
|
|
background-image: -webkit-linear-gradient(top, rgba(48, 48, 48, 0.5), rgba(16, 16, 16, 0.5));
|
|
|
|
}
|
|
|
|
.OxVideoPlayer .OxResolution > div > * {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
.OxVideoPlayer .OxResolution > div > div {
|
|
|
|
width: 36px;
|
|
|
|
height: 14px;
|
|
|
|
padding-top: 2px;
|
|
|
|
font-size: 9px;
|
|
|
|
text-align: right;
|
|
|
|
color: rgb(255, 255, 255);
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
.OxVideoPlayer .OxResolution > div > img {
|
|
|
|
width: 9px;
|
|
|
|
height: 9px;
|
|
|
|
padding: 3px 3px 4px 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.OxVideoPlayer .OxResolutionButton {
|
|
|
|
width: 32px;
|
|
|
|
height: 12px;
|
|
|
|
padding: 2px;
|
|
|
|
font-size: 9px;
|
|
|
|
text-align: center;
|
|
|
|
color: rgb(255, 255, 255);
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
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);
|
2011-05-18 13:02:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.OxVideoPlayer .OxTitle {
|
|
|
|
padding-top: 1px;
|
|
|
|
text-align: center;
|
|
|
|
color: rgb(255, 255, 255);
|
|
|
|
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;
|
|
|
|
background-image: -moz-linear-gradient(top, rgba(64, 64, 64, 0.5), rgba(0, 0, 0, 0.5));
|
|
|
|
background-image: -webkit-linear-gradient(top, rgba(64, 64, 64, 0.5), rgba(0, 0, 0, 0.5));
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.OxVideoPlayer .OxVolume > * {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
.OxVideoPlayer .OxVolume .OxRange .OxTrack {
|
|
|
|
padding: 1px;
|
|
|
|
border: 0;
|
|
|
|
background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(64, 64, 64, 0.5));
|
|
|
|
background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(64, 64, 64, 0.5));
|
|
|
|
}
|
|
|
|
.OxVideoPlayer .OxVolume .OxRange .OxThumb {
|
|
|
|
padding: 1px 7px 1px 7px;
|
|
|
|
border: 0;
|
|
|
|
background-image: -moz-linear-gradient(top, rgba(64, 64, 64, 0.5), rgba(0, 0, 0, 0.5));
|
|
|
|
background-image: -webkit-linear-gradient(top, rgba(64, 64, 64, 0.5), rgba(0, 0, 0, 0.5));
|
|
|
|
}
|
|
|
|
.OxVideoPlayer .OxVolume .OxRange .OxThumb:active {
|
|
|
|
background-image: -moz-linear-gradient(top, rgba(64, 64, 64, 0.5), rgba(0, 0, 0, 0.5));
|
|
|
|
background-image: -webkit-linear-gradient(top, rgba(64, 64, 64, 0.5), rgba(0, 0, 0, 0.5));
|
|
|
|
}
|
|
|
|
.OxVideoPlayer .OxVolume .OxVolumeValue {
|
|
|
|
width: 24px;
|
|
|
|
padding-top: 2px;
|
|
|
|
font-size: 9px;
|
|
|
|
text-align: center;
|
|
|
|
color: rgb(255, 255, 255);
|
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;
|
|
|
|
}
|
|
|
|
.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
|
|
|
|
2010-12-26 20:16:35 +00:00
|
|
|
.OxText {
|
|
|
|
//line-height: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.OxTooltip {
|
2010-07-24 01:32:08 +00:00
|
|
|
position: absolute;
|
2010-09-03 08:47:40 +00:00
|
|
|
padding: 1px 2px 1px 2px;
|
|
|
|
font-size: 9px;
|
2011-04-20 22:42:09 +00:00
|
|
|
//opacity: 0;
|
2011-05-17 17:04:33 +00:00
|
|
|
z-index: 1001;
|
2010-09-03 08:47:40 +00:00
|
|
|
-moz-border-radius: 4px;
|
|
|
|
-webkit-border-radius: 4px;
|
2010-07-24 01:32:08 +00:00
|
|
|
}
|