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