61ac1e2d by Marty Penner

Add utility classes and make the "allowMultiple" label floated left against the checkbox. refs #1679

1 parent 6ddabc57
...@@ -1414,6 +1414,10 @@ h6.fieldset-heading { ...@@ -1414,6 +1414,10 @@ h6.fieldset-heading {
1414 margin-left: 16px; 1414 margin-left: 16px;
1415 } 1415 }
1416 1416
1417 .option-groups-region .label-allow-multiple {
1418 margin-left: 7px;
1419 }
1420
1417 .dragged { 1421 .dragged {
1418 position: absolute; 1422 position: absolute;
1419 opacity: 0.5; 1423 opacity: 0.5;
...@@ -1484,3 +1488,41 @@ a, input, textarea, select { ...@@ -1484,3 +1488,41 @@ a, input, textarea, select {
1484 -o-transition: color 0.1s linear, background-color 0.1s linear, border-color 0.1s linear, box-shadow 0.1s linear; 1488 -o-transition: color 0.1s linear, background-color 0.1s linear, border-color 0.1s linear, box-shadow 0.1s linear;
1485 transition: color 0.1s linear, background-color 0.1s linear, border-color 0.1s linear, box-shadow 0.1s linear; 1489 transition: color 0.1s linear, background-color 0.1s linear, border-color 0.1s linear, box-shadow 0.1s linear;
1486 } 1490 }
1491
1492 /** General Utility Classes **/
1493
1494 .left, .float-left {
1495 float: left;
1496 }
1497 .right, .float-right {
1498 float: right;
1499 }
1500
1501 /**
1502 * Clearfix micro hack
1503 *
1504 * For modern browsers
1505 * 1. The space content is one way to avoid an Opera bug when the
1506 * contenteditable attribute is included anywhere else in the document.
1507 * Otherwise it causes space to appear at the top and bottom of elements
1508 * that are clearfixed.
1509 * 2. The use of `table` rather than `block` is only necessary if using
1510 * `:before` to contain the top-margins of child elements.
1511 */
1512 .cf:before,
1513 .cf:after {
1514 content: " "; /* 1 */
1515 display: table; /* 2 */
1516 }
1517
1518 .cf:after {
1519 clear: both;
1520 }
1521
1522 /**
1523 * For IE 6/7 only
1524 * Include this rule to trigger hasLayout and contain floats.
1525 */
1526 .cf {
1527 *zoom: 1;
1528 }
...\ No newline at end of file ...\ No newline at end of file
......