Skip to content

Commit

Permalink
Removed important flag from size of square btn
Browse files Browse the repository at this point in the history
  • Loading branch information
allyoucanmap committed Jul 14, 2017
1 parent 3f7965a commit 73764ec
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
3 changes: 2 additions & 1 deletion web/client/themes/default/bootstrap-theme.less
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
@import "@{bootstrap-path}mixins.less";
// Reset and dependencies
@import "@{bootstrap-path}normalize.less";
@import "@{bootstrap-path}print.less"; // @import "@{bootstrap-path}glyphicons.less";
@import "@{bootstrap-path}print.less";
// @import "@{bootstrap-path}glyphicons.less";
// Core CSS
@import "@{bootstrap-path}scaffolding.less";
@import "@{bootstrap-path}type.less";
Expand Down
16 changes: 10 additions & 6 deletions web/client/themes/default/less/square-button.less
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.square-button {
height: @square-btn-size !important;
width: @square-btn-size !important;
height: @square-btn-size;
width: @square-btn-size;
padding: 0 @padding-left-square - 1;
outline: 0 !important;

Expand All @@ -9,9 +9,13 @@
}
}

.btn-group-vertical > .square-button {
width: @square-btn-size;
}

.square-button-md {
height: @square-btn-medium-size !important;
width: @square-btn-medium-size !important;
height: @square-btn-medium-size;
width: @square-btn-medium-size;
padding: 0 @padding-left-square-md - 1;
outline: 0 !important;

Expand All @@ -21,8 +25,8 @@
}

.square-button-sm {
height: @square-btn-small-size !important;
width: @square-btn-small-size !important;
height: @square-btn-small-size;
width: @square-btn-small-size;
padding: 0 @padding-left-square-sm - 1;
outline: 0 !important;

Expand Down

0 comments on commit 73764ec

Please sign in to comment.