015754fb by Marty Penner

[Edit Event] Refactor headings styling and add styling for "remove option" and "…

…remove option group" buttons. refs #1361
1 parent 7d6581fa
...@@ -736,6 +736,8 @@ div.wrap > h2 { font-size: 25px; } ...@@ -736,6 +736,8 @@ div.wrap > h2 { font-size: 25px; }
736 border-top: none; 736 border-top: none;
737 } 737 }
738 738
739 /**** Event Editing ****/
740
739 div.cct-fields > .fieldset-heading:first-child { 741 div.cct-fields > .fieldset-heading:first-child {
740 margin-top: 0 !important; 742 margin-top: 0 !important;
741 } 743 }
...@@ -746,18 +748,21 @@ h3.fieldset-heading, ...@@ -746,18 +748,21 @@ h3.fieldset-heading,
746 h4.fieldset-heading, 748 h4.fieldset-heading,
747 h5.fieldset-heading, 749 h5.fieldset-heading,
748 h6.fieldset-heading { 750 h6.fieldset-heading {
749 font-family: 'Arial', sans-serif; 751 font-family: 'Arial', sans-serif !important;
750 font-weight: bold; 752 font-weight: bold !important;
751 margin-left: 3px; 753 padding: 0 !important;
752 margin-bottom: -10px !important;
753 } 754 }
754 755
755 h1.fieldset-heading { 756 h1.fieldset-heading {
756 font-size: 16px !important; 757 font-size: 16px !important;
758 margin-left: 3px !important;
759 margin-bottom: -10px !important;
757 } 760 }
758 761
759 h2.fieldset-heading { 762 h2.fieldset-heading {
760 font-size: 14px !important; 763 font-size: 14px !important;
764 margin-left: 3px !important;
765 margin-bottom: -10px !important;
761 } 766 }
762 767
763 h3.fieldset-heading { 768 h3.fieldset-heading {
...@@ -765,7 +770,9 @@ h3.fieldset-heading { ...@@ -765,7 +770,9 @@ h3.fieldset-heading {
765 } 770 }
766 771
767 h4.fieldset-heading { 772 h4.fieldset-heading {
768 font-size: 12px !important; 773 font-size: 12px !important;
774 margin-top: 0 !important;
775 display: inline;
769 } 776 }
770 777
771 h5.fieldset-heading { 778 h5.fieldset-heading {
...@@ -774,4 +781,8 @@ h5.fieldset-heading { ...@@ -774,4 +781,8 @@ h5.fieldset-heading {
774 781
775 h6.fieldset-heading { 782 h6.fieldset-heading {
776 font-size: 10px !important; 783 font-size: 10px !important;
784 }
785
786 a.remove-option-group, a.remove-option {
787 margin-left: 15px;
777 } 788 }
...\ No newline at end of file ...\ No newline at end of file
......