mirror of
https://github.com/billsonnn/nitro-react.git
synced 2024-11-23 06:40:50 +01:00
Merge branch 'dev' of https://github.com/billsonnn/nitro-react into dev
This commit is contained in:
commit
4919f05821
@ -41,4 +41,24 @@ $nitro-card-top-height: $nitro-card-header-height + $nitro-card-tabs-height;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.header-close {
|
||||||
|
right: 6px;
|
||||||
|
border-radius: $border-radius;
|
||||||
|
box-shadow: inset 0 0 0 1.5px #921911, inset 0 2px rgba($white, .2);
|
||||||
|
border: 1px solid $white;
|
||||||
|
background: rgb(245,80,65);
|
||||||
|
background: linear-gradient(180deg, rgba(245,80,65,1) 0%, rgba(245,80,65,1) 50%, rgba(194,48,39,1) 50%, rgba(194,48,39,1) 100%);
|
||||||
|
cursor: pointer;
|
||||||
|
line-height: 1;
|
||||||
|
padding: 4px 6px;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
filter: brightness(1.2);
|
||||||
|
}
|
||||||
|
|
||||||
|
&:active {
|
||||||
|
filter: brightness(0.8);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@import './accordion/NitroCardAccordionView';
|
@import './accordion/NitroCardAccordionView';
|
||||||
|
@ -1,24 +1,4 @@
|
|||||||
.nitro-card-header {
|
.nitro-card-header {
|
||||||
min-height: $nitro-card-header-height;
|
min-height: $nitro-card-header-height;
|
||||||
max-height: $nitro-card-header-height;
|
max-height: $nitro-card-header-height;
|
||||||
|
|
||||||
.header-close {
|
|
||||||
right: 6px;
|
|
||||||
border-radius: $border-radius;
|
|
||||||
box-shadow: inset 0 0 0 1.5px #921911, inset 0 2px rgba($white, .2);
|
|
||||||
border: 1px solid $white;
|
|
||||||
background: rgb(245,80,65);
|
|
||||||
background: linear-gradient(180deg, rgba(245,80,65,1) 0%, rgba(245,80,65,1) 50%, rgba(194,48,39,1) 50%, rgba(194,48,39,1) 100%);
|
|
||||||
cursor: pointer;
|
|
||||||
line-height: 1;
|
|
||||||
padding: 4px 6px;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
filter: brightness(1.2);
|
|
||||||
}
|
|
||||||
|
|
||||||
&:active {
|
|
||||||
filter: brightness(0.8);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -8,24 +8,4 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
margin: 0 30px;
|
margin: 0 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header-close {
|
|
||||||
right: 6px;
|
|
||||||
border-radius: $border-radius;
|
|
||||||
box-shadow: inset 0 0 0 1.5px #921911, inset 0 2px rgba($white, .2);
|
|
||||||
border: 1px solid $white;
|
|
||||||
background: rgb(245,80,65);
|
|
||||||
background: linear-gradient(180deg, rgba(245,80,65,1) 0%, rgba(245,80,65,1) 50%, rgba(194,48,39,1) 50%, rgba(194,48,39,1) 100%);
|
|
||||||
cursor: pointer;
|
|
||||||
line-height: 1;
|
|
||||||
padding: 4px 6px;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
filter: brightness(1.2);
|
|
||||||
}
|
|
||||||
|
|
||||||
&:active {
|
|
||||||
filter: brightness(0.8);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
.nitro-camera-capture {
|
.nitro-camera-capture {
|
||||||
.nitro-card-close-parent {
|
.header-close {
|
||||||
top: 7px;
|
top: 7px;
|
||||||
right: 10px;
|
right: 9px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.camera-canvas {
|
.camera-canvas {
|
||||||
|
@ -79,10 +79,8 @@ export const CameraWidgetCaptureView: FC<CameraWidgetCaptureViewProps> = props =
|
|||||||
<DraggableWindow handle=".nitro-camera-capture">
|
<DraggableWindow handle=".nitro-camera-capture">
|
||||||
<div className="nitro-camera-capture d-flex flex-column justify-content-center align-items-center">
|
<div className="nitro-camera-capture d-flex flex-column justify-content-center align-items-center">
|
||||||
<div className="camera-canvas">
|
<div className="camera-canvas">
|
||||||
<div className="nitro-card-close-parent">
|
<div className="position-absolute header-close" onClick={ event => processAction('close') }>
|
||||||
<div className="nitro-card-close" onClick={ event => processAction('close') }>
|
<i className="fas fa-times"/>
|
||||||
<i className="fas fa-times"/>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div ref={ cameraFrameRef } className={'camera-frame ' + classNames({'bg': cameraWidgetContext.selectedPictureIndex > -1}) }>
|
<div ref={ cameraFrameRef } className={'camera-frame ' + classNames({'bg': cameraWidgetContext.selectedPictureIndex > -1}) }>
|
||||||
{ cameraWidgetContext.selectedPictureIndex > -1 && <div>
|
{ cameraWidgetContext.selectedPictureIndex > -1 && <div>
|
||||||
|
Loading…
Reference in New Issue
Block a user