+/* Rules for the account settings page */
+
+#accountForm .user_map {
+ position: relative;
+ width: 500px;
+ height: 400px;
+ border: 1px solid #ccc;
+}
+
+#accountForm .user_image {
+ margin-bottom: 0;
+}
+
+#accountForm #user_image {
+ margin-left: 20px;
+}
+
+#accountForm ul.accountImage-options {
+ margin-left: 120px;
+}
+
+.nohome .location {
+ display: none;
+}
+
+#homerow .message {
+ display: none;
+}
+
+.nohome .message {
+ display: inline !important;
+}
+
+.content_map.settings_map {
+ width: 50%;
+ float: none;
+}
+
+/* Rules for the oauth settings page */
+
+.oauth_clients .buttons .oauth-edit {
+ border-radius: 2px 0 0 2px;
+}
+
+.oauth_clients .buttons .oauth-delete {
+ border-radius: 0 2px 2px 0;
+}
+
+/* Rules for messages pages */
+
+.messages {
+ width: 100%;
+ border: 1px solid #ddd;
+
+ input[type="submit"] {
+ margin: auto;
+ }
+ tbody tr {
+ border-top: 1px solid #ccc;
+ }
+
+ .inbox-row {
+ background: #f8f8ff;
+ }
+
+ .inbox-row-unread {
+ background:#CBEEA7;
+ }
+
+ .right {
+ float: right;
+ }
+
+ tr td,
+ tr th {
+ padding: $lineheight/4;
+ }
+ p:last-child,
+ h2:last-child,
+ h3:last-child,
+ ol:last-child,
+ ul:last-child {
+ margin-bottom:0;
+ }
+ tr td {
+ height: 30px;
+ border-right: 1px solid $lightgrey;
+ }
+}
+
+.inbox-row .inbox-mark-read {
+ display: none;
+}
+
+.info-line {
+ margin-bottom: $lineheight;
+ padding: $lineheight/4 0px 4px 0px;
+ border-bottom: 1px solid #ccc;
+
+ form, form div {
+ display: inline;
+ }
+}
+
+.info-line .user_thumbnail_tiny {
+ vertical-align: middle;
+}
+
+.inbox-mark-unread,
+.inbox-mark-read,
+.inbox-delete {
+ width: 1%;
+}
+
+.inbox-row-unread .inbox-mark-unread {
+ display: none;
+}
+
+.message-read .message-buttons {
+ margin-top: $lineheight;
+ padding-top: $lineheight;
+ border-top: 1px solid $lightgrey;
+}
+
+.message-read .buttons .mark-unread-button {
+ border-radius: 0;
+}
+
+/* Rules for "flash" notice boxes shown at the top of the content area */
+
+.error {
+ padding: $lineheight;
+ background-color: #ff7070;
+}
+
+.warning {
+ padding: $lineheight;
+ background-color: #ffe0cc;
+}
+
+.notice {
+ padding: $lineheight;
+ background-color: #CBEEA7;
+}
+
+/* Rules for highlighting fields with rails validation errors */
+
+.field_with_errors {
+ padding: 2px;
+ background-color: #ff7070;
+ display: inline-block;
+}
+
+.formError {
+ display: inline-block;
+ padding: 5px 10px;
+ margin-top: 5px;
+ border-radius: 4px;
+ font-size: 12px;
+ color: #fff;
+ background-color: #ff7070;
+}
+
+/* Rules for rails validation error boxes */
+
+#errorExplanation {
+ width: 400px;
+ border: 2px solid #ff7070;
+ padding: 0 $lineheight/2;
+ margin-bottom: $lineheight;
+ background-color: #f0f0f0;
+
+ h2 {
+ margin: 0 -10px 10px -10px;
+ padding: $lineheight/4 $lineheight/4 $lineheight/4 15px;
+ font-weight: 500;
+ font-size: 12px;
+ background-color: #c00;
+ color: #fff;
+ text-align: left;
+ }
+
+ p {
+ color: #333;
+ margin-bottom: 0px;
+ padding: $lineheight/4;
+ }
+
+ ul {
+ padding-left: $lineheight;
+
+ li {
+ font-size: 12px;
+ list-style: disc;
+ }
+ }
+}
+
+/* Rules for forms */
+
+.standard-form {
+ fieldset {
+ margin-bottom: $lineheight;
+ }
+ label.standard-label {
+ display: block;
+ margin-bottom: $lineheight/4;
+ font-size: $typeheight;
+ font-weight: 500;
+ line-height: 1.5;
+ }
+ label.standard-label.secondary {
+ display: inline-block;
+ font-weight: normal;
+ }
+ .form-help {
+ font-weight: normal;
+ }
+ .form-column {
+ float: left;
+ margin-right: 20px;
+ }
+ .form-divider {
+ margin-top: $lineheight;
+ padding-top: $lineheight;
+ border-top: 1px solid $lightgrey;
+ }
+ .horizontal-list .form-row {
+ float: left;
+ padding-right: 10px;
+ }
+ .form-row {
+ margin-bottom: $lineheight/2;
+ }
+ .form-list {
+ margin-bottom: 0;
+ }
+ .form-list li {
+ margin-bottom: 5px;
+ }
+ input[type="checkbox"],
+ input[type="radio"] {
+ float: left;
+ margin-top: 5px;
+ }
+}
+
+#remember_me_openid {
+ display: block;
+}
+
+input[type="checkbox"],
+input[type="radio"] {
+ margin-right: 5px;
+}
+
+input[type="text"],
+input[type="email"],
+input[type="url"],
+input[type="password"],
+textarea {
+ border: 1px solid #ccc;
+ padding: 2px 5px;
+ margin: 0;
+ width: 200px;
+}
+
+textarea {
+ padding: 5px;
+ width: 100%;
+}
+
+/* Rules for user images */
+
+img.user_image {
+ max-width: 100px;
+ max-height: 100px;
+ border: 1px solid #ccc;
+ margin-bottom: $lineheight;
+ float: left;
+ margin-right: $lineheight;
+}
+
+img.user_thumbnail {
+ max-width: 50px;
+ max-height: 50px;
+ border: 1px solid #ccc;
+ margin-right: $lineheight;
+}
+
+img.user_thumbnail_tiny {
+ max-width: 25px;
+ max-height: 25px;
+ border: 1px solid #ccc;
+}
+
+/* Rules for geo microformats */
+
+abbr.geo {
+ border-bottom: none;
+}
+
+/* Rules for RSS buttons */
+
+.rsssmall {
+ position: relative;
+ top: 3px;
+}
+
+/* General styles for action lists / subnavs / pager navs */
+
+ul.secondary-actions {
+ font-style: normal;
+ margin-bottom: 0;
+ margin-left: 0;
+ &.pager {
+ display: inline-block;
+ margin-right: 60px;
+ }
+ > li {
+ display: block;
+ float: left;
+ list-style: none;
+ border-left: 1px solid #ccc;
+ padding-left: $lineheight/2;
+ margin-right: $lineheight/2;
+ &:first-child {
+ border-left: 0;
+ padding-left: 0;
+ }
+ &:last-child {
+ margin-right: 0px;
+ }
+ }
+}
+
+div.secondary-actions {
+ padding: 10px;
+ border-top: 1px solid #ccc;
+ text-align: center;
+}
+
+/* Utility for managing inner content areas */
+
+.inner22 { padding: $lineheight;}
+
+.inner12 { padding: $lineheight/2 $lineheight;}
+
+.inner11 { padding: $lineheight/2;}
+
+.inner20 { padding: $lineheight 0;}
+
+.inner02 { padding: 0 $lineheight;}
+
+/* Utility for general button styles */
+
+input[type="button"],
+input[type="submit"],
+input[type="reset"],
+a.button {
+ cursor: pointer;
+ border: 0;
+ display: inline-block;
+ line-height: 20px;
+ padding: $lineheight/4 $lineheight/2;
+ min-height: 20px + $lineheight/2;
+ min-width: 120px;
+ margin: 0 0 $lineheight/2 0;
+ color: white;
+ background: $blue;
+ text-align: center;
+ border-radius: 2px;
+ -moz-border-radius: 2px;
+ &:hover {
+ background: darken($blue, $hovercolor);
+ text-decoration: none;
+ }
+ &.deemphasize {
+ background: $lightblue;
+ &:hover {
+ background: darken($lightblue, $hovercolor);
+ }
+ }
+ &:disabled {
+ background: $lightgrey;
+ &:hover {
+ background: $lightgrey;
+ }
+ }
+ &:last-child {
+ margin-bottom: 0;
+ }
+}
+
+.buttons {
+ min-width: 200px;
+ input[type="submit"],
+ input[type="button"],
+ input[type="reset"],
+ .button {
+ box-sizing: border-box;
+ float: left;
+ border-radius: 0;
+ margin:0;
+ min-width: 100px;
+ max-width: 180px;
+ border-right:1px solid white;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ overflow: hidden;
+ }
+ input:first-child,
+ .button:first-child {
+ border-radius:2px 0 0 2px;
+ }
+ input:last-child,
+ .button:last-child {
+ border-radius:0 2px 2px 0;
+ border-right-width: 0;
+ }
+ input:only-child,
+ .button:only-child,
+ *[value="Hide"] + input:last-child,
+ *[value="Hide"] + .button:last-child {
+ border-radius:2px;
+ border-right-width: 0;
+ }
+ /* if a 3-button set has a hidden middle button */
+ *[value="Hide"] + input:nth-child(3),
+ *[value="Hide"] + .button:nth-child(3) {
+ border-radius:0 2px 2px 0;
+ border-right-width: 0;
+ }
+ /* if a 3-button set starts with a hidden button */
+ *[value="Hide"] + input:nth-child(2):not(:last-child),
+ *[value="Hide"] + .button:nth-child(2):not(:last-child) {
+ border-radius:2px 0 0 2px;
+ border-right-width: 1px;
+ }
+}
+
+/* Rules for doing distinct colour of alternate table rows */
+
+.table0,
+.item0 {
+ background: $offwhite;
+}
+
+.table1,
+.item1 {
+ background: #fff;
+}