| 1 |
|
| 2 |
/* Add an element box */ |
| 3 |
.pagelayer-add-ele{ |
| 4 |
width:100%; |
| 5 |
display:block; |
| 6 |
vertical-align:middle; |
| 7 |
text-align:center; |
| 8 |
border:1px dashed #4a4949; |
| 9 |
min-height:60px; |
| 10 |
padding:5px; |
| 11 |
} |
| 12 |
|
| 13 |
.pagelayer-add-ele .fa{ |
| 14 |
font-size:15px; |
| 15 |
color:#4a4949; |
| 16 |
} |
| 17 |
|
| 18 |
.pagelayer-add-ele span, |
| 19 |
.pagelayer-add-widget-area p{ |
| 20 |
font-family: "Open Sans", Arial,Helvetica,sans-serif; |
| 21 |
} |
| 22 |
|
| 23 |
.pagelayer-empty-col{ |
| 24 |
display:table-cell; |
| 25 |
} |
| 26 |
|
| 27 |
/*.pagelayer-col{ |
| 28 |
min-height:100px; |
| 29 |
}*/ |
| 30 |
|
| 31 |
.pagelayer-row{ |
| 32 |
min-height:20px; |
| 33 |
} |
| 34 |
|
| 35 |
/* Since we have a wrap, we set the cols to the wrap. Hence we need to make the width of the real thing to 100% */ |
| 36 |
.pagelayer-ele-wrap>.pagelayer-col{ |
| 37 |
width:100%; |
| 38 |
} |
| 39 |
|
| 40 |
.pagelayer-ele-wrap{ |
| 41 |
position: relative; |
| 42 |
} |
| 43 |
|
| 44 |
.pagelayer-ele-overlay{ |
| 45 |
position: absolute; |
| 46 |
width: 100%; |
| 47 |
height: 100%; |
| 48 |
right: 0px; |
| 49 |
top: 0px; |
| 50 |
z-index: 10; |
| 51 |
pointer-events:none; |
| 52 |
} |
| 53 |
|
| 54 |
.pagelayer-ele-hover, .pagelayer-drag-ele-hover{/* Both classes are same. but its just that during drag, we use the later */ |
| 55 |
outline:1px solid #277CF9; |
| 56 |
} |
| 57 |
|
| 58 |
.pagelayer-active{ |
| 59 |
outline:1px solid #7460EE; |
| 60 |
} |
| 61 |
|
| 62 |
.pagelayer-row-hover{ |
| 63 |
outline-color:#41A85F; |
| 64 |
outline-width:1px; |
| 65 |
} |
| 66 |
|
| 67 |
.pagelayer-col-hover{ |
| 68 |
outline-color:#905101; |
| 69 |
outline-width:1px; |
| 70 |
} |
| 71 |
|
| 72 |
.pagelayer-ele-option, |
| 73 |
.pagelayer-row-option, |
| 74 |
.pagelayer-col-option{ |
| 75 |
position: absolute; |
| 76 |
top:0px; |
| 77 |
right:0px; |
| 78 |
z-index: 20; |
| 79 |
padding:0px; |
| 80 |
margin:0px; |
| 81 |
line-height: 0; |
| 82 |
pointer-events:auto; |
| 83 |
} |
| 84 |
|
| 85 |
.pagelayer-eoi{ |
| 86 |
display:inline-block !important; |
| 87 |
font-size:13px !important; |
| 88 |
padding:4px !important; |
| 89 |
background:#277CF9; |
| 90 |
color:#fff ; |
| 91 |
} |
| 92 |
|
| 93 |
.pagelayer-eoi:hover{ |
| 94 |
background:#1c59b3; |
| 95 |
cursor: pointer; |
| 96 |
} |
| 97 |
|
| 98 |
.pagelayer-row-option{ |
| 99 |
top:-21px; |
| 100 |
left:calc(50% - 63px/2); |
| 101 |
z-index: 30; |
| 102 |
} |
| 103 |
|
| 104 |
.pagelayer-row-option .pagelayer-eoi{ |
| 105 |
background:#41A85F; |
| 106 |
} |
| 107 |
|
| 108 |
.pagelayer-row-option .pagelayer-eoi:hover{ |
| 109 |
background:#27713d; |
| 110 |
} |
| 111 |
|
| 112 |
.pagelayer-col-option .pagelayer-eoi{ |
| 113 |
background:#905101; |
| 114 |
} |
| 115 |
|
| 116 |
.pagelayer-col-option .pagelayer-eoi:hover{ |
| 117 |
background:#5a3401; |
| 118 |
} |
| 119 |
|
| 120 |
.pagelayer-col-option{ |
| 121 |
top:0px; |
| 122 |
left:0px; |
| 123 |
z-index: 30; |
| 124 |
width: 21px; |
| 125 |
} |
| 126 |
|
| 127 |
.pagelayer-splash{ |
| 128 |
background-image:url(../images/splash.png); |
| 129 |
height:30px; |
| 130 |
background-position: center center; |
| 131 |
background-repeat: no-repeat; |
| 132 |
background-size: cover; |
| 133 |
} |
| 134 |
|
| 135 |
.pagelayer-space-holder{ |
| 136 |
background:url(../images/space.png); |
| 137 |
background-repeat:repeat; |
| 138 |
} |
| 139 |
|
| 140 |
.pagelayer-anchor{ |
| 141 |
background-image:url(../images/anchor.png); |
| 142 |
height:30px; |
| 143 |
background-position: center center; |
| 144 |
background-repeat: no-repeat; |
| 145 |
background-size: cover; |
| 146 |
} |
| 147 |
|
| 148 |
|
| 149 |
/* Right Click */ |
| 150 |
.pagelayer-right-click-options{ |
| 151 |
position:absolute; |
| 152 |
background:#e9eaea; |
| 153 |
border-radius: 2px; |
| 154 |
box-shadow: 0 0 5px rgba(0,0,0,0.1); |
| 155 |
z-index: 10; |
| 156 |
border: 1px solid rgba(0,0,0,0.2); |
| 157 |
width:135px; |
| 158 |
} |
| 159 |
|
| 160 |
.pagelayer-right-click-options ul{ |
| 161 |
list-style: none; |
| 162 |
margin: 0; |
| 163 |
padding: 0; |
| 164 |
} |
| 165 |
|
| 166 |
.pagelayer-right-click-options a{ |
| 167 |
color: #4a4949; |
| 168 |
padding: 5px 10px; |
| 169 |
width: 100%; |
| 170 |
display: block; |
| 171 |
transition: all 0.2s; |
| 172 |
} |
| 173 |
|
| 174 |
.pagelayer-right-click-options a:hover{ |
| 175 |
background: #449D44; |
| 176 |
color:#fff; |
| 177 |
} |
| 178 |
|
| 179 |
.pagelayer-right-click-options li{ |
| 180 |
border-bottom: 1px solid rgb(236, 236, 236); |
| 181 |
font-size: 12px; |
| 182 |
font-family: Opensans, arial; |
| 183 |
cursor:pointer; |
| 184 |
} |
| 185 |
|
| 186 |
.pagelayer-right-click-options .pagelayer-right-delete:hover { |
| 187 |
background:#EF4D4D; |
| 188 |
} |
| 189 |
|
| 190 |
@media (min-width: 769px){ |
| 191 |
.pagelayer-hide-desktop{ |
| 192 |
display:initial; |
| 193 |
filter:blur(3px); |
| 194 |
} |
| 195 |
} |
| 196 |
|
| 197 |
@media (max-width: 768px) and (min-width: 361px){ |
| 198 |
.pagelayer-hide-tablet{ |
| 199 |
display:initial; |
| 200 |
filter:blur(3px); |
| 201 |
} |
| 202 |
} |
| 203 |
|
| 204 |
@media (max-width: 360px){ |
| 205 |
.pagelayer-hide-mobile{ |
| 206 |
display:initial; |
| 207 |
filter:blur(3px); |
| 208 |
} |
| 209 |
} |
| 210 |
|
| 211 |
/* Pagelayer add section area */ |
| 212 |
|
| 213 |
.pagelayer-add-widget-area{ |
| 214 |
padding: 10px; |
| 215 |
width:100%; |
| 216 |
text-align: center; |
| 217 |
border: 2px #3e8ef7; |
| 218 |
border-style: dashed; |
| 219 |
position:relative; |
| 220 |
} |
| 221 |
|
| 222 |
.pagelayer-add-widget-area .fa.fa-plus-circle{ |
| 223 |
font-size: 26px; |
| 224 |
color: #3e8ef7; |
| 225 |
} |
| 226 |
|
| 227 |
.pagelayer-add-widget-area p{ |
| 228 |
margin: 0px !important; |
| 229 |
} |
| 230 |
|
| 231 |
.pagelayer-add-widget-drag{ |
| 232 |
border-color: #111111; |
| 233 |
background: #c4d2de; |
| 234 |
} |
| 235 |
|
| 236 |
/* Pagelayer Drag stuff */ |
| 237 |
|
| 238 |
.pagelayer-is-dragging{ |
| 239 |
opacity: 0.33; |
| 240 |
transition:0.1s; |
| 241 |
} |
| 242 |
|
| 243 |
.pagelayer-drag-show{ |
| 244 |
position:absolute; |
| 245 |
top:0px; |
| 246 |
left:0px; |
| 247 |
display:none; |
| 248 |
background: blue; |
| 249 |
z-index:1000; |
| 250 |
} |
| 251 |
|
| 252 |
.pagelayer-drag-prospect{ |
| 253 |
height:1px; |
| 254 |
background:#00BCD4; |
| 255 |
z-index: 1000; |
| 256 |
} |
| 257 |
|
| 258 |
.pagelayer-drag-prospect-col{ |
| 259 |
position: absolute; |
| 260 |
top: 0px; |
| 261 |
width: 1px; |
| 262 |
height: 100% !important; |
| 263 |
} |
| 264 |
|
| 265 |
|