fix(cupang): 헤더 입력 185px — erp.css min-width:240 오버라이드

진짜 원인: erp.css .erp-input{min-width:240px} 가 width:185 를 눌러 240 고정.
헤더 입력 규칙에 min-width:185px 추가로 해결. 캐시 버전 c 로 bump.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-05-30 05:43:37 +09:00
parent 574c053077
commit 478cde8caf
8 changed files with 10 additions and 10 deletions
@@ -1,6 +1,6 @@
{% extends "erp_base.html" %} {% extends "erp_base.html" %}
{% block head_extra %}<link rel="stylesheet" href="/static/cupang.css?v=20260530b" />{% endblock %} {% block head_extra %}<link rel="stylesheet" href="/static/cupang.css?v=20260530c" />{% endblock %}
{% block content %} {% block content %}
<section class="cpg"> <section class="cpg">
@@ -1,6 +1,6 @@
{% extends "erp_base.html" %} {% extends "erp_base.html" %}
{% block head_extra %}<link rel="stylesheet" href="/static/cupang.css?v=20260530b" />{% endblock %} {% block head_extra %}<link rel="stylesheet" href="/static/cupang.css?v=20260530c" />{% endblock %}
{% block content %} {% block content %}
<section class="cpg"> <section class="cpg">
@@ -1,6 +1,6 @@
{% extends "erp_base.html" %} {% extends "erp_base.html" %}
{% block head_extra %}<link rel="stylesheet" href="/static/cupang.css?v=20260530b" />{% endblock %} {% block head_extra %}<link rel="stylesheet" href="/static/cupang.css?v=20260530c" />{% endblock %}
{% block content %} {% block content %}
<section class="cpg"> <section class="cpg">
@@ -1,6 +1,6 @@
{% extends "erp_base.html" %} {% extends "erp_base.html" %}
{% block head_extra %}<link rel="stylesheet" href="/static/cupang.css?v=20260530b" />{% endblock %} {% block head_extra %}<link rel="stylesheet" href="/static/cupang.css?v=20260530c" />{% endblock %}
{% block content %} {% block content %}
<section class="cpg"> <section class="cpg">
@@ -118,4 +118,4 @@
</script> </script>
{% endblock %} {% endblock %}
{% block scripts %}<script src="/static/cupang.js?v=20260530b" defer></script>{% endblock %} {% block scripts %}<script src="/static/cupang.js?v=20260530c" defer></script>{% endblock %}
@@ -1,6 +1,6 @@
{% extends "erp_base.html" %} {% extends "erp_base.html" %}
{% block head_extra %}<link rel="stylesheet" href="/static/cupang.css?v=20260530b" />{% endblock %} {% block head_extra %}<link rel="stylesheet" href="/static/cupang.css?v=20260530c" />{% endblock %}
{% block content %} {% block content %}
<section class="cpg"> <section class="cpg">
@@ -1,6 +1,6 @@
{% extends "erp_base.html" %} {% extends "erp_base.html" %}
{% block head_extra %}<link rel="stylesheet" href="/static/cupang.css?v=20260530b" />{% endblock %} {% block head_extra %}<link rel="stylesheet" href="/static/cupang.css?v=20260530c" />{% endblock %}
{% block content %} {% block content %}
<section class="cpg"> <section class="cpg">
+1 -1
View File
@@ -108,7 +108,7 @@
(.cpg .erp-field > .erp-input width:100% 보다 특이도 높게) */ (.cpg .erp-field > .erp-input width:100% 보다 특이도 높게) */
.cpg .cpg-header-grid .erp-field > .erp-input, .cpg .cpg-header-grid .erp-field > .erp-input,
.cpg .cpg-header-grid .erp-field > .erp-select { .cpg .cpg-header-grid .erp-field > .erp-select {
width: 185px; max-width: 185px; box-sizing: border-box; width: 185px; max-width: 185px; min-width: 185px; box-sizing: border-box;
} }
.cpg-rule-grid { .cpg-rule-grid {
display: grid; display: grid;
+2 -2
View File
@@ -4,8 +4,8 @@
<meta charset="utf-8" /> <meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
<title>{{ page_title or "ERP" }} — DBX Corporation</title> <title>{{ page_title or "ERP" }} — DBX Corporation</title>
<link rel="stylesheet" href="/static/erp.css?v=20260530b" /> <link rel="stylesheet" href="/static/erp.css?v=20260530c" />
<link rel="stylesheet" href="/static/erp-shell.css?v=20260530b" /> <link rel="stylesheet" href="/static/erp-shell.css?v=20260530c" />
<link rel="stylesheet" href="/static/erp-attach-viewer.css" /> <link rel="stylesheet" href="/static/erp-attach-viewer.css" />
{% block head_extra %}{% endblock %} {% block head_extra %}{% endblock %}
</head> </head>