added posibility to use border radius variables

This commit is contained in:
Simon Busborg
2015-12-21 15:52:13 +01:00
parent 0ba9054412
commit e77e0c6704
2 changed files with 6 additions and 1 deletions

View File

@@ -68,7 +68,7 @@
-webkit-box-shadow:none;
}
.btn-group >.btn:first-child,
.btn-group > .btn:first-child,
.btn-group > .btn:last-child,
.btn-group > .dropdown-toggle {
border-radius: 0;
@@ -87,13 +87,16 @@
.btn-large [class^="icon-"],
.btn-large [class*=" icon-"] {
margin-top: 4px;
.border-radius(@borderRadiusLarge);
}
// Small
.btn-small {
padding: @paddingSmall;
font-size: @fontSizeSmall;
.border-radius(@borderRadiusSmall);
}
.btn-small [class^="icon-"],
.btn-small [class*=" icon-"] {
margin-top: 0;
@@ -107,6 +110,7 @@
.btn-mini {
padding: @paddingMini;
font-size: @fontSizeMini;
.border-radius(@borderRadiusSmall);
}

View File

@@ -167,6 +167,7 @@ input[type="color"],
font-size: @baseFontSize;
line-height: @baseLineHeight;
color: @gray;
.border-radius(@inputBorderRadius);
vertical-align: middle;
}