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.
48 lines
1.0 KiB
48 lines
1.0 KiB
@import '../../style/variables.less'; |
|
|
|
@handlestyle: 5px solid fade(@primary-color, 50%); |
|
|
|
.react-geo-panel { |
|
z-index: 100; |
|
|
|
.body { |
|
background-color: @component-background; |
|
&:focus { |
|
border: 0; |
|
outline: 0; |
|
} |
|
} |
|
|
|
.resize-handle { |
|
&:hover { |
|
&.resize-handle-right { |
|
border-right: @handlestyle; |
|
} |
|
&.resize-handle-left { |
|
border-left: @handlestyle; |
|
} |
|
&.resize-handle-top { |
|
border-top: @handlestyle; |
|
} |
|
&.resize-handle-bottom { |
|
border-top: @handlestyle; |
|
} |
|
&.resize-handle-bottom-right { |
|
border-bottom: @handlestyle; |
|
border-right: @handlestyle; |
|
} |
|
&.resize-handle-bottom-left { |
|
border-bottom: @handlestyle; |
|
border-left: @handlestyle; |
|
} |
|
&.resize-handle-top-right { |
|
border-top: @handlestyle; |
|
border-right: @handlestyle; |
|
} |
|
&.resize-handle-top-left { |
|
border-top: @handlestyle; |
|
border-left: @handlestyle; |
|
} |
|
} |
|
} |
|
}
|
|
|