mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
52 lines
964 B
SCSS
52 lines
964 B
SCSS
|
|
.root{
|
|
background: #fff;
|
|
border-radius: 5px;
|
|
border: 1px solid #D6DBE3;
|
|
padding: 10px 16px;
|
|
cursor: pointer;
|
|
|
|
&.active{
|
|
border-color: #88ABDB;
|
|
box-shadow: 0 0 0 2px rgba(136, 171, 219, 0.2);
|
|
|
|
.label,
|
|
.date {
|
|
color: rgb(21, 82, 200),
|
|
}
|
|
}
|
|
&:hover:not(.active){
|
|
border-color: #c0c0c0;
|
|
}
|
|
}
|
|
|
|
.checkbox:global(.bp4-control.bp4-checkbox){
|
|
margin: 0;
|
|
}
|
|
.checkbox:global(.bp4-control.bp4-checkbox) :global .bp4-control-indicator{
|
|
box-shadow: 0 0 0 1px #CBCBCB;
|
|
}
|
|
.checkbox:global(.bp4-control.bp4-checkbox) :global .bp4-control-indicator{
|
|
margin-right: 4px;
|
|
margin-left: 0;
|
|
height: 16px;
|
|
width: 16px;
|
|
}
|
|
|
|
.checkbox:global(.bp4-control.bp4-checkbox) :global input:checked ~ .bp4-control-indicator{
|
|
box-shadow: 0 0 0 1px #0069ff;
|
|
}
|
|
|
|
.label {
|
|
color: #252A33;
|
|
font-size: 15px;
|
|
}
|
|
.label :global strong {
|
|
font-weight: 500;
|
|
font-variant-numeric:tabular-nums;
|
|
}
|
|
|
|
.date {
|
|
font-size: 12px;
|
|
color: #5C7080;
|
|
} |