templates/style.css in masterview_generator-0.0.11 vs templates/style.css in masterview_generator-0.0.12

- old
+ new

@@ -14,22 +14,100 @@ a { color: #000; } a:visited { color: #666; } a:hover { color: #fff; background-color:#000; } + +/* content div containing form or list */ +.content { +} + +/* all data fields whether in show or form */ +.field { +} + .fieldWithErrors { padding: 2px; background-color: red; display: table; } -.messages { - color: green; +/* data fields in form */ +.form_field { } +/* label in form */ +.form_label { +} + +/* each record in form */ +.form_record { +} + +/* all labels whether in show or form */ .label { text-align: right; - } + float: left; + display: inline; + padding-right: 10px; + font-weight: bold; + width: 120px; +} + +/* list div containing table */ +.list { +} + +/* list data field */ +.list_data { +} + +/* list heading */ +.list_heading { +} + +/* list operation - action links */ +.list_operation { +} + +/* main div top level div next to messages */ +.main { +} + +/* flash messages at top of screens, top level div, informational */ +.messages { + color: green; +} + +/* links that invoke actions on any page */ +.operation { +} + +/* operations - div containing buttons for form */ +.operations { +} + +/* each record whether on show or form */ +.record { + margin-bottom: 10px; + clear: left; +} + +/* data field on show */ +.show_field { +} + +/* labels on show */ +.show_label { +} + +/* records on show */ +.show_record { +} + +/* sidebar div containing navigation options for page */ +.sidebar { +} #ErrorExplanation { width: 400px; border: 2px solid #red; padding: 7px;