Commit cd9c85ec0f108be7da93b32b3adca368ceb9be14

Authored by Nicolás Guarnieri
1 parent 040ecba05a
Exists in master

mejoras en el panel informativo css

src/sass/_bootstrap.scss
1 .active{ 1 .active{
2 color: #fff; 2 color: #fff;
3 text-decoration: none; 3 text-decoration: none;
4 outline: 0; 4 outline: 0;
5 background-color: #337ab7; 5 background-color: #337ab7;
6 } 6 }
7 .btn-xs {
8 padding: .15rem .5rem;
9 font-size: .8rem;
10 line-height: 1.5;
11 border-radius: .2rem;
12 }
src/sass/_botonera-secundaria.scss
1 .botonera-secundaria { 1 .botonera-secundaria {
2 background-color: rgba(0, 0, 0, 0.8); 2 background-color: rgba(0, 0, 0, 0.8);
3 .btn-xs {
4 padding: .15rem .5rem;
5 font-size: .8rem;
6 line-height: 1.5;
7 border-radius: .2rem;
8 }
9 } 3 }
10 4
src/sass/_panel-informativo.scss
1 .panel-informativo { 1 .panel-informativo {
2 background: linear-gradient(#ccc, #eee); 2 background: linear-gradient(#ccc, #eee);
3 min-height: 32px;
3 .form-group { 4 .form-group {
4 margin-bottom: 5px; 5 margin-bottom: 5px;
5 } 6 }
6 .form-control-xs { 7 .form-control-xs {
7 height: calc(1.6rem); 8 height: calc(1.6rem);
8 padding: .25rem .5rem; 9 padding: .25rem .5rem;
9 font-size: .8rem; 10 font-size: .8rem;
10 line-height: 1.3; 11 line-height: 1.3;
11 border-radius: .2rem; 12 border-radius: .2rem;
12 } 13 }
13 .label { 14 .label {
14 font-size: .8em; 15 font-size: .8em;
15 } 16 }
16 .valor { 17 .valor {
17 font-size: .8em; 18 font-size: .8em;
18 } 19 }
19 } 20 }
20 21