You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
605 B
CSS
24 lines
605 B
CSS
/* InlineEditBox
|
|
*
|
|
* Styling InlineEditBox mainly includes:
|
|
*
|
|
* 1. Normal state
|
|
* .dijitInlineEditBoxDisplayMode - for border
|
|
*
|
|
* 2. Hover state
|
|
* .dijitInlineEditBoxDisplayModeHover - for border and background color
|
|
*/
|
|
.flat .dijitInlineEditBoxDisplayMode {
|
|
border: 1px dashed transparent;
|
|
padding: 4px 6px;
|
|
}
|
|
.flat .dijitInlineEditBoxDisplayModeHover {
|
|
background-color: transparent;
|
|
border: 1px dashed #257aa7;
|
|
}
|
|
.flat .dijitInlineEditBoxDisplayModeDisabled {
|
|
opacity: 0.65;
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
|
|
filter: alpha(opacity=65);
|
|
}
|