oxjs/source/Ox.UI/themes/modern/css/modern.css

867 lines
32 KiB
CSS
Raw Normal View History

2011-10-11 23:23:36 +00:00
/* fixme: it wouldn't hurt if focus was blue */
2010-01-07 20:21:07 +00:00
body.OxThemeModern {
background: rgb(16, 16, 16);
}
2011-08-07 17:06:12 +00:00
.OxThemeModern a {
2011-08-05 18:27:13 +00:00
color: rgb(128, 128, 255);
}
2010-01-07 20:21:07 +00:00
.OxThemeModern div {
color: rgb(240, 240, 240);
}
2010-02-18 17:45:37 +00:00
.OxThemeModern .OxHighlight {
//background: rgb(255, 255, 0);
//font-weight: bold;
//color: rgb(0, 0, 0);
color: rgb(255, 255, 0);
2010-02-18 17:45:37 +00:00
}
2010-09-03 08:47:40 +00:00
.OxThemeModern .OxBright {
color: rgb(255, 255, 255);
}
2012-02-20 18:31:45 +00:00
.OxThemeModern .OxLight {
color: rgb(128, 128, 128);
}
2010-01-07 20:21:07 +00:00
/*
================================================================================
Bars
================================================================================
*/
.OxThemeModern .OxBar.OxHorizontal {
//background: -moz-linear-gradient(left top, left bottom, from(rgb(96, 96, 96)), to(rgb(64, 64, 64)));
//background: -webkit-gradient(linear, left top, left bottom, from(rgb(96, 96, 96)), to(rgb(64, 64, 64)));
2011-09-03 15:25:52 +00:00
background-image: -moz-linear-gradient(top, rgb(64, 64, 64), rgb(32, 32, 32));
background-image: -o-linear-gradient(top, rgb(64, 64, 64), rgb(32, 32, 32));
background-image: -webkit-linear-gradient(top, rgb(64, 64, 64), rgb(32, 32, 32));
2010-01-07 20:21:07 +00:00
}
2011-09-01 09:35:45 +00:00
.OxThemeModern .OxProgressbar {
2011-09-01 13:13:47 +00:00
border-color: rgb(48, 48, 48);
background-image: -moz-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
2011-09-03 15:25:52 +00:00
background-image: -o-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
2011-09-01 13:13:47 +00:00
background-image: -webkit-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
}
.OxThemeModern .OxProgressbar .OxTrack {
2011-09-01 21:38:57 +00:00
border-color: rgb(48, 48, 48);
2011-09-03 15:25:52 +00:00
background-image: -moz-linear-gradient(top, rgb(0, 0, 0), rgb(32, 32, 32));
background-image: -o-linear-gradient(top, rgb(0, 0, 0), rgb(32, 32, 32));
background-image: -webkit-linear-gradient(top, rgb(0, 0, 0), rgb(32, 32, 32));
2011-09-01 09:35:45 +00:00
}
2011-09-01 13:13:47 +00:00
.OxThemeModern .OxProgressbar .OxProgress {
2011-09-01 21:38:57 +00:00
border-color: rgb(48, 48, 48);
2012-01-02 08:25:34 +00:00
background-image:
-moz-repeating-linear-gradient(
-45deg, transparent 0, transparent 25%,
rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.05) 50%,
transparent 50%, transparent 75%,
rgba(255, 255, 255, 0.05) 75%, rgba(255, 255, 255, 0.05) 100%
),
-moz-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
background-image:
-o-repeating-linear-gradient(
-45deg, transparent 0, transparent 25%,
rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.05) 50%,
transparent 50%, transparent 75%,
rgba(255, 255, 255, 0.05) 75%, rgba(255, 255, 255, 0.05) 100%
),
-o-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
background-image:
-webkit-repeating-linear-gradient(
-45deg, transparent 0, transparent 25%,
rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.05) 50%,
transparent 50%, transparent 75%,
rgba(255, 255, 255, 0.05) 75%, rgba(255, 255, 255, 0.05) 100%
),
-webkit-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
background-size: 32px 32px, 16px 16px;
2011-09-01 13:13:47 +00:00
}
.OxThemeModern .OxProgressbar .OxProgress.OxAnimate {
2011-09-01 21:38:57 +00:00
background-image:
-moz-repeating-linear-gradient(
-45deg, transparent 0, transparent 25%,
2012-01-02 08:25:34 +00:00
rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 0.1) 50%,
2011-09-01 21:38:57 +00:00
transparent 50%, transparent 75%,
2012-01-02 08:25:34 +00:00
rgba(255, 255, 255, 0.1) 75%, rgba(255, 255, 255, 0.1) 100%
2011-09-01 21:38:57 +00:00
),
-moz-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
2011-09-03 15:25:52 +00:00
background-image:
-o-repeating-linear-gradient(
-45deg, transparent 0, transparent 25%,
2012-01-02 08:25:34 +00:00
rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 0.1) 50%,
2011-09-03 15:25:52 +00:00
transparent 50%, transparent 75%,
2012-01-02 08:25:34 +00:00
rgba(255, 255, 255, 0.1) 75%, rgba(255, 255, 255, 0.1) 100%
2011-09-03 15:25:52 +00:00
),
-o-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
2011-09-01 21:38:57 +00:00
background-image:
-webkit-repeating-linear-gradient(
-45deg, transparent 0, transparent 25%,
2012-01-02 08:25:34 +00:00
rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 0.1) 50%,
2011-09-01 21:38:57 +00:00
transparent 50%, transparent 75%,
2012-01-02 08:25:34 +00:00
rgba(255, 255, 255, 0.1) 75%, rgba(255, 255, 255, 0.1) 100%
2011-09-01 21:38:57 +00:00
),
-webkit-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
2011-09-01 09:35:45 +00:00
}
2011-03-03 23:16:49 +00:00
.OxThemeModern .OxResizebar > .OxLine {
2011-03-03 23:50:06 +00:00
background-color: rgb(48, 48, 48);
2010-07-06 18:28:58 +00:00
}
2011-04-20 11:29:34 +00:00
/*
================================================================================
Calendar
================================================================================
*/
2011-04-21 03:10:49 +00:00
.OxThemeModern .OxCalendar .OxTimeline > div.odd {
2011-09-03 15:25:52 +00:00
background-image: -moz-linear-gradient(top, rgb(64, 64, 64), rgb(32, 32, 32));
background-image: -o-linear-gradient(top, rgb(64, 64, 64), rgb(32, 32, 32));
background-image: -webkit-linear-gradient(top, rgb(64, 64, 64), rgb(32, 32, 32));
2011-04-20 11:29:34 +00:00
}
2011-04-21 03:10:49 +00:00
.OxThemeModern .OxCalendar .OxTimeline > div.even {
2011-09-03 15:25:52 +00:00
background-image: -moz-linear-gradient(top, rgb(48, 48, 48), rgb(24, 24, 24));
background-image: -o-linear-gradient(top, rgb(48, 48, 48), rgb(24, 24, 24));
background-image: -webkit-linear-gradient(top, rgb(48, 48, 48), rgb(24, 24, 24));
2011-04-20 11:29:34 +00:00
}
.OxThemeModern .OxCalendar .OxBackground > div {
2011-04-21 11:50:08 +00:00
//background: rgb(20, 20, 20);
2011-04-21 03:10:49 +00:00
background: rgb(24, 24, 24);
}
2011-04-21 11:50:08 +00:00
.OxThemeModern .OxCalendar .OxBackground > div.line {
background: rgb(32, 32, 32);
}
2011-04-21 03:10:49 +00:00
2011-05-28 00:02:00 +00:00
.OxThemeModern .OxCalendar .OxLine > .OxEvent {
color: rgb(255, 255, 255);
}
2011-10-10 08:39:20 +00:00
.OxThemeModern .OxCalendar .OxLine > .OxEvent.OxSelected {
box-shadow: inset 0 0 1px rgb(255, 255, 255),
inset 0 0 1px rgb(255, 255, 255),
inset 0 0 1px rgb(255, 255, 255),
inset 0 0 1px rgb(255, 255, 255);
}
2012-02-20 18:31:45 +00:00
.OxThemeModern .OxEvent.OxDate {
2012-01-17 09:25:58 +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));
background: -webkit-linear-gradient(top, rgba(96, 96, 255, 0.9), rgba(64, 64, 224, 0.9));
}
2012-02-20 18:31:45 +00:00
.OxThemeModern .OxEvent.OxPlace {
2012-01-17 09:25:58 +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));
}
2012-02-20 18:31:45 +00:00
.OxThemeModern .OxEvent.OxPerson {
2012-01-17 09:25:58 +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));
}
2012-02-20 18:31:45 +00:00
.OxThemeModern .OxEvent.OxOther {
2012-01-17 09:25:58 +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-05-28 00:02:00 +00:00
.OxThemeModern .OxCalendar .OxOverlay div:nth-child(even) {
2011-10-11 07:30:01 +00:00
background-color: rgba(255, 255, 255, 0.25);
box-shadow: inset 0 0 2px rgb(255, 255, 255);
2011-05-28 00:02:00 +00:00
}
.OxThemeModern .OxCalendar .OxOverlay div:nth-child(odd) {
2011-10-11 07:30:01 +00:00
background-color: rgba(0, 0, 0, 0.25);
2011-05-28 00:02:00 +00:00
}
2011-10-31 12:45:08 +00:00
.OxThemeModern .OxCalendar .OxCalendarControl,
.OxThemeModern .OxCalendar .OxEventControl {
border-color: rgb(192, 192, 192);
background: rgba(0, 0, 0, 0.75);
color: rgb(192, 192, 192);
}
2011-04-21 03:10:49 +00:00
2012-02-20 18:31:45 +00:00
.OxThemeModern .OxListCalendar .OxWarning {
border-bottom: 2px dotted rgb(192, 0, 0);
}
2010-01-31 08:03:22 +00:00
/*
================================================================================
Dialog
================================================================================
*/
.OxThemeModern .OxDialog {
2011-08-15 12:25:58 +00:00
-moz-box-shadow: 2px 2px 8px rgba(0, 0, 0, 1);
2011-09-03 15:25:52 +00:00
-o-box-shadow: 2px 2px 8px rgba(0, 0, 0, 1);
2011-08-15 12:25:58 +00:00
-webkit-box-shadow: 2px 2px 8px rgba(0, 0, 0, 1);
}
2010-01-31 08:03:22 +00:00
2010-02-20 04:26:53 +00:00
.OxThemeModern .OxDialog .OxBar {
2011-08-15 12:25:58 +00:00
background: -moz-linear-gradient(top, rgba(64, 64, 64, 0.95), rgba(32, 32, 32, 0.95));
2011-09-03 15:25:52 +00:00
background: -o-linear-gradient(top, rgba(64, 64, 64, 0.95), rgba(32, 32, 32, 0.95));
2011-08-15 12:25:58 +00:00
background: -webkit-linear-gradient(top, rgba(64, 64, 64, 0.95), rgba(32, 32, 32, 0.95));
2010-02-20 04:26:53 +00:00
}
.OxThemeModern .OxDialog .OxContent {
2011-08-15 14:11:13 +00:00
background: rgba(48, 48, 48, 0.95);
2010-02-20 04:26:53 +00:00
}
2011-09-29 17:25:50 +00:00
.OxThemeModern .OxDialog .OxIconList .OxContent {
background: transparent;
}
2010-02-20 04:26:53 +00:00
2010-09-04 14:28:40 +00:00
.OxThemeModern .OxLayer {
background: rgb(0, 0, 0);
}
2011-08-15 12:18:14 +00:00
2010-02-20 04:26:53 +00:00
2011-05-12 03:29:35 +00:00
/*
================================================================================
Document
================================================================================
*/
.OxThemeModern .OxDocument code {
color: rgb(128, 128, 255);
}
.OxThemeModern .OxDocument div {
border-color: rgb(64, 64, 64);
}
2010-01-07 20:21:07 +00:00
/*
================================================================================
Forms
================================================================================
*/
2010-09-03 20:54:40 +00:00
/*
2010-09-03 08:47:40 +00:00
.OxThemeModern .OxInput::-selection {
background: rgb(80, 80, 80);
}
2010-09-03 20:54:40 +00:00
*/
2010-09-03 08:47:40 +00:00
2010-09-03 20:54:40 +00:00
.OxThemeModern input.OxCheckbox,
2010-09-03 08:47:40 +00:00
.OxThemeModern input.OxInput,
2011-02-09 17:56:35 +00:00
.OxThemeModern textarea,
.OxThemeModern .OxButton,
2010-09-03 20:54:40 +00:00
.OxThemeModern .OxLabel,
2010-01-07 20:21:07 +00:00
.OxThemeModern .OxTrack {
//border: 1px solid rgb(80, 80, 80);
2011-05-22 12:39:57 +00:00
border-color: rgb(48, 48, 48);
2010-01-07 20:21:07 +00:00
color: rgb(192, 192, 192);
}
2010-09-03 20:54:40 +00:00
.OxThemeModern .OxSelect {
2011-05-22 12:39:57 +00:00
border-color: rgb(48, 48, 48);
2010-09-03 20:54:40 +00:00
}
.OxThemeModern .OxSelect > .OxTitle {
color: rgb(192, 192, 192);
}
2010-09-03 20:54:40 +00:00
.OxThemeModern .OxInputLabel {
color: rgb(192, 192, 192);
}
2010-01-07 20:21:07 +00:00
.OxThemeModern .OxButton,
2010-09-03 20:54:40 +00:00
.OxThemeModern div.OxInput,
.OxThemeModern .OxSelect {
2010-01-25 12:29:55 +00:00
background: -moz-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
2011-09-03 15:25:52 +00:00
background: -o-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
2011-08-07 16:29:56 +00:00
background: -webkit-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
2010-01-07 20:21:07 +00:00
//background: -moz-linear-gradient(left top, left bottom, from(rgb(64, 64, 64)), to(rgb(32, 32, 32)));
//background: -webkit-gradient(linear, left top, left bottom, from(rgb(64, 64, 64)), to(rgb(32, 32, 32)));
}
2010-09-03 20:54:40 +00:00
.OxThemeModern .OxButton:active {
2010-01-07 20:21:07 +00:00
background: rgb(80, 80, 80);
//background: rgb(64, 64, 64);
}
2011-01-23 04:59:16 +00:00
.OxThemeModern .OxCheckbox:active {
background: -moz-linear-gradient(top, rgb(16, 16, 16), rgb(48, 48, 48));
2011-09-03 15:25:52 +00:00
background: -o-linear-gradient(top, rgb(16, 16, 16), rgb(48, 48, 48));
2011-08-07 16:29:56 +00:00
background: -webkit-linear-gradient(top, rgb(16, 16, 16), rgb(48, 48, 48));
2011-01-23 04:59:16 +00:00
}
2010-01-07 20:21:07 +00:00
.OxThemeModern .OxButton.OxDisabled {
background: rgb(80, 80, 80);
color: rgb(128, 128, 128);
}
.OxThemeModern .OxButton.OxSymbol.OxDisabled {
background: rgba(0, 0, 0, 0);
opacity: 0.5;
}
2010-09-03 20:54:40 +00:00
.OxThemeModern .OxButton.OxSelected,
.OxThemeModern .OxSelect.OxSelected,
.OxThemeModern .OxCollapsePanel > .OxBar > .OxExtras > .OxSelect.OxSelected {
2010-01-07 20:21:07 +00:00
//background: -moz-linear-gradient(left top, left bottom, from(rgb(80, 80, 80)), to(rgb(112, 112, 112)));
//background: -webkit-gradient(linear, left top, left bottom, from(rgb(80, 80, 80)), to(rgb(112, 112, 112)));
2010-01-25 12:29:55 +00:00
background: -moz-linear-gradient(top, rgb(0, 0, 0), rgb(32, 32, 32) 10%, rgb(64, 64, 64));
2011-09-03 15:25:52 +00:00
background: -o-linear-gradient(top, rgb(0, 0, 0), rgb(32, 32, 32) 10%, rgb(64, 64, 64));
2011-08-07 16:29:56 +00:00
background: -webkit-linear-gradient(top, rgb(0, 0, 0), rgb(32, 32, 32) 10%, rgb(64, 64, 64));
//background: -webkit-gradient(linear, left top, left bottom, from(rgb(0, 0, 0)), color-stop(0.1, rgb(32, 32, 32)), to(rgb(64, 64, 64)));
2010-01-07 20:21:07 +00:00
color: rgb(224, 224, 224);
}
.OxThemeModern .OxButton.OxTab.OxSelected {
border-bottom: 1px solid rgb(64, 64, 64);
}
2010-07-24 01:32:08 +00:00
.OxThemeModern .OxFormMessage {
color: rgb(255, 64, 64);
}
2011-01-23 04:59:16 +00:00
.OxThemeModern .OxLabel.OxDisabled {
color: rgb(128, 128, 128);
}
.OxThemeModern input.OxCheckbox,
2010-09-03 08:47:40 +00:00
.OxThemeModern input.OxInput,
2011-10-26 08:59:30 +00:00
.OxThemeModern textarea,
2010-01-07 20:21:07 +00:00
.OxThemeModern .OxTrack {
2010-01-25 12:29:55 +00:00
background: -moz-linear-gradient(top, rgb(0, 0, 0), rgb(32, 32, 32));
2011-09-03 15:25:52 +00:00
background: -o-linear-gradient(top, rgb(0, 0, 0), rgb(32, 32, 32));
2011-08-07 16:29:56 +00:00
background: -webkit-linear-gradient(top, rgb(0, 0, 0), rgb(32, 32, 32));
2010-01-07 20:21:07 +00:00
}
2011-04-27 07:13:12 +00:00
.OxThemeModern div.OxInput.OxError input {
color: rgb(255, 64, 64);
}
2010-09-04 14:28:40 +00:00
.OxThemeModern div.OxInput.OxFocus,
.OxThemeModern .OxSelect.OxFocus {
2010-09-03 08:47:40 +00:00
//border: 1px solid rgb(80, 80, 80);
2010-01-07 20:21:07 +00:00
-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);
2010-01-07 20:21:07 +00:00
-webkit-box-shadow: 0 0 2px rgb(128, 128, 128);
}
2010-09-03 08:47:40 +00:00
.OxThemeModern div.OxInput.OxFocus > .OxInputLabel {
border-color: rgb(80, 80, 80);
}
2010-01-07 20:21:07 +00:00
.OxThemeModern .OxInput.OxPlaceholder {
color: rgb(96, 96, 96)
}
2010-09-03 08:47:40 +00:00
.OxThemeModern .OxLabel {
2011-05-22 12:39:57 +00:00
border-color: rgb(48, 48, 48);
2010-09-03 08:47:40 +00:00
background: rgb(80, 80, 80);
color: rgb(192, 192, 192);
}
2010-01-07 20:21:07 +00:00
2011-01-23 04:59:16 +00:00
.OxThemeModern input.OxCheckbox.OxDisabled,
.OxThemeModern input.OxInput:disabled {
background: rgb(16, 16, 16);
}
.OxThemeModern .OxLabelSelect > .OxTitle {
border-color: rgb(48, 48, 48);
background: -moz-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
background: -o-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
background: -webkit-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
}
.OxThemeModern .OxLabelSelect.OxSelected > .OxTitle {
background: -moz-linear-gradient(top, rgb(0, 0, 0), rgb(32, 32, 32) 10%, rgb(64, 64, 64));
background: -o-linear-gradient(top, rgb(0, 0, 0), rgb(32, 32, 32) 10%, rgb(64, 64, 64));
background: -webkit-linear-gradient(top, rgb(0, 0, 0), rgb(32, 32, 32) 10%, rgb(64, 64, 64));
}
.OxThemeModern .OxArrayEditable.OxArrayEditableTextarea .OxEditableElement {
border-top-color: rgb(48, 48, 48);
}
2012-01-03 10:26:15 +00:00
.OxThemeModern .OxEditableElement.OxSelected {
background: rgb(48, 48, 48);
}
2011-08-07 16:29:56 +00:00
/*
================================================================================
Images
================================================================================
*/
.OxThemeModern .OxReflection > div {
background: -moz-linear-gradient(top, rgba(16, 16, 16, 0.75), rgba(16, 16, 16, 1));
2011-09-03 15:25:52 +00:00
background: -o-linear-gradient(top, rgba(16, 16, 16, 0.75), rgba(16, 16, 16, 1));
2011-08-07 16:29:56 +00:00
background: -webkit-linear-gradient(top, rgba(16, 16, 16, 0.75), rgba(16, 16, 16, 1));
}
2011-09-29 17:25:50 +00:00
.OxThemeModern .OxDialog .OxReflection > div {
background: -moz-linear-gradient(top, rgba(48, 48, 48, 0.75), rgba(48, 48, 48, 1));
background: -o-linear-gradient(top, rgba(48, 48, 48, 0.75), rgba(48, 48, 48, 1));
background: -webkit-linear-gradient(top, rgba(48, 48, 48, 0.75), rgba(48, 48, 48, 1));
}
2011-08-07 16:29:56 +00:00
2010-06-25 15:55:25 +00:00
/*
================================================================================
Lists
================================================================================
*/
.OxThemeModern .OxIconList .OxItem > .OxIcon > img.OxLoading,
2011-10-16 12:32:02 +00:00
.OxThemeModern .OxInfoList .OxItem .OxIcon > img.OxLoading {
border-color: rgb(48, 48, 48);
2010-09-08 16:35:34 +00:00
background: -moz-linear-gradient(top, rgb(32, 32, 32), rgb(0, 0, 0));
2011-09-03 15:25:52 +00:00
background: -o-linear-gradient(top, rgb(32, 32, 32), rgb(0, 0, 0));
2011-08-07 16:29:56 +00:00
background: -webkit-linear-gradient(top, rgb(32, 32, 32), rgb(0, 0, 0));
2010-09-06 23:44:37 +00:00
}
2011-08-18 14:03:48 +00:00
.OxThemeModern .OxIconList .OxItem.OxSelected > .OxIcon > img,
2011-10-16 12:32:02 +00:00
.OxThemeModern .OxIconList .OxItem.OxSelected > .OxIcon > .OxVideoPlayer,
.OxThemeModern .OxInfoList .OxItem.OxSelected .OxIcon > img,
.OxThemeModern .OxInfoList .OxItem.OxSelected .OxIcon > .OxVideoPlayer {
border-color: rgb(64, 64, 64);
-moz-box-shadow: 0 0 4px rgba(64, 64, 64, 1);
-o-box-shadow: 0 0 4px rgba(64, 64, 64, 1);
-webkit-box-shadow: 0 0 4px rgba(64, 64, 64, 1);
2011-01-03 12:01:38 +00:00
}
2011-08-18 14:03:48 +00:00
.OxThemeModern .OxIconList.OxFocus .OxItem.OxSelected > .OxIcon > img,
2011-10-16 12:32:02 +00:00
.OxThemeModern .OxIconList.OxFocus .OxItem.OxSelected > .OxIcon .OxVideoPlayer,
.OxThemeModern .OxInfoList.OxFocus .OxItem.OxSelected .OxIcon > img,
.OxThemeModern .OxInfoList.OxFocus .OxItem.OxSelected .OxIcon .OxVideoPlayer {
2010-09-06 23:44:37 +00:00
border-color: rgb(128, 128, 128);
-moz-box-shadow: 0 0 4px rgba(128, 128, 128, 1);
2011-09-03 15:25:52 +00:00
-o-box-shadow: 0 0 4px rgba(128, 128, 128, 1);
2010-09-06 23:44:37 +00:00
-webkit-box-shadow: 0 0 4px rgba(128, 128, 128, 1);
}
.OxThemeModern .OxInfoList .OxItem.OxSelected .OxIconList .OxIcon > img,
.OxThemeModern .OxInfoList .OxItem.OxSelected .OxIconList .OxIcon .OxVideoPlayer {
border-color: rgba(0, 0, 0, 0);
-moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
-o-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
-webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
2011-10-16 12:32:02 +00:00
.OxThemeModern .OxIconList .OxItem > .OxText > div,
.OxThemeModern .OxInfoList .OxItem .OxText > div {
2011-09-18 02:30:01 +00:00
text-shadow: rgb(0, 0, 0) -1px -1px 0,
rgb(0, 0, 0) -1px 1px 0,
rgb(0, 0, 0) 1px -1px 0,
rgb(0, 0, 0) 1px 1px 0;
2010-09-06 23:44:37 +00:00
}
2011-10-16 12:32:02 +00:00
.OxThemeModern .OxIconList .OxItem.OxSelected > .OxText > div,
.OxThemeModern .OxInfoList .OxItem.OxSelected .OxText > div {
border-color: rgb(64, 64, 64);
background: rgba(64, 64, 64, 0.5);
-moz-box-shadow: 0 0 4px rgba(64, 64, 64, 1);
-o-box-shadow: 0 0 4px rgba(64, 64, 64, 1);
-webkit-box-shadow: 0 0 4px rgba(64, 64, 64, 1);
2011-01-03 12:01:38 +00:00
}
2011-10-16 12:32:02 +00:00
.OxThemeModern .OxIconList.OxFocus .OxItem.OxSelected > .OxText > div,
.OxThemeModern .OxInfoList.OxFocus .OxItem.OxSelected .OxText > div {
2010-09-06 23:44:37 +00:00
border-color: rgb(128, 128, 128);
background: rgba(128, 128, 128, 0.5);
-moz-box-shadow: 0 0 4px rgba(128, 128, 128, 1);
2011-09-03 15:25:52 +00:00
-o-box-shadow: 0 0 4px rgba(128, 128, 128, 1);
2010-09-06 23:44:37 +00:00
-webkit-box-shadow: 0 0 4px rgba(128, 128, 128, 1);
}
2011-10-16 12:32:02 +00:00
.OxThemeModern .OxIconList .OxItem > .OxText > div > .OxInfo,
.OxThemeModern .OxInfoList .OxItem .OxText > div > .OxInfo {
2010-09-06 23:44:37 +00:00
color: rgb(128, 128, 128);
}
.OxThemeModern .OxInfoList .OxItem.OxSelected .OxInfoElement .OxIcon > img,
.OxThemeModern .OxInfoList .OxItem.OxSelected .OxInfoElement .OxIcon .OxVideoPlayer,
.OxThemeModern .OxInfoList .OxItem.OxSelected .OxInfoElement .OxText > div {
border-color: rgba(0, 0, 0, 0);
background: rgba(0, 0, 0, 0);
-moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
-o-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
-webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
2010-09-06 23:44:37 +00:00
.OxThemeModern .OxTextList .OxContent {
2011-05-24 20:26:24 +00:00
background: rgb(16, 16, 16);
}
2010-06-25 15:55:25 +00:00
.OxThemeModern .OxTextList .OxItem .OxCell {
2011-01-06 03:10:40 +00:00
border-right-color: rgb(32, 32, 32);
2010-06-25 15:55:25 +00:00
}
.OxThemeModern .OxTextList .OxItem:nth-child(odd) {
background: rgb(14, 14, 14);
}
.OxThemeModern .OxTextList .OxItem:nth-child(even) {
background: rgb(18, 18, 18);
}
.OxThemeModern .OxTextList .OxItem.OxSelected:nth-child(odd) {
2010-07-13 22:38:53 +00:00
background: rgb(46, 46, 46);
2010-06-25 15:55:25 +00:00
}
.OxThemeModern .OxTextList .OxItem.OxSelected:nth-child(even) {
2010-07-13 22:38:53 +00:00
background: rgb(50, 50, 50);
2010-06-25 15:55:25 +00:00
}
2010-06-30 09:27:02 +00:00
.OxThemeModern .OxTextList .OxFocus .OxItem.OxSelected:nth-child(odd) {
2010-06-25 15:55:25 +00:00
background: rgb(62, 62, 62);
}
2010-06-30 09:27:02 +00:00
.OxThemeModern .OxTextList .OxFocus .OxItem.OxSelected:nth-child(even) {
2010-06-25 15:55:25 +00:00
background: rgb(66, 66, 66);
}
2011-09-03 23:04:18 +00:00
.OxThemeModern .OxTextList .OxItem.OxDroppable.OxDrop:nth-child(odd) .OxCell {
background: rgb(78, 78, 78);
2011-08-28 06:23:15 +00:00
}
2011-09-03 23:04:18 +00:00
.OxThemeModern .OxTextList .OxItem.OxDroppable.OxDrop:nth-child(even) .OxCell {
background: rgb(82, 82, 82);
2011-08-28 06:23:15 +00:00
}
.OxThemeModern .OxTextList .OxHead .OxSelected {
2010-06-28 09:16:36 +00:00
background: -moz-linear-gradient(top, rgb(80, 80, 80), rgb(48, 48, 48));
2011-09-03 15:25:52 +00:00
background: -o-linear-gradient(top, rgb(80, 80, 80), rgb(48, 48, 48));
2011-08-07 16:29:56 +00:00
background: -webkit-linear-gradient(top, rgb(80, 80, 80), rgb(48, 48, 48));
2010-06-25 15:55:25 +00:00
color: rgb(255, 255, 255);
}
.OxThemeModern .OxTextList .OxHead .OxResize .OxCenter {
2010-06-25 15:55:25 +00:00
background: rgb(24, 24, 24);
}
.OxThemeModern .OxTextList .OxHead .OxSelect {
2010-09-06 23:44:37 +00:00
border-color: rgb(24, 24, 24);
}
2010-06-25 15:55:25 +00:00
.OxThemeModern .OxTextList .OxBody .OxItem .OxCell {
2011-02-07 18:57:05 +00:00
border-right-color: rgb(24, 24, 24);
2010-06-25 15:55:25 +00:00
}
.OxThemeModern .OxTextList .OxItem.OxSelected .OxCell {
2011-02-07 18:57:05 +00:00
border-right-color: rgb(40, 40, 40);
2010-06-25 15:55:25 +00:00
}
2010-06-30 09:27:02 +00:00
.OxThemeModern .OxTextList .OxFocus .OxItem.OxSelected .OxCell {
2011-02-07 18:57:05 +00:00
border-right-color: rgb(72, 72, 72);
2010-06-25 15:55:25 +00:00
color: rgb(255, 255, 255);
}
.OxThemeModern .OxTextList .OxBody .OxItem .OxLine {
background: rgb(24, 24, 24);
}
2011-05-22 12:39:57 +00:00
/*
================================================================================
Maps
================================================================================
*/
2011-10-31 11:29:59 +00:00
.OxThemeModern .OxMap .OxMapControl,
.OxThemeModern .OxMap .OxPlaceControl {
2011-10-04 02:26:24 +00:00
border-color: rgb(192, 192, 192);
2011-05-22 12:39:57 +00:00
background: rgba(0, 0, 0, 0.5);
2011-10-04 02:26:24 +00:00
color: rgb(192, 192, 192);
2011-05-22 12:39:57 +00:00
}
.OxThemeModern .OxTypeIcon {
border-color: rgb(255, 255, 255);
}
.OxThemeModern .OxListMap .OxWarning {
border-bottom: 2px dotted rgb(192, 0, 0);
}
2011-05-22 12:39:57 +00:00
2010-02-04 08:02:23 +00:00
/*
================================================================================
Menus
================================================================================
*/
2010-09-03 22:12:25 +00:00
.OxThemeModern .OxMainMenu > .OxTitle.OxSelected {
background: -moz-linear-gradient(top, rgb(80, 80, 80), rgb(48, 48, 48));
2011-09-03 15:25:52 +00:00
background: -o-linear-gradient(top, rgb(80, 80, 80), rgb(48, 48, 48));
2011-08-07 16:29:56 +00:00
background: -webkit-linear-gradient(top, rgb(80, 80, 80), rgb(48, 48, 48));
2010-09-03 22:12:25 +00:00
}
2010-02-04 08:02:23 +00:00
.OxThemeModern .OxMenu {
-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-02-04 08:02:23 +00:00
-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.75);
}
.OxThemeModern .OxMenu .OxBottom,
.OxThemeModern .OxMenu .OxItem,
.OxThemeModern .OxMenu .OxScrollbar,
.OxThemeModern .OxMenu .OxSpace,
.OxThemeModern .OxMenu .OxTop {
background: rgba(48, 48, 48, 0.96);
}
.OxThemeModern .OxMenu .OxItem.OxSelected,
.OxThemeModern .OxMenu .OxLine,
.OxThemeModern .OxMenu .OxScrollbar.OxSelected {
background: rgba(64, 64, 64, 0.96);
}
.OxThemeModern .OxMenu .OxItem.OxDisabled .OxCell {
2010-12-24 17:13:18 +00:00
color: rgb(128, 128, 128);
2010-02-04 08:02:23 +00:00
}
2010-01-07 20:21:07 +00:00
/*
================================================================================
Scrollbars
================================================================================
*/
2010-07-01 12:26:32 +00:00
.OxThemeModern ::-webkit-scrollbar:horizontal {
border-top: 1px solid rgb(48, 48, 48);
border-bottom: 1px solid rgb(48, 48, 48);
2011-08-07 16:29:56 +00:00
background: -webkit-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
2010-07-01 12:26:32 +00:00
}
.OxThemeModern ::-webkit-scrollbar:vertical {
2010-01-07 20:21:07 +00:00
border-left: 1px solid rgb(48, 48, 48);
border-right: 1px solid rgb(48, 48, 48);
2011-08-07 16:29:56 +00:00
background: -webkit-linear-gradient(left, rgb(96, 96, 96), rgb(64, 64, 64));
2010-01-07 20:21:07 +00:00
}
2010-06-30 09:02:13 +00:00
.OxThemeModern ::-webkit-scrollbar-button:horizontal:decrement {
background: url(../png/scrollbarHorizontalDecrement.png);
2010-06-30 09:02:13 +00:00
}
.OxThemeModern ::-webkit-scrollbar-button:horizontal:increment {
background: url(../png/scrollbarHorizontalIncrement.png);
2010-06-30 09:02:13 +00:00
}
2010-01-07 20:21:07 +00:00
.OxThemeModern ::-webkit-scrollbar-button:vertical:decrement {
background: url(../png/scrollbarVerticalDecrement.png);
2010-01-07 20:21:07 +00:00
}
.OxThemeModern ::-webkit-scrollbar-button:vertical:increment {
background: url(../png/scrollbarVerticalIncrement.png);
2010-01-07 20:21:07 +00:00
}
2010-07-01 12:26:32 +00:00
.OxThemeModern ::-webkit-scrollbar-corner {
border-right: 1px solid rgb(48, 48, 48);
border-bottom: 1px solid rgb(48, 48, 48);
2011-08-07 16:29:56 +00:00
background: -webkit-linear-gradient(left top, rgb(96, 96, 96), rgb(32, 32, 32));
2010-07-01 12:26:32 +00:00
}
2010-06-30 09:02:13 +00:00
.OxThemeModern ::-webkit-scrollbar-thumb {
2010-01-07 20:21:07 +00:00
border: 1px solid rgb(48, 48, 48);
2010-06-30 09:02:13 +00:00
}
.OxThemeModern ::-webkit-scrollbar-thumb:horizontal {
2011-08-07 16:29:56 +00:00
background: -webkit-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
2010-06-30 09:02:13 +00:00
}
.OxThemeModern ::-webkit-scrollbar-thumb:vertical {
2011-08-07 16:29:56 +00:00
background: -webkit-linear-gradient(left, rgb(96, 96, 96), rgb(64, 64, 64));
2010-06-30 09:02:13 +00:00
}
.OxThemeModern ::-webkit-scrollbar-track {
border: 1px solid rgb(32, 32, 32);
2010-01-07 20:21:07 +00:00
}
2010-06-30 09:02:13 +00:00
.OxThemeModern ::-webkit-scrollbar-track:horizontal {
2011-08-07 16:29:56 +00:00
background: -webkit-linear-gradient(top, rgb(0, 0, 0), rgb(32, 32, 32));
2010-06-30 09:02:13 +00:00
}
2010-01-07 20:21:07 +00:00
.OxThemeModern ::-webkit-scrollbar-track:vertical {
2011-08-07 16:29:56 +00:00
background: -webkit-linear-gradient(left, rgb(0, 0, 0), rgb(32, 32, 32));
2010-01-07 20:21:07 +00:00
}
.OxThemeModern ::-webkit-scrollbar:active,
2010-06-30 09:02:13 +00:00
.OxThemeModern ::-webkit-scrollbar-thumb:active {
2010-01-07 20:21:07 +00:00
background: rgb(64, 64, 64);
2010-07-24 01:32:08 +00:00
}
/*
================================================================================
SyntaxHighlighter
================================================================================
*/
2011-05-11 12:46:28 +00:00
.OxThemeModern .OxSyntaxHighlighter {
background-color: rgb(0, 0, 0);
}
.OxThemeModern .OxSyntaxHighlighter .OxLineNumbers {
background-color: rgb(32, 32, 32);
color: rgb(128, 128, 128);
}
.OxThemeModern .OxSyntaxHighlighter .OxComment {
color: rgb(128, 128, 128);
font-style: italic;
}
.OxThemeModern .OxSyntaxHighlighter .OxConstant {
color: rgb(255, 128, 128);
font-weight: bold;
}
.OxThemeModern .OxSyntaxHighlighter .OxIdentifier {
color: rgb(255, 255, 255);
}
.OxThemeModern .OxSyntaxHighlighter .OxKeyword {
color: rgb(128, 128, 255);
font-weight: bold;
}
.OxThemeModern .OxSyntaxHighlighter .OxLinebreak {
color: rgb(64, 64, 64);
font-weight: normal;
font-style: normal;
}
.OxThemeModern .OxSyntaxHighlighter .OxMethod {
color: rgb(128, 255, 255);
}
.OxThemeModern .OxSyntaxHighlighter .OxNumber {
color: rgb(255, 128, 128);
}
.OxThemeModern .OxSyntaxHighlighter .OxObject {
color: rgb(128, 255, 255);
font-weight: bold;
}
.OxThemeModern .OxSyntaxHighlighter .OxOperator {
color: rgb(128, 128, 255);
}
.OxThemeModern .OxSyntaxHighlighter .OxProperty {
color: rgb(128, 255, 128);
font-weight: bold;
}
.OxThemeModern .OxSyntaxHighlighter .OxRegexp {
color: rgb(255, 255, 128);
}
.OxThemeModern .OxSyntaxHighlighter .OxString {
color: rgb(128, 255, 128);
}
.OxThemeModern .OxSyntaxHighlighter .OxWhitespace {
}
.OxThemeModern .OxSyntaxHighlighter .OxWhitespace.OxTrailing {
background: rgb(255, 255, 255);
}
2010-09-17 22:10:07 +00:00
/*
================================================================================
Video
================================================================================
*/
2011-02-03 22:58:31 +00:00
.OxThemeModern .OxAnnotation {
border-color: rgb(48, 48, 48);
}
.OxThemeModern .OxAnnotation.OxSelected {
background: rgb(48, 48, 48);
}
2011-02-03 22:58:31 +00:00
2011-05-14 19:32:49 +00:00
.OxThemeModern .OxSmallVideoTimeline .OxMarkerPlay {
border-color: rgba(0, 0, 0, 0.5);
}
.OxThemeModern .OxSmallVideoTimeline .OxMarkerPlay > div {
border-color: rgba(255, 255, 255, 1);
}
.OxThemeModern .OxSmallVideoTimeline .OxMarkerPlay.OxPaused > div {
border-color: rgba(255, 255, 255, 0.5);
}
.OxThemeModern .OxSmallVideoTimeline .OxMarkerPlay > div > div {
border-color: rgba(0, 0, 0, 0.5);
}
.OxThemeModern .OxVideoPlayer .OxButton.OxDisabled {
background: transparent;
opacity: 0.25;
}
2011-05-14 19:32:49 +00:00
.OxThemeModern .OxVideoPlayer .OxControls.OxOnScreen {
background-image: -moz-linear-gradient(top, rgba(64, 64, 64, 0.5), rgba(0, 0, 0, 0.5));
2011-09-03 15:25:52 +00:00
background-image: -o-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));
2010-09-17 22:10:07 +00:00
}
.OxThemeModern .OxVideoPlayer .OxFind {
background-image: -moz-linear-gradient(top, rgba(64, 64, 64, 0.5), rgba(0, 0, 0, 0.5));
2011-09-03 15:25:52 +00:00
background-image: -o-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));
}
2011-11-04 15:13:51 +00:00
.OxThemeModern .OxVideoPlayer div.OxInput {
background: transparent;
}
.OxThemeModern .OxVideoPlayer input.OxInput {
2011-11-04 15:13:51 +00:00
background-image: -moz-linear-gradient(top, rgba(32, 32, 32, 0.75), rgba(64, 64, 64, 0.75));
background-image: -o-linear-gradient(top, rgba(32, 32, 32, 0.75), rgba(64, 64, 64, 0.75));
background-image: -webkit-linear-gradient(top, rgba(32, 32, 32, 0.75), rgba(64, 64, 64, 0.75));
}
.OxThemeModern .OxVideoPlayer .OxFind input.OxInput {
background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.75), rgba(64, 64, 64, 0.75));
background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.75), rgba(64, 64, 64, 0.75));
background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.75), rgba(64, 64, 64, 0.75));
}
2011-12-22 15:47:46 +00:00
.OxThemeModern .OxVideoPlayer .OxSettings > div {
background-color: rgba(32, 32, 32, 0.5);
}
2011-12-22 15:47:46 +00:00
.OxThemeModern .OxVideoPlayer .OxSettings > div.OxSelected {
background-image: -moz-linear-gradient(top, rgba(48, 48, 48, 0.5), rgba(16, 16, 16, 0.5));
2011-09-03 15:25:52 +00:00
background-image: -o-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));
}
2011-12-22 15:47:46 +00:00
.OxThemeModern .OxVideoPlayer .OxSettings > div.OxLine {
background-color: rgba(64, 64, 64, 0.5);
}
.OxThemeModern .OxVideoPlayer .OxVolume {
background-image: -moz-linear-gradient(top, rgba(64, 64, 64, 0.5), rgba(0, 0, 0, 0.5));
2011-09-03 15:25:52 +00:00
background-image: -o-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));
}
.OxThemeModern .OxVideoPlayer .OxVolume .OxRange .OxTrack {
background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(64, 64, 64, 0.5));
2011-09-03 15:25:52 +00:00
background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(64, 64, 64, 0.5));
2011-11-04 15:13:51 +00:00
background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.75), rgba(64, 64, 64, 0.75));
}
.OxThemeModern .OxVideoPlayer .OxVolume .OxRange .OxThumb {
background-image: -moz-linear-gradient(top, rgba(64, 64, 64, 0.5), rgba(0, 0, 0, 0.5));
2011-09-03 15:25:52 +00:00
background-image: -o-linear-gradient(top, rgba(64, 64, 64, 0.5), rgba(0, 0, 0, 0.5));
2011-11-04 15:13:51 +00:00
background-image: -webkit-linear-gradient(top, rgba(64, 64, 64, 0.75), rgba(0, 0, 0, 0.75));
}
.OxThemeModern .OxVideoPlayer .OxVolume .OxRange .OxThumb:active {
background-image: -moz-linear-gradient(top, rgba(64, 64, 64, 0.5), rgba(0, 0, 0, 0.5));
2011-09-03 15:25:52 +00:00
background-image: -o-linear-gradient(top, rgba(64, 64, 64, 0.5), rgba(0, 0, 0, 0.5));
2011-11-04 15:13:51 +00:00
background-image: -webkit-linear-gradient(top, rgba(64, 64, 64, 1), rgba(0, 0, 0, 1));
}
// fixme: used?
.OxThemeModern .OxVideoPlayer .OxSelect {
2011-05-20 14:11:42 +00:00
border-color: transparent;
//margin-left: 0px;
//margin-right: -18px;
background: transparent;
2011-05-20 14:11:42 +00:00
//font-size: 9px;
}
.OxThemeModern .OxVideoPlayer .OxSelect.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;
}
.OxThemeModern .OxVideoPlayer .OxSelect div {
2011-05-20 14:11:42 +00:00
//padding: 0 0 0 2px;
//font-size: 9px;
}
.OxThemeModern .OxVideoPlayer .OxSelect input {
2011-05-20 14:11:42 +00:00
//display: none;
}
2012-01-17 11:50:31 +00:00
/* FIXME: the first three should apply for every ArrayEditable */
2012-01-16 17:51:53 +00:00
.OxThemeModern .OxAnnotationFolder .OxArrayEditable .OxSeparator {
color: rgb(160, 160, 160);
}
.OxThemeModern .OxAnnotationFolder .OxEditableElement.OxPlaceholder .OxValue {
color: rgb(96, 96, 96);
}
2012-01-17 11:50:31 +00:00
.OxThemeModern .OxAnnotationFolder .OxEditableElement.OxWarning .OxValue {
border-bottom: 2px dotted rgb(192, 0, 0);
2012-01-17 11:50:31 +00:00
}
.OxThemeModern .OxAnnotationFolder .OxArrayEditable .OxEditableElement.OxEditable.OxSelected {
2012-01-11 07:52:01 +00:00
background: rgb(64, 64, 192);
2012-01-16 17:51:53 +00:00
}
.OxThemeModern .OxAnnotationFolder .OxArrayEditableInput .OxEditableElement.OxSelected {
2012-01-11 07:52:01 +00:00
box-shadow: 0 0 1px rgb(255, 255, 255);
}
.OxThemeModern .OxAnnotationFolder .OxArrayEditableTextarea .OxEditableElement.OxEditable.OxEditing {
2012-01-16 17:51:53 +00:00
background: rgb(64, 128, 64);
}
.OxThemeModern .OxAnnotationFolder .OxArrayEditable .OxInput.OxFocus {
box-shadow: none;
}
2012-01-12 10:39:05 +00:00
.OxThemeModern .OxAnnotationFolder .OxEditableElement input {
2012-01-11 07:52:01 +00:00
background: rgb(64, 128, 64);
color: rgb(255, 255, 255);
}
2012-01-12 10:39:05 +00:00
.OxThemeModern .OxAnnotationFolder .OxEditableElement textarea {
2012-01-11 07:52:01 +00:00
background: rgb(64, 128, 64);
color: rgb(255, 255, 255);
}
2010-09-17 22:10:07 +00:00
2012-01-16 17:51:53 +00:00
2010-07-24 01:32:08 +00:00
/*
================================================================================
Miscellaneous
================================================================================
*/
2011-12-22 07:24:20 +00:00
.OxThemeModern .OxSelectableElement.OxSelected {
background: rgb(48, 48, 48);
}
2011-12-22 07:24:20 +00:00
.OxThemeModern .OxSelectableElement.OxSelected.OxFocus {
background: rgb(64, 64, 64);
}
2011-09-18 02:22:35 +00:00
.OxThemeModern .OxScreen {
background: rgb(32, 32, 32);
color: rgb(224, 224, 224);
}
.OxThemeModern .OxScreen .OxReflection {
background-image: -moz-linear-gradient(top, rgba(32, 32, 32, 0.75), rgba(32, 32, 32, 1), rgba(32, 32, 32, 1));
2011-09-18 06:54:34 +00:00
background-image: -o-linear-gradient(top, rgba(32, 32, 32, 0.75), rgba(32, 32, 32, 1), rgba(32, 32, 32, 1));
background-image: -webkit-linear-gradient(top, rgba(32, 32, 32, 0.75), rgba(32, 32, 32, 1), rgba(32, 32, 32, 1));
2011-09-18 02:22:35 +00:00
}
2010-07-24 01:32:08 +00:00
.OxThemeModern .OxTooltip {
2011-01-15 23:26:20 +00:00
border: 1px solid rgba(128, 128, 128, 0.96);
background: rgba(0, 0, 0, 0.96);
2010-09-03 08:47:40 +00:00
color: rgba(128, 128, 128, 1);
-moz-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
2011-09-03 15:25:52 +00:00
-o-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
2010-09-03 08:47:40 +00:00
-webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
2011-04-25 12:14:03 +00:00
}
2011-10-24 15:58:51 +00:00
.OxThemeModern ::selection {
background: rgb(192, 192, 192);
//color: rgb(255, 255, 255);
}