c996f2dc by Jeff Balicki

sss

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 6f7c5a4f
...@@ -15740,13 +15740,21 @@ p.intro { ...@@ -15740,13 +15740,21 @@ p.intro {
15740 max-width: 800px; 15740 max-width: 800px;
15741 } 15741 }
15742 15742
15743 .css-event-form h3, .css-event-form .h3 { 15743 .em-event-single {
15744 margin-top: 40px;
15745 }
15746
15747 .em-event-when h3, .em-event-when .h3,
15748 .css-event-form h3,
15749 .css-event-form .h3 {
15744 color: #1A3668 !important; 15750 color: #1A3668 !important;
15745 font-size: 28px !important; 15751 font-size: 28px !important;
15746 line-height: 36px !important; 15752 line-height: 36px !important;
15747 font-family: "trade-gothic-next" !important; 15753 font-family: "trade-gothic-next" !important;
15748 } 15754 }
15749 .css-event-form h3 label, .css-event-form .h3 label { 15755 .em-event-when h3 label, .em-event-when .h3 label,
15756 .css-event-form h3 label,
15757 .css-event-form .h3 label {
15750 color: #1A3668 !important; 15758 color: #1A3668 !important;
15751 font-size: 28px !important; 15759 font-size: 28px !important;
15752 line-height: 36px !important; 15760 line-height: 36px !important;
...@@ -15827,4 +15835,14 @@ p.intro { ...@@ -15827,4 +15835,14 @@ p.intro {
15827 display: none !important; 15835 display: none !important;
15828 } 15836 }
15829 15837
15838 .em-item-meta {
15839 max-height: 200px;
15840 }
15841
15842 .em-item-image img {
15843 width: auto !important;
15844 height: auto;
15845 max-height: 300px;
15846 }
15847
15830 /*# sourceMappingURL=child-theme.css.map */ 15848 /*# sourceMappingURL=child-theme.css.map */
...\ No newline at end of file ...\ No newline at end of file
......
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
...@@ -25234,6 +25234,7 @@ ...@@ -25234,6 +25234,7 @@
25234 25234
25235 //for each .em-event-editor-section h3 innerwrap with label 25235 //for each .em-event-editor-section h3 innerwrap with label
25236 $$1(document).ready(function ($) { 25236 $$1(document).ready(function ($) {
25237 $('.em-event-content').prependTo('.entry-content');
25237 $('.em.pixelbones h3').each(function () { 25238 $('.em.pixelbones h3').each(function () {
25238 $(this).wrapInner('<label></label>'); 25239 $(this).wrapInner('<label></label>');
25239 }); 25240 });
......
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
...@@ -59,6 +59,7 @@ jQuery( document ).ready(function($) { ...@@ -59,6 +59,7 @@ jQuery( document ).ready(function($) {
59 59
60 //for each .em-event-editor-section h3 innerwrap with label 60 //for each .em-event-editor-section h3 innerwrap with label
61 jQuery( document ).ready(function($) { 61 jQuery( document ).ready(function($) {
62 $('.em-event-content').prependTo('.entry-content');
62 $('.em.pixelbones h3').each(function(){ 63 $('.em.pixelbones h3').each(function(){
63 $(this).wrapInner('<label></label>'); 64 $(this).wrapInner('<label></label>');
64 }); 65 });
...@@ -66,7 +67,6 @@ jQuery( document ).ready(function($) { ...@@ -66,7 +67,6 @@ jQuery( document ).ready(function($) {
66 $('.event-form-where').addClass('em pixelbones'); 67 $('.event-form-where').addClass('em pixelbones');
67 $('.event-form-submit').removeClass('em pixelbones'); 68 $('.event-form-submit').removeClass('em pixelbones');
68 $('.event-form-image').removeClass('em pixelbones'); 69 $('.event-form-image').removeClass('em pixelbones');
69 70
70 71
71
72 }) 72 })
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -4,6 +4,10 @@ ...@@ -4,6 +4,10 @@
4 .em-event-admin-editor.em-event-editor{ 4 .em-event-admin-editor.em-event-editor{
5 max-width: 800px; 5 max-width: 800px;
6 } 6 }
7 .em-event-single{
8 margin-top: 40px;
9 }
10 .em-event-when,
7 .css-event-form{ 11 .css-event-form{
8 h3{ 12 h3{
9 color: #1A3668!important; 13 color: #1A3668!important;
...@@ -90,4 +94,15 @@ color: #000; ...@@ -90,4 +94,15 @@ color: #000;
90 [for="event_image"], 94 [for="event_image"],
91 ::file-selector-button{ 95 ::file-selector-button{
92 display: none !important; 96 display: none !important;
97 }
98
99 .em-item-meta{
100 max-height: 200px;
101 }
102 .em-item-image {
103 img{
104 width: auto !important;
105 height: auto;
106 max-height: 300px;
107 }
93 } 108 }
...\ No newline at end of file ...\ No newline at end of file
......