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

Loading…
Cancel
Save