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.
31 lines
692 B
31 lines
692 B
/* InlineEditBox |
|
* |
|
* Styling InlineEditBox mainly includes: |
|
* |
|
* 1. Normal state |
|
* .dijitInlineEditBoxDisplayMode - for border |
|
* |
|
* 2. Hover state |
|
* .dijitInlineEditBoxDisplayModeHover - for border and background color |
|
*/ |
|
|
|
@import 'dijit_variables'; |
|
|
|
.{$theme-name} { |
|
|
|
.dijitInlineEditBoxDisplayMode { |
|
border: 1px dashed $inlineeditbox-border-color; |
|
padding: $inlineeditbox-padding; |
|
border-radius: $inlineeditbox-border-radius; |
|
} |
|
|
|
.dijitInlineEditBoxDisplayModeHover { |
|
background-color: $inlineeditbox-hover-background-color; |
|
border: 1px dashed $inlineeditbox-hover-border-color; |
|
} |
|
|
|
.dijitInlineEditBoxDisplayModeDisabled { |
|
opacity: $disabled-opacity; |
|
} |
|
|
|
} |