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.
23 lines
605 B
23 lines
605 B
/* 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 #2196f3; |
|
} |
|
.flat .dijitInlineEditBoxDisplayModeDisabled { |
|
opacity: 0.65; |
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)"; |
|
filter: alpha(opacity=65); |
|
}
|
|
|