graphics-front.css
| 1 | /* Page Styling */ |
| 2 | |
| 3 | body, html { |
| 4 | margin: 0 !important; |
| 5 | } |
| 6 | section#wpf_bottom_bar { |
| 7 | width: calc(100% - 380px); |
| 8 | } |
| 9 | /* Page header */ |
| 10 | .wpf_topbar { |
| 11 | background-color: #fff; |
| 12 | padding: 0px 10px 5px; |
| 13 | color: #4a5568; |
| 14 | font-weight: 700; |
| 15 | font-family: 'Roboto', sans-serif; |
| 16 | font-size: 16px; |
| 17 | box-shadow: 0em 0.5em 1em 0em rgba(0, 0, 0, 0.1); |
| 18 | border-bottom: 1px solid #efefef; |
| 19 | z-index: 10000; |
| 20 | position: fixed; |
| 21 | width: calc(100% - 380px); |
| 22 | top: 0; |
| 23 | height: 52px; |
| 24 | box-sizing: border-box; |
| 25 | } |
| 26 | .wpf_topbar_left { |
| 27 | width: calc(95% - 355px); |
| 28 | display: inline-block; |
| 29 | vertical-align: top; |
| 30 | float: left; |
| 31 | } |
| 32 | .wpf_topbar_right { |
| 33 | display: inline-block; |
| 34 | vertical-align: top; |
| 35 | float: right; |
| 36 | margin-right: 15px; |
| 37 | } |
| 38 | .wpf_graphics_logo { |
| 39 | width: 220px; |
| 40 | height: 60px; |
| 41 | display: inline-block; |
| 42 | margin-right: 15px; |
| 43 | margin-left: 15px; |
| 44 | vertical-align: top; |
| 45 | } |
| 46 | .wpf_graphics_logo img { |
| 47 | max-width: 100%; |
| 48 | height: auto; |
| 49 | max-height: 50px; |
| 50 | } |
| 51 | .wpf_graphics_info { |
| 52 | display: inline-block; |
| 53 | width: 100%; |
| 54 | vertical-align: top; |
| 55 | margin-top: 5px; |
| 56 | padding-left: 15px; |
| 57 | } |
| 58 | .wpf_graphics_title { |
| 59 | font-size: 120%; |
| 60 | overflow: hidden; |
| 61 | text-overflow: ellipsis; |
| 62 | white-space: nowrap; |
| 63 | margin-bottom: -10px; |
| 64 | margin-top: -4px; |
| 65 | } |
| 66 | .wpf_graphics_description { |
| 67 | font-family: 'Roboto', sans-serif; |
| 68 | font-size: 80%; |
| 69 | font-weight: 400; |
| 70 | color: #333; |
| 71 | max-height: 30px; |
| 72 | overflow: hidden; |
| 73 | } |
| 74 | .wpf_topbar_icons { |
| 75 | display: inline-block; |
| 76 | border-right: 2px solid #efefef; |
| 77 | margin-right: 5px; |
| 78 | } |
| 79 | .wpf_topbar_icons i { |
| 80 | margin-right: 15px; |
| 81 | } |
| 82 | .wpf_graphics_version { |
| 83 | display: inline-block; |
| 84 | margin-right: 15px; |
| 85 | } |
| 86 | .wpf_graphics_button { |
| 87 | display: inline-block; |
| 88 | } |
| 89 | /* Added the padding on General button on non compact mode only */ |
| 90 | .wpf_graphics .wpf_general_btn { |
| 91 | margin-right: 25px; |
| 92 | } |
| 93 | .wpf_graphics .wpf-compact-launcher .wpf_general_btn { |
| 94 | margin-right: -5px !important; |
| 95 | } |
| 96 | |
| 97 | span#graphics_color_picker, a.wpf_button_upload { |
| 98 | width: 35px; |
| 99 | display: inline-block; |
| 100 | } |
| 101 | a.wpf_button { |
| 102 | color: rgba(54,61,77,0.99); |
| 103 | background-color: #69dc9e; |
| 104 | border-radius: 5px; |
| 105 | cursor: pointer; |
| 106 | -webkit-transition: all 0.2s ease-in; |
| 107 | -moz-transition: all 0.2s ease-in; |
| 108 | -ms-transition: all 0.2s ease-in; |
| 109 | -o-transition: all 0.2s ease-in; |
| 110 | transition: all 0.2s ease-in; |
| 111 | padding: 10px 25px; |
| 112 | display: block; |
| 113 | margin-top: 7px; |
| 114 | text-decoration: none; |
| 115 | font-size: 14px; |
| 116 | line-height: 1.4; |
| 117 | min-width: 130px; |
| 118 | text-align: center; |
| 119 | font-weight: 400; |
| 120 | text-transform: capitalize; |
| 121 | } |
| 122 | a.wpf_button:hover { |
| 123 | opacity: 0.8; |
| 124 | } |
| 125 | div#wpf_graphics_complete_content a:before { |
| 126 | content: ""; |
| 127 | width: 6px; |
| 128 | height: 11px; |
| 129 | display: inline-block; |
| 130 | border-style: solid; |
| 131 | border-width: 0px 2px 2px 0px; |
| 132 | margin-bottom: 1px; |
| 133 | margin-right: 5px; |
| 134 | -moz-transform: rotate(45deg); |
| 135 | -webkit-transform: rotate(45deg); |
| 136 | -o-transform: rotate(45deg); |
| 137 | -ms-transform: rotate(45deg); |
| 138 | transform: rotate(45deg); |
| 139 | } |
| 140 | .wpf_topbar_icons a { |
| 141 | color: #4a5568; |
| 142 | } |
| 143 | .wpf_topbar_icons a:hover { |
| 144 | opacity: 0.8; |
| 145 | } |
| 146 | |
| 147 | /* Page body */ |
| 148 | .wpf_body { |
| 149 | width: calc(100% - 380px); |
| 150 | min-height: calc(100vh - 102px); |
| 151 | background-color: #efefef; |
| 152 | display: flex; |
| 153 | margin-top: 52px; |
| 154 | padding-bottom: 50px; |
| 155 | box-sizing: border-box; |
| 156 | } |
| 157 | div#wpf_launcher .wpf_expand { |
| 158 | display: none; |
| 159 | } |
| 160 | .wpf_graphics_container { |
| 161 | width: 96%; |
| 162 | margin: auto; |
| 163 | display: block; |
| 164 | } |
| 165 | .wpf_graphics_container img { |
| 166 | box-shadow: 0em 0em 1em 0em rgba(0, 0, 0, 0.3); |
| 167 | margin: 25px auto !important; |
| 168 | max-width: 100%; |
| 169 | height: auto !important; |
| 170 | display: block; |
| 171 | } |
| 172 | /* Adapting Sidebar and Stickers */ |
| 173 | div#wpf_launcher { |
| 174 | max-width: 100%; |
| 175 | } |
| 176 | .wpf_task_number { |
| 177 | pointer-events: none; |
| 178 | } |
| 179 | button.wpf_green_btn.approve-page, a#wpf_bottom_arrow, #wpf_bottom_bar .tasks-btn { |
| 180 | display: none; |
| 181 | } |
| 182 | a.wpf_green_btn.wpf_comment_btn { |
| 183 | margin-right: 25px; |
| 184 | } |
| 185 | body.wpf_graphics .wpf_sidebar_container { |
| 186 | border-top: none !important; |
| 187 | } |
| 188 | /* New version popup */ |
| 189 | #wpf_graphics_popup_form{display: none;} |
| 190 | .wpf_create_graphics_buttons { |
| 191 | float: right; |
| 192 | margin-top: -3px; |
| 193 | } |
| 194 | |
| 195 | div#wpf_graphics_popup_form { |
| 196 | position: fixed; |
| 197 | z-index: 9999; |
| 198 | top: 0; |
| 199 | left: 0; |
| 200 | width: 100%; |
| 201 | height: 100%; |
| 202 | overflow: auto; |
| 203 | background-color: rgba(255, 255, 255, 0.85); |
| 204 | } |
| 205 | .graphics-modal-content { |
| 206 | width: 550px; |
| 207 | max-width: 88%; |
| 208 | margin: auto; |
| 209 | margin-top: 6%; |
| 210 | box-shadow: 0em 0em 3em 0em rgba(0,0,0,0.13); |
| 211 | padding: 25px; |
| 212 | border-radius: 5px; |
| 213 | border: 1px solid #efefef; |
| 214 | background-color: #fff !important; |
| 215 | font-family: 'Roboto', sans-serif; |
| 216 | font-size: 14px; |
| 217 | position: relative; |
| 218 | } |
| 219 | #wpf_graphics_popup_form .wpf_field_label { |
| 220 | position: absolute; |
| 221 | top: 20px; |
| 222 | left: 70px; |
| 223 | color: #363d4d; |
| 224 | font-size: 16px; |
| 225 | font-family: 'Roboto', sans-serif; |
| 226 | font-weight: 700; |
| 227 | } |
| 228 | .wpf-graphics-modal_title { |
| 229 | color: #363d4d; |
| 230 | font-weight: 700; |
| 231 | font-size: 165%; |
| 232 | } |
| 233 | button.graphics-modal-close { |
| 234 | padding: 0; |
| 235 | color: #cd2653 !important; |
| 236 | opacity: 1; |
| 237 | position: absolute; |
| 238 | top: 20px; |
| 239 | right: 20px; |
| 240 | background-color: transparent; |
| 241 | } |
| 242 | .wpf_upload_image_button.graphics_fields.custom_image_upload { |
| 243 | border-width: 2px; |
| 244 | border-style: dashed; |
| 245 | border-color: #ccc; |
| 246 | margin-bottom: 10px; |
| 247 | position: relative; |
| 248 | padding: 0; |
| 249 | } |
| 250 | .wpf_upload_image_button.graphics_fields i.gg-image { |
| 251 | font-size: 50px; |
| 252 | position: absolute; |
| 253 | left: 10px; |
| 254 | top: 3px; |
| 255 | color: var(--main-wpf-color); |
| 256 | } |
| 257 | input#upload_graphic_image_version { |
| 258 | background: transparent; |
| 259 | border: 0; |
| 260 | padding: 15px 15px 15px 70px; |
| 261 | height: 58px; |
| 262 | opacity: 0; |
| 263 | border-radius: 0; |
| 264 | width: 100%; |
| 265 | } |
| 266 | |
| 267 | .graphic.wpfeedback_image-preview-wrapper svg { |
| 268 | display: none; |
| 269 | } |
| 270 | input.wpf_graphics.wpf_button { |
| 271 | color: rgb(54 61 77 / 0.9) !important; |
| 272 | background-color: #69dc9e; |
| 273 | border-radius: 5px; |
| 274 | font-size: 14px; |
| 275 | font-family: 'Roboto', sans-serif; |
| 276 | font-weight: 400; |
| 277 | cursor: pointer; |
| 278 | padding: 10px 20px; |
| 279 | border: none; |
| 280 | -webkit-transition: all 0.2s ease-in; |
| 281 | -moz-transition: all 0.2s ease-in; |
| 282 | -ms-transition: all 0.2s ease-in; |
| 283 | -o-transition: all 0.2s ease-in; |
| 284 | transition: all 0.2s ease-in; |
| 285 | text-transform: capitalize !important; |
| 286 | } |
| 287 | /* Mobile */ |
| 288 | @media only screen and (max-width: 1120px) { |
| 289 | .wpf_topbar_right { |
| 290 | margin-right: 0; |
| 291 | } |
| 292 | } |
| 293 | @media only screen and (max-width: 978px) { |
| 294 | |
| 295 | a.wpf_button { |
| 296 | padding: 10px 0; |
| 297 | font-size: 12px; |
| 298 | } |
| 299 | .wpf_topbar_icons { |
| 300 | display: none; |
| 301 | } |
| 302 | .wpf_bottom_middle { |
| 303 | display: none !important; |
| 304 | } |
| 305 | .wpf_topbar_left { |
| 306 | width: calc(95% - 250px); |
| 307 | } |
| 308 | |
| 309 | } |
| 310 | @media only screen and (max-width: 855px) { |
| 311 | .wpf_topbar_left { |
| 312 | width: 100%; |
| 313 | text-align: center; |
| 314 | } |
| 315 | .wpf_topbar { |
| 316 | height: auto; |
| 317 | padding-top: 7px; |
| 318 | } |
| 319 | .wpf_graphics_description, .wpf_graphics_logo { |
| 320 | display: none; |
| 321 | } |
| 322 | .wpf_topbar_right { |
| 323 | display: block; |
| 324 | width: 100%; |
| 325 | padding: 0; |
| 326 | text-align: center; |
| 327 | margin: 0; |
| 328 | } |
| 329 | .wpf_graphics_info { |
| 330 | width: 100%; |
| 331 | border: none; |
| 332 | } |
| 333 | } |
| 334 | @media only screen and (max-width: 650px) { |
| 335 | .wpf_body { |
| 336 | width: 100% !important; |
| 337 | } |
| 338 | #wpf_bottom_bar .tasks-btn { |
| 339 | display: flex !important; |
| 340 | } |
| 341 | .wpf_topbar, section#wpf_bottom_bar { |
| 342 | width: 100%; |
| 343 | } |
| 344 | .wpf_topbar_left { |
| 345 | width: calc(100% - 15px) !important; |
| 346 | } |
| 347 | .wpf_topbar_right { |
| 348 | width: 100% !important; |
| 349 | padding-top: 5px; |
| 350 | margin-top: 10px; |
| 351 | border-top: 1px solid #efefef; |
| 352 | } |
| 353 | |
| 354 | |
| 355 | } |
| 356 | @media only screen and (max-width: 520px) { |
| 357 | a.wpf_green_btn.wpf_comment_btn { |
| 358 | position: absolute; |
| 359 | left: 15px; |
| 360 | } |
| 361 | } |
| 362 | #graphics_color_picker .iris-picker.iris-border { |
| 363 | position: fixed; |
| 364 | z-index: 99; |
| 365 | } |
| 366 | body.wpf_graphics .media-modal { |
| 367 | z-index: 999999; |
| 368 | } |
| 369 | .wpf_graphics_loader.wpf_hide{ |
| 370 | position: absolute; |
| 371 | z-index: 1999; |
| 372 | width: 100%; |
| 373 | overflow: visible; |
| 374 | margin: auto; |
| 375 | top: 0; |
| 376 | left: 0; |
| 377 | bottom: 0; |
| 378 | right: 0; |
| 379 | background-image: url(../images/Loader-slider-WPFeedback.svg); |
| 380 | background-repeat: no-repeat; |
| 381 | background-position: center center; |
| 382 | background-color: rgba(255, 255, 255, 0.5); |
| 383 | background-size: 60px; |
| 384 | } |
| 385 | a.wpf_button.wpf_complete { |
| 386 | background-color: #3ed696; |
| 387 | } |
| 388 | select#wpf_graphics_version { |
| 389 | display: inline-block; |
| 390 | margin-bottom: 0px; |
| 391 | border: 1px solid #ddd; |
| 392 | padding: 0 .65em; |
| 393 | font-size: 13px; |
| 394 | font-family: 'Roboto', sans-serif; |
| 395 | line-height: normal; |
| 396 | color: #555; |
| 397 | background-color: #fff; |
| 398 | border-radius: 4px; |
| 399 | box-shadow: inset 0 1px 1px rgba(0,0,0,0.075); |
| 400 | height: 2.65em; |
| 401 | padding-top: 0.5em; |
| 402 | padding-bottom: 0.5em; |
| 403 | } |
| 404 | |
| 405 | body.wpf_graphics li.current_page_task .wpf_task_number { |
| 406 | cursor: pointer !important; |
| 407 | } |
| 408 | .wpf_filter_tab .wpf_general_task_thispage, .wpf_filter_tab .cloud_dashboard_btn { |
| 409 | display: none; |
| 410 | } |
| 411 | |
| 412 | /* Sticker style start */ |
| 413 | |
| 414 | .wpfb-point { |
| 415 | overflow: hidden; |
| 416 | border-radius: 50%; |
| 417 | border: 4px solid #FFF; |
| 418 | text-decoration: none; |
| 419 | font-family: 'Roboto', sans-serif; |
| 420 | font-weight: 400; |
| 421 | font-size: 15px; |
| 422 | box-shadow: 0 1px 3px rgba(0,0,0,.5); |
| 423 | width: 38px; |
| 424 | height: 38px; |
| 425 | box-sizing: border-box; |
| 426 | vertical-align: middle; |
| 427 | text-align: center; |
| 428 | display: flex; |
| 429 | align-items: center; |
| 430 | justify-content: center; |
| 431 | } |
| 432 | a.wpfb-point span.sticker { |
| 433 | border-radius: 50%; |
| 434 | position: absolute; |
| 435 | top: -9px; |
| 436 | right: -1px; |
| 437 | width: 12px; |
| 438 | height: 27px; |
| 439 | box-shadow: 0px 1px 11px #00000042; |
| 440 | transform: rotate(-34deg); |
| 441 | } |
| 442 | a.wpfb-point:hover { |
| 443 | opacity: 1 !important; |
| 444 | } |
| 445 | |
| 446 | a.completed_custom |
| 447 | { |
| 448 | background: #3ed696 !important; |
| 449 | } |
| 450 | |
| 451 | .low_custom |
| 452 | { |
| 453 | background: #3ed696; |
| 454 | } |
| 455 | .medium_custom |
| 456 | { |
| 457 | background: #fcd227; |
| 458 | } |
| 459 | .high_custom |
| 460 | { |
| 461 | background: #ffa532; |
| 462 | } |
| 463 | .critical_custom |
| 464 | { |
| 465 | background: #ff5a48; |
| 466 | } |
| 467 | |
| 468 | |
| 469 | a.wpfb-point.complete .gg-check { |
| 470 | margin: 0; |
| 471 | } |
| 472 | /* END */ |
| 473 | |
| 474 | /* sidebar sticker css */ |
| 475 | .open_custom .wpf_task_number |
| 476 | { |
| 477 | background: var(--main-wpf-color) !important; |
| 478 | } |
| 479 | |
| 480 | /* END */ |
| 481 | |
| 482 | .pending-review_custom .wpf_task_number { |
| 483 | background: #ffa532 !important; |
| 484 | position: relative; |
| 485 | z-index: 0; |
| 486 | } |
| 487 | .in-progress_custom .wpf_task_number{ |
| 488 | background: #fcd227 !important; |
| 489 | position: relative; |
| 490 | z-index: 0; |
| 491 | } |
| 492 | .open_custom .low_custom, .open_custom .medium_custom, .open_custom .high_custom, .open_custom .critical_custom, |
| 493 | .in-progress_custom .low_custom, .in-progress_custom .medium_custom, .in-progress_custom .high_custom, .in-progress_custom .critical_custom, |
| 494 | .pending-review_custom .low_custom, .pending-review_custom .medium_custom, .pending-review_custom .high_custom, .pending-review_custom .critical_custom, |
| 495 | .complete_custom .low_custom, .complete_custom .medium_custom, .complete_custom .high_custom, .complete_custom .critical_custom{ |
| 496 | border-radius: 50%; |
| 497 | position: absolute; |
| 498 | top: -10px; |
| 499 | right: -1px; |
| 500 | width: 12px; |
| 501 | height: 27px; |
| 502 | box-shadow: 0px 1px 11px #00000042; |
| 503 | transform: rotate(-44deg); |
| 504 | border: 0px; |
| 505 | } |
| 506 | |
| 507 | .open_custom .wpf_task_number, .pending-review_custom .wpf_task_number, .in-progress_custom .wpf_task_number { |
| 508 | font-size: 11px; |
| 509 | display: flex; |
| 510 | align-items: center; |
| 511 | justify-content: center; |
| 512 | } |
| 513 | |
| 514 | |
| 515 | .anim-slider input.low_radio + .low_label { |
| 516 | color: #3ed696 !important; |
| 517 | } |
| 518 | .anim-slider input.medium_radio + .medium_label { |
| 519 | color: #fcd227 !important; |
| 520 | } |
| 521 | .anim-slider input.high_radio + .high_label { |
| 522 | color: #ffa532 !important; |
| 523 | } |
| 524 | .anim-slider input.critical_radio + .critical_label { |
| 525 | color: #ff5a48 !important; |
| 526 | } |
| 527 | .anim-slider input.open_radio + .open_label { |
| 528 | color: #002157 !important; |
| 529 | } |
| 530 | .anim-slider input.in_progress_radio + .in_progress_label { |
| 531 | color: #fcd227 !important; |
| 532 | } |
| 533 | .anim-slider input.pending_radio + .pending_label { |
| 534 | color: #ffa532 !important; |
| 535 | } |
| 536 | .anim-slider input.complete_radio + .complete_label { |
| 537 | color: #3ed696 !important; |
| 538 | } |
| 539 | |
| 540 | |
| 541 | .wpf_sidebar_content .wpf_container .wpf_task_sum { |
| 542 | width: calc(100% - 50px); |
| 543 | } |
| 544 | |
| 545 | |
| 546 | .wpf_sidebar_content .wpf_container .wpf_task_number .gg-check { |
| 547 | margin: 0; |
| 548 | } |
| 549 | |
| 550 | |
| 551 | .complete .gg-check { |
| 552 | box-sizing: border-box; |
| 553 | position: relative; |
| 554 | transform: scale(var(--ggs,1.5)); |
| 555 | width: 23px; |
| 556 | height: 23px; |
| 557 | border: 2px solid transparent; |
| 558 | border-radius: 100px; |
| 559 | display: flex; |
| 560 | text-align: center; |
| 561 | justify-content: center; |
| 562 | align-content: center; |
| 563 | align-items: center; |
| 564 | } |
| 565 | |
| 566 | .gg-check::after { |
| 567 | z-index: 0; |
| 568 | left: unset; |
| 569 | top: 3px; |
| 570 | transform-origin: center; |
| 571 | } |
| 572 | |
| 573 | a.wpfb-point .gg-check { |
| 574 | left: 3px; |
| 575 | top: 4px; |
| 576 | } |
| 577 | |
| 578 | .wpf_graphics_description { |
| 579 | font-family: 'Roboto', sans-serif; |
| 580 | font-size: 13px; |
| 581 | font-weight: 400; |
| 582 | color: #333; |
| 583 | max-height: 20px; |
| 584 | margin-top: 10px; |
| 585 | overflow: hidden; |
| 586 | text-overflow: ellipsis; |
| 587 | white-space: nowrap; |
| 588 | } |
| 589 | |
| 590 | /* Compact Mode */ |
| 591 | .wpf-compact-launcher { |
| 592 | max-width: calc(100% - 57px) !important; |
| 593 | } |
| 594 | |
| 595 | .wpf_expand { |
| 596 | display: none !important; |
| 597 | } |
| 598 | .wpf_graphics .wpf-compact-launcher>.wpf_launch_buttons .wpf_general_comment a { |
| 599 | display: flex !important; |
| 600 | right: 60px !important; |
| 601 | margin-left: 0 !important; |
| 602 | } |
| 603 | .wpf_graphics .wpf-compact-launcher .wpf_launch_buttons:hover:not(.graphic_page_compact_buttons) .wpf_general_comment { |
| 604 | top: -60px !important; |
| 605 | } |
| 606 | .wpf_graphics .wpf-compact-launcher .wpf_launch_buttons, .wpf_graphics .wpf-compact-launcher .wpf_launch_buttons:hover { |
| 607 | height: 155px !important; |
| 608 | } |
| 609 | .wpf_start_comment { |
| 610 | z-index: 2; |
| 611 | } |
| 612 | |
| 613 | |
| 614 | @media only screen and (max-width: 650px) { |
| 615 | .wpf_compact_body .wpf_expand { |
| 616 | display: flex !important; |
| 617 | } |
| 618 | .wpf_graphics .wpf-compact-launcher .wpf_launch_buttons, .wpf_graphics .wpf-compact-launcher .wpf_launch_buttons:hover { |
| 619 | height: 190px!important; |
| 620 | } |
| 621 | .wpf-compact-launcher-with-sidebar { |
| 622 | width: auto !important; |
| 623 | right: 0 !important; |
| 624 | } |
| 625 | } |
| 626 | .wpf_graphics_load { |
| 627 | font-size: 18px; |
| 628 | display: block; |
| 629 | width: 100%; |
| 630 | color: #279af1; |
| 631 | text-align: center; |
| 632 | padding: 10% 0; |
| 633 | font-weight: 700; |
| 634 | font-family: roboto,sans-serif; |
| 635 | } |
| 636 | .wpml-ls-statics-footer { |
| 637 | display: none !important; |
| 638 | } |