Commit ca5ef655e6950f98728de5531856da2430edfd35

Authored by Marcelo Puebla
Exists in master and in 1 other branch validar_pve

Merge branch 'master' into 'master'

Master(Joel Vitelli)

See merge request !18
src/assets/scss/bootstrap-override.scss
1 @import "../../../node_modules/bootstrap/scss/functions"; 1 @import "../../../node_modules/bootstrap/scss/functions";
2 @import "../../../node_modules/bootstrap/scss/variables"; 2 @import "../../../node_modules/bootstrap/scss/variables";
3 3
4 $theme-colors: ( 4 $theme-colors: (
5 primary: #2872ae, 5 primary: #2872ae,
6 light: white 6 light: white
7 ); 7 );
8 8
9 .popover{ 9 .popover{
10 background-color: #2872AE !important; 10 background-color: #2872AE !important;
11 color: white !important; 11 color: white !important;
12 } 12 }
13 13
14 .list-group-item.active { 14 .list-group-item.active {
15 background-color: #2872ae !important; 15 background-color: #2872ae !important;
16 border-color: #2872ae !important; 16 border-color: #2872ae !important;
17 } 17 }
18 18
19 .icon-dim{
20 height: 40px !important;
21 width: auto !important;
22 background-color: white !important;
23 }
24 19
25 @import "../../../node_modules/bootstrap/scss/bootstrap.scss"; 20 @import "../../../node_modules/bootstrap/scss/bootstrap.scss";
26 21
1 @import "./assets/scss/animation.scss"; 1 @import "./assets/scss/animation.scss";
2 @import "./assets/scss/bootstrap-override.scss"; 2 @import "./assets/scss/bootstrap-override.scss";
3 3
4 html, 4 html,
5 body { 5 body {
6 background-color: rgb(245, 245, 245); 6 background-color: rgb(245, 245, 245);
7 overflow: hidden; 7 overflow: hidden;
8 } 8 }
9 9
10 .blur { 10 .blur {
11 filter: blur(10px); 11 filter: blur(10px);
12 -webkit-filter: blur(10px); 12 -webkit-filter: blur(10px);
13 } 13 }
14 14
15 .disable-user-select { 15 .disable-user-select {
16 -webkit-user-select: none; 16 -webkit-user-select: none;
17 -moz-user-select: none; 17 -moz-user-select: none;
18 -ms-user-select: none; 18 -ms-user-select: none;
19 user-select: none; 19 user-select: none;
20 } 20 }
21 21
22 .blue-gradient { 22 .blue-gradient {
23 background: linear-gradient(0deg, rgb(20, 56, 68), rgb(252, 252, 252)); 23 background: linear-gradient(0deg, rgb(20, 56, 68), rgb(252, 252, 252));
24 } 24 }
25 25
26 .rounded { 26 .rounded {
27 border-radius: 1.5rem !important; 27 border-radius: 1.5rem !important;
28 } 28 }
29 29
30 .rounded-sm { 30 .rounded-sm {
31 border-radius: 0.75rem !important; 31 border-radius: 0.75rem !important;
32 } 32 }
33 33
34 .card-effect { 34 .card-effect {
35 &:active, 35 &:active,
36 img { 36 img {
37 background-color: #c9c9c9b3 !important; 37 background-color: #c9c9c9b3 !important;
38 transition: background-color 0.5s; 38 transition: background-color 0.5s;
39 } 39 }
40 &:focus, 40 &:focus,
41 img { 41 img {
42 background-color: #c9c9c9b3 !important; 42 background-color: #c9c9c9b3 !important;
43 transition: background-color 0.5s; 43 transition: background-color 0.5s;
44 } 44 }
45 } 45 }
46 46
47 .overflow-scroll { 47 .overflow-scroll {
48 overflow-y: auto !important; 48 overflow-y: auto !important;
49 overflow-x: hidden !important; 49 overflow-x: hidden !important;
50 &::-webkit-scrollbar { 50 &::-webkit-scrollbar {
51 width: 0.5em; 51 width: 0.5em;
52 } 52 }
53 &::-webkit-scrollbar-track { 53 &::-webkit-scrollbar-track {
54 border-radius: 10px; 54 border-radius: 10px;
55 -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4); 55 -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4);
56 } 56 }
57 &::-webkit-scrollbar-thumb { 57 &::-webkit-scrollbar-thumb {
58 -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.7); 58 -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.7);
59 outline: 1px solid slategrey; 59 outline: 1px solid slategrey;
60 border-radius: 10px; 60 border-radius: 10px;
61 height: 12px; 61 height: 12px;
62 &:active { 62 &:active {
63 -webkit-box-shadow: inset 0 0 8px rgba(255, 0, 0, 0.9); 63 -webkit-box-shadow: inset 0 0 8px rgba(255, 0, 0, 0.9);
64 } 64 }
65 } 65 }
66 &::-webkit-scrollbar-corner { 66 &::-webkit-scrollbar-corner {
67 border-radius: 10px; 67 border-radius: 10px;
68 } 68 }
69 } 69 }
70
71 .icon-dim {
72 height: 40px !important;
73 width: auto !important;
74 background-color: white !important;
75 }
76
77 .carousel-indicators li{
78 width: 10px !important;
79 height: 10px !important;
80 border-radius: 15px !important;
81 border-top: black !important;
82 border-bottom: black !important;
83 }
84
70 85