vendor/assets/stylesheets/torino.css in torino-0.1.3 vs vendor/assets/stylesheets/torino.css in torino-0.1.4

- old
+ new

@@ -88,10 +88,14 @@ /* * Forms * ------------------------------------------ */ +.field_with_errors { + display: inline-block; +} + .actions { margin-top: 20px; } .actions a, .actions input[type=submit], .actions .button { @@ -104,18 +108,18 @@ */ input { margin: 0 10px 14px 0; } -input[type=text] { +input[type=text], input[type=password] { border: none; border-bottom: #FFE57F solid 1px; font-size: inherit; width: 400px; } -input[type=text]:focus { +input[type=text]:focus, input[type=password]:focus { border-bottom: #009688 solid 1px; } input:focus, textarea:focus { outline: none; @@ -123,22 +127,28 @@ /* * Labels * ------------------------------------------ */ +form.label-width-100 label { + width: 100px; + max-width: 100px; + min-width: 100px; +} + +form.label-width-200 label { + width: 200px; + max-width: 200px; + min-width: 200px; +} + label { color: #757575; + display: inline-block; margin-right: 18px; } -label.fix-width { - display: inline-block; - width: 160px; - max-width: 160px; - min-width: 160px; -} - /* * Links * ------------------------------------------ */ a { @@ -205,17 +215,44 @@ table.wide { width: 100%; } +table.rows tr { + border-bottom: 1px solid #CFD8DC; +} + +table.rows tr:last-child { + border: none +} + th, td { text-align: left; padding: 10px 30px 10px 14px; + vertical-align: top; } th:last-child, td:last-child { padding-right: 14px; } th { background-color: #CFD8DC; +} + + +/* + * Misc + * ------------------------------------------ + */ +pre { + background-color: #E0F2F1; + padding: 6px; +} + +hr { + border: 1px solid #FFE57F; +} + +hr.strong { + border: 2px solid #FFE57F; }