diff --git a/presets.js b/presets.js index 51577c105..cfadf4427 100644 --- a/presets.js +++ b/presets.js @@ -211,6 +211,10 @@ module.exports = { '0%': { boxShadow: '0 28px 0 -28px #ffffff' }, '100%': { boxShadow: '0 28px 0 #ffffff' }, }, + submit_second: { + '0%': { boxShadow: '0 28px 0 -28px #55588b' }, + '100%': { boxShadow: '0 28px 0 #55588b' }, + }, }, animation: { @@ -218,7 +222,8 @@ module.exports = { pulsate_transparent: 'pulsate_transparent 1500ms ease infinite;', pulsate: 'pulsate 1500ms ease infinite;', spin: 'spin 1000ms infinite', - submit: 'submit 0.7s ease alternate infinite' + submit: 'submit 0.7s ease alternate infinite', + submit_second: 'submit_second 0.7s ease alternate infinite' }, transitionProperty: { diff --git a/public/css/app.css b/public/css/app.css index 78ffc6b87..5bf4ab8ba 100644 --- a/public/css/app.css +++ b/public/css/app.css @@ -9981,6 +9981,34 @@ input[type="date"]::-webkit-inner-spin-button, -webkit-animation: submit 0.7s ease alternate infinite; animation: submit 0.7s ease alternate infinite; } +@-webkit-keyframes submit_second{ + + 0%{ + -webkit-box-shadow: 0 28px 0 -28px #55588b; + box-shadow: 0 28px 0 -28px #55588b; + } + + 100%{ + -webkit-box-shadow: 0 28px 0 #55588b; + box-shadow: 0 28px 0 #55588b; + } +} +@keyframes submit_second{ + + 0%{ + -webkit-box-shadow: 0 28px 0 -28px #55588b; + box-shadow: 0 28px 0 -28px #55588b; + } + + 100%{ + -webkit-box-shadow: 0 28px 0 #55588b; + box-shadow: 0 28px 0 #55588b; + } +} +.animate-submit_second{ + -webkit-animation: submit_second 0.7s ease alternate infinite; + animation: submit_second 0.7s ease alternate infinite; +} .cursor-auto{ cursor: auto; } @@ -47105,6 +47133,11 @@ html[dir='rtl'] .el-input__suffix { text-align: left; } +html[dir='rtl'] .el-scrollbar__wrap { + margin-left: -15px !important; + margin-right: unset !important; +} + .el-select-dropdown.is-multiple .el-select-dropdown__item.selected::after { right: 15px !important; } @@ -47306,6 +47339,27 @@ body{ animation: submit 0.7s ease alternate infinite; } +@keyframes submit_second{ + + 0%{ + content: var(--tw-content); + -webkit-box-shadow: 0 28px 0 -28px #55588b; + box-shadow: 0 28px 0 -28px #55588b; + } + + 100%{ + content: var(--tw-content); + -webkit-box-shadow: 0 28px 0 #55588b; + box-shadow: 0 28px 0 #55588b; + } +} + +.before\:animate-submit_second::before{ + content: var(--tw-content); + -webkit-animation: submit_second 0.7s ease alternate infinite; + animation: submit_second 0.7s ease alternate infinite; +} + .before\:rounded-full::before{ content: var(--tw-content); border-radius: 9999px; @@ -47441,6 +47495,27 @@ body{ animation: submit 0.7s ease alternate infinite; } +@keyframes submit_second{ + + 0%{ + content: var(--tw-content); + -webkit-box-shadow: 0 28px 0 -28px #55588b; + box-shadow: 0 28px 0 -28px #55588b; + } + + 100%{ + content: var(--tw-content); + -webkit-box-shadow: 0 28px 0 #55588b; + box-shadow: 0 28px 0 #55588b; + } +} + +.after\:animate-submit_second::after{ + content: var(--tw-content); + -webkit-animation: submit_second 0.7s ease alternate infinite; + animation: submit_second 0.7s ease alternate infinite; +} + .after\:rounded-full::after{ content: var(--tw-content); border-radius: 9999px; @@ -47693,6 +47768,11 @@ body{ background-color: rgb(197 217 186 / var(--tw-bg-opacity)); } +.disabled\:bg-gray-100:disabled{ + --tw-bg-opacity: 1; + background-color: rgb(243 244 246 / var(--tw-bg-opacity)); +} + .disabled\:opacity-50:disabled{ opacity: 0.5; } @@ -47771,6 +47851,10 @@ body{ right: 0.5rem; } +[dir="ltr"] .ltr\:left-3{ + left: 0.75rem; +} + [dir="ltr"] .ltr\:-right-2{ right: -0.5rem; } @@ -47787,10 +47871,6 @@ body{ left: 0px; } -[dir="ltr"] .ltr\:left-3{ - left: 0.75rem; -} - [dir="ltr"] .ltr\:left-8{ left: 2rem; } @@ -47942,6 +48022,10 @@ body{ left: 0.5rem; } +[dir="rtl"] .rtl\:right-3{ + right: 0.75rem; +} + [dir="rtl"] .rtl\:-left-2{ left: -0.5rem; } @@ -47958,10 +48042,6 @@ body{ right: 0px; } -[dir="rtl"] .rtl\:right-3{ - right: 0.75rem; -} - [dir="rtl"] .rtl\:right-8{ right: 2rem; } diff --git a/resources/assets/js/components/AkauntingItemButton.vue b/resources/assets/js/components/AkauntingItemButton.vue index f0d73cccc..81cf6f2f0 100644 --- a/resources/assets/js/components/AkauntingItemButton.vue +++ b/resources/assets/js/components/AkauntingItemButton.vue @@ -40,7 +40,7 @@ v-bind="money" masked disabled - class="text-right disabled-money text-gray" + class="ltr:text-right rtl:text-left disabled-money text-gray" > diff --git a/resources/assets/js/components/AkauntingSwitch.vue b/resources/assets/js/components/AkauntingSwitch.vue index 05775e336..f8e9245d4 100644 --- a/resources/assets/js/components/AkauntingSwitch.vue +++ b/resources/assets/js/components/AkauntingSwitch.vue @@ -1,5 +1,5 @@