+/* Rules for the new trace form */
+
+#new_trace {
+ input[type=text] {
+ width: 50%;
+ width: -moz-calc(100% - 150px);
+ width: -webkit-calc(100% - 150px);
+ width: calc(100% - 150px);
+ max-width: 500px;
+ }
+}
+
+/* Rules for the edit trace form */
+
+.edit_trace {
+ .form-row p {
+ margin-bottom: 0px;
+ }
+
+ input[type=text] {
+ width: 50%;
+ width: -moz-calc(100% - 150px);
+ width: -webkit-calc(100% - 150px);
+ width: calc(100% - 150px);
+ max-width: 500px;
+ }
+}
+