Commit ab29b1a3 authored by Chris Rebert's avatar Chris Rebert

misc strictMath compliance fixes

parent 9664f8da
...@@ -142,7 +142,7 @@ ...@@ -142,7 +142,7 @@
right: 0; right: 0;
bottom: 0; bottom: 0;
top: 0; top: 0;
z-index: @zindex-dropdown - 10; z-index: (@zindex-dropdown - 10);
} }
// Right aligned dropdowns // Right aligned dropdowns
......
...@@ -352,7 +352,7 @@ input[type="checkbox"], ...@@ -352,7 +352,7 @@ input[type="checkbox"],
// and other content below items // and other content below items
.radio, .radio,
.checkbox { .checkbox {
min-height: @line-height-computed + (@padding-base-vertical + 1); min-height: (@line-height-computed + (@padding-base-vertical + 1));
} }
// Make form groups behave like rows // Make form groups behave like rows
......
...@@ -102,7 +102,7 @@ ...@@ -102,7 +102,7 @@
.panel-heading { .panel-heading {
padding: 10px 15px; padding: 10px 15px;
border-bottom: 1px solid transparent; border-bottom: 1px solid transparent;
.border-top-radius(@panel-border-radius - 1); .border-top-radius((@panel-border-radius - 1));
> .dropdown .dropdown-toggle { > .dropdown .dropdown-toggle {
color: inherit; color: inherit;
...@@ -126,7 +126,7 @@ ...@@ -126,7 +126,7 @@
padding: 10px 15px; padding: 10px 15px;
background-color: @panel-footer-bg; background-color: @panel-footer-bg;
border-top: 1px solid @panel-inner-border; border-top: 1px solid @panel-inner-border;
.border-bottom-radius(@panel-border-radius - 1); .border-bottom-radius((@panel-border-radius - 1));
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment