Explorar el Código

[fix] [style] grid overflow fix

version-14
Rushabh Mehta hace 9 años
padre
commit
d5d5c3a565
Se han modificado 2 ficheros con 12 adiciones y 7 borrados
  1. +3
    -1
      frappe/public/css/form_grid.css
  2. +9
    -6
      frappe/public/less/form_grid.less

+ 3
- 1
frappe/public/css/form_grid.css Ver fichero

@@ -39,7 +39,6 @@
}
.grid-body .data-row {
font-size: 12px;
overflow: hidden;
}
.grid-empty,
.list-loading {
@@ -112,6 +111,9 @@
.grid-body .grid-static-col[data-fieldtype="Button"] .field-area button {
height: 27px;
}
.grid-body .grid-static-col[data-fieldtype="Code"] {
overflow: hidden;
}
.grid-body .grid-static-col[data-fieldtype="Code"] .static-area {
margin-top: -5px;
}


+ 9
- 6
frappe/public/less/form_grid.less Ver fichero

@@ -52,7 +52,6 @@

.grid-body .data-row {
font-size: 12px;
overflow: hidden;
}

.grid-empty, .list-loading {
@@ -146,12 +145,16 @@
}
}

.grid-static-col[data-fieldtype="Code"] .static-area {
margin-top: -5px;
.grid-static-col[data-fieldtype="Code"] {
overflow: hidden;

.static-area {
margin-top: -5px;

pre {
background: none;
border: none;
pre {
background: none;
border: none;
}
}
}



Cargando…
Cancelar
Guardar