oxjs/source/UI/css/theme.css

1548 lines
66 KiB
CSS
Raw Normal View History

2013-02-10 15:30:36 +00:00
body.$themeClass {
background-color: $bodyBackground;
}
body.$themeClass:fullscreen {
background-color: $bodyBackground;
}
body.$themeClass:-moz-full-screen {
background-color: $bodyBackground;
}
body.$themeClass:-ms-full-screen {
background-color: $bodyBackground;
}
2013-02-10 15:26:37 +00:00
body.$themeClass:-webkit-full-screen {
2012-12-28 23:53:18 +00:00
background-color: $bodyBackground;
width: 100%;
height: 100%;
2012-12-28 23:53:18 +00:00
}
2013-03-14 05:56:38 +00:00
.$themeClass a,
.$themeClass .OxLink {
2012-12-29 14:55:45 +00:00
color: $bodyLinkColor;
2012-12-28 23:53:18 +00:00
}
.$themeClass div {
color: $bodyColor;
}
.$themeClass .OxHighlight {
background-image: -moz-linear-gradient(top, $bodyHighlightGradient);
background: -ms-linear-gradient(top, $bodyHighlightGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $bodyHighlightGradient);
background-image: -webkit-linear-gradient(top, $bodyHighlightGradient);
background-image: linear-gradient(top, $bodyHighlightGradient);
2012-12-28 23:53:18 +00:00
color: $bodyHighlightColor;
}
2013-02-22 03:36:07 +00:00
.$themeClass .OxSpecialLink {
background-image: -moz-linear-gradient(top, $bodySpecialLinkGradient);
background: -ms-linear-gradient(top, $bodySpecialLinkGradient);
2013-02-22 03:36:07 +00:00
background-image: -o-linear-gradient(top, $bodySpecialLinkGradient);
background-image: -webkit-linear-gradient(top, $bodySpecialLinkGradient);
background-image: linear-gradient(top, $bodySpecialLinkGradient);
2013-02-22 03:36:07 +00:00
color: $bodySpecialLinkColor;
}
.$themeClass .OxSpecialLink.OxActive {
background-image: -moz-linear-gradient(top, $bodySpecialLinkActiveGradient);
background: -ms-linear-gradient(top, $bodySpecialLinkActiveGradient);
2013-02-22 03:36:07 +00:00
background-image: -o-linear-gradient(top, $bodySpecialLinkActiveGradient);
background-image: -webkit-linear-gradient(top, $bodySpecialLinkActiveGradient);
background-image: linear-gradient(top, $bodySpecialLinkActiveGradient);
2013-02-22 03:36:07 +00:00
color: $bodySpecialLinkActiveColor;
}
2012-12-28 23:53:18 +00:00
.$themeClass .OxBright {
color: $bodyBrightColor;
}
.$themeClass .OxLight {
color: $bodyLightColor;
}
2012-12-29 12:58:04 +00:00
.$themeClass .OxSelected .OxLight {
color: $bodySelectedLightColor;
}
.$themeClass .OxFocus .OxSelected .OxLight {
color: $bodyFocusSelectedLightColor;
}
2012-12-28 23:53:18 +00:00
.$themeClass .OxGrid {
background-color: $gridGradient[0];
background-image:
-moz-linear-gradient(45deg, $gridGradient[1] 25%, transparent 25%, transparent 75%, $gridGradient[1] 75%, $gridGradient[1]),
2012-12-28 23:53:18 +00:00
-moz-linear-gradient(45deg, $gridGradient[1] 25%, transparent 25%, transparent 75%, $gridGradient[1] 75%, $gridGradient[1]);
background:
-ms-linear-gradient(45deg, $gridGradient[1] 25%, transparent 25%, transparent 75%, $gridGradient[1] 75%, $gridGradient[1]),
-ms-linear-gradient(45deg, $gridGradient[1] 25%, transparent 25%, transparent 75%, $gridGradient[1] 75%, $gridGradient[1]);
2012-12-28 23:53:18 +00:00
background-image:
-o-linear-gradient(45deg, $gridGradient[1] 25%, transparent 25%, transparent 75%, $gridGradient[1] 75%, $gridGradient[1]),
2012-12-28 23:53:18 +00:00
-o-linear-gradient(45deg, $gridGradient[1] 25%, transparent 25%, transparent 75%, $gridGradient[1] 75%, $gridGradient[1]);
background-image:
-webkit-linear-gradient(45deg, $gridGradient[1] 25%, transparent 25%, transparent 75%, $gridGradient[1] 75%, $gridGradient[1]),
2012-12-28 23:53:18 +00:00
-webkit-linear-gradient(45deg, $gridGradient[1] 25%, transparent 25%, transparent 75%, $gridGradient[1] 75%, $gridGradient[1]);
background-image:
linear-gradient(45deg, $gridGradient[1] 25%, transparent 25%, transparent 75%, $gridGradient[1] 75%, $gridGradient[1]),
linear-gradient(45deg, $gridGradient[1] 25%, transparent 25%, transparent 75%, $gridGradient[1] 75%, $gridGradient[1]);
2012-12-28 23:53:18 +00:00
}
2012-12-29 16:41:39 +00:00
.$themeClass .OxReflection > div {
background-image: -moz-linear-gradient(top, $bodyReflectionGradient);
background: -ms-linear-gradient(top, $bodyReflectionGradient);
2012-12-29 16:41:39 +00:00
background-image: -o-linear-gradient(top, $bodyReflectionGradient);
background-image: -webkit-linear-gradient(top, $bodyReflectionGradient);
background-image: linear-gradient(top, $bodyReflectionGradient);
2012-12-29 16:41:39 +00:00
}
2012-12-28 23:53:18 +00:00
/*
================================================================================
Bars
================================================================================
*/
.$themeClass .OxBar.OxHorizontal {
background-image: -moz-linear-gradient(top, $barGradient);
background: -ms-linear-gradient(top, $barGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $barGradient);
background-image: -webkit-linear-gradient(top, $barGradient);
background-image: linear-gradient(top, $barGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxProgressbar {
border-color: $formelementBorder;
background-image: -moz-linear-gradient(top, $buttonGradient);
background: -ms-linear-gradient(top, $buttonGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $buttonGradient);
background-image: -webkit-linear-gradient(top, $buttonGradient);
background-image: linear-gradient(top, $buttonGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxProgressbar .OxTrack {
border-color: $formelementBorder;
background-image: -moz-linear-gradient(top, $inputGradient);
background: -ms-linear-gradient(top, $inputGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $inputGradient);
background-image: -webkit-linear-gradient(top, $inputGradient);
background-image: linear-gradient(top, $inputGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxProgressbar .OxProgress {
border-color: $formelementBorder;
background-image:
-moz-repeating-linear-gradient(
-45deg, transparent 0, transparent 25%,
$progressbarBackground 25%, $progressbarBackground 50%,
transparent 50%, transparent 75%,
$progressbarBackground 75%, $progressbarBackground 100%
),
2012-12-28 23:53:18 +00:00
-moz-linear-gradient(top, $buttonGradient);
background:
-ms-repeating-linear-gradient(
-45deg, transparent 0, transparent 25%,
$progressbarBackground 25%, $progressbarBackground 50%,
transparent 50%, transparent 75%,
$progressbarBackground 75%, $progressbarBackground 100%
),
-ms-linear-gradient(top, $buttonGradient);
2012-12-28 23:53:18 +00:00
background-image:
-o-repeating-linear-gradient(
-45deg, transparent 0, transparent 25%,
$progressbarBackground 25%, $progressbarBackground 50%,
transparent 50%, transparent 75%,
$progressbarBackground 75%, $progressbarBackground 100%
),
2012-12-28 23:53:18 +00:00
-o-linear-gradient(top, $buttonGradient);
background-image:
-webkit-repeating-linear-gradient(
-45deg, transparent 0, transparent 25%,
$progressbarBackground 25%, $progressbarBackground 50%,
transparent 50%, transparent 75%,
$progressbarBackground 75%, $progressbarBackground 100%
),
2012-12-28 23:53:18 +00:00
-webkit-linear-gradient(top, $buttonGradient);
background-image:
repeating-linear-gradient(
-45deg, transparent 0, transparent 25%,
$progressbarBackground 25%, $progressbarBackground 50%,
transparent 50%, transparent 75%,
$progressbarBackground 75%, $progressbarBackground 100%
),
linear-gradient(top, $buttonGradient);
background-size: 32px 32px, 16px 16px;
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxProgressbar .OxProgress.OxAnimate {
background-image:
-moz-repeating-linear-gradient(
-45deg, transparent 0, transparent 25%,
$progressbarAnimateBackground 25%, $progressbarAnimateBackground 50%,
transparent 50%, transparent 75%,
$progressbarAnimateBackground 75%, $progressbarAnimateBackground 100%
),
-moz-linear-gradient(top, $buttonGradient);
background:
-ms-repeating-linear-gradient(
-45deg, transparent 0, transparent 25%,
$progressbarAnimateBackground 25%, $progressbarAnimateBackground 50%,
transparent 50%, transparent 75%,
$progressbarAnimateBackground 75%, $progressbarAnimateBackground 100%
),
-ms-linear-gradient(top, $buttonGradient);
2012-12-28 23:53:18 +00:00
background-image:
-o-repeating-linear-gradient(
-45deg, transparent 0, transparent 25%,
$progressbarAnimateBackground 25%, $progressbarAnimateBackground 50%,
transparent 50%, transparent 75%,
$progressbarAnimateBackground 75%, $progressbarAnimateBackground 100%
),
-o-linear-gradient(top, $buttonGradient);
background-image:
-webkit-repeating-linear-gradient(
-45deg, transparent 0, transparent 25%,
$progressbarAnimateBackground 25%, $progressbarAnimateBackground 50%,
transparent 50%, transparent 75%,
$progressbarAnimateBackground 75%, $progressbarAnimateBackground 100%
),
-webkit-linear-gradient(top, $buttonGradient);
background-image:
repeating-linear-gradient(
-45deg, transparent 0, transparent 25%,
$progressbarAnimateBackground 25%, $progressbarAnimateBackground 50%,
transparent 50%, transparent 75%,
$progressbarAnimateBackground 75%, $progressbarAnimateBackground 100%
),
linear-gradient(top, $buttonGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxResizebar > .OxLine {
background-color: $bodyBorder;
}
/*
================================================================================
Calendar
================================================================================
*/
.$themeClass .OxCalendar .OxTimeline > div.odd {
background-image: -moz-linear-gradient(top, $calendarTimelineOddGradient);
background: -ms-linear-gradient(top, $calendarTimelineOddGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $calendarTimelineOddGradient);
background-image: -webkit-linear-gradient(top, $calendarTimelineOddGradient);
background-image: linear-gradient(top, $calendarTimelineOddGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxCalendar .OxTimeline > div.even {
background-image: -moz-linear-gradient(top, $calendarTimelineEvenGradient);
background: -ms-linear-gradient(top, $calendarTimelineEvenGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $calendarTimelineEvenGradient);
background-image: -webkit-linear-gradient(top, $calendarTimelineEvenGradient);
background-image: linear-gradient(top, $calendarTimelineEvenGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxCalendar .OxBackground > div {
background-color: $calendarBackground;
}
.$themeClass .OxCalendar .OxBackground > div.line {
background-color: $calendarLineBackground;
}
.$themeClass .OxCalendar .OxLine > .OxEvent {
color: $calendarEventColor;
}
.$themeClass .OxCalendar .OxLine > .OxEvent.OxSelected {
box-shadow: inset 0 0 1px $calendarEventShadow,
inset 0 0 1px $calendarEventShadow,
inset 0 0 1px $calendarEventShadow,
inset 0 0 1px $calendarEventShadow;
}
.$themeClass .OxEvent.OxDate {
background-image: -moz-linear-gradient(top, $calendarEventDateGradient);
background: -ms-linear-gradient(top, $calendarEventDateGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $calendarEventDateGradient);
background-image: -webkit-linear-gradient(top, $calendarEventDateGradient);
background-image: linear-gradient(top, $calendarEventDateGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxEvent.OxOther {
background-image: -moz-linear-gradient(top, $calendarEventOtherGradient);
background: -ms-linear-gradient(top, $calendarEventOtherGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $calendarEventOtherGradient);
background-image: -webkit-linear-gradient(top, $calendarEventOtherGradient);
background-image: linear-gradient(top, $calendarEventOtherGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxEvent.OxPerson {
background-image: -moz-linear-gradient(top, $calendarEventPersonGradient);
background: -ms-linear-gradient(top, $calendarEventPersonGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $calendarEventPersonGradient);
background-image: -webkit-linear-gradient(top, $calendarEventPersonGradient);
background-image: linear-gradient(top, $calendarEventPersonGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxEvent.OxPlace {
background-image: -moz-linear-gradient(top, $calendarEventPlaceGradient);
background: -ms-linear-gradient(top, $calendarEventPlaceGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $calendarEventPlaceGradient);
background-image: -webkit-linear-gradient(top, $calendarEventPlaceGradient);
background-image: linear-gradient(top, $calendarEventPlaceGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxCalendar .OxOverlay div:nth-child(odd) {
background-color: $calendarOverlayOddBackground;
}
.$themeClass .OxCalendar .OxOverlay div:nth-child(even) {
background-color: $calendarOverlayEvenBackground;
box-shadow: inset 0 0 2px $calendarOverlayEvenShadow;
}
2013-01-31 11:32:37 +00:00
.$themeClass .OxCalendar .OxCalendarControl,
.$themeClass .OxCalendar .OxEventControl {
2012-12-28 23:53:18 +00:00
border-color: calendarControlBorder;
background-image: -moz-linear-gradient(top, $calendarControlGradient);
background: -ms-linear-gradient(top, $calendarControlGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $calendarControlGradient);
background-image: -webkit-linear-gradient(top, $calendarControlGradient);
background-image: linear-gradient(top, $calendarControlGradient);
2012-12-28 23:53:18 +00:00
color: $calendarControlColor;
}
.$themeClass .OxCalendarEditor .OxWarning {
border-bottom: 2px dotted $bodyWarningBorder;
}
/*
================================================================================
Dialog
================================================================================
*/
.$themeClass .OxDialog {
-moz-box-shadow: 0 2px 8px $dialogShadow;
-ms-box-shadow: 0 2px 8px $dialogShadow;
2012-12-28 23:53:18 +00:00
-o-box-shadow: 0 2px 8px $dialogShadow;
-webkit-box-shadow: 0 2px 8px $dialogShadow;
box-shadow: 0 2px 8px $dialogShadow;
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxDialog .OxBar {
background-image: -moz-linear-gradient(top, $dialogBarGradient);
background: -ms-linear-gradient(top, $dialogBarGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $dialogBarGradient);
background-image: -webkit-linear-gradient(top, $dialogBarGradient);
background-image: linear-gradient(top, $dialogBarGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxDialog .OxContent {
background-color: $dialogBackground;
}
.$themeClass .OxDialog .OxIconList .OxContent {
background-color: transparent;
}
2012-12-29 16:41:39 +00:00
.$themeClass .OxDialog .OxReflection > div {
background-image: -moz-linear-gradient(top, $dialogReflectionGradient);
background: -ms-linear-gradient(top, $dialogReflectionGradient);
2012-12-29 16:41:39 +00:00
background-image: -o-linear-gradient(top, $dialogReflectionGradient);
background-image: -webkit-linear-gradient(top, $dialogReflectionGradient);
background-image: linear-gradient(top, $dialogReflectionGradient);
2012-12-29 16:41:39 +00:00
}
2012-12-28 23:53:18 +00:00
.$themeClass .OxLayer {
background-color: $dialogLayerBackground;
}
/*
================================================================================
DocPage
================================================================================
*/
.$themeClass .OxFailed {
color: $documentWarningColor;
}
/*
================================================================================
Document
================================================================================
*/
.$themeClass .OxDocument code {
color: $documentCodeColor;
}
.$themeClass .OxDocument div {
border-color: $documentBorder;
}
/*
================================================================================
Forms
================================================================================
*/
.$themeClass .OxButton,
.$themeClass input.OxCheckbox,
.$themeClass input.OxInput,
.$themeClass textarea,
.$themeClass .OxLabel,
.$themeClass .OxTrack {
border-color: $formelementBorder;
color: $formelementColor;
}
.$themeClass .OxSelect {
border-color: $formelementBorder;
}
.$themeClass .OxSelect > .OxTitle {
color: $formelementColor;
}
.$themeClass .OxInputLabel {
color: $formelementColor;
}
.$themeClass .OxButton,
.$themeClass div.OxInput,
.$themeClass .OxSelect {
background-image: -moz-linear-gradient(top, $buttonGradient);
background: -ms-linear-gradient(top, $buttonGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $buttonGradient);
background-image: -webkit-linear-gradient(top, $buttonGradient);
background-image: linear-gradient(top, $buttonGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass div.OxInput.OxTextarea {
background-color: transparent;
}
.$themeClass .OxButton:active {
background-image: -moz-linear-gradient(top, $buttonActiveGradient);
background: -ms-linear-gradient(top, $buttonActiveGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $buttonActiveGradient);
background-image: -webkit-linear-gradient(top, $buttonActiveGradient);
background-image: linear-gradient(top, $buttonActiveGradient);
2012-12-28 23:53:18 +00:00
color: $buttonActiveColor;
}
.$themeClass .OxCheckbox:active {
background-image: -moz-linear-gradient(top, $inputActiveGradient);
background: -ms-linear-gradient(top, $inputActiveGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $inputActiveGradient);
background-image: -webkit-linear-gradient(top, $inputActiveGradient);
background-image: linear-gradient(top, $inputActiveGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxButton:focus {
-moz-box-shadow: 0 0 2px $formelementFocusShadow;
-ms-box-shadow: 0 0 2px $formelementFocusShadow;
2012-12-28 23:53:18 +00:00
-o-box-shadow: 0 0 2px $formelementFocusShadow;
2012-12-29 14:55:45 +00:00
-webkit-box-shadow: 0 0 2px $formelementFocusShadow;
box-shadow: 0 0 2px $formelementFocusShadow;
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxButton.OxDisabled {
background-image: -moz-linear-gradient(top, $buttonDisabledGradient);
background: -ms-linear-gradient(top, $buttonDisabledGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $buttonDisabledGradient);
background-image: -webkit-linear-gradient(top, $buttonDisabledGradient);
background-image: linear-gradient(top, $buttonDisabledGradient);
color: $buttonDisabledColor;
2012-12-28 23:53:18 +00:00
}
2014-01-05 09:59:45 +00:00
2013-01-31 12:05:03 +00:00
.$themeClass .OxButton.OxSymbol,
2013-01-31 12:06:21 +00:00
.$themeClass .OxButton.OxSymbol:active,
2013-01-31 11:58:35 +00:00
.$themeClass .OxButton.OxSymbol.OxDisabled,
2013-01-31 12:05:03 +00:00
.$themeClass .OxButton.OxVideo,
2013-01-31 12:06:21 +00:00
.$themeClass .OxButton.OxVideo:active,
2013-01-31 11:58:35 +00:00
.$themeClass .OxButton.OxVideo.OxDisabled {
2013-01-31 12:09:41 +00:00
border-color: transparent;
2012-12-28 23:53:18 +00:00
background-color: transparent;
background-image: none;
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxButton.OxSelected,
.$themeClass .OxSelect.OxSelected,
.$themeClass .OxCollapsePanel > .OxBar > .OxExtras > .OxSelect.OxSelected {
background-image: -moz-linear-gradient(top, $buttonSelectedGradient);
background: -ms-linear-gradient(top, $buttonSelectedGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $buttonSelectedGradient);
background-image: -webkit-linear-gradient(top, $buttonSelectedGradient);
background-image: linear-gradient(top, $buttonSelectedGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxButton.OxSelected,
.$themeClass .OxSelect.OxSelected:not(.OxColor) > .OxTitle,
2012-12-28 23:53:18 +00:00
.$themeClass .OxCollapsePanel > .OxBar > .OxExtras > .OxSelect.OxSelected {
color: $buttonSelectedColor;
}
.$themeClass .OxSelect.OxSelected.OxColor > .OxButton.OxSelected {
2013-03-02 15:30:39 +00:00
background: transparent;
}
2012-12-28 23:53:18 +00:00
.$themeClass .OxButton.OxTab.OxSelected {
border-bottom: 1px solid $buttonSelectedGradient[1];
}
2014-01-05 09:59:45 +00:00
.$themeClass .OxButton.OxOverlay {
border-color: $formelementOverlayBorder;
background-image: -moz-linear-gradient(top, $buttonOverlayGradient);
background: -ms-linear-gradient(top, $buttonOverlayGradient);
2014-01-05 09:59:45 +00:00
background-image: -o-linear-gradient(top, $buttonOverlayGradient);
background-image: -webkit-linear-gradient(top, $buttonOverlayGradient);
background-image: linear-gradient(top, $buttonOverlayGradient);
color: $formelementOverlayColor;
-moz-box-shadow: 0 0 2px $formelementOverlayShadow;
-ms-box-shadow: 0 0 2px $formelementOverlayShadow;
-o-box-shadow: 0 0 2px $formelementOverlayShadow;
-webkit-box-shadow: 0 0 2px $formelementOverlayShadow;
box-shadow: 0 0 2px $formelementOverlayShadow;
}
.$themeClass .OxButton.OxOverlay:active {
border-color: $formelementOverlayBorder;
background-image: -moz-linear-gradient(top, $buttonOverlayActiveGradient);
background: -ms-linear-gradient(top, $buttonOverlayActiveGradient);
2014-01-05 09:59:45 +00:00
background-image: -o-linear-gradient(top, $buttonOverlayActiveGradient);
background-image: -webkit-linear-gradient(top, $buttonOverlayActiveGradient);
background-image: linear-gradient(top, $buttonOverlayActiveGradient);
color: $buttonOverlayActiveColor;
}
.$themeClass .OxButton.OxOverlay.OxDisabled {
background-image: -moz-linear-gradient(top, $buttonOverlayDisabledGradient);
background: -ms-linear-gradient(top, $buttonOverlayDisabledGradient);
2014-01-05 09:59:45 +00:00
background-image: -o-linear-gradient(top, $buttonOverlayDisabledGradient);
background-image: -webkit-linear-gradient(top, $buttonOverlayDisabledGradient);
background-image: linear-gradient(top, $buttonOverlayDisabledGradient);
color: $buttonOverlayDisabledColor;
}
.$themeClass .OxButton.OxOverlay.OxSelected {
background-image: -moz-linear-gradient(top, $buttonOverlaySelectedGradient);
background: -ms-linear-gradient(top, $buttonOverlaySelectedGradient);
2014-01-05 09:59:45 +00:00
background-image: -o-linear-gradient(top, $buttonOverlaySelectedGradient);
background-image: -webkit-linear-gradient(top, $buttonOverlaySelectedGradient);
background-image: linear-gradient(top, $buttonOverlaySelectedGradient);
color: $buttonOverlaySelectedColor;
}
.$themeClass .OxButtonGroup.OxOverlay {
height: 16px;
border-radius: 8px;
-moz-box-shadow: 0 0 2px $formelementOverlayShadow;
-ms-box-shadow: 0 0 2px $formelementOverlayShadow;
-o-box-shadow: 0 0 2px $formelementOverlayShadow;
-webkit-box-shadow: 0 0 2px $formelementOverlayShadow;
box-shadow: 0 0 2px $formelementOverlayShadow;
}
.$themeClass .OxButtonGroup.OxOverlay .OxButton {
-moz-box-shadow: 0 0 0 transparent;
-ms-box-shadow: 0 0 0 transparent;
-0-box-shadow: 0 0 0 transparent;
-webkit-box-shadow: 0 0 0 transparent;
box-shadow: 0 0 0 transparent;
}
2012-12-28 23:53:18 +00:00
.$themeClass .OxFileInput.OxDisabled > .OxBar {
background-image: -moz-linear-gradient(top, $buttonDisabledGradient);
background: -ms-linear-gradient(top, $buttonDisabledGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $buttonDisabledGradient);
background-image: -webkit-linear-gradient(top, $buttonDisabledGradient);
background-image: linear-gradient(top, $buttonDisabledGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxFileInput.OxDisabled > .OxBar > div {
color: $buttonDisabledColor
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxFormMessage {
color: $inputErrorColor;
}
.$themeClass input.OxCheckbox,
.$themeClass input.OxInput,
.$themeClass textarea,
.$themeClass .OxTrack {
background-image: -moz-linear-gradient(top, $inputGradient);
background: -ms-linear-gradient(top, $inputGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $inputGradient);
background-image: -webkit-linear-gradient(top, $inputGradient);
background-image: linear-gradient(top, $inputGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass div.OxInput.OxError input {
color: $inputErrorColor;
}
.$themeClass .OxInput:focus {
2012-12-29 14:55:45 +00:00
border-color: $inputFocusBorder;
-moz-box-shadow: inset 0 0 2px $inputFocusShadow;
-ms-box-shadow: inset 0 0 2px $inputFocusShadow;
2012-12-29 14:55:45 +00:00
-o-box-shadow: inset 0 0 2px $inputFocusShadow;
-webkit-box-shadow: inset 0 0 2px $inputFocusShadow;
box-shadow: inset 0 0 2px $inputFocusShadow;
2012-12-28 23:53:18 +00:00
}
.$themeClass div.OxInput.OxFocus,
.$themeClass .OxSelect.OxFocus {
-moz-box-shadow: 0 0 2px $formelementFocusShadow;
-ms-box-shadow: 0 0 2px $formelementFocusShadow;
2012-12-28 23:53:18 +00:00
-o-box-shadow: 0 0 2px $formelementFocusShadow;
-webkit-box-shadow: 0 0 2px $formelementFocusShadow;
box-shadow: 0 0 2px $formelementFocusShadow;
2012-12-28 23:53:18 +00:00
}
/* FIXME: modern only? */
.$themeClass div.OxInput.OxFocus > .OxInputLabel {
border-color: rgb(80, 80, 80);
}
.$themeClass .OxInput.OxPlaceholder {
color: $inputPlaceholderColor;
}
.$themeClass .OxLabel {
background-color: $labelBackground;
}
2014-01-05 09:59:45 +00:00
.$themeClass .OxLabel.OxDisabled {
color: $labelDisabledColor;
}
.$themeClass .OxLabel.OxOverlay {
background-color: $labelOverlayBackground;
}
.$themeClass .OxLabel.OxOverlay.OxDisabled {
color: $labelOverlayDisabledColor;
}
.$themeClass .OxDocPage .OxLabel.OxSquare,
.$themeClass .OxExamplePage .OxLabel.OxSquare {
background-color: $documentLabelBackground;
}
2012-12-28 23:53:18 +00:00
.$themeClass input.OxCheckbox.OxDisabled,
.$themeClass input.OxInput:disabled,
.$themeClass input.OxInput[readonly=readonly],
.$themeClass textarea.OxInput[readonly=readonly] {
2012-12-28 23:53:18 +00:00
background-image: -moz-linear-gradient(top, $inputDisabledGradient);
background: -ms-linear-gradient(top, $inputDisabledGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $inputDisabledGradient);
background-image: -webkit-linear-gradient(top, $inputDisabledGradient);
background-image: linear-gradient(top, $inputDisabledGradient);
2014-01-18 01:35:45 +00:00
color: $inputDisabledColor;
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxLabelSelect > .OxTitle {
2012-12-29 14:55:45 +00:00
border-color: $formelementBorder;
background-image: -moz-linear-gradient(top, $buttonGradient);
background: -ms-linear-gradient(top, $buttonGradient);
2012-12-29 14:55:45 +00:00
background-image: -o-linear-gradient(top, $buttonGradient);
background-image: -webkit-linear-gradient(top, $buttonGradient);
background-image: linear-gradient(top, $buttonGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxLabelSelect.OxSelected > .OxTitle {
2012-12-29 14:55:45 +00:00
background-image: -moz-linear-gradient(top, $buttonSelectedGradient);
background: -ms-linear-gradient(top, $buttonSelectedGradient);
2012-12-29 14:55:45 +00:00
background-image: -o-linear-gradient(top, $buttonSelectedGradient);
background-image: -webkit-linear-gradient(top, $buttonSelectedGradient);
background-image: linear-gradient(top, $buttonSelectedGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxFileInput > .OxBar,
.$themeClass .OxFileInput > .OxFiles {
border-color: $formelementBorder;
}
.$themeClass .OxArrayEditable.OxArrayEditableTextarea .OxEditableElement {
border-top-color: $bodyBorder;
}
2013-02-25 16:41:04 +00:00
2013-02-28 05:03:20 +00:00
.$themeClass .OxEditableContent.OxEditing {
2013-02-25 16:41:04 +00:00
background-image: -moz-linear-gradient(top, $inputGradient);
background: -ms-linear-gradient(top, $inputGradient);
2013-02-25 16:41:04 +00:00
background-image: -o-linear-gradient(top, $inputGradient);
background-image: -webkit-linear-gradient(top, $inputGradient);
background-image: linear-gradient(top, $inputGradient);
2013-02-25 16:41:04 +00:00
-moz-box-shadow: 0 0 2px $formelementFocusShadow;
-ms-box-shadow: 0 0 2px $formelementFocusShadow;
2013-02-25 16:41:04 +00:00
-o-box-shadow: 0 0 2px $formelementFocusShadow;
-webkit-box-shadow: 0 0 2px $formelementFocusShadow;
box-shadow: 0 0 2px $formelementFocusShadow;
2013-02-25 16:41:04 +00:00
}
2013-02-27 03:04:55 +00:00
.$themeClass .OxEditableContent .OxHighlight
.$themeClass .OxEditableElement .OxHighlight, {
2013-02-27 02:59:35 +00:00
border-radius: 2px;
}
.$themeClass .OxEditableContent.OxPlaceholder,
2013-02-27 02:59:35 +00:00
.$themeClass .OxEditableElement.OxPlaceholder .OxValue {
color: $inputPlaceholderColor;
2012-12-28 23:53:18 +00:00
}
/*
================================================================================
2014-01-05 09:59:45 +00:00
ImageViewer
================================================================================
*/
.$themeClass .OxImageViewer .OxImageOverview {
border-color: $formelementOverlayBorder;
-moz-box-shadow: 0 0 2px $formelementOverlayShadow;
-ms-box-shadow: 0 0 2px $formelementOverlayShadow;
-o-box-shadow: 0 0 2px $formelementOverlayShadow;
-webkit-box-shadow: 0 0 2px $formelementOverlayShadow;
box-shadow: 0 0 2px $formelementOverlayShadow;
}
.$themeClass .OxImageViewer .OxImageOverlayArea {
2014-01-05 10:50:21 +00:00
background-color: $labelOverlayBackground;
background-image: none;
2014-01-05 09:59:45 +00:00
}
.$themeClass .OxImageViewer #OxImageOverlayCenter {
border-color: $formelementOverlayBorder;
background: transparent;
background-image: none;
-moz-box-shadow: 0 0 2px $formelementOverlayShadow;
-ms-box-shadow: 0 0 2px $formelementOverlayShadow;
-o-box-shadow: 0 0 2px $formelementOverlayShadow;
-webkit-box-shadow: 0 0 2px $formelementOverlayShadow;
box-shadow: 0 0 2px $formelementOverlayShadow;
}
/*
================================================================================
2012-12-28 23:53:18 +00:00
Lists
================================================================================
*/
.$themeClass .OxIconList .OxItem > .OxIcon > img.OxLoading,
.$themeClass .OxInfoList .OxItem .OxIcon > img.OxLoading {
border-color: $listIconLoadingBorder;
background-image: -moz-linear-gradient(top, $listIconLoadingGradient);
background: -ms-linear-gradient(top, $listIconLoadingGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $listIconLoadingGradient);
background-image: -webkit-linear-gradient(top, $listIconLoadingGradient);
background-image: linear-gradient(top, $listIconLoadingGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxIconList .OxItem.OxSelected > .OxIcon > img,
.$themeClass .OxIconList .OxItem.OxSelected > .OxIcon > .OxVideoPlayer,
.$themeClass .OxInfoList .OxItem.OxSelected .OxIcon > img,
.$themeClass .OxInfoList .OxItem.OxSelected .OxIcon > .OxVideoPlayer {
border-color: $listIconSelectedBorder;
-moz-box-shadow: 0 0 4px $listIconSelectedShadow;
-ms-box-shadow: 0 0 4px $listIconSelectedShadow;
2012-12-28 23:53:18 +00:00
-o-box-shadow: 0 0 4px $listIconSelectedShadow;
-webkit-box-shadow: 0 0 4px $listIconSelectedShadow;
box-shadow: 0 0 4px $listIconSelectedShadow;
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxIconList.OxFocus .OxItem.OxSelected > .OxIcon > img,
.$themeClass .OxIconList.OxFocus .OxItem.OxSelected > .OxIcon > .OxVideoPlayer,
.$themeClass .OxInfoList.OxFocus .OxItem.OxSelected .OxIcon > img,
.$themeClass .OxInfoList.OxFocus .OxItem.OxSelected .OxIcon > .OxVideoPlayer {
border-color: $listIconFocusSelectedBorder;
-moz-box-shadow: 0 0 4px $listIconFocusSelectedShadow;
-ms-box-shadow: 0 0 4px $listIconFocusSelectedShadow;
2012-12-28 23:53:18 +00:00
-o-box-shadow: 0 0 4px $listIconFocusSelectedShadow;
-webkit-box-shadow: 0 0 4px $listIconFocusSelectedShadow;
box-shadow: 0 0 4px $listIconFocusSelectedShadow;
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxIconList .OxItem > .OxText > div,
.$themeClass .OxInfoList .OxItem .OxText > div {
text-shadow: $listIconTextShadow -1px -1px 0,
$listIconTextShadow -1px 1px 0,
$listIconTextShadow 1px -1px 0,
$listIconTextShadow 1px 1px 0;
}
.$themeClass .OxIconList .OxItem > .OxText > div .OxHighlight,
.$themeClass .OxInfoList .OxItem .OxText > div .OxHighlight {
color: $listIconTextHighlightColor;
background-image: -moz-linear-gradient(top, $listIconTextHighlightGradient);
background: -ms-linear-gradient(top, $listIconTextHighlightGradient);
background-image: -o-linear-gradient(top, $listIconTextHighlightGradient);
background-image: -webkit-linear-gradient(top, $listIconTextHighlightGradient);
background-image: linear-gradient(top, $listIconTextHighlightGradient);
}
2012-12-28 23:53:18 +00:00
.$themeClass .OxIconList .OxItem.OxSelected > .OxText > div,
2013-07-12 13:03:39 +00:00
.$themeClass .OxInfoList .OxItem.OxSelected .OxText > div:not(.OxSpecialTarget) {
2012-12-28 23:53:18 +00:00
border-color: $listIconLabelSelectedBorder;
background-image: -moz-linear-gradient(top, $listIconLabelSelectedGradient);
background: -ms-linear-gradient(top, $listIconLabelSelectedGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $listIconLabelSelectedGradient);
background-image: -webkit-linear-gradient(top, $listIconLabelSelectedGradient);
background-image: linear-gradient(top, $listIconLabelSelectedGradient);
2012-12-29 12:58:04 +00:00
color: $listItemSelectedColor;
2012-12-28 23:53:18 +00:00
text-shadow: $listIconTextSelectedShadow -1px -1px 0,
$listIconTextSelectedShadow -1px 1px 0,
$listIconTextSelectedShadow 1px -1px 0,
$listIconTextSelectedShadow 1px 1px 0;
-moz-box-shadow: 0 0 4px $listIconLabelSelectedShadow;
-ms-box-shadow: 0 0 4px $listIconLabelSelectedShadow;
2012-12-28 23:53:18 +00:00
-o-box-shadow: 0 0 4px $listIconLabelSelectedShadow;
-webkit-box-shadow: 0 0 4px $listIconLabelSelectedShadow;
box-shadow: 0 0 4px $listIconLabelSelectedShadow;
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxIconList.OxFocus .OxItem.OxSelected > .OxText > div,
2013-07-12 13:03:39 +00:00
.$themeClass .OxInfoList.OxFocus .OxItem.OxSelected .OxText > div:not(.OxSpecialTarget) {
2012-12-28 23:53:18 +00:00
border-color: $listIconLabelFocusSelectedBorder;
background-image: -moz-linear-gradient(top, $listIconLabelFocusSelectedGradient);
background: -ms-linear-gradient(top, $listIconLabelFocusSelectedGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $listIconLabelFocusSelectedGradient);
background-image: -webkit-linear-gradient(top, $listIconLabelFocusSelectedGradient);
background-image: linear-gradient(top, $listIconLabelFocusSelectedGradient);
2012-12-29 12:58:04 +00:00
color: $listItemFocusSelectedColor;
2012-12-28 23:53:18 +00:00
text-shadow: $listIconTextFocusSelectedShadow -1px -1px 0,
$listIconTextFocusSelectedShadow -1px 1px 0,
$listIconTextFocusSelectedShadow 1px -1px 0,
$listIconTextFocusSelectedShadow 1px 1px 0;
-moz-box-shadow: 0 0 4px $listIconLabelFocusSelectedShadow;
-ms-box-shadow: 0 0 4px $listIconLabelFocusSelectedShadow;
2012-12-28 23:53:18 +00:00
-o-box-shadow: 0 0 4px $listIconLabelFocusSelectedShadow;
-webkit-box-shadow: 0 0 4px $listIconLabelFocusSelectedShadow;
box-shadow: 0 0 4px $listIconLabelFocusSelectedShadow;
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxIconList .OxItem > .OxText > div > .OxInfo,
.$themeClass .OxInfoList .OxItem .OxText > div > .OxInfo {
color: $bodyLightColor;
}
2012-12-29 12:58:04 +00:00
.$themeClass .OxIconList .OxItem.OxSelected > .OxText > div > .OxInfo,
2013-03-06 04:58:19 +00:00
.$themeClass .OxInfoList .OxItem.OxSelected .OxText > div:not(.OxSpecialTarget) > .OxInfo {
2012-12-29 12:58:04 +00:00
color: $bodySelectedLightColor;
}
.$themeClass .OxIconList.OxFocus .OxItem.OxSelected > .OxText > div > .OxInfo,
2013-03-06 04:58:19 +00:00
.$themeClass .OxInfoList.OxFocus .OxItem.OxSelected .OxText > div:not(.OxSpecialTarget) > .OxInfo {
2012-12-29 12:58:04 +00:00
color: $bodyFocusSelectedLightColor;
}
2012-12-28 23:53:18 +00:00
.$themeClass .OxInfoList .OxItem.OxSelected .OxInfoElement .OxIcon > img,
.$themeClass .OxInfoList .OxItem.OxSelected .OxInfoElement .OxIcon .OxVideoPlayer,
.$themeClass .OxInfoList .OxItem.OxSelected .OxInfoElement .OxText > div {
border-color: transparent;
background-image: none;
-moz-box-shadow: 0 0 0 transparent;
-ms-box-shadow: 0 0 0 transparent;
-o-box-shadow: 0 0 0 transparent;
-webkit-box-shadow: 0 0 0 transparent;
box-shadow: 0 0 0 transparent;
}
.$themeClass .OxInfoList .OxItem.OxSelected .OxInfoElement .OxIcon > img,
.$themeClass .OxInfoList .OxItem.OxSelected .OxInfoElement .OxIcon .OxVideoPlayer,
.$themeClass .OxInfoList .OxItem.OxSelected .OxInfoElement .OxText > div,
.$themeClass .OxInfoList.OxFocus .OxItem.OxSelected .OxInfoElement .OxIcon > img,
.$themeClass .OxInfoList.OxFocus .OxItem.OxSelected .OxInfoElement .OxIcon .OxVideoPlayer,
.$themeClass .OxInfoList.OxFocus .OxItem.OxSelected .OxInfoElement .OxText > div {
border-color: transparent;
background-image: none;
2012-12-28 23:53:18 +00:00
-moz-box-shadow: 0 0 0 transparent;
-ms-box-shadow: 0 0 0 transparent;
2012-12-28 23:53:18 +00:00
-o-box-shadow: 0 0 0 transparent;
-webkit-box-shadow: 0 0 0 transparent;
box-shadow: 0 0 0 transparent;
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxInfoList .OxItem.OxSelected .OxInfoElement .OxIcon > img.OxLoading,
.$themeClass .OxInfoList.OxFocus .OxItem.OxSelected .OxInfoElement .OxIcon > img.OxLoading {
border-color: $listIconLoadingBorder;
background-image: -moz-linear-gradient(top, $listIconLoadingGradient);
background: -ms-linear-gradient(top, $listIconLoadingGradient);
background-image: -o-linear-gradient(top, $listIconLoadingGradient);
background-image: -webkit-linear-gradient(top, $listIconLoadingGradient);
background-image: linear-gradient(top, $listIconLoadingGradient);
}
2012-12-28 23:53:18 +00:00
.$themeClass .OxTableList .OxContent {
background-color: $bodyBackground;
}
.$themeClass .OxCustomList .OxItem:nth-child(odd),
.$themeClass .OxTableList .OxItem:nth-child(odd) {
background-image: -moz-linear-gradient(top, $listItemOddGradient);
background: -ms-linear-gradient(top, $listItemOddGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $listItemOddGradient);
background-image: -webkit-linear-gradient(top, $listItemOddGradient);
background-image: linear-gradient(top, $listItemOddGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxCustomList .OxItem:nth-child(even),
.$themeClass .OxTableList .OxItem:nth-child(even) {
background-image: -moz-linear-gradient(top, $listItemEvenGradient);
background: -ms-linear-gradient(top, $listItemEvenGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $listItemEvenGradient);
background-image: -webkit-linear-gradient(top, $listItemEvenGradient);
background-image: linear-gradient(top, $listItemEvenGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxCustomList .OxItem.OxSelected:nth-child(odd),
.$themeClass .OxTableList .OxItem.OxSelected:nth-child(odd) {
background-image: -moz-linear-gradient(top, $listItemSelectedOddGradient);
background: -ms-linear-gradient(top, $listItemSelectedOddGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $listItemSelectedOddGradient);
background-image: -webkit-linear-gradient(top, $listItemSelectedOddGradient);
background-image: linear-gradient(top, $listItemSelectedOddGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxCustomList .OxItem.OxSelected:nth-child(even),
.$themeClass .OxTableList .OxItem.OxSelected:nth-child(even) {
background-image: -moz-linear-gradient(top, $listItemSelectedEvenGradient);
background: -ms-linear-gradient(top, $listItemSelectedEvenGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $listItemSelectedEvenGradient);
background-image: -webkit-linear-gradient(top, $listItemSelectedEvenGradient);
background-image: linear-gradient(top, $listItemSelectedEvenGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxCustomList .OxFocus .OxItem.OxSelected:nth-child(odd),
2012-12-29 12:58:04 +00:00
.$themeClass .OxTableList.OxFocus .OxItem.OxSelected:nth-child(odd),
2012-12-28 23:53:18 +00:00
.$themeClass .OxTableList .OxFocus .OxItem.OxSelected:nth-child(odd) {
background-image: -moz-linear-gradient(top, $listItemFocusSelectedOddGradient);
background: -ms-linear-gradient(top, $listItemFocusSelectedOddGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $listItemFocusSelectedOddGradient);
background-image: -webkit-linear-gradient(top, $listItemFocusSelectedOddGradient);
background-image: linear-gradient(top, $listItemFocusSelectedOddGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxCustomList .OxFocus .OxItem.OxSelected:nth-child(even),
2012-12-29 12:58:04 +00:00
.$themeClass .OxTableList.OxFocus .OxItem.OxSelected:nth-child(even),
2012-12-28 23:53:18 +00:00
.$themeClass .OxTableList .OxFocus .OxItem.OxSelected:nth-child(even) {
background-image: -moz-linear-gradient(top, $listItemFocusSelectedEvenGradient);
background: -ms-linear-gradient(top, $listItemFocusSelectedEvenGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $listItemFocusSelectedEvenGradient);
background-image: -webkit-linear-gradient(top, $listItemFocusSelectedEvenGradient);
background-image: linear-gradient(top, $listItemFocusSelectedEvenGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxTableList .OxItem.OxDroppable.OxDrop:nth-child(odd) .OxCell {
background-image: -moz-linear-gradient(top, $listItemDropOddGradient);
background: -ms-linear-gradient(top, $listItemDropOddGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $listItemDropOddGradient);
background-image: -webkit-linear-gradient(top, $listItemDropOddGradient);
background-image: linear-gradient(top, $listItemDropOddGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxTableList .OxItem.OxDroppable.OxDrop:nth-child(even) .OxCell {
background-image: -moz-linear-gradient(top, $listItemDropEvenGradient);
background: -ms-linear-gradient(top, $listItemDropEvenGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $listItemDropEvenGradient);
background-image: -webkit-linear-gradient(top, $listItemDropEvenGradient);
background-image: linear-gradient(top, $listItemDropEvenGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxTableList .OxHead .OxSelected {
2012-12-29 12:58:04 +00:00
background-image: -moz-linear-gradient(top, $listHeadSelectedGradient);
background: -ms-linear-gradient(top, $listHeadSelectedGradient);
2012-12-29 12:58:04 +00:00
background-image: -o-linear-gradient(top, $listHeadSelectedGradient);
background-image: -webkit-linear-gradient(top, $listHeadSelectedGradient);
background-image: linear-gradient(top, $listHeadSelectedGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxTableList .OxHead .OxSelected .OxTitle {
2012-12-29 12:58:04 +00:00
color: $listHeadSelectedColor;
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxTableList .OxHead .OxResize .OxCenter {
background-color: $listHeadBorder;
}
.$themeClass .OxTableList .OxHead .OxSelect,
.$themeClass .OxTableList .OxBar .OxClear {
border-color: $listHeadBorder;
}
.$themeClass .OxTableList .OxBody .OxItem .OxCell {
2012-12-29 14:55:45 +00:00
border-color: $listItemBorder;
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxTableList .OxItem.OxSelected .OxCell {
border-color: $listItemSelectedBorder;
color: $listItemSelectedColor;
}
2012-12-29 12:58:04 +00:00
.$themeClass .OxTableList.OxFocus .OxItem.OxSelected .OxCell,
2012-12-28 23:53:18 +00:00
.$themeClass .OxTableList .OxFocus .OxItem.OxSelected .OxCell {
border-color: $listItemFocusSelectedBorder;
color: $listItemFocusSelectedColor;
}
.$themeClass .OxTableList .OxItem.OxDroppable.OxDrop .OxCell {
border-color: $listItemDropBorder;
}
2012-12-28 23:53:18 +00:00
.$themeClass .OxTableList .OxBody .OxItem .OxLine {
2012-12-29 14:55:45 +00:00
background-color: $listItemBorder;
2012-12-28 23:53:18 +00:00
}
/*
================================================================================
Maps
================================================================================
*/
.$themeClass .OxMap .OxMapControl,
.$themeClass .OxMap .OxPlaceControl {
border-color: $mapControlBorder;
background-image: -moz-linear-gradient(top, $mapControlGradient);
background: -ms-linear-gradient(top, $mapControlGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $mapControlGradient);
background-image: -webkit-linear-gradient(top, $mapControlGradient);
background-image: linear-gradient(top, $mapControlGradient);
2012-12-28 23:53:18 +00:00
color: $mapControlColor;
}
.$themeClass .OxTypeIcon {
border-color: rgb(0, 0, 0);
}
.$themeClass .OxMapEditor .OxWarning {
border-bottom: 2px dotted $bodyWarningBorder;
}
2012-12-29 16:41:39 +00:00
/*
================================================================================
Media
================================================================================
*/
.$themeClass .OxMedia {
background-color: $mediaBackground;
}
.$themeClass .OxMedia .OxReflection > div {
background-image: -moz-linear-gradient(top, $mediaReflectionGradient);
background: -ms-linear-gradient(top, $mediaReflectionGradient);
2012-12-29 16:41:39 +00:00
background-image: -o-linear-gradient(top, $mediaReflectionGradient);
background-image: -webkit-linear-gradient(top, $mediaReflectionGradient);
background-image: linear-gradient(top, $mediaReflectionGradient);
2012-12-29 16:41:39 +00:00
}
.$themeClass .OxIconList.OxMedia .OxItem > .OxIcon > img.OxLoading,
.$themeClass .OxInfoList.OxMedia .OxItem .OxIcon > img.OxLoading {
border-color: $mediaListIconLoadingBorder;
background-image: -moz-linear-gradient(top, $mediaListIconLoadingGradient);
background: -ms-linear-gradient(top, $mediaListIconLoadingGradient);
2012-12-29 16:41:39 +00:00
background-image: -o-linear-gradient(top, $mediaListIconLoadingGradient);
background-image: -webkit-linear-gradient(top, $mediaListIconLoadingGradient);
background-image: linear-gradient(top, $mediaListIconLoadingGradient);
2012-12-29 16:41:39 +00:00
}
.$themeClass .OxIconList.OxMedia .OxItem.OxSelected > .OxIcon > img,
.$themeClass .OxIconList.OxMedia .OxItem.OxSelected > .OxIcon > .OxVideoPlayer,
.$themeClass .OxInfoList.OxMedia .OxItem.OxSelected .OxIcon > img,
.$themeClass .OxInfoList.OxMedia .OxItem.OxSelected .OxIcon > .OxVideoPlayer {
border-color: $mediaListIconSelectedBorder;
-moz-box-shadow: 0 0 4px $mediaListIconSelectedShadow;
-ms-box-shadow: 0 0 4px $mediaListIconSelectedShadow;
2012-12-29 16:41:39 +00:00
-o-box-shadow: 0 0 4px $mediaListIconSelectedShadow;
-webkit-box-shadow: 0 0 4px $mediaListIconSelectedShadow;
box-shadow: 0 0 4px $mediaListIconSelectedShadow;
2012-12-29 16:41:39 +00:00
}
.$themeClass .OxIconList.OxMedia.OxFocus .OxItem.OxSelected > .OxIcon > img,
.$themeClass .OxIconList.OxMedia.OxFocus .OxItem.OxSelected > .OxIcon > .OxVideoPlayer,
.$themeClass .OxInfoList.OxMedia.OxFocus .OxItem.OxSelected .OxIcon > img,
.$themeClass .OxInfoList.OxMedia.OxFocus .OxItem.OxSelected .OxIcon > .OxVideoPlayer {
border-color: $mediaListIconFocusSelectedBorder;
-moz-box-shadow: 0 0 4px $mediaListIconFocusSelectedShadow;
-ms-box-shadow: 0 0 4px $mediaListIconFocusSelectedShadow;
2012-12-29 16:41:39 +00:00
-o-box-shadow: 0 0 4px $mediaListIconFocusSelectedShadow;
-webkit-box-shadow: 0 0 4px $mediaListIconFocusSelectedShadow;
box-shadow: 0 0 4px $mediaListIconFocusSelectedShadow;
2012-12-29 16:41:39 +00:00
}
2013-02-01 06:14:22 +00:00
.$themeClass .OxIconList.OxMedia .OxItem > .OxText div,
2012-12-29 16:41:39 +00:00
.$themeClass .OxInfoList.OxMedia .OxItem .OxText > div {
color: $mediaListIconTextColor;
text-shadow: $mediaListIconTextShadow -1px -1px 0,
$mediaListIconTextShadow -1px 1px 0,
$mediaListIconTextShadow 1px -1px 0,
$mediaListIconTextShadow 1px 1px 0;
}
2013-07-12 13:03:39 +00:00
.$themeClass .OxIconList.OxMedia .OxItem.OxSelected > .OxText > div,
.$themeClass .OxInfoList.OxMedia .OxItem.OxSelected .OxText > div:not(.OxSpecialTarget) {
2012-12-29 16:41:39 +00:00
border-color: $mediaListIconLabelSelectedBorder;
background-image: -moz-linear-gradient(top, $mediaListIconLabelSelectedGradient);
background: -ms-linear-gradient(top, $mediaListIconLabelSelectedGradient);
2012-12-29 16:41:39 +00:00
background-image: -o-linear-gradient(top, $mediaListIconLabelSelectedGradient);
background-image: -webkit-linear-gradient(top, $mediaListIconLabelSelectedGradient);
background-image: linear-gradient(top, $mediaListIconLabelSelectedGradient);
2012-12-29 16:41:39 +00:00
color: $mediaListIconTextSelectedColor;
text-shadow: $mediaListIconTextSelectedShadow -1px -1px 0,
$mediaListIconTextSelectedShadow -1px 1px 0,
$mediaListIconTextSelectedShadow 1px -1px 0,
$mediaListIconTextSelectedShadow 1px 1px 0;
-moz-box-shadow: 0 0 4px $mediaListIconLabelSelectedShadow;
-ms-box-shadow: 0 0 4px $mediaListIconLabelSelectedShadow;
2012-12-29 16:41:39 +00:00
-o-box-shadow: 0 0 4px $mediaListIconLabelSelectedShadow;
-webkit-box-shadow: 0 0 4px $mediaListIconLabelSelectedShadow;
box-shadow: 0 0 4px $mediaListIconLabelSelectedShadow;
2012-12-29 16:41:39 +00:00
}
2013-07-12 13:03:39 +00:00
.$themeClass .OxIconList.OxMedia.OxFocus .OxItem.OxSelected > .OxText > div,
.$themeClass .OxInfoList.OxMedia.OxFocus .OxItem.OxSelected .OxText > div:not(.OxSpecialTarget) {
2012-12-29 16:41:39 +00:00
border-color: $mediaListIconLabelFocusSelectedBorder;
background-image: -moz-linear-gradient(top, $mediaListIconLabelFocusSelectedGradient);
background: -ms-linear-gradient(top, $mediaListIconLabelFocusSelectedGradient);
2012-12-29 16:41:39 +00:00
background-image: -o-linear-gradient(top, $mediaListIconLabelFocusSelectedGradient);
background-image: -webkit-linear-gradient(top, $mediaListIconLabelFocusSelectedGradient);
background-image: linear-gradient(top, $mediaListIconLabelFocusSelectedGradient);
2012-12-29 16:41:39 +00:00
color: $mediaListIconTextFocusSelectedColor;
text-shadow: $mediaListIconTextFocusSelectedShadow -1px -1px 0,
$mediaListIconTextFocusSelectedShadow -1px 1px 0,
$mediaListIconTextFocusSelectedShadow 1px -1px 0,
$mediaListIconTextFocusSelectedShadow 1px 1px 0;
-moz-box-shadow: 0 0 4px $mediaListIconLabelFocusSelectedShadow;
-ms-box-shadow: 0 0 4px $mediaListIconLabelFocusSelectedShadow;
2012-12-29 16:41:39 +00:00
-o-box-shadow: 0 0 4px $mediaListIconLabelFocusSelectedShadow;
-webkit-box-shadow: 0 0 4px $mediaListIconLabelFocusSelectedShadow;
box-shadow: 0 0 4px $mediaListIconLabelFocusSelectedShadow;
2012-12-29 16:41:39 +00:00
}
.$themeClass .OxIconList.OxMedia .OxItem > .OxText > div > .OxInfo,
.$themeClass .OxInfoList.OxMedia .OxItem .OxText > div > .OxInfo {
color: $mediaListIconTextLightColor;
}
.$themeClass .OxIconList.OxMedia .OxItem.OxSelected > .OxText > div > .OxInfo,
2013-03-06 04:58:19 +00:00
.$themeClass .OxInfoList.OxMedia .OxItem.OxSelected .OxText > div:not(.OxSpecialTarget) > .OxInfo {
2012-12-29 16:41:39 +00:00
color: $mediaListIconTextSelectedLightColor;
}
.$themeClass .OxIconList.OxMedia.OxFocus .OxItem.OxSelected > .OxText > div > .OxInfo,
2013-03-06 04:58:19 +00:00
.$themeClass .OxInfoList.OxMedia.OxFocus .OxItem.OxSelected .OxText > div:not(.OxSpecialTarget) > .OxInfo {
2012-12-29 16:41:39 +00:00
color: $mediaListIconTextFocusSelectedLightColor;
}
.$themeClass .OxInfoList.OxMedia .OxItem.OxSelected .OxInfoElement .OxIcon > img,
.$themeClass .OxInfoList.OxMedia .OxItem.OxSelected .OxInfoElement .OxIcon .OxVideoPlayer,
.$themeClass .OxInfoList.OxMedia .OxItem.OxSelected .OxInfoElement .OxText > div,
.$themeClass .OxInfoList.OxMedia.OxFocus .OxItem.OxSelected .OxInfoElement .OxIcon > img,
.$themeClass .OxInfoList.OxMedia.OxFocus .OxItem.OxSelected .OxInfoElement .OxIcon .OxVideoPlayer,
.$themeClass .OxInfoList.OxMedia.OxFocus .OxItem.OxSelected .OxInfoElement .OxText > div {
border-color: transparent;
background-image: none;
-moz-box-shadow: 0 0 0 transparent;
-ms-box-shadow: 0 0 0 transparent;
-o-box-shadow: 0 0 0 transparent;
-webkit-box-shadow: 0 0 0 transparent;
box-shadow: 0 0 0 transparent;
}
.$themeClass .OxInfoList.OxMedia .OxItem.OxSelected .OxInfoElement .OxIcon > img.OxLoading,
.$themeClass .OxInfoList.OxMedia.OxFocus .OxItem.OxSelected .OxInfoElement .OxIcon > img.OxLoading {
border-color: $listIconLoadingBorder;
background-image: -moz-linear-gradient(top, $listIconLoadingGradient);
background: -ms-linear-gradient(top, $listIconLoadingGradient);
background-image: -o-linear-gradient(top, $listIconLoadingGradient);
background-image: -webkit-linear-gradient(top, $listIconLoadingGradient);
background-image: linear-gradient(top, $listIconLoadingGradient);
}
2012-12-29 16:41:39 +00:00
2012-12-28 23:53:18 +00:00
/*
================================================================================
Menus
================================================================================
*/
.$themeClass .OxMainMenu > .OxTitle.OxSelected {
background-image: -moz-linear-gradient(top, $barSelectedGradient);
background: -ms-linear-gradient(top, $barSelectedGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $barSelectedGradient);
background-image: -webkit-linear-gradient(top, $barSelectedGradient);
background-image: linear-gradient(top, $barSelectedGradient);
2012-12-28 23:53:18 +00:00
color: $barSelectedColor;
}
.$themeClass .OxMainMenu > .OxTitle.OxHighlight {
background-image: -moz-linear-gradient(top, $barHighlightGradient);
background: -ms-linear-gradient(top, $barHighlightGradient);
background-image: -o-linear-gradient(top, $barHighlightGradient);
background-image: -webkit-linear-gradient(top, $barHighlightGradient);
background-image: linear-gradient(top, $barHighlightGradient);
color: $barHighlightColor;
}
2012-12-28 23:53:18 +00:00
.$themeClass .OxMenu {
-moz-box-shadow: 0 2px 4px $menuShadow;
-ms-box-shadow: 0 2px 4px $menuShadow;
2012-12-28 23:53:18 +00:00
-o-box-shadow: 0 2px 4px $menuShadow;
-webkit-box-shadow: 0 2px 4px $menuShadow;
box-shadow: 0 2px 4px $menuShadow;
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxMenu .OxBottom,
.$themeClass .OxMenu .OxItem,
.$themeClass .OxMenu .OxScrollbar,
.$themeClass .OxMenu .OxSpace,
.$themeClass .OxMenu .OxTop {
background-color: $menuBackground;
}
2012-12-29 14:55:45 +00:00
.$themeClass .OxMenu .OxLine {
background-color: $menuBorder;
}
2012-12-28 23:53:18 +00:00
.$themeClass .OxMenu .OxItem.OxSelected,
.$themeClass .OxMenu .OxItem.OxSelected input,
2012-12-28 23:53:18 +00:00
.$themeClass .OxMenu .OxScrollbar.OxSelected {
background-image: -moz-linear-gradient(top, $menuSelectedGradient);
background: -ms-linear-gradient(top, $menuSelectedGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $menuSelectedGradient);
background-image: -webkit-linear-gradient(top, $menuSelectedGradient);
background-image: linear-gradient(top, $menuSelectedGradient);
2012-12-28 23:53:18 +00:00
color: $menuSelectedColor;
}
.$themeClass .OxMenu .OxItem.OxDisabled .OxCell,
.$themeClass .OxMenu .OxItem.OxDisabled .OxCell input {
2012-12-28 23:53:18 +00:00
color: $menuDisabledColor;
}
/*
================================================================================
Scrollbars
================================================================================
*/
.$themeClass ::-webkit-scrollbar:horizontal {
border-top: 1px solid $formelementBorder;
border-bottom: 1px solid $formelementBorder;
background: -webkit-linear-gradient(top, $buttonGradient);
}
.$themeClass ::-webkit-scrollbar:vertical {
border-left: 1px solid $formelementBorder;
border-right: 1px solid $formelementBorder;
background: -webkit-linear-gradient(left, $buttonGradient);
}
.$themeClass ::-webkit-scrollbar-button:horizontal:decrement {
background: url(../png/scrollbarHorizontalDecrement.png);
}
.$themeClass ::-webkit-scrollbar-button:horizontal:increment {
background: url(../png/scrollbarHorizontalIncrement.png);
}
.$themeClass ::-webkit-scrollbar-button:vertical:decrement {
background: url(../png/scrollbarVerticalDecrement.png);
}
.$themeClass ::-webkit-scrollbar-button:vertical:increment {
background: url(../png/scrollbarVerticalIncrement.png);
}
.$themeClass ::-webkit-scrollbar-corner {
border-right: 1px solid $formelementBorder;
border-bottom: 1px solid $formelementBorder;
background: -webkit-linear-gradient(top left, $scrollbarCornerGradient);
}
.$themeClass ::-webkit-scrollbar-thumb {
border: 1px solid $formelementBorder;
}
.$themeClass ::-webkit-scrollbar-thumb:horizontal {
background: -webkit-linear-gradient(top, $buttonGradient);
}
.$themeClass ::-webkit-scrollbar-thumb:vertical {
background: -webkit-linear-gradient(left, $buttonGradient);
}
.$themeClass ::-webkit-scrollbar-track {
border: 1px solid $formelementBorder;
}
.$themeClass ::-webkit-scrollbar-track:horizontal {
background: -webkit-linear-gradient(top, $inputGradient);
}
.$themeClass ::-webkit-scrollbar-track:vertical {
background: -webkit-linear-gradient(left, $inputGradient);
}
.$themeClass ::-webkit-scrollbar:horizontal:active,
.$themeClass ::-webkit-scrollbar-thumb:horizontal:active {
background: -webkit-linear-gradient(top, $buttonActiveGradient);
}
.$themeClass ::-webkit-scrollbar:vertical:active,
.$themeClass ::-webkit-scrollbar-thumb:vertical:active {
background: -webkit-linear-gradient(left, $buttonActiveGradient);
}
body.$themeClass {
scrollbar-color: $bodyBorder $bodyBackground;
}
2012-12-28 23:53:18 +00:00
/*
================================================================================
SourceViewer
================================================================================
*/
.$themeClass .OxSourceViewer .OxComment {
border-color: $bodyBorder;
}
.$themeClass .OxSourceViewer .OxComment code {
background-color: $sourceviewerCodeBackground;
box-shadow: 0 0 1px $sourceviewerCodeShadow;
}
.$themeClass .OxSourceViewer .OxComment pre > code {
background-color: transparent;
box-shadow: none;
}
.$themeClass .OxSourceViewer .OxCode {
background-color: $sourcecodeBackground;
}
/*
================================================================================
SyntaxHighlighter
================================================================================
*/
.$themeClass .OxSyntaxHighlighter {
background-color: $sourcecodeBackground;
}
.$themeClass .OxSyntaxHighlighter .OxLineNumbers {
background-color: $sourcecodeLinenumbersBackground;
color: sourcecodeLinenumbersColor;
}
.$themeClass .OxSourceCode .OxComment {
color: $sourcecodeCommentColor;
font-style: italic;
}
.$themeClass .OxSourceCode .OxConstant {
color: $sourcecodeConstantColor;
font-weight: bold;
}
.$themeClass .OxSourceCode .OxError {
color: $sourcecodeErrorColor;
background-color: $sourcecodeErrorBackground;
font-weight: bold;
}
.$themeClass .OxSourceCode .OxIdentifier {
color: $sourcecodeIdentifierColor;
}
.$themeClass .OxSourceCode .OxKeyword {
color: $sourcecodeKeywordColor;
font-weight: bold;
}
.$themeClass .OxSourceCode .OxLinebreak {
color: $sourcecodeSpecialColor;
}
.$themeClass .OxSourceCode .OxMethod {
color: $sourcecodeMethodColor;
}
.$themeClass .OxSourceCode .OxNumber {
color: $sourcecodeNumberColor;
}
.$themeClass .OxSourceCode .OxObject {
color: $sourcecodeObjectColor;
font-weight: bold;
}
.$themeClass .OxSourceCode .OxOperator {
color: $sourcecodeOperatorColor;
}
.$themeClass .OxSourceCode .OxProperty {
color: $sourcecodePropertyColor;
font-weight: bold;
}
.$themeClass .OxSourceCode .OxRegexp {
color: $sourcecodeRegexpColor;
}
.$themeClass .OxSourceCode .OxString {
color: $sourcecodeStringColor;
}
.$themeClass .OxSourceCode .OxTab {
color: $sourcecodeSpecialColor;
}
.$themeClass .OxSourceCode .OxWhitespace {
color: $sourcecodeSpecialColor;
}
.$themeClass .OxSourceCode .OxWhitespace.OxLeading,
.$themeClass .OxSourceCode .OxWhitespace.OxTrailing {
background-color: $sourcecodeWhitespaceBackground;
}
/*
================================================================================
Video
================================================================================
*/
.$themeClass .OxAnnotation {
border-color: $bodyBorder;
}
.$themeClass .OxAnnotation.OxSelected {
background-color: $videoAnnotationSelectedBackground;
}
2013-02-20 11:29:03 +00:00
.$themeClass .OxLargeVideoTimeline .OxOverlay {
background-color: $mediaBackground;
}
2012-12-28 23:53:18 +00:00
.$themeClass .OxSmallVideoTimeline .OxMarkerPlay {
border-color: $videoTimelineMarkerShadow;
}
.$themeClass .OxSmallVideoTimeline .OxMarkerPlay > div {
border-color: $videoTimelineMarkerPlayingBorder;
}
.$themeClass .OxSmallVideoTimeline .OxMarkerPlay.OxPaused > div {
border-color: $videoTimelineMarkerPausedBorder;
}
.$themeClass .OxSmallVideoTimeline .OxMarkerPlay > div > div {
border-color: $videoTimelineMarkerShadow;
}
.$themeClass .OxVideoPlayer .OxControls.OxOnScreen,
2013-08-01 09:04:16 +00:00
.$themeClass .OxVideoPlayer .OxFind,
.$themeClass .OxVideoPlayer .OxVolume {
2012-12-28 23:53:18 +00:00
background-image: -moz-linear-gradient(top, $videoBarGradient);
background: -ms-linear-gradient(top, $videoBarGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $videoBarGradient);
background-image: -webkit-linear-gradient(top, $videoBarGradient);
background-image: linear-gradient(top, $videoBarGradient);
2012-12-28 23:53:18 +00:00
}
2013-02-09 08:37:32 +00:00
.$themeClass .OxVideoPlayer input.OxInput {
2012-12-28 23:53:18 +00:00
background-image: -moz-linear-gradient(top, $videoInputGradient);
background: -ms-linear-gradient(top, $videoInputGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $videoInputGradient);
background-image: -webkit-linear-gradient(top, $videoInputGradient);
background-image: linear-gradient(top, $videoInputGradient);
2012-12-28 23:53:18 +00:00
}
2013-02-09 08:10:10 +00:00
.$themeClass .OxVideoPlayer .OxSettings {
background-image: none;
}
2012-12-28 23:53:18 +00:00
.$themeClass .OxVideoPlayer .OxSettings > div {
background-color: $videoMenuBackground;
}
2013-02-20 20:00:16 +00:00
.$themeClass .OxVideoPlayer .OxSettings > div.OxDisabled > div {
color: $videoMenuDisabledColor;
}
2012-12-28 23:53:18 +00:00
.$themeClass .OxVideoPlayer .OxSettings > div.OxSelected {
background-image: -moz-linear-gradient(top, $videoMenuSelectedGradient);
background: -ms-linear-gradient(top, $videoMenuSelectedGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $videoMenuSelectedGradient);
background-image: -webkit-linear-gradient(top, $videoMenuSelectedGradient);
background-image: linear-gradient(top, $videoMenuSelectedGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxVideoPlayer .OxSettings > div.OxLine {
background-color: $videoMenuBorder;
}
.$themeClass .OxVideoPlayer .OxVolume .OxRange .OxTrack {
background-image: -moz-linear-gradient(top, $videoInputGradient);
background: -ms-linear-gradient(top, $videoInputGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $videoInputGradient);
background-image: -webkit-linear-gradient(top, $videoInputGradient);
background-image: linear-gradient(top, $videoInputGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxVideoPlayer .OxVolume .OxRange .OxThumb {
background-image: -moz-linear-gradient(top, $videoButtonGradient);
background: -ms-linear-gradient(top, $videoButtonGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $videoButtonGradient);
background-image: -webkit-linear-gradient(top, $videoButtonGradient);
background-image: linear-gradient(top, $videoButtonGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxVideoPlayer .OxVolume .OxRange .OxThumb:active {
background-image: -moz-linear-gradient(top, $videoButtonActiveGradient);
background: -ms-linear-gradient(top, $videoButtonActiveGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $videoButtonActiveGradient);
background-image: -webkit-linear-gradient(top, $videoButtonActiveGradient);
background-image: linear-gradient(top, $videoButtonActiveGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxVideoTimelinePlayer .OxVideoBox {
border-color: $bodyColor;
}
2013-03-05 15:12:35 +00:00
.$themeClass .OxLargeVideoTimeline .OxSubtitle .OxHighlight,
.$themeClass .OxVideoPlayer .OxSubtitle .OxHighlight {
background-image: none;
color: rgb(255, 255, 0);
}
2012-12-28 23:53:18 +00:00
.$themeClass .OxAnnotationFolder .OxArrayEditable .OxSeparator {
color: $videoAnnotationSeparatorColor;
}
2013-02-27 02:59:35 +00:00
.$themeClass .OxAnnotationFolder .OxEditableElement.OxSelected {
background-color: $videoAnnotationSelectedBackground;
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxAnnotationFolder .OxEditableElement.OxWarning .OxValue {
border-bottom: 2px dotted $bodyWarningBorder;
}
.$themeClass .OxAnnotationFolder .OxArrayEditable .OxEditableElement.OxEditable.OxGroup {
background-color: $videoAnnotationSelectedBackground;
}
2012-12-28 23:53:18 +00:00
.$themeClass .OxAnnotationFolder .OxArrayEditable .OxEditableElement.OxEditable.OxSelected {
background-color: $videoAnnotationEditableSelectedBackground;
}
.$themeClass .OxAnnotationFolder .OxArrayEditable .OxEditableElement.OxSelected .OxHighlight {
background-color: transparent;
background-image: -moz-repeating-linear-gradient(
-45deg, transparent 0%, transparent 25%,
$bodyHighlightGradient[0] 25%, $bodyHighlightGradient[1] 50%,
transparent 50%, transparent 75%,
$bodyHighlightGradient[0] 75%, $bodyHighlightGradient[1] 100%
);
background-image: -ms-repeating-linear-gradient(
-45deg, transparent 0%, transparent 25%,
$bodyHighlightGradient[0] 25%, $bodyHighlightGradient[1] 50%,
transparent 50%, transparent 75%,
$bodyHighlightGradient[0] 75%, $bodyHighlightGradient[1] 100%
);
2012-12-28 23:53:18 +00:00
background-image: -o-repeating-linear-gradient(
-45deg, transparent 0%, transparent 25%,
$bodyHighlightGradient[0] 25%, $bodyHighlightGradient[1] 50%,
transparent 50%, transparent 75%,
$bodyHighlightGradient[0] 75%, $bodyHighlightGradient[1] 100%
);
background-image: -webkit-repeating-linear-gradient(
-45deg, transparent 0%, transparent 25%,
$bodyHighlightGradient[0] 25%, $bodyHighlightGradient[1] 50%,
transparent 50%, transparent 75%,
$bodyHighlightGradient[0] 75%, $bodyHighlightGradient[1] 100%
);
background-image: repeating-linear-gradient(
-45deg, transparent 0%, transparent 25%,
$bodyHighlightGradient[0] 25%, $bodyHighlightGradient[1] 50%,
transparent 50%, transparent 75%,
$bodyHighlightGradient[0] 75%, $bodyHighlightGradient[1] 100%
);
2012-12-28 23:53:18 +00:00
background-size: 4px 4px;
}
.$themeClass .OxAnnotationFolder .OxArrayEditableInput .OxEditableElement.OxSelected {
box-shadow: 0 0 2px $videoAnnotationEditableSelectedShadow;
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxAnnotationFolder .OxArrayEditableTextarea .OxEditableElement.OxEditable.OxEditing {
background-color: $videoAnnotationEditableEditingBackground;
}
.$themeClass .OxAnnotationFolder .OxArrayEditable .OxInput.OxFocus {
box-shadow: none;
}
.$themeClass .OxAnnotationFolder .OxEditableElement input,
.$themeClass .OxAnnotationFolder .OxEditableElement textarea {
background-color: $videoAnnotationEditableEditingBackground;
2013-01-31 11:15:58 +00:00
background-image: none;
2012-12-28 23:53:18 +00:00
color: $videoAnnotationEditableEditingColor;
}
2013-02-09 08:54:44 +00:00
.$themeClass .OxAnnotationFolder .OxEditableElement textarea:focus {
box-shadow: none;
}
2012-12-28 23:53:18 +00:00
/*
================================================================================
Miscellaneous
================================================================================
*/
.$themeClass .OxImageElement > .OxLoadingScreen {
background-image: -moz-linear-gradient(top, $imageLoadingGradient);
background: -ms-linear-gradient(top, $imageLoadingGradient);
background-image: -o-linear-gradient(top, $imageLoadingGradient);
background-image: -webkit-linear-gradient(top, $imageLoadingGradient);
background-image: linear-gradient(top, $imageLoadingGradient);
}
.$themeClass .OxDialog .OxImageElement > .OxLoadingScreen {
background-image: -moz-linear-gradient(top, $dialogImageLoadingGradient);
background: -ms-linear-gradient(top, $dialogImageLoadingGradient);
background-image: -o-linear-gradient(top, $dialogImageLoadingGradient);
background-image: -webkit-linear-gradient(top, $dialogImageLoadingGradient);
background-image: linear-gradient(top, $dialogImageLoadingGradient);
}
2012-12-28 23:53:18 +00:00
.$themeClass .OxSelectableElement {
background-image: -moz-linear-gradient(top, $listItemGradient);
background: -ms-linear-gradient(top, $listItemGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $listItemGradient);
background-image: -webkit-linear-gradient(top, $listItemGradient);
background-image: linear-gradient(top, $listItemGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxSelectableElement.OxSelected {
background-image: -moz-linear-gradient(top, $listItemSelectedGradient);
background: -ms-linear-gradient(top, $listItemSelectedGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $listItemSelectedGradient);
background-image: -webkit-linear-gradient(top, $listItemSelectedGradient);
background-image: linear-gradient(top, $listItemSelectedGradient);
2012-12-28 23:53:18 +00:00
}
2013-02-10 12:31:17 +00:00
.$themeClass .OxSelectableElement.OxSelected > div {
color: $listItemSelectedColor;
}
2012-12-28 23:53:18 +00:00
.$themeClass .OxSelectableElement.OxSelected.OxFocus {
background-image: -moz-linear-gradient(top, $listItemFocusSelectedGradient);
background: -ms-linear-gradient(top, $listItemFocusSelectedGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $listItemFocusSelectedGradient);
background-image: -webkit-linear-gradient(top, $listItemFocusSelectedGradient);
background-image: linear-gradient(top, $listItemFocusSelectedGradient);
2012-12-28 23:53:18 +00:00
}
2013-02-10 12:31:17 +00:00
.$themeClass .OxSelectableElement.OxSelected.OxFocus > div {
color: $listItemFocusSelectedColor;
}
2012-12-28 23:53:18 +00:00
.$themeClass .OxScreen {
background-color: $screenBackground;
color: $screenColor;
}
.$themeClass .OxScreen .OxReflection {
background-image: -moz-linear-gradient(top, $screenReflectionGradient);
background: -ms-linear-gradient(top, $screenReflectionGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $screenReflectionGradient);
background-image: -webkit-linear-gradient(top, $screenReflectionGradient);
background-image: linear-gradient(top, $screenReflectionGradient);
2012-12-28 23:53:18 +00:00
}
.$themeClass .OxTooltip {
border: 1px solid $tooltipBorder;
background-image: -moz-linear-gradient(top, $tooltipGradient);
background: -ms-linear-gradient(top, $tooltipGradient);
2012-12-28 23:53:18 +00:00
background-image: -o-linear-gradient(top, $tooltipGradient);
background-image: -webkit-linear-gradient(top, $tooltipGradient);
background-image: linear-gradient(top, $tooltipGradient);
2012-12-28 23:53:18 +00:00
color: $tooltipColor;
-moz-box-shadow: 2px 2px 4px $tooltipShadow;
-ms-box-shadow: 2px 2px 4px $tooltipShadow;
2012-12-28 23:53:18 +00:00
-o-box-shadow: 2px 2px 4px $tooltipShadow;
-webkit-box-shadow: 2px 2px 4px $tooltipShadow;
box-shadow: 2px 2px 4px $tooltipShadow;
2012-12-28 23:53:18 +00:00
}
2013-02-25 16:41:04 +00:00
.$themeClass ::selection {
background: $bodySelectionBackground;
2013-02-25 19:11:40 +00:00
color: $bodySelectionColor;
2013-02-25 16:41:04 +00:00
}
.$themeClass ::-moz-selection {
background: $bodySelectionBackground;
2013-02-25 19:11:40 +00:00
color: $bodySelectionColor;
2013-02-25 16:41:04 +00:00
}
.$themeClass ::-ms-selection {
background: $bodySelectionBackground;
color: $bodySelectionColor;
}
2013-02-25 16:41:04 +00:00
.$themeClass ::-o-selection {
background: $bodySelectionBackground;
2013-02-25 19:11:40 +00:00
color: $bodySelectionColor;
2013-02-25 16:41:04 +00:00
}
2012-12-28 23:53:18 +00:00
.$themeClass ::-webkit-selection {
2013-02-25 16:41:04 +00:00
background: $bodySelectionBackground;
2013-02-25 19:11:40 +00:00
color: $bodySelectionColor;
2012-12-28 23:53:18 +00:00
}