]> gitweb.erp-flowers.ru Git - erp24_rep/yii-erp24/.git/commitdiff
Блокировка таблицы
authorfomichev <vladimir.fomichev@erp-flowers.ru>
Wed, 2 Jul 2025 07:29:19 +0000 (10:29 +0300)
committerfomichev <vladimir.fomichev@erp-flowers.ru>
Wed, 2 Jul 2025 07:29:19 +0000 (10:29 +0300)
erp24/web/css/category-plan/style.css

index e660c78cdf16c60f5c3814d6601ec00f48878a21..9be4e0ebdccb43314164094587841223cb60bd47 100644 (file)
     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