c996f2dc by Jeff Balicki

sss

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 6f7c5a4f
......@@ -15740,13 +15740,21 @@ p.intro {
max-width: 800px;
}
.css-event-form h3, .css-event-form .h3 {
.em-event-single {
margin-top: 40px;
}
.em-event-when h3, .em-event-when .h3,
.css-event-form h3,
.css-event-form .h3 {
color: #1A3668 !important;
font-size: 28px !important;
line-height: 36px !important;
font-family: "trade-gothic-next" !important;
}
.css-event-form h3 label, .css-event-form .h3 label {
.em-event-when h3 label, .em-event-when .h3 label,
.css-event-form h3 label,
.css-event-form .h3 label {
color: #1A3668 !important;
font-size: 28px !important;
line-height: 36px !important;
......@@ -15827,4 +15835,14 @@ p.intro {
display: none !important;
}
.em-item-meta {
max-height: 200px;
}
.em-item-image img {
width: auto !important;
height: auto;
max-height: 300px;
}
/*# sourceMappingURL=child-theme.css.map */
\ 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 @@
//for each .em-event-editor-section h3 innerwrap with label
$$1(document).ready(function ($) {
$('.em-event-content').prependTo('.entry-content');
$('.em.pixelbones h3').each(function () {
$(this).wrapInner('<label></label>');
});
......
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($) {
//for each .em-event-editor-section h3 innerwrap with label
jQuery( document ).ready(function($) {
$('.em-event-content').prependTo('.entry-content');
$('.em.pixelbones h3').each(function(){
$(this).wrapInner('<label></label>');
});
......@@ -66,7 +67,6 @@ jQuery( document ).ready(function($) {
$('.event-form-where').addClass('em pixelbones');
$('.event-form-submit').removeClass('em pixelbones');
$('.event-form-image').removeClass('em pixelbones');
})
\ No newline at end of file
......
......@@ -4,6 +4,10 @@
.em-event-admin-editor.em-event-editor{
max-width: 800px;
}
.em-event-single{
margin-top: 40px;
}
.em-event-when,
.css-event-form{
h3{
color: #1A3668!important;
......@@ -90,4 +94,15 @@ color: #000;
[for="event_image"],
::file-selector-button{
display: none !important;
}
.em-item-meta{
max-height: 200px;
}
.em-item-image {
img{
width: auto !important;
height: auto;
max-height: 300px;
}
}
\ No newline at end of file
......