Browse Source

Removing other box-sizing css from components

pull/214/head
connors 11 years ago
parent
commit
ebf4efbb26
  1. 30
      docs/css/docs.css
  2. 2
      lib/sass/bars.scss
  3. 1
      lib/sass/forms.scss
  4. 1
      lib/sass/table-views.scss

30
docs/css/docs.css

@ -1056,16 +1056,12 @@ h6 {
-------------------------------------------------- */
/* Bars.css */
[class*="bar-"] {
-moz-box-sizing: border-box;
}
.bar-title,
.tab-inner {
display: -moz-box;
-moz-box-orient: horizontal;
}
.tab-item {
-moz-box-sizing: border-box;
-moz-box-flex: 1;
}
.bar-title [class*="button"] {
@ -1075,32 +1071,6 @@ h6 {
-moz-box-flex: 1;
}
/* forms.css */
select,
textarea,
input[type="text"],
input[type=search],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="color"],
.input-group {
-moz-box-sizing: border-box;
}
/* lists.css */
.table-view.inset {
-moz-box-sizing: border-box;
}
/* popovers.css */
.popover-header {
display: -moz-box;

2
lib/sass/bars.scss

@ -11,7 +11,6 @@
padding: 5px;
background-color: $chrome-color;
box-shadow: 0 0px 1px rgba(0,0,0,.85);
box-sizing: border-box;
}
// Modifier class to dock any bar below .bar-title
@ -94,7 +93,6 @@
height: 100%;
padding-top: 9px;
text-align: center;
box-sizing: border-box;
-webkit-box-flex: 1;
box-flex: 1;
}

1
lib/sass/forms.scss

@ -37,7 +37,6 @@ input[type="color"],
border: 1px solid rgba(0, 0, 0, .2);
border-radius: 3px;
-webkit-appearance: none;
box-sizing: border-box;
outline: none;
}

1
lib/sass/table-views.scss

@ -38,7 +38,6 @@
margin-left: 10px;
border: 1px solid rgba(0, 0, 0, .15);
border-radius: 6px;
box-sizing: border-box;
// Remove border from first/last standard list items to avoid double border at top/bottom of table views
li:first-child {

Loading…
Cancel
Save