update CSS
This commit is contained in:
parent
5ecfcd0046
commit
42e30f6a0a
2 changed files with 40 additions and 5 deletions
|
@ -906,6 +906,20 @@ input.OxInput {
|
||||||
div.OxInput > input.OxInput {
|
div.OxInput > input.OxInput {
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
OxEditableContent
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
.OxEditableContent > .OxEditableContentInput:focus {
|
||||||
|
outline: none;
|
||||||
|
-moz-user-select: text;
|
||||||
|
-o-user-select: text;
|
||||||
|
-webkit-user-select: text;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
OxEditableElement
|
OxEditableElement
|
||||||
|
|
|
@ -455,6 +455,17 @@ Forms
|
||||||
.$themeClass .OxArrayEditable.OxArrayEditableTextarea .OxEditableElement {
|
.$themeClass .OxArrayEditable.OxArrayEditableTextarea .OxEditableElement {
|
||||||
border-top-color: $bodyBorder;
|
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 {
|
.$themeClass .OxEditableElement.OxSelected {
|
||||||
background-color: $videoAnnotationSelectedBackground;
|
background-color: $videoAnnotationSelectedBackground;
|
||||||
}
|
}
|
||||||
|
@ -1177,9 +1188,19 @@ Miscellaneous
|
||||||
-webkit-box-shadow: 2px 2px 4px $tooltipShadow;
|
-webkit-box-shadow: 2px 2px 4px $tooltipShadow;
|
||||||
}
|
}
|
||||||
|
|
||||||
.$themeClass ::selection,
|
.$themeClass ::selection {
|
||||||
.$themeClass ::-moz-selection,
|
background: $bodySelectionBackground;
|
||||||
.$themeClass ::-o-selection,
|
// FIXME color: bodySelectionColor;
|
||||||
.$themeClass ::-webkit-selection {
|
}
|
||||||
background-color: $bodySelectionBackground;
|
.$themeClass ::-moz-selection {
|
||||||
|
background: $bodySelectionBackground;
|
||||||
|
// FIXME color: bodySelectionColor;
|
||||||
|
}
|
||||||
|
.$themeClass ::-o-selection {
|
||||||
|
background: $bodySelectionBackground;
|
||||||
|
// FIXME color: bodySelectionColor;
|
||||||
|
}
|
||||||
|
.$themeClass ::-webkit-selection {
|
||||||
|
background: $bodySelectionBackground;
|
||||||
|
// FIXME color: bodySelectionColor;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue