Browse Source

[어종구분] 완료

DESKTOP-T61HUSC\user 2 weeks ago
parent
commit
2970d6a2af
2 changed files with 26 additions and 10 deletions
  1. 24 8
      app/assets/scss/admin.scss
  2. 2 2
      app/pages/site-manager/species/list.vue

+ 24 - 8
app/assets/scss/admin.scss

@@ -2417,15 +2417,15 @@ footer {
     }
 
     &:checked {
-      background-color: var(--admin-accent-primary);
+      background-color: #fff;
       border-color: var(--admin-accent-primary);
-      background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8L6.75 11.25L12.5 5.25' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
+      background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8L6.75 11.25L12.5 5.25' stroke='%231A2332' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
     }
 
     &:indeterminate {
-      background-color: var(--admin-accent-primary);
+      background-color: #fff;
       border-color: var(--admin-accent-primary);
-      background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8h8' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
+      background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8h8' stroke='%231A2332' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
     }
 
     &:disabled {
@@ -2491,16 +2491,32 @@ footer {
     // 인라인 input (테이블 셀 안에서 편집)
     .admin--inline-input {
       width: 100%;
-      height: 34px;
-      padding: 6px 10px !important;
-      font-size: 13px !important;
-      border: 1px solid #e8eaef !important;
+      color: #333;
+      padding: 12px;
+      font-size: 13px;
+      border: 1px solid #e8eaef;
       border-radius: 4px;
       background: #fff;
+      &.center{
+        text-align: center;
+      }
+      &::placeholder{
+        font-weight: 400;
+      }
       &:focus {
         outline: none;
         border-color: var(--admin-accent-primary) !important;
       }
+      &.admin--form-select{
+        cursor: pointer;
+        appearance: none;
+        -webkit-appearance: none;
+        -moz-appearance: none;
+        padding-right: 36px;
+        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666B75' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
+        background-repeat: no-repeat;
+        background-position: right 12px center;
+      }
     }
 
     td {

+ 2 - 2
app/pages/site-manager/species/list.vue

@@ -46,7 +46,7 @@
               </div>
             </th>
             <th style="">구분명</th>
-            <th style="">정렬순서</th>
+            <th style="width: 20%;">정렬순서</th>
             <th style="width: 10%;">상태</th>
             <th style="width: 10%">등록일</th>
             <th style="width: 10%">관리</th>
@@ -127,7 +127,7 @@
                   v-model.number="editing[item.id].sort_order"
                   type="number"
                   min="0"
-                  class="admin--form-input admin--inline-input"
+                  class="admin--form-input admin--inline-input center"
                   @keyup.enter="bulkSave"
                 />
               </td>