| 1 |
:root { |
| 2 |
--wowp-blue: #005BBF; |
| 3 |
--wowp-yellow: #FFD500; |
| 4 |
} |
| 5 |
|
| 6 |
.wowp-header-border { |
| 7 |
height: 5px; |
| 8 |
background: linear-gradient(to right, var(--wowp-blue), var(--wowp-yellow)); |
| 9 |
margin-left: -20px; |
| 10 |
|
| 11 |
} |
| 12 |
.wowp-header { |
| 13 |
position: relative; |
| 14 |
padding: 32px 20px; |
| 15 |
margin-left: -20px; |
| 16 |
background: #ffffff; |
| 17 |
display: flex; |
| 18 |
align-items: center; |
| 19 |
gap: 1rem; |
| 20 |
flex-wrap: wrap; |
| 21 |
} |
| 22 |
|
| 23 |
|
| 24 |
.wowp-logo { |
| 25 |
display: flex; |
| 26 |
align-items: center; |
| 27 |
} |
| 28 |
|
| 29 |
.wowp-logo img { |
| 30 |
width: 40px; |
| 31 |
} |
| 32 |
|
| 33 |
.wowp-header h1 { |
| 34 |
position: relative; |
| 35 |
margin: 0 35px 0 0 ; |
| 36 |
} |
| 37 |
|
| 38 |
.wowp-version { |
| 39 |
position: absolute; |
| 40 |
transform: translateY(-50%) translateX(50%); |
| 41 |
font-size: 12px; |
| 42 |
font-weight: normal; |
| 43 |
} |
| 44 |
|
| 45 |
.wowp-links { |
| 46 |
position: absolute; |
| 47 |
top: 0; |
| 48 |
right: 20px; |
| 49 |
display: flex; |
| 50 |
border-radius: 0 0 4px 4px; |
| 51 |
border: 2px solid; |
| 52 |
border-top: none; |
| 53 |
background-color: #DFE2FC; |
| 54 |
border-image: linear-gradient(to right, #14102C, #E86E2C); |
| 55 |
border-image-slice: 1; |
| 56 |
} |
| 57 |
|
| 58 |
.wowp-links a { |
| 59 |
text-decoration: none; |
| 60 |
color: #14102C; |
| 61 |
display: flex; |
| 62 |
flex-direction: column; |
| 63 |
font-size: 12px; |
| 64 |
align-items: center; |
| 65 |
padding: 5px; |
| 66 |
transition: all 0.15s linear; |
| 67 |
} |
| 68 |
|
| 69 |
.wowp-links a:hover { |
| 70 |
background-color: #F6C8AF; |
| 71 |
} |
| 72 |
|
| 73 |
.wowp-links .codericon, |
| 74 |
.wowp-links .dashicons { |
| 75 |
width: 15px; |
| 76 |
height: 15px; |
| 77 |
font-size: 15px; |
| 78 |
color: #596FF9; |
| 79 |
} |
| 80 |
|
| 81 |
|
| 82 |
td.column-mode span { |
| 83 |
margin-left: 28px; |
| 84 |
} |
| 85 |
|
| 86 |
@media screen and (max-width: 782px) { |
| 87 |
td.column-mode span:first-child { |
| 88 |
margin-left: 0; |
| 89 |
} |
| 90 |
} |
| 91 |
|
| 92 |
.wowp-status-on, |
| 93 |
.wowp-status-off { |
| 94 |
display: inline-block; |
| 95 |
width: 14px; |
| 96 |
height: 14px; |
| 97 |
border-radius: 50%; |
| 98 |
} |
| 99 |
|
| 100 |
.wowp-status-on { |
| 101 |
background-color: green; |
| 102 |
} |
| 103 |
.wowp-status-off { |
| 104 |
background-color: red; |
| 105 |
} |
| 106 |
|
| 107 |
.wowp-support { |
| 108 |
padding: 1.5rem 1.25rem; |
| 109 |
margin-top: 50px; |
| 110 |
position: relative; |
| 111 |
box-sizing: border-box; |
| 112 |
background: #ffffff; |
| 113 |
background-clip: padding-box; |
| 114 |
border: solid 2px transparent; |
| 115 |
border-radius: 4px; |
| 116 |
|
| 117 |
} |
| 118 |
.wowp-support::before { |
| 119 |
content: ''; |
| 120 |
position: absolute; |
| 121 |
top: 0; right: 0; bottom: 0; left: 0; |
| 122 |
z-index: -1; |
| 123 |
margin: -2px; |
| 124 |
border-radius: inherit; |
| 125 |
background: linear-gradient(to bottom, var(--wowp-blue), var(--wowp-yellow)); |
| 126 |
} |
| 127 |
|
| 128 |
.wowp-form-support { |
| 129 |
display: flex; |
| 130 |
flex-wrap: wrap; |
| 131 |
gap: 1.5rem; |
| 132 |
margin-top: 1rem; |
| 133 |
padding: 1.25rem; |
| 134 |
} |
| 135 |
|
| 136 |
.wowp-form-support .wowp-field { |
| 137 |
width: calc(50% - 0.75rem); |
| 138 |
} |
| 139 |
|
| 140 |
.wowp-form-support .wowp-field:nth-last-of-type(2) { |
| 141 |
width: 100%; |
| 142 |
} |
| 143 |
|
| 144 |
.wowp-form-support .wowp-field:nth-last-of-type(1) { |
| 145 |
width: 100%; |
| 146 |
text-align: center; |
| 147 |
} |
| 148 |
|
| 149 |
.wowp-form-support .wowp-field label { |
| 150 |
font-weight: 600; |
| 151 |
display: flex; |
| 152 |
flex-direction: column; |
| 153 |
gap: 5px; |
| 154 |
|
| 155 |
} |
| 156 |
|
| 157 |
.wowp-form-support input:not(.button), |
| 158 |
.wowp-form-support select { |
| 159 |
width: 100%; |
| 160 |
max-width: 100%; |
| 161 |
height: 2.5rem; |
| 162 |
font-weight: normal; |
| 163 |
} |
| 164 |
|
| 165 |
.wowp-form-support #submit { |
| 166 |
font-size: 16px; |
| 167 |
height: 2.5rem; |
| 168 |
} |
| 169 |
|
| 170 |
.wowp-notice { |
| 171 |
padding: 0.75rem 1.25rem; |
| 172 |
} |
| 173 |
|
| 174 |
.wowp-error { |
| 175 |
background: #FAD0D0; |
| 176 |
color: #14102C; |
| 177 |
border-left: 6px solid #E82C2C; |
| 178 |
} |
| 179 |
|
| 180 |
.wowp-success { |
| 181 |
padding: 1.25rem; |
| 182 |
background: #D0FAD0; |
| 183 |
color: #14102C; |
| 184 |
border-left: 6px solid #109610; |
| 185 |
} |
| 186 |
|
| 187 |
.row-actions .duplicate a{ |
| 188 |
color: green; |
| 189 |
} |
| 190 |
.row-actions .export a { |
| 191 |
color: orange; |
| 192 |
} |
| 193 |
|
| 194 |
.wowp-file input::file-selector-button { |
| 195 |
color: #14102C; |
| 196 |
padding: 0.5em; |
| 197 |
border: thin solid #F7CC5F; |
| 198 |
border-radius: 4px; |
| 199 |
} |
| 200 |
|
| 201 |
.wowp-file input[type="file"]:valid { |
| 202 |
color: #E86E2C; |
| 203 |
} |
| 204 |
|
| 205 |
/* Settings tabs */ |
| 206 |
|
| 207 |
.nav-tab-wrapper.wowp-tab { |
| 208 |
cursor: pointer; |
| 209 |
} |
| 210 |
|
| 211 |
.wowp-tab-content .tab-content { |
| 212 |
display: none; |
| 213 |
} |
| 214 |
.wowp-tab-content .tab-content.tab-content-active { |
| 215 |
display: block; |
| 216 |
} |
| 217 |
|
| 218 |
/*Settins postbox conteiner*/ |
| 219 |
|
| 220 |
.wowp-settings-wrapper { |
| 221 |
/*display: flex;*/ |
| 222 |
/*flex-direction: column*/ |
| 223 |
} |
| 224 |
|
| 225 |
.wowp-nav-tab-wrapper .nav-tab-active{ |
| 226 |
color: var(--wowp-blue); |
| 227 |
} |
| 228 |
|
| 229 |
.wowp-tab .nav-tab-active { |
| 230 |
background-color: #ffffff; |
| 231 |
border-bottom: 1px solid #ffffff; |
| 232 |
|
| 233 |
} |
| 234 |
|
| 235 |
.wowp-tab-content { |
| 236 |
padding: 1.5rem 1.25rem; |
| 237 |
background-color: #ffffff; |
| 238 |
/*border: 1px solid #c3c4c7;*/ |
| 239 |
/*border-top: none;*/ |
| 240 |
border-width: 1px; |
| 241 |
border-style: solid; |
| 242 |
border-image: linear-gradient( to bottom, var(--wowp-blue), var(--wowp-yellow) ) 1 100%; |
| 243 |
} |
| 244 |
|
| 245 |
.wowp-tab-content h4 { |
| 246 |
display: flex; |
| 247 |
width: max-content; |
| 248 |
gap: 8px; |
| 249 |
align-items: center; |
| 250 |
margin: 0 0 1.5rem 0; |
| 251 |
font-weight: 800; |
| 252 |
box-sizing: border-box; |
| 253 |
color: var(--wowp-blue); |
| 254 |
font-family: "Marlin Soft Extra Black", sans-serif; |
| 255 |
font-size: 18px; |
| 256 |
letter-spacing: -1.08px; |
| 257 |
line-height: 18px; |
| 258 |
text-align: left; |
| 259 |
-webkit-font-smoothing: antialiased; |
| 260 |
background-color: #EEF3EB; |
| 261 |
padding: 4px 8px; |
| 262 |
border-radius: 25px; |
| 263 |
} |
| 264 |
|
| 265 |
|
| 266 |
.wowp-settings .submitbox { |
| 267 |
display: flex; |
| 268 |
flex-direction: column; |
| 269 |
gap: 15px; |
| 270 |
} |
| 271 |
|
| 272 |
|
| 273 |
.wowp-settings .major-publishing-actions { |
| 274 |
margin: 0 -12px -12px -12px; |
| 275 |
padding: 12px 24px; |
| 276 |
background-color: #f7f7f7; |
| 277 |
|
| 278 |
} |
| 279 |
.wowp-settings .misc-pub-section:not(:last-child) { |
| 280 |
margin-bottom: 5px; |
| 281 |
} |
| 282 |
|
| 283 |
.wowp-settings h4 .wowp-icon { |
| 284 |
width: 14px; |
| 285 |
height: 14px; |
| 286 |
color: #E86E2C; |
| 287 |
} |
| 288 |
|
| 289 |
.wowp-settings fieldset:not(:first-child) { |
| 290 |
margin-top: 1.5rem; |
| 291 |
} |
| 292 |
|
| 293 |
.wowp-tab-content .wowp-fieldset { |
| 294 |
display: flex; |
| 295 |
flex-direction: column; |
| 296 |
gap: 1rem; |
| 297 |
padding: 1.25rem; |
| 298 |
border: 1px solid #cccccc; |
| 299 |
font-size: 13px; |
| 300 |
|
| 301 |
|
| 302 |
} |
| 303 |
|
| 304 |
.wowp-fieldset .wowp-fieldset { |
| 305 |
padding: 0; |
| 306 |
border: none; |
| 307 |
} |
| 308 |
|
| 309 |
.wowp-settings legend { |
| 310 |
color: #14102C; |
| 311 |
font-weight: bold; |
| 312 |
padding-inline: 14px; |
| 313 |
} |
| 314 |
|
| 315 |
|
| 316 |
/*Fields*/ |
| 317 |
|
| 318 |
|
| 319 |
.wowp-settings .button.delete{ |
| 320 |
background-color: #f14668; |
| 321 |
border-color: transparent; |
| 322 |
color: #fff; |
| 323 |
} |
| 324 |
.wowp-settings .button.delete:hover { |
| 325 |
background-color: #f03a5f; |
| 326 |
} |
| 327 |
|
| 328 |
|
| 329 |
.wowp-fields { |
| 330 |
display: grid; |
| 331 |
gap: 12px; |
| 332 |
grid-template-columns: repeat(auto-fill, 250px); |
| 333 |
} |
| 334 |
|
| 335 |
.wowp-field { |
| 336 |
display: flex; |
| 337 |
flex-direction: column; |
| 338 |
gap: 8px |
| 339 |
} |
| 340 |
|
| 341 |
.wowp-field.is-inline { |
| 342 |
display: flex; |
| 343 |
align-items: center; |
| 344 |
gap: 12px; |
| 345 |
flex-direction: row; |
| 346 |
} |
| 347 |
|
| 348 |
|
| 349 |
.wowp-field label { |
| 350 |
font-weight: 600; |
| 351 |
} |
| 352 |
|
| 353 |
.wowp-field.has-addon { |
| 354 |
display: flex; |
| 355 |
align-items: center; |
| 356 |
flex-direction: row; |
| 357 |
|
| 358 |
} |
| 359 |
.wowp-field.has-addon select, |
| 360 |
.wowp-field.has-addon input{ |
| 361 |
border-radius: 0 4px 4px 0; |
| 362 |
border-left: none; |
| 363 |
} |
| 364 |
|
| 365 |
|
| 366 |
.wowp-field.has-addon label { |
| 367 |
min-height: 30px; |
| 368 |
border-radius: 4px 0 0 4px; |
| 369 |
border: 1px solid #8c8f94; |
| 370 |
border-right: none; |
| 371 |
display: flex; |
| 372 |
align-items: center; |
| 373 |
padding: 0 8px; |
| 374 |
margin-right: -9px; |
| 375 |
box-sizing: border-box; |
| 376 |
background-color: #EEF3EB; |
| 377 |
} |
| 378 |
|
| 379 |
.wowp-field.has-label{ |
| 380 |
position: relative; |
| 381 |
} |
| 382 |
|
| 383 |
.wowp-field.has-label input:not([type="checkbox"], [type="radio"]), |
| 384 |
.wowp-field.has-label select { |
| 385 |
height: 40px; |
| 386 |
border-color: var(--wowp-blue); |
| 387 |
} |
| 388 |
|
| 389 |
.wowp-field.has-label label { |
| 390 |
position: absolute; |
| 391 |
top: 0; |
| 392 |
left: 10px; |
| 393 |
transform: translateY(-50%); |
| 394 |
/*font-weight: normal;*/ |
| 395 |
font-size: 10px; |
| 396 |
background-color: #ffffff; |
| 397 |
padding: 0 5px; |
| 398 |
color: var(--wowp-blue); |
| 399 |
} |
| 400 |
|
| 401 |
|
| 402 |
|
| 403 |
.wowp-field input[type="checkbox"]{ |
| 404 |
margin: 0; |
| 405 |
} |
| 406 |
|
| 407 |
.wowp-field textarea { |
| 408 |
width: 100%; |
| 409 |
height: 250px; |
| 410 |
} |
| 411 |
|
| 412 |
.wowp-field select, |
| 413 |
.wowp-field input[type="text"], |
| 414 |
.wowp-field input[type="number"], |
| 415 |
.wowp-field input[type="url"] { |
| 416 |
min-width: 200px; |
| 417 |
} |
| 418 |
|
| 419 |
.CodeMirror { |
| 420 |
border: 1px solid #cccccc; |
| 421 |
font-size: 13px; |
| 422 |
} |
| 423 |
|
| 424 |
/*Icons*/ |
| 425 |
.wowp-icon { |
| 426 |
width: 32px; |
| 427 |
height: 32px; |
| 428 |
display: inline-block; |
| 429 |
fill: currentColor; |
| 430 |
} |