fbf2c3e728781a7fb7ec95559ee5a8499d55df04
[sdc.git] / openecomp-ui / resources / scss / components / _buttons.scss
1 .primary-btn{
2   border: 1px solid;
3   border-color: $blue;
4   color: $blue;
5   font-weight: bolder;
6   @extend .body-1;
7   text-align: center;
8   padding: 7px;
9   border-radius: 5px;
10   cursor: pointer;
11   align-self: center;
12   background-color: $white;
13   .primary-btn-text {
14     width: 100%;
15   }
16   &:hover {
17     color: $blue;
18     border-color: $blue;
19     background-color: $tlv-hover;
20     &:active {
21       color: $blue;
22       border-color: $blue;
23     }
24   }
25
26   &:focus:not(:hover) {
27     color: $blue;
28     border-color: $blue;
29     background-color: $white;
30   }
31 }