Commit 1459291bd9e14563d2aafa7c308970616549c963
1 parent
967d04eaba
Exists in
master
and in
1 other branch
overflow en la tabla de articulos
Showing
2 changed files
with
48 additions
and
0 deletions
Show diff stats
src/sass/_tabla-articulos.scss
| File was created | 1 | .tabla-articulos { | |
| 2 | max-height: 420px; | ||
| 3 | display: -moz-groupbox; | ||
| 4 | width: 100%; | ||
| 5 | display: block; | ||
| 6 | |||
| 7 | tr { | ||
| 8 | width: 100%; | ||
| 9 | display: inline-table; | ||
| 10 | table-layout: fixed; | ||
| 11 | } | ||
| 12 | |||
| 13 | tbody{ | ||
| 14 | overflow-y: auto; | ||
| 15 | max-height: 280px; | ||
| 16 | width: 100%; | ||
| 17 | display: block; | ||
| 18 | } | ||
| 19 | |||
| 20 | .tabla-articulo-numero { | ||
| 21 | width: 25px; | ||
| 22 | } | ||
| 23 | |||
| 24 | .tabla-articulo-codigo { | ||
| 25 | width: 70px; | ||
| 26 | } | ||
| 27 | |||
| 28 | .tabla-articulo-descripcion { | ||
| 29 | width: 330px; | ||
| 30 | } | ||
| 31 | |||
| 32 | .tabla-articulo-cantidad { | ||
| 33 | width: 100px; | ||
| 34 | } | ||
| 35 | |||
| 36 | .tabla-articulo-precio { | ||
| 37 | width: 130px; | ||
| 38 | } | ||
| 39 | |||
| 40 | .tabla-articulo-subtotal { | ||
| 41 | width: 130px; | ||
| 42 | } | ||
| 43 | |||
| 44 | .tabla-articulo-boton { | ||
| 45 | width: 52px; | ||
| 46 | } | ||
| 47 | } | ||
| 48 |
src/sass/general.scss
| 1 | @import 'bootstrap'; | 1 | @import 'bootstrap'; |
| 2 | @import 'botonera'; | 2 | @import 'botonera'; |
| 3 | @import 'botonera-lateral'; | 3 | @import 'botonera-lateral'; |
| 4 | @import 'botonera-principal'; | 4 | @import 'botonera-principal'; |
| 5 | @import 'botonera-secundaria'; | 5 | @import 'botonera-secundaria'; |
| 6 | @import 'contenedor'; | 6 | @import 'contenedor'; |
| 7 | @import 'lista'; | 7 | @import 'lista'; |
| 8 | @import 'login'; | 8 | @import 'login'; |
| 9 | @import 'panel-informativo'; | 9 | @import 'panel-informativo'; |
| 10 | @import 'tabla'; | 10 | @import 'tabla'; |
| 11 | @import 'teclado'; | 11 | @import 'teclado'; |
| 12 | @import 'tabla-articulos'; | ||
| 12 | 13 |