You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
437 B
24 lines
437 B
/* ------------------------------------------------------------------------------ |
|
* |
|
* # Close button component |
|
* |
|
* Overrides for close button bootstrap component |
|
* |
|
* Version: 1.0 |
|
* Latest update: May 25, 2015 |
|
* |
|
* ---------------------------------------------------------------------------- */ |
|
|
|
|
|
// Base styles |
|
.close { |
|
text-shadow: none; |
|
.opacity(.6); |
|
|
|
// Hover/focus states |
|
&:hover, |
|
&:focus { |
|
outline: 0; |
|
.opacity(1); |
|
} |
|
}
|
|
|