+ top: 5px;
+}
+
+/* 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/4;
+ margin-right: $lineheight/4;
+ &:first-child {
+ border-left: 0;
+ padding-left: 0;
+ }
+ &:last-child {
+ margin-right: 0px;
+ }
+ }
+}
+
+/* Utility for managing inner content areas */
+
+.inner22 { padding: $lineheight;}
+
+.inner12 { padding: $lineheight/2 $lineheight;}
+
+.inner11 { padding: $lineheight/2;}
+
+.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-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: $lightblue;
+ }
+ &: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: 150px;
+ border-right:1px solid white;
+ }
+ 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 solid white;
+ }