vendor/assets/stylesheets/bootstrap/_close.scss in bootstrap-sass-2.3.2.2 vs vendor/assets/stylesheets/bootstrap/_close.scss in bootstrap-sass-3.0.0.0.rc
- old
+ new
@@ -3,22 +3,25 @@
// --------------------------------------------------
.close {
float: right;
- font-size: 20px;
- font-weight: bold;
- line-height: $baseLineHeight;
- color: $black;
- text-shadow: 0 1px 0 rgba(255,255,255,1);
- @include opacity(20);
+ font-size: ($font-size-base * 1.5);
+ font-weight: $close-font-weight;
+ line-height: 1;
+ color: $close-color;
+ text-shadow: $close-text-shadow;
+ @include opacity(.2);
+
&:hover,
&:focus {
- color: $black;
+ color: $close-color;
text-decoration: none;
cursor: pointer;
- @include opacity(40);
+ @include opacity(.5);
}
+
+ // [converter] extracted button& to button.close
}
// Additional properties for button version
// iOS requires the button element instead of an anchor tag.
// If you want the anchor version, it requires `href="#"`.