Commit d25a0467b94a014a0095c39c1d51fe3eff2ce23c
Exists in
fix_configuracion
and in
1 other branch
Merge branch 'develop' of git.focasoftware.com:npm/wrapper-facturador
Showing
2 changed files
Show diff stats
src/sass/_grid.scss
1 | .gridInforme { | 1 | .gridInforme { |
2 | width: 100%; | 2 | width: 100%; |
3 | height: 350px; | 3 | height: 350px; |
4 | } | 4 | } |
5 | .ui-grid-header-cell-wrapper{ | 5 | .ui-grid-header-cell-wrapper{ |
6 | height: 40px !important; | 6 | height: 40px !important; |
7 | } | 7 | } |
8 | 8 | ||
9 | 9 | ||
10 | .yellow { | 10 | .yellow { |
11 | max-width: unset !important; | 11 | max-width: unset !important; |
12 | >div { | 12 | >div { |
13 | background: yellow !important; | 13 | background: #7d98f1 !important; |
14 | font-weight: bold; | 14 | font-weight: bold; |
15 | } | 15 | } |
16 | } | 16 | } |
17 | 17 | ||
18 | .red { | 18 | .red { |
19 | max-width: unset !important; | 19 | max-width: unset !important; |
20 | >div { | 20 | >div { |
21 | color: red; | 21 | color: red; |
22 | font-weight: bold; | 22 | font-weight: bold; |
23 | } | 23 | } |
24 | } | 24 | } |
25 | 25 | ||
26 | .green { | 26 | .green { |
27 | max-width: unset !important; | 27 | max-width: unset !important; |
28 | >div { | 28 | >div { |
29 | color: green; | 29 | color: green; |
30 | font-weight: bold; | 30 | font-weight: bold; |
31 | } | 31 | } |
32 | } | 32 | } |
33 | 33 |
src/sass/_tabla.scss
1 | .table { | 1 | .table { |
2 | &-nonfluid { | 2 | &-nonfluid { |
3 | width: auto; | 3 | width: auto; |
4 | } | 4 | } |
5 | &-celda-total { | 5 | &-celda-total { |
6 | color: #000000; | 6 | color: #000000; |
7 | background-color: #FF9900; | 7 | background-color: #2872AD; |
8 | } | 8 | } |
9 | &-title{ | 9 | &-title{ |
10 | background-color: #67615e; | 10 | background-color: #67615e; |
11 | color: #FFF; | 11 | color: #FFF; |
12 | margin-bottom: 0; | 12 | margin-bottom: 0; |
13 | padding: 0.25rem 0; | 13 | padding: 0.25rem 0; |
14 | font-size: 1rem; | 14 | font-size: 1rem; |
15 | } | 15 | } |
16 | 16 | ||
17 | thead th{ | 17 | thead th{ |
18 | font-size: 13px; | 18 | font-size: 13px; |
19 | } | 19 | } |
20 | 20 | ||
21 | &.table-abm{ | 21 | &.table-abm{ |
22 | thead{ | 22 | thead{ |
23 | color: #FFF; | 23 | color: #FFF; |
24 | background-color: #67615e; | 24 | background-color: #67615e; |
25 | } | 25 | } |
26 | } | 26 | } |
27 | 27 | ||
28 | } | 28 | } |
29 | 29 |