Commit fa233d18db4abb604f47306dafaae89b953b4389
1 parent
73594f0671
Exists in
master
mejor uso de sass
Showing
1 changed file
with
8 additions
and
8 deletions
Show diff stats
src/sass/_tabla-articulos.scss
1 | .tabla-articulo { | 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 | &-numero { |
21 | width: 25px; | 21 | width: 25px; |
22 | } | 22 | } |
23 | 23 | ||
24 | .tabla-articulo-codigo { | 24 | &-codigo { |
25 | width: 70px; | 25 | width: 70px; |
26 | } | 26 | } |
27 | 27 | ||
28 | .tabla-articulo-descripcion { | 28 | &-descripcion { |
29 | width: 330px; | 29 | width: 330px; |
30 | } | 30 | } |
31 | 31 | ||
32 | .tabla-articulo-cantidad { | 32 | &-cantidad { |
33 | width: 100px; | 33 | width: 100px; |
34 | } | 34 | } |
35 | 35 | ||
36 | .tabla-articulo-precio { | 36 | &-precio { |
37 | width: 130px; | 37 | width: 130px; |
38 | } | 38 | } |
39 | 39 | ||
40 | .tabla-articulo-subtotal { | 40 | &-subtotal { |
41 | width: 130px; | 41 | width: 130px; |
42 | } | 42 | } |
43 | 43 | ||
44 | .tabla-articulo-boton { | 44 | &-boton { |
45 | width: 52px; | 45 | width: 52px; |
46 | } | 46 | } |
47 | } | 47 | } |
48 | 48 |