You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
2.2 KiB
55 lines
2.2 KiB
/* Editor |
|
* |
|
* Styling Editor means styling the Editor inside iframe container (dijitEditorIFrameContainer) |
|
* |
|
* 1. Editor iframe container (default styling): |
|
* .dijitEditorIFrameContainer - normal state styles: background-color, border, padding |
|
* |
|
* 2. hovered Editor iframe container (ie, mouse hover on editor) |
|
* .dijitEditorHover .dijitEditorIFrameContainer/dijitEditorIFrame - styles when mouse hover on the container |
|
* |
|
* 3. focused Editor iframe container (ie, mouse focus on the editor pane) |
|
* .dijitEditorFocused .dijitEditorIFrameContainer/dijitEditorIFrame - styles when container focused |
|
* |
|
* 3. disabled Editor iframe container |
|
* .dijitEditorDisabled - editor's inner iframe container disable status styles: background, border |
|
*/ |
|
.claro .dijitEditorIFrameContainer { |
|
padding: 3px 3px 1px 10px; |
|
} |
|
.claro .dijitEditorIFrame { |
|
background-color: #ffffff; |
|
} |
|
.claro .dijitEditor { |
|
border: 1px solid #b5bcc7; |
|
} |
|
.claro .dijitEditor .dijitEditorIFrameContainer { |
|
background-color: #ffffff; |
|
background-repeat: repeat-x; |
|
} |
|
.claro .dijitEditorHover .dijitEditorIFrameContainer, |
|
.claro .dijitEditorHover .dijitEditorIFrameContainer .dijitEditorIFrame { |
|
background-color: #e5f2fe; |
|
} |
|
.claro .dijitEditorFocused .dijitEditorIFrameContainer, |
|
.claro .dijitEditorFocused .dijitEditorIFrameContainer .dijitEditorIFrame { |
|
background-color: #ffffff; |
|
} |
|
.claro .dijitEditorHover .dijitEditorIFrameContainer, |
|
.claro .dijitEditorFocused .dijitEditorIFrameContainer { |
|
background-image: -moz-linear-gradient(rgba(127, 127, 127, 0.2) 0%, rgba(127, 127, 127, 0) 2px); |
|
background-image: -webkit-linear-gradient(rgba(127, 127, 127, 0.2) 0%, rgba(127, 127, 127, 0) 2px); |
|
background-image: -o-linear-gradient(rgba(127, 127, 127, 0.2) 0%, rgba(127, 127, 127, 0) 2px); |
|
background-image: linear-gradient(rgba(127, 127, 127, 0.2) 0%, rgba(127, 127, 127, 0) 2px); |
|
} |
|
/* Disabled */ |
|
.claro .dijitEditorDisabled { |
|
border: 1px solid #d3d3d3; |
|
color: #818181; |
|
} |
|
.claro .dijitDisabled .dijitEditorIFrame, |
|
.claro .dijitDisabled .dijitEditorIFrameContainer, |
|
.claro .dijitDisabled .dijitEditorIFrameContainer .dijitEditorIFrame { |
|
background-color: #efefef; |
|
background-image: none; |
|
}
|
|
|