button full updates

This commit is contained in:
Adam Bradley
2015-07-23 14:42:38 -05:00
parent 4606bee4cb
commit 9184e889b9
3 changed files with 21 additions and 14 deletions

View File

@@ -113,6 +113,12 @@ button,
&.activated {
opacity: 0.3 !important;
}
&[full] {
border-radius: 0;
border-right-width: 0;
border-left-width: 0;
}
}
&[block] {
@@ -129,7 +135,11 @@ button,
&[full] {
width: 100%;
margin-right: 0;
margin-left: 0;
border-radius: 0;
border-right-width: 0;
border-left-width: 0;
}
&.disabled,
@@ -187,20 +197,6 @@ button,
}
}
[full],
[full] > button,
[full] > [button] {
display: flex;
margin-right: 0;
margin-left: 0;
width: 100%;
border-radius: 0;
&[outline][outline] {
border-right-width: 0;
border-left-width: 0;
}
}
.padding > button[block]:first-child,
.padding > [button][block]:first-child {
@@ -238,6 +234,12 @@ a[button] {
color: $fg-color;
transition: background-color,opacity 100ms linear;
&[full][outline] {
border-radius: 0;
border-right-width: 0;
border-left-width: 0;
}
&:hover,
&.hover {
opacity: 0.88;

View File

@@ -44,6 +44,10 @@ $button-material-border-radius: 3px !default;
font-size: $button-small-icon-size;
}
&[full] {
border-radius: 0;
}
&[outline] {
box-shadow: none;

View File

@@ -0,0 +1 @@