diff --git a/client/src/config/sidebarMenu.js b/client/src/config/sidebarMenu.js
index 3911a8945..a2d4d28a6 100644
--- a/client/src/config/sidebarMenu.js
+++ b/client/src/config/sidebarMenu.js
@@ -64,16 +64,13 @@ export default [
href: '/invoices',
newTabHref: '/invoices/new',
},
-
- {
- text: ,
- href: '/payment-receives',
- newTabHref: '/payment-receives/new',
- },
{
text: ,
href: '/receipts',
- newTabHref: '/receipts/new',
+ },
+ {
+ text: ,
+ href: '/payment-receives',
},
{
text: ,
diff --git a/client/src/style/components/DataTable/Pagination.scss b/client/src/style/components/DataTable/Pagination.scss
index 3e98c9534..e6719a729 100644
--- a/client/src/style/components/DataTable/Pagination.scss
+++ b/client/src/style/components/DataTable/Pagination.scss
@@ -36,6 +36,14 @@
&.bp3-button{
padding-left: 10px;
padding-right: 10px;
+
+ .bp3-icon {
+
+ [dir="rtl"] & {
+ transform: scale(-1);
+ }
+ }
+
}
}
diff --git a/client/src/style/objects/form.scss b/client/src/style/objects/form.scss
index b2f0abfdd..b426192c2 100644
--- a/client/src/style/objects/form.scss
+++ b/client/src/style/objects/form.scss
@@ -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;