Commit 73594f0671331c6275c643071f42751a12b228f3
1 parent
1459291bd9
Exists in
master
arreglo de nombre de clases para tabla de articulos
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
src/sass/_contenedor.scss
1 | body { | 1 | body { |
2 | background-color: #cccccc; | 2 | background-color: #cccccc; |
3 | } | 3 | } |
4 | 4 | ||
5 | .contenedor { | 5 | .contenedor { |
6 | background-image: radial-gradient(circle at 50% 50%, #ebecf1, #abaec3); | 6 | background-image: radial-gradient(circle at 50% 50%, #ebecf1, #abaec3); |
7 | min-height: 600px; | 7 | min-height: 600px; |
8 | min-width: 800px; | 8 | min-width: 800px; |
9 | } | 9 | } |
10 | 10 | ||
11 | .contenedor-teclado { | 11 | .contenedor-teclado { |
12 | background-image: radial-gradient(circle at 50% 50%, #ebecf1, #abaec3); | 12 | background-image: radial-gradient(circle at 50% 50%, #ebecf1, #abaec3); |
13 | height: 300px; | 13 | height: 300px; |
14 | } | 14 | } |
15 | 15 | ||
16 | .grilla-articulos { | 16 | .grilla-articulo { |
17 | background-color: rgba(0, 0, 0, 0.8); | 17 | background-color: rgba(0, 0, 0, 0.8); |
18 | height: 430px; | 18 | height: 430px; |
19 | } | 19 | } |
20 | 20 | ||
21 | .crear-nota-pedido { | 21 | .crear-nota-pedido { |
22 | form { | 22 | form { |
23 | margin-bottom: 0; | 23 | margin-bottom: 0; |
24 | } | 24 | } |
25 | table { | 25 | table { |
26 | margin-bottom: 0; | 26 | margin-bottom: 0; |
27 | } | 27 | } |
28 | } | 28 | } |
29 | 29 |
src/sass/_tabla-articulos.scss
1 | .tabla-articulos { | 1 | .tabla-articulo { |
2 | max-height: 420px; | 2 | max-height: 420px; |
3 | display: -moz-groupbox; | 3 | display: -moz-groupbox; |
4 | width: 100%; | 4 | width: 100%; |
5 | display: block; | 5 | display: block; |
6 | 6 | ||
7 | tr { | 7 | tr { |
8 | width: 100%; | 8 | width: 100%; |
9 | display: inline-table; | 9 | display: inline-table; |
10 | table-layout: fixed; | 10 | table-layout: fixed; |
11 | } | 11 | } |
12 | 12 | ||
13 | tbody{ | 13 | tbody{ |
14 | overflow-y: auto; | 14 | overflow-y: auto; |
15 | max-height: 280px; | 15 | max-height: 280px; |
16 | width: 100%; | 16 | width: 100%; |
17 | display: block; | 17 | display: block; |
18 | } | 18 | } |
19 | 19 | ||
20 | .tabla-articulo-numero { | 20 | .tabla-articulo-numero { |
21 | width: 25px; | 21 | width: 25px; |
22 | } | 22 | } |
23 | 23 | ||
24 | .tabla-articulo-codigo { | 24 | .tabla-articulo-codigo { |
25 | width: 70px; | 25 | width: 70px; |
26 | } | 26 | } |
27 | 27 | ||
28 | .tabla-articulo-descripcion { | 28 | .tabla-articulo-descripcion { |
29 | width: 330px; | 29 | width: 330px; |
30 | } | 30 | } |
31 | 31 | ||
32 | .tabla-articulo-cantidad { | 32 | .tabla-articulo-cantidad { |
33 | width: 100px; | 33 | width: 100px; |
34 | } | 34 | } |
35 | 35 | ||
36 | .tabla-articulo-precio { | 36 | .tabla-articulo-precio { |
37 | width: 130px; | 37 | width: 130px; |
38 | } | 38 | } |
39 | 39 | ||
40 | .tabla-articulo-subtotal { | 40 | .tabla-articulo-subtotal { |
41 | width: 130px; | 41 | width: 130px; |
42 | } | 42 | } |
43 | 43 | ||
44 | .tabla-articulo-boton { | 44 | .tabla-articulo-boton { |
45 | width: 52px; | 45 | width: 52px; |
46 | } | 46 | } |
47 | } | 47 | } |
48 | 48 |