Commit 0a5892ffe7798e4987c3c6a2811f7226d2a6031a

Authored by Marcelo Puebla
1 parent 244ebb151b
Exists in master

Agregada clase css.

Showing 1 changed file with 19 additions and 0 deletions   Show diff stats
src/sass/general.scss
... ... @@ -83,6 +83,10 @@ input::-webkit-inner-spin-button {
83 83 border-color: $primary;
84 84 box-shadow: 0 0 5px $primary;
85 85 }
  86 + &:hover {
  87 + border-color: $primary;
  88 + box-shadow: 0 0 5px $primary;
  89 + }
86 90 }
87 91  
88 92 .btn-primary {
... ... @@ -101,6 +105,21 @@ input::-webkit-inner-spin-button {
101 105 }
102 106 }
103 107  
  108 +.input-group-text {
  109 + &:focus {
  110 + outline: none;
  111 + border-color: $primary;
  112 + box-shadow: 0 0 5px $primary;
  113 + }
  114 + &:hover {
  115 + border-color: $primary;
  116 + box-shadow: 0 0 5px $primary;
  117 + }
  118 + &:active{
  119 + box-shadow: 0 0 5px $primary;
  120 + }
  121 +}
  122 +
104 123 .btn-default {
105 124 color: #FFF;
106 125 background-color: $default !important;