fix: form input style

This commit is contained in:
a.bouhuolia
2021-08-04 00:00:07 +02:00
parent 4bf2861599
commit e394806306
3 changed files with 30 additions and 8 deletions

View File

@@ -64,16 +64,13 @@ export default [
href: '/invoices',
newTabHref: '/invoices/new',
},
{
text: <T id={'payment_receives'} />,
href: '/payment-receives',
newTabHref: '/payment-receives/new',
},
{
text: <T id={'receipts'} />,
href: '/receipts',
newTabHref: '/receipts/new',
},
{
text: <T id={'payment_receives'} />,
href: '/payment-receives',
},
{
text: <T id={'New tasks'} />,

View File

@@ -36,6 +36,14 @@
&.bp3-button{
padding-left: 10px;
padding-right: 10px;
.bp3-icon {
[dir="rtl"] & {
transform: scale(-1);
}
}
}
}

View File

@@ -50,7 +50,7 @@ label.bp3-label {
background: #e9ecef;
}
.bp3-input-group.bp3-intent-danger & {
&.bp3-intent-danger {
box-shadow: 0 0 0 transparent;
border-color: #db3737;
@@ -62,6 +62,23 @@ label.bp3-label {
}
}
.bp3-input-group{
&.bp3-intent-danger{
.bp3-input{
box-shadow: 0 0 0 transparent;
border-color: #db3737;
&:focus,
&.bp3-active {
box-shadow: 0 0 0 1px #db3737;
border-color: #db3737;
}
}
}
}
.#{$ns}-form-group {
margin-bottom: 20px;