Commit 7bbaad2d724ed8d60abd5bee017004d2f767dad7

Authored by Martin Macola
1 parent 5e9cbadac7
Exists in master

Cambios de colores

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: rgb(125, 152, 241) !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/_login.scss
1 .login { 1 .login {
2 background-color: #bdbdbd; 2 background-color: #bdbdbd;
3 border: 1px solid #000000; 3 border: 1px solid #000000;
4 border-radius: 3px; 4 border-radius: 3px;
5 height: calc(193px + 1em); 5 height: calc(193px + 1em);
6 left: calc(50% - 130px); 6 left: calc(50% - 130px);
7 opacity: 0.7; 7 opacity: 0.7;
8 position: absolute; 8 position: absolute;
9 text-align: center; 9 text-align: center;
10 top: 190px; 10 top: 190px;
11 width: 260px; 11 width: 260px;
12 &-titulo { 12 &-titulo {
13 border-bottom: 1px solid #ffffff; 13 border-bottom: 1px solid #ffffff;
14 padding: 5px 0; 14 padding: 5px 0;
15 } 15 }
16 &-campo { 16 &-campo {
17 label { 17 label {
18 display: block; 18 display: block;
19 font-size: 12px; 19 font-size: 12px;
20 margin: 5px 0 0; 20 margin: 5px 0 0;
21 } 21 }
22 input { 22 input {
23 -moz-border-radius: 10px; 23 -moz-border-radius: 10px;
24 -khtml-border-radius: 10px; 24 -khtml-border-radius: 10px;
25 -webkit-border-radius: 10px; 25 -webkit-border-radius: 10px;
26 -webkit-appearance: none; 26 -webkit-appearance: none;
27 padding-right: 5%; 27 padding-right: 5%;
28 padding-left: 5%; 28 padding-left: 5%;
29 border-radius: 10px; 29 border-radius: 10px;
30 outline: 0; 30 outline: 0;
31 border-color: transparent; 31 border-color: transparent;
32 &:focus { 32 &:focus {
33 border-color: #ff9900; 33 border-color: #2872AD;
34 } 34 }
35 } 35 }
36 } 36 }
37 37
38 &-button { 38 &-button {
39 width: 80%; 39 width: 80%;
40 background-color: #2872AD; 40 background-color: #2872AD;
41 color: white; 41 color: white;
42 &:hover{ 42 &:hover{
43 background-color: #a7743d; 43 background-color: #a7743d;
44 color: white 44 color: white
45 } 45 }
46 &:focus{ 46 &:focus{
47 color: white; 47 color: white;
48 } 48 }
49 } 49 }
50 50
51 &-alerta-error { 51 &-alerta-error {
52 width: 260px; 52 width: 260px;
53 left: calc(50% - 130px); 53 left: calc(50% - 130px);
54 top: calc(383px + 1.5em); 54 top: calc(383px + 1.5em);
55 } 55 }
56 } 56 }
57 57
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