update CSS

This commit is contained in:
rolux 2013-02-25 16:41:04 +00:00
parent 5ecfcd0046
commit 42e30f6a0a
2 changed files with 40 additions and 5 deletions

View file

@ -906,6 +906,20 @@ input.OxInput {
div.OxInput > input.OxInput {
float: left;
}
/*
--------------------------------------------------------------------------------
OxEditableContent
--------------------------------------------------------------------------------
*/
.OxEditableContent > .OxEditableContentInput:focus {
outline: none;
-moz-user-select: text;
-o-user-select: text;
-webkit-user-select: text;
}
/*
--------------------------------------------------------------------------------
OxEditableElement

View file

@ -455,6 +455,17 @@ Forms
.$themeClass .OxArrayEditable.OxArrayEditableTextarea .OxEditableElement {
border-top-color: $bodyBorder;
}
.$themeClass .OxEditableContent > .OxEditableContentInput:focus {
background-image: -moz-linear-gradient(top, $inputGradient);
background-image: -o-linear-gradient(top, $inputGradient);
background-image: -webkit-linear-gradient(top, $inputGradient);
box-shadow: 0 0 2px $formelementFocusShadow;
-moz-box-shadow: 0 0 2px $formelementFocusShadow;
-o-box-shadow: 0 0 2px $formelementFocusShadow;
-webkit-box-shadow: 0 0 2px $formelementFocusShadow;
}
.$themeClass .OxEditableElement.OxSelected {
background-color: $videoAnnotationSelectedBackground;
}
@ -1177,9 +1188,19 @@ Miscellaneous
-webkit-box-shadow: 2px 2px 4px $tooltipShadow;
}
.$themeClass ::selection,
.$themeClass ::-moz-selection,
.$themeClass ::-o-selection,
.$themeClass ::-webkit-selection {
background-color: $bodySelectionBackground;
.$themeClass ::selection {
background: $bodySelectionBackground;
// FIXME color: bodySelectionColor;
}
.$themeClass ::-moz-selection {
background: $bodySelectionBackground;
// FIXME color: bodySelectionColor;
}
.$themeClass ::-o-selection {
background: $bodySelectionBackground;
// FIXME color: bodySelectionColor;
}
.$themeClass ::-webkit-selection {
background: $bodySelectionBackground;
// FIXME color: bodySelectionColor;
}