From: fomichev Date: Wed, 2 Jul 2025 07:29:19 +0000 (+0300) Subject: Блокировка таблицы X-Git-Url: https://gitweb.erp-flowers.ru/?a=commitdiff_plain;h=ee3b878920697cd9f9e0a797a270664f2599f669;p=erp24_rep%2Fyii-erp24%2F.git Блокировка таблицы --- diff --git a/erp24/web/css/category-plan/style.css b/erp24/web/css/category-plan/style.css index e660c78c..9be4e0eb 100644 --- a/erp24/web/css/category-plan/style.css +++ b/erp24/web/css/category-plan/style.css @@ -12,4 +12,23 @@ z-index: 9999; pointer-events: all; filter: blur(1px); +} + +.block_table::after { + content: ''; + position: absolute; + top: 50%; left: 50%; + transform: translate(-50%, -50%); + width: 40px; + height: 40px; + border: 4px solid #ccc; + border-top-color: #333; + border-radius: 50%; + animation: spin 1s linear infinite; + z-index: 10000; +} + + +@keyframes spin { + to { transform: translate(-50%, -50%) rotate(360deg); } } \ No newline at end of file