diff --git a/frontend/index.html b/frontend/index.html
index ca0d3a2..06e3c24 100644
--- a/frontend/index.html
+++ b/frontend/index.html
@@ -5,7 +5,7 @@
АСУ Инвентаризация
-
+
@@ -195,13 +195,13 @@
{{ it.raspologenie ?? '' }} |
{{ it.kolichestvo ?? '' }} |
{{ it.type?.name ?? '' }} |
-
+ |
-
{{ it.owner?.name ?? '' }}
diff --git a/frontend/styles.css b/frontend/styles.css
index f54b9f7..64bcc91 100644
--- a/frontend/styles.css
+++ b/frontend/styles.css
@@ -179,11 +179,34 @@ td.inv-col, th.inv-col {
max-width: 120px;
}
+ .card-body {
+ padding: 8px;
+ }
+
.table td, .table th {
font-size: 12px;
padding: 4px 3px;
}
+ .owner-td {
+ min-width: 80px;
+ max-width: 110px;
+ }
+
+ .owner-td select {
+ width: 100% !important;
+ max-width: 100%;
+ margin-bottom: 3px;
+ font-size: 11px;
+ }
+
+ .owner-td .btn {
+ width: 100%;
+ padding: 2px 4px;
+ font-size: 11px;
+ margin: 0 !important;
+ }
+
.aud-select-bar {
flex-direction: column !important;
align-items: stretch !important;
|