Browse Source

Building

pull/214/head
connors 11 years ago
parent
commit
3648a93d83
  1. 26
      dist/ratchet.css

26
dist/ratchet.css vendored

@ -42,11 +42,8 @@ template {
html {
font-family: sans-serif;
/* 1 */
-ms-text-size-adjust: 100%;
/* 2 */
-webkit-text-size-adjust: 100%;
/* 2 */
}
body {
@ -151,9 +148,7 @@ fieldset {
legend {
border: 0;
/* 1 */
padding: 0;
/* 2 */
}
button,
@ -161,11 +156,8 @@ input,
select,
textarea {
font-family: inherit;
/* 1 */
font-size: 100%;
/* 2 */
margin: 0;
/* 3 */
}
button,
@ -183,9 +175,7 @@ html input[type="button"],
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button;
/* 2 */
cursor: pointer;
/* 3 */
}
button[disabled],
@ -196,17 +186,13 @@ html input[disabled] {
input[type="checkbox"],
input[type="radio"] {
box-sizing: border-box;
/* 1 */
padding: 0;
/* 2 */
}
input[type="search"] {
-webkit-appearance: textfield;
/* 1 */
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
/* 2 */
box-sizing: content-box;
}
@ -223,9 +209,7 @@ input::-moz-focus-inner {
textarea {
overflow: auto;
/* 1 */
vertical-align: top;
/* 2 */
}
table {
@ -233,6 +217,12 @@ table {
border-spacing: 0;
}
* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
position: fixed;
top: 0;
@ -297,7 +287,6 @@ a {
padding: 5px;
background-color: rgba(247, 247, 247, 0.98);
box-shadow: 0 0px 1px rgba(0, 0, 0, 0.85);
box-sizing: border-box;
}
.bar-header-secondary {
@ -365,7 +354,6 @@ a {
height: 100%;
padding-top: 9px;
text-align: center;
box-sizing: border-box;
-webkit-box-flex: 1;
box-flex: 1;
}
@ -533,7 +521,6 @@ a {
margin-left: 10px;
border: 1px solid rgba(0, 0, 0, 0.15);
border-radius: 6px;
box-sizing: border-box;
}
.table-view.inset li:first-child {
border-top-width: 0;
@ -618,7 +605,6 @@ input[type="color"],
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 3px;
-webkit-appearance: none;
box-sizing: border-box;
outline: none;
}

Loading…
Cancel
Save