mirror of
https://github.com/primer/css.git
synced 2024-11-14 14:38:16 +03:00
25 lines
614 B
SCSS
25 lines
614 B
SCSS
.btn-orange { @include btn-solid($white, lighten($orange-500, 7.5%), darken($orange-500, 7.5%)); }
|
|
|
|
.btn-outline-purple { @include btn-outline($purple); }
|
|
.btn-outline-orange { @include btn-outline($orange); }
|
|
.btn-outline-green { @include btn-outline($green); }
|
|
|
|
@mixin btn-transparent-active {
|
|
color: $gray-800;
|
|
background-color: $white;
|
|
background-image: none;
|
|
border-color: $white;
|
|
}
|
|
|
|
.btn-transparent {
|
|
color: $white;
|
|
background-color: transparent;
|
|
background-image: none;
|
|
border: $border-width $border-style $white-fade-50;
|
|
|
|
&:hover,
|
|
&:active {
|
|
@include btn-transparent-active;
|
|
}
|
|
}
|