events-manager.scss
3.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
//@import "../../assets/css/include-media";
@import "partials/mixins";
.em {
@import "assets/pixelbones.vars";
@import "assets/pixelbones";
// counter settings (bubble showing applied advanced appearing next to trigger and headings)
--counter-background : #F36752;
--counter-color : #fff;
--counter-background-tentative : #ddd;
--counter-color-tentative : #888;
@import "partials";
/** The Triggers - Search and other parts triggering search **/
button.em-clickable {
cursor: pointer !important;
justify-self: start !important;
background-color: transparent;
margin: 0 !important;
padding: 0 !important;
border: 0 !important;
outline: none;
&:focus {
outline: none;
}
}
.hidden {
display:none;
visibility: hidden;
}
/* General Styles */
.em-datepicker {
.em-datepicker-data.hidden {
position:absolute !important;
left:-10000px !important;
top:auto !important;
width:1px !important;
height:1px !important;
overflow:hidden !important;
visibility : visible;
display: inherit;
}
}
/* Search Results & Event Views */
&.em-view-container {
position: relative;
}
.em-location-map-container{
aspect-ratio: 2/1;
width: 100%;
.em-loading-maps, .em-location-map-404 {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
width: 100%;
border: 1px dashed #d0d0d0;
background-color: #fafafa;
color: #888;
font-size: 18px;
padding: 20px;
text-align: center;
svg {
width: 100px;
max-height: 100px;
}
span {
display:block;
margin-bottom:20px;
font-size:20px;
color: #aaa;
}
}
.em-loading {
background-position : 50% 10%;
}
.em-locations-map, .em-location-map, .em-location-map-content {
width: 100%;
height: 100%;
}
}
// General Styling
--font-size: 16px;
--line-height: 20px;
--default-color : #666666;
--default-border: #4b86b4;
/* #2a4d69 • #4b86b4 • #adcbe3 • #e7eff6 • #63ace5 */
--palette-1-bg : #03396c; /* for things like table headings or borders of tables */
--palette-1-color : #FFFFFF;
--meta-color : #787878;
--meta-bg : transparent;
--main-bg : #F5F5F5; // bookings
--main-h3-color : #777777; // bookings
--main-border-color : #cdcdcd; // bookings
.em-notice {
// Note that this is a span, allowing something like a DIV to enjoy JS functionality without the styling like in AJAXify
padding: 15px !important;
margin-bottom: 20px !important;
border: 1px solid #b6d4fe !important;
border-radius: 2.5px !important;
display: block !important;
color: #084298 !important;
background-color: #cfe2ff !important;
p { margin:10px 0px !important; padding:0px; }
&.em-notice-error {
color: #842029 !important;
background-color: #f8d7da !important;
border-color: #f5c2c7 !important;
}
&.em-notice-success {
color: #0f5132 !important;
background-color: #d1e7dd !important;
border-color: #badbcc !important;
}
&.em-notice-warning {
color: #664d03;
background: #fff3cd;
border-color: #ffecb5;
}
}
}
/* Fix z-index issues for some 3rd party stuff */
body .pac-container, .em .flatpickr-calendar {
z-index : 100000 !important;
}
@import 'events_manager';
@import "partials/libraries";