| 1 |
/* DASHBOARD */ |
| 2 |
|
| 3 |
#wpda-dashboard { |
| 4 |
background-color: #fff; |
| 5 |
color: inherit; |
| 6 |
width: 100%; |
| 7 |
margin-left: -20px; |
| 8 |
padding: 0 0 0 20px; |
| 9 |
border-bottom: 1px solid #c3c4c7; |
| 10 |
} |
| 11 |
#wpda-dashboard .wpda-dashboard { |
| 12 |
display: flex; |
| 13 |
justify-content: flex-start; |
| 14 |
flex-direction: row; |
| 15 |
} |
| 16 |
#wpda-dashboard .wpda-dashboard .wpda-dashboard-group { |
| 17 |
display: grid; |
| 18 |
padding: 0 3px; |
| 19 |
border-right: 1px solid #c3c4c7; |
| 20 |
} |
| 21 |
#wpda-dashboard .wpda-dashboard .wpda-dashboard-group:last-child { |
| 22 |
margin-right: 20px; |
| 23 |
border-right: none; |
| 24 |
} |
| 25 |
#wpda-dashboard .wpda-dashboard .wpda-dashboard-group:hover { |
| 26 |
background-color: #f6f7f7; |
| 27 |
} |
| 28 |
#wpda-dashboard .wpda-dashboard .wpda-dashboard-group .wpda-dashboard-item { |
| 29 |
display: flex; |
| 30 |
flex-direction: column; |
| 31 |
font-size: 8.5px; |
| 32 |
font-weight: bold; |
| 33 |
align-items: center; |
| 34 |
text-align: center; |
| 35 |
text-decoration: none; |
| 36 |
color: #3c434a; |
| 37 |
fill: #3c434a; |
| 38 |
} |
| 39 |
#wpda-dashboard .wpda-dashboard .wpda-dashboard-group .wpda-dashboard-item:hover { |
| 40 |
color: #2271b1; |
| 41 |
fill: #2271b1; |
| 42 |
cursor: pointer; |
| 43 |
} |
| 44 |
#wpda-dashboard .wpda-dashboard .wpda-dashboard-group .wpda-dashboard-item .fas, |
| 45 |
#wpda-dashboard .wpda-dashboard .wpda-dashboard-group .wpda-dashboard-item .fa-solid { |
| 46 |
height: 28px; |
| 47 |
font-size: 28px; |
| 48 |
padding: 10px 8px 0 8px; |
| 49 |
} |
| 50 |
#wpda-dashboard .wpda-dashboard .wpda-dashboard-group .wpda-dashboard-item div { |
| 51 |
padding: 8px; |
| 52 |
} |
| 53 |
#wpda-dashboard .wpda-dashboard .wpda-dashboard-group .icons { |
| 54 |
display: flex; |
| 55 |
} |
| 56 |
#wpda-dashboard .wpda-dashboard .wpda-dashboard-group .subject { |
| 57 |
text-align: center; |
| 58 |
font-size: 9px; |
| 59 |
margin-bottom: 5px; |
| 60 |
} |
| 61 |
#wpda-dashboard .wpda-dashboard .wpda-dashboard-group .label { |
| 62 |
white-space: nowrap; |
| 63 |
} |
| 64 |
#wpda-dashboard-mobile { |
| 65 |
background-color: #fff; |
| 66 |
color: inherit; |
| 67 |
margin-left: -10px; |
| 68 |
padding: 0; |
| 69 |
border-bottom: 1px solid #c3c4c7; |
| 70 |
} |
| 71 |
@media screen and (min-width: 782px) { |
| 72 |
#wpda-dashboard-mobile { |
| 73 |
margin-left: -20px; |
| 74 |
} |
| 75 |
} |
| 76 |
#wpda-dashboard-drop-down { |
| 77 |
display: flex; |
| 78 |
flex-direction: row; |
| 79 |
padding: 10px; |
| 80 |
} |
| 81 |
.wpda-dashboard-toolbar { |
| 82 |
display: flex; |
| 83 |
justify-content: space-between; |
| 84 |
font-size: 24px; |
| 85 |
background-color: #fff; |
| 86 |
color: inherit; |
| 87 |
width: 100%; |
| 88 |
margin-left: -20px; |
| 89 |
padding: 0 0 0 20px; |
| 90 |
border-bottom: 1px solid #c3c4c7; |
| 91 |
} |
| 92 |
|
| 93 |
.wpda-dashboard-toolbar > div > div { |
| 94 |
display: inline-block; |
| 95 |
margin: 0; |
| 96 |
border-right: 1px solid #c3c4c7; |
| 97 |
padding: 0 4px; |
| 98 |
} |
| 99 |
.wpda-dashboard-toolbar > div > div { |
| 100 |
padding: 0 2px; |
| 101 |
} |
| 102 |
.wpda-dashboard-toolbar > div > div:last-child { |
| 103 |
border: none; |
| 104 |
} |
| 105 |
.wpda-dashboard-toolbar > div > div > div { |
| 106 |
display: inline-block; |
| 107 |
text-align: center; |
| 108 |
font-size: 8px; |
| 109 |
line-height: 8px; |
| 110 |
padding: 0; |
| 111 |
margin: 0; |
| 112 |
border: none; |
| 113 |
} |
| 114 |
.wpda-dashboard-toolbar > div > div > div a { |
| 115 |
color: #3c434a; |
| 116 |
text-decoration: none; |
| 117 |
width: auto; |
| 118 |
display: inline-block; |
| 119 |
margin: 0; |
| 120 |
padding: 10px 8px; |
| 121 |
} |
| 122 |
.wpda-dashboard-toolbar > div > div > div a:hover { |
| 123 |
color: #2271b1; |
| 124 |
} |
| 125 |
.wpda-dashboard-toolbar > div > div div.fas, |
| 126 |
.wpda-dashboard-toolbar > div > div > div i { |
| 127 |
font-size: 24px; |
| 128 |
margin-bottom: 5px; |
| 129 |
} |
| 130 |
.wpda-dashboard-toolbar > div > div > div:hover { |
| 131 |
background-color: #f6f7f7; |
| 132 |
} |
| 133 |
.wpda-dashboard-toolbar > div:nth-child(2) { |
| 134 |
margin: auto 20px; |
| 135 |
} |
| 136 |
.wpda-dashboard-toolbar > div > div:last-child { |
| 137 |
margin-right: 20px; |
| 138 |
} |
| 139 |
.wpda-nowrap { |
| 140 |
white-space: nowrap; |
| 141 |
} |
| 142 |
.wpda-promotion { |
| 143 |
font-size: 12px; |
| 144 |
} |
| 145 |
.wpda-promotion i.fas.fa-star { |
| 146 |
font-weight: 600; |
| 147 |
} |
| 148 |
.wpda-promotion a { |
| 149 |
text-decoration: none; |
| 150 |
} |
| 151 |
.wpda-add-panel { |
| 152 |
margin-left: -20px; |
| 153 |
padding: 10px 0 0 20px; |
| 154 |
background-color: #fff; |
| 155 |
border-bottom: 1px solid #c3c4c7; |
| 156 |
} |
| 157 |
.wpda-add-panel form { |
| 158 |
padding: 0 20px 0 0; |
| 159 |
} |
| 160 |
.wpda-add-panel label { |
| 161 |
font-weight: normal; |
| 162 |
display: inline-block; |
| 163 |
width: 120px; |
| 164 |
text-align: right; |
| 165 |
padding-right: 5px; |
| 166 |
} |
| 167 |
.wpda-add-panel div { |
| 168 |
margin: 0; |
| 169 |
padding: 0; |
| 170 |
} |
| 171 |
.wpda-add-panel div { |
| 172 |
padding-bottom: 2px; |
| 173 |
} |
| 174 |
.wpda-add-panel div:last-child { |
| 175 |
padding-bottom: 10px; |
| 176 |
} |
| 177 |
.wpda-dashboard-content { |
| 178 |
width: 100%; |
| 179 |
padding-top: 20px; |
| 180 |
display: flex; |
| 181 |
flex-direction: row; |
| 182 |
} |
| 183 |
.wpda-dashboard-column { |
| 184 |
padding-right: 20px; |
| 185 |
width: 0; |
| 186 |
} |
| 187 |
.wpda-dashboard-content .wpda-dashboard-column-1 { |
| 188 |
flex: 1 1 100%; |
| 189 |
} |
| 190 |
.wpda-dashboard-content .wpda-dashboard-column-2 { |
| 191 |
flex: 1 1 50%; |
| 192 |
} |
| 193 |
.wpda-dashboard-content .wpda-dashboard-column-3 { |
| 194 |
flex: 1 1 33%; |
| 195 |
} |
| 196 |
.wpda-dashboard-content .wpda-dashboard-column-4 { |
| 197 |
flex: 1 1 25%; |
| 198 |
} |
| 199 |
.wpda_nav_title { |
| 200 |
font-size: 16px; |
| 201 |
font-weight: bold; |
| 202 |
padding-left: 4px; |
| 203 |
} |
| 204 |
.wpda_nav_toggle { |
| 205 |
font-size: 16px; |
| 206 |
font-weight: bold; |
| 207 |
cursor: pointer; |
| 208 |
} |
| 209 |
#wpda-dashboard-mobile ul { |
| 210 |
display: none; |
| 211 |
flex-direction: column; |
| 212 |
flex-wrap: wrap; |
| 213 |
justify-content: space-between; |
| 214 |
text-align: left; |
| 215 |
list-style-type: none; |
| 216 |
margin-top: 0; |
| 217 |
margin-bottom: 0; |
| 218 |
} |
| 219 |
#wpda-dashboard-mobile ul li.menu-item { |
| 220 |
cursor: pointer; |
| 221 |
font-weight: bold; |
| 222 |
padding: 8px 10px; |
| 223 |
margin: 0; |
| 224 |
} |
| 225 |
#wpda-dashboard-mobile ul li.menu-item a { |
| 226 |
text-decoration: none; |
| 227 |
color: inherit; |
| 228 |
} |
| 229 |
#wpda-dashboard-mobile ul li.menu-item:hover { |
| 230 |
background-color: grey; |
| 231 |
color: white; |
| 232 |
} |
| 233 |
#wpda-dashboard-mobile .fas, |
| 234 |
#wpda-dashboard-mobile .fa-solid { |
| 235 |
width: 20px; |
| 236 |
} |
| 237 |
.wpda-separator { |
| 238 |
border-bottom: 1px solid #c3c4c7; |
| 239 |
} |
| 240 |
|
| 241 |
div.wpda-widget-content div.wpda-dashboard-chart-settings, |
| 242 |
div.wpda-widget-content div.wpda-dashboard-chart-settings div { |
| 243 |
display: block; |
| 244 |
padding: 0 0 2px 0; |
| 245 |
} |
| 246 |
|
| 247 |
div.wpda-widget-content div.wpda-dashboard-chart-settings textarea { |
| 248 |
display: block; |
| 249 |
} |
| 250 |
|
| 251 |
.wpda_insert_query_builder { |
| 252 |
float: right; |
| 253 |
} |
| 254 |
|
| 255 |
textarea.wpda_chart_sql { |
| 256 |
width: 100% !important; |
| 257 |
min-height: 160px; |
| 258 |
padding: 10px; |
| 259 |
|
| 260 |
} |
| 261 |
|
| 262 |
.wpda-dashboard-chart-settings-buttons { |
| 263 |
text-align: right; |
| 264 |
padding-top: 10px !important; |
| 265 |
} |
| 266 |
|
| 267 |
fieldset.wpda_fieldset.wpda_fieldset_dashboard { |
| 268 |
padding-top: 2px; |
| 269 |
padding-bottom: 2px; |
| 270 |
margin-bottom: 10px; |
| 271 |
} |
| 272 |
|
| 273 |
fieldset.wpda_fieldset.wpda_fieldset_chart_layout label { |
| 274 |
display: inline-block; |
| 275 |
width: 60px; |
| 276 |
} |
| 277 |
|
| 278 |
div.wpda-dailog-layout div { |
| 279 |
padding: 2px; |
| 280 |
} |
| 281 |
|
| 282 |
div.wpda-dailog-layout label { |
| 283 |
display: inline-block; |
| 284 |
width: 100px; |
| 285 |
} |
| 286 |
|
| 287 |
div.wpda-dailog-layout fieldset > div > textarea { |
| 288 |
width: 100%; |
| 289 |
height: 120px; |
| 290 |
} |
| 291 |
|
| 292 |
div.wpda-dailog-layout fieldset > legend > span { |
| 293 |
text-decoration: none; |
| 294 |
outline: 0; |
| 295 |
cursor: pointer; |
| 296 |
} |
| 297 |
|
| 298 |
div.ui-dialog div.ui-dialog-content { |
| 299 |
padding: 1px; |
| 300 |
} |
| 301 |
|
| 302 |
.ui-dialog .ui-dialog-buttonpane { |
| 303 |
border-width: 0; |
| 304 |
padding: 0; |
| 305 |
margin: 0; |
| 306 |
} |
| 307 |
|
| 308 |
#adminmenuwrap { |
| 309 |
margin-top: 0 !important; |
| 310 |
} |
| 311 |
|
| 312 |
/* WIDGET */ |
| 313 |
|
| 314 |
.wpda-widget { |
| 315 |
margin-bottom: 20px; |
| 316 |
font-size: 13px; |
| 317 |
} |
| 318 |
.wpda-widget:last-child { |
| 319 |
margin-bottom: 0; |
| 320 |
} |
| 321 |
.wpda-widget .ui-widget-header { |
| 322 |
font-size: 120%; |
| 323 |
} |
| 324 |
.wpda-widget .wpda-chart-container { |
| 325 |
overflow: auto; |
| 326 |
padding: 10px !important; |
| 327 |
} |
| 328 |
.wpda-widget .wpda-chart-container .wpda_widget_chart_selection { |
| 329 |
display: inline-block; |
| 330 |
width: calc( 100% - 15px ); |
| 331 |
padding-right: 0; |
| 332 |
} |
| 333 |
.wpda-widget .wpda-chart-container .wpda_widget_chart_selection select { |
| 334 |
float: right; |
| 335 |
} |
| 336 |
.wpda_widget_chart_container { |
| 337 |
padding: 5px; |
| 338 |
} |
| 339 |
.wpda-widget-content div div { |
| 340 |
align-self: center; |
| 341 |
} |
| 342 |
.wpda-widget-content div.ui-tabs { |
| 343 |
margin: 0 !important; |
| 344 |
padding: 0 !important; |
| 345 |
border: none !important; |
| 346 |
} |
| 347 |
.wpda-widget-content div.ui-tabs.wpda-dbms-container { |
| 348 |
padding: 12px 16px 16px 16px !important; |
| 349 |
} |
| 350 |
.wpda-widget-content .ui-tabs .ui-tabs-panel { |
| 351 |
width: 100%; |
| 352 |
border: none; |
| 353 |
padding: 0; |
| 354 |
margin: 0; |
| 355 |
} |
| 356 |
.wpda-widget-content ul.ui-tabs-nav { |
| 357 |
background: unset; |
| 358 |
border: none !important; |
| 359 |
border-bottom: 1px solid rgb(170, 170, 170) !important; |
| 360 |
width: 100%; |
| 361 |
border-radius: 0; |
| 362 |
padding-right: 0; |
| 363 |
margin: 0 -0.2em 0 -0.1em; |
| 364 |
|
| 365 |
background: unset; |
| 366 |
border: none !important; |
| 367 |
border-bottom: 1px solid rgb(170, 170, 170) !important; |
| 368 |
width: -webkit-fill-available; |
| 369 |
border-radius: 0; |
| 370 |
margin: 0 -4px; |
| 371 |
padding: 0; |
| 372 |
} |
| 373 |
.wpda-widget-content div:first-child { |
| 374 |
display: flex; |
| 375 |
flex-direction: row; |
| 376 |
justify-content: space-between; |
| 377 |
align-items: center; |
| 378 |
border-radius: 4px 4px 0 0; |
| 379 |
padding: 6px; |
| 380 |
} |
| 381 |
.wpda-widget-content div:first-child span.icons i { |
| 382 |
cursor: pointer; |
| 383 |
} |
| 384 |
.wpda-widget-content div:last-child { |
| 385 |
display: flex; |
| 386 |
flex-direction: column; |
| 387 |
align-items: flex-start; |
| 388 |
border-radius: 0 0 4px 4px; |
| 389 |
border-top: none; |
| 390 |
box-sizing: border-box; |
| 391 |
width: 100%; |
| 392 |
} |
| 393 |
table.wpda_dbms_table { |
| 394 |
width: 100%; |
| 395 |
margin: 10px; |
| 396 |
} |
| 397 |
table.wpda_dbms_table tbody tr th.wpda-widget-dbms-separator { |
| 398 |
padding-top: 20px; |
| 399 |
} |
| 400 |
table.wpda_dbms_table tbody tr th.wpda-widget-dbms-separator-end { |
| 401 |
padding-bottom: 10px; |
| 402 |
} |
| 403 |
table.wpda_dbms_table tbody tr th { |
| 404 |
background-color: transparent; |
| 405 |
text-align: right; |
| 406 |
} |
| 407 |
table.wpda_dbms_table tbody th { |
| 408 |
white-space: nowrap; |
| 409 |
} |
| 410 |
table.wpda_dbms_table tbody tr th.wpda-widget-dbms-separator, |
| 411 |
table.wpda_dbms_table tbody tr th.wpda-dbms-link { |
| 412 |
text-align: left; |
| 413 |
} |
| 414 |
table.wpda-widget-dbms { |
| 415 |
table-layout: fixed; |
| 416 |
width: 100%; |
| 417 |
margin-top: 5px; |
| 418 |
} |
| 419 |
table.wpda-widget-dbms thead tr { |
| 420 |
display: block; |
| 421 |
background-color: #555; |
| 422 |
color: #fff; |
| 423 |
} |
| 424 |
table.wpda-widget-dbms tbody { |
| 425 |
display: block; |
| 426 |
height: 240px; |
| 427 |
overflow-y: scroll; |
| 428 |
border-collapse: collapse; |
| 429 |
} |
| 430 |
table.wpda-widget-dbms th { |
| 431 |
text-align: left; |
| 432 |
} |
| 433 |
.wpda-widget-dbms tbody tr:hover { |
| 434 |
background: #ddd; |
| 435 |
} |
| 436 |
.wpda-widget-dbms th { |
| 437 |
padding: 5px 4px; |
| 438 |
} |
| 439 |
.wpda-widget-dbms td { |
| 440 |
padding: 5px; |
| 441 |
} |
| 442 |
.wpda-dbms-link { |
| 443 |
cursor: pointer; |
| 444 |
} |
| 445 |
.ui-widget { |
| 446 |
font-family: inherit !important; |
| 447 |
font-size: inherit !important; |
| 448 |
} |
| 449 |
|
| 450 |
div.wpda-dashboard-content div.dataTables_wrapper, |
| 451 |
div.wpda-dashboard-content div.dataTables_wrapper div.dt-buttons, |
| 452 |
div.wpda-dashboard-content div.dataTables_wrapper div.dataTables_length, |
| 453 |
div.wpda-dashboard-content div.dataTables_wrapper div.dataTables_paginate, |
| 454 |
div.wpda-dashboard-content div.dataTables_wrapper div.DataTables_sort_wrapper { |
| 455 |
display: block; |
| 456 |
} |
| 457 |
div.wpda-dashboard-content div.dataTables_wrapper div.dataTables_wrapper, |
| 458 |
div.wpda-dashboard-content div.dataTables_wrapper div.dataTables_length, |
| 459 |
div.wpda-dashboard-content div.dataTables_wrapper div.dt-buttons, |
| 460 |
div.wpda-dashboard-content div.dataTables_wrapper div.dataTables_filter, |
| 461 |
div.wpda-dashboard-content div.dataTables_wrapper div.dataTables_info, |
| 462 |
div.wpda-dashboard-content div.dataTables_wrapper div.dataTables_paginate { |
| 463 |
padding: 0; |
| 464 |
} |
| 465 |
div.wpda-dashboard-content div.dataTables_wrapper div.dataTables_length { |
| 466 |
padding-left: 10px; |
| 467 |
} |
| 468 |
div.wpda-dashboard-content div.dataTables_wrapper div.dataTables_filter { |
| 469 |
margin-right: -2px; |
| 470 |
} |
| 471 |
div.wpda-dashboard-content div.dataTables_wrapper div.dataTables_paginate { |
| 472 |
width: auto; |
| 473 |
margin-right: -2px; |
| 474 |
} |
| 475 |
div.wpda-dashboard-content div.dataTables_wrapper th { |
| 476 |
text-align: left; |
| 477 |
} |
| 478 |
div.wpda-dashboard-content div.dataTables_wrapper th.wpdaforms-action-icons { |
| 479 |
text-align: right; |
| 480 |
} |
| 481 |
|
| 482 |
div.wpda-dashboard-content div.wpdadataproject_menu, |
| 483 |
div.wpda-dashboard-content div.wpdadataproject_menu_items, |
| 484 |
div.wpda-dashboard-content div.wpdadataproject_menu_pages, |
| 485 |
div.wpda-dashboard-content div.wpdadataproject_menu_pages div { |
| 486 |
display: block; |
| 487 |
padding: 0; |
| 488 |
} |
| 489 |
div.wpda-dashboard-content div.wpdadataproject_menu { |
| 490 |
padding: 10px 10px 0 10px; |
| 491 |
} |
| 492 |
div.wpda-dashboard-content div.wpdadataproject_menu_pages { |
| 493 |
padding: 0 10px 10px 10px; |
| 494 |
} |
| 495 |
div.wpda-dashboard-content table.ui-widget-content { |
| 496 |
border: none; |
| 497 |
} |
| 498 |
div.wpda-dashboard-content div.wpdadataproject_menu .ui-menu { |
| 499 |
margin-bottom: 7px; |
| 500 |
} |
| 501 |
div.wpda-dashboard-content div.wpdadataproject_menu .ui-menu li div:hover { |
| 502 |
background: #f6f7f7 !important; |
| 503 |
} |
| 504 |
div.wpda-dashboard-content div.wpdadataforms_table div.dt-buttons { |
| 505 |
margin-bottom: 10px; |
| 506 |
} |
| 507 |
div.wpda-dashboard-content div.wpdadataforms_table div.dataTables_length { |
| 508 |
padding-left: 0; |
| 509 |
} |
| 510 |
div.wpdadataforms_modal .dt-buttons { |
| 511 |
text-align: right; |
| 512 |
width: 100%; |
| 513 |
} |
| 514 |
div.wpdadataforms_modal .ui-toolbar { |
| 515 |
clear: both; |
| 516 |
} |
| 517 |
|
| 518 |
div.wpda-dashboard-content table.wpda-datatable { |
| 519 |
padding: 10px 0; |
| 520 |
} |
| 521 |
div.wpda-dashboard-content button.dt-button { |
| 522 |
margin: 0; |
| 523 |
height: 30px; |
| 524 |
} |
| 525 |
|
| 526 |
table.dataTable thead .sorting, |
| 527 |
table.dataTable thead .sorting_asc, |
| 528 |
table.dataTable thead .sorting_desc { |
| 529 |
background-image: none; |
| 530 |
} |
| 531 |
|
| 532 |
/* TOOLTIP */ |
| 533 |
|
| 534 |
.wpda_tooltip_css { |
| 535 |
background: black; |
| 536 |
color: white; |
| 537 |
border: 2px solid white; |
| 538 |
font: bold 10px "Helvetica Neue", Sans-Serif; |
| 539 |
box-shadow: 0 0 7px black; |
| 540 |
} |
| 541 |
.wpda_tooltip_css_ic { |
| 542 |
background: black; |
| 543 |
color: white; |
| 544 |
border: 2px solid white; |
| 545 |
font: bold 10px "Helvetica Neue", Sans-Serif; |
| 546 |
text-transform: none; |
| 547 |
box-shadow: 0 0 7px black; |
| 548 |
} |
| 549 |
i.wpda_tooltip:hover { |
| 550 |
cursor: pointer; |
| 551 |
} |
| 552 |
.wpda_tooltip_dashboard { |
| 553 |
background: black; |
| 554 |
color: white; |
| 555 |
border: 2px solid white; |
| 556 |
font: bold 10px "Helvetica Neue", Sans-Serif; |
| 557 |
box-shadow: 0 0 7px black; |
| 558 |
} |
| 559 |
.wpda_tooltip_icons_css, .arrow:after { |
| 560 |
background: black; |
| 561 |
border: 2px solid white; |
| 562 |
} |
| 563 |
.wpda_tooltip_icons_css { |
| 564 |
padding: 10px 20px; |
| 565 |
color: white; |
| 566 |
border-radius: 20px; |
| 567 |
font: bold 10px "Helvetica Neue", Sans-Serif; |
| 568 |
box-shadow: 0 0 7px black; |
| 569 |
text-align: center; |
| 570 |
} |
| 571 |
.arrow { |
| 572 |
width: 70px; |
| 573 |
height: 16px; |
| 574 |
overflow: hidden; |
| 575 |
position: absolute; |
| 576 |
left: 50%; |
| 577 |
margin-left: -35px; |
| 578 |
bottom: -16px; |
| 579 |
} |
| 580 |
.arrow.top { |
| 581 |
top: -16px; |
| 582 |
bottom: auto; |
| 583 |
} |
| 584 |
.arrow.left { |
| 585 |
left: 20%; |
| 586 |
} |
| 587 |
.arrow:after { |
| 588 |
content: ""; |
| 589 |
position: absolute; |
| 590 |
left: 20px; |
| 591 |
top: -20px; |
| 592 |
width: 25px; |
| 593 |
height: 25px; |
| 594 |
box-shadow: 6px 5px 9px -9px black; |
| 595 |
-webkit-transform: rotate(45deg); |
| 596 |
-ms-transform: rotate(45deg); |
| 597 |
transform: rotate(45deg); |
| 598 |
} |
| 599 |
.arrow.top:after { |
| 600 |
bottom: -20px; |
| 601 |
top: auto; |
| 602 |
} |
| 603 |
|
| 604 |
/* CHART TYPES */ |
| 605 |
ul.wpda_google_chart_types { |
| 606 |
list-style-type: none; |
| 607 |
padding: 0; |
| 608 |
margin: 0; |
| 609 |
} |
| 610 |
ul.wpda_google_chart_types li { |
| 611 |
display: inline-block; |
| 612 |
} |
| 613 |
ul.wpda_google_chart_types li input[type="checkbox"] { |
| 614 |
display: none; |
| 615 |
} |
| 616 |
ul.wpda_google_chart_types li label { |
| 617 |
border: 1px solid #fff; |
| 618 |
padding: 10px; |
| 619 |
display: block; |
| 620 |
position: relative; |
| 621 |
margin: 0 2px; |
| 622 |
cursor: pointer; |
| 623 |
-webkit-touch-callout: none; |
| 624 |
-webkit-user-select: none; |
| 625 |
-khtml-user-select: none; |
| 626 |
-moz-user-select: none; |
| 627 |
-ms-user-select: none; |
| 628 |
user-select: none; |
| 629 |
} |
| 630 |
ul.wpda_google_chart_types li label::before { |
| 631 |
background-color: white; |
| 632 |
color: white; |
| 633 |
content: " "; |
| 634 |
display: block; |
| 635 |
border-radius: 50%; |
| 636 |
border: 1px solid #c3c4c7; |
| 637 |
position: absolute; |
| 638 |
top: -5px; |
| 639 |
left: -5px; |
| 640 |
width: 25px; |
| 641 |
height: 25px; |
| 642 |
text-align: center; |
| 643 |
line-height: 25px; |
| 644 |
transition-duration: 0.4s; |
| 645 |
transform: scale(0); |
| 646 |
} |
| 647 |
ul.wpda_google_chart_types li label img { |
| 648 |
height: 120px; |
| 649 |
width: 120px; |
| 650 |
transition-duration: 0.2s; |
| 651 |
transform-origin: 50% 50%; |
| 652 |
margin: 4px 4px 0 4px; |
| 653 |
} |
| 654 |
ul.wpda_google_chart_types li input[type="checkbox"]:checked+label { |
| 655 |
border-color: #8c8f94; |
| 656 |
border-radius: 4px; |
| 657 |
} |
| 658 |
ul.wpda_google_chart_types li input[type="checkbox"]:checked+label::before { |
| 659 |
content: "\2713"; |
| 660 |
background-color: #8c8f94; |
| 661 |
transform: scale(1.4); |
| 662 |
left: 119px; |
| 663 |
} |
| 664 |
ul.wpda_google_chart_types li input[type="checkbox"]:checked+label img { |
| 665 |
box-shadow: 0 0 5px #dedede; |
| 666 |
} |
| 667 |
|
| 668 |
div.wpda-query-select-content textarea { |
| 669 |
width: 100%; |
| 670 |
height: 100px; |
| 671 |
max-height: 100px; |
| 672 |
} |
| 673 |
.ui-dialog { |
| 674 |
z-index: 999999 !important; |
| 675 |
} |
| 676 |
|
| 677 |
div.wpda_dashboard_free_message { |
| 678 |
padding: 4px; |
| 679 |
text-align: center; |
| 680 |
} |
| 681 |
div.wpda_dashboard_free_message table { |
| 682 |
margin-left: auto; |
| 683 |
margin-right: auto; |
| 684 |
} |
| 685 |
|
| 686 |
div.wpda-widget-content .wpda_widget_chart_container * { |
| 687 |
border-radius: 0 !important; |
| 688 |
} |
| 689 |
div.wpda_widget_chart_container .goog-inline-block, |
| 690 |
div.wpda_widget_chart_container .google-visualization-table-page-numbers { |
| 691 |
display: inline-block !important; |
| 692 |
width: unset !important; |
| 693 |
} |
| 694 |
div.wpda_widget_chart_container .google-visualization-table, |
| 695 |
div.wpda_widget_chart_container .google-visualization-table>div { |
| 696 |
padding: 0 !important; |
| 697 |
} |
| 698 |
div.wpda_widget_chart_container .google-visualization-table .gradient, |
| 699 |
div.wpda_widget_chart_container .goog-custom-button { |
| 700 |
background-image: none !important; |
| 701 |
background: #ddd !important; |
| 702 |
padding: 0 !important; |
| 703 |
} |
| 704 |
div.wpda_widget_chart_container .google-visualization-table-page-numbers a { |
| 705 |
width: 20px; |
| 706 |
text-align: center !important; |
| 707 |
} |
| 708 |
|
| 709 |
div.wpda-add-share-dashboard { |
| 710 |
display: grid; |
| 711 |
grid-template-columns: 1fr 1fr; |
| 712 |
} |
| 713 |
|
| 714 |
div.google-visualization-tooltip { |
| 715 |
pointer-events: none |
| 716 |
} |
| 717 |
|
| 718 |
.wpda-dashboard-share { |
| 719 |
padding-right: 8px; |
| 720 |
} |
| 721 |
fieldset.wpda-dashboard-rename label { |
| 722 |
width: 100px; |
| 723 |
display: inline-block; |
| 724 |
} |
| 725 |
div[aria-describedby=shareDashboard] .ui-dialog-title, |
| 726 |
div[aria-describedby=shareWidget] .ui-dialog-title { |
| 727 |
overflow: visible; |
| 728 |
margin-right: 20px; |
| 729 |
} |
| 730 |
#shareDashboard select { |
| 731 |
box-sizing: border-box; |
| 732 |
} |
| 733 |
|
| 734 |
div.wpda-widget-content .dataTables_wrapper .dataTables_length select { |
| 735 |
padding-right: 1.6em; |
| 736 |
} |
| 737 |
|
| 738 |
/* Remove space created by other plugins */ |
| 739 |
div#wpbody-content div:nth-child(2).wrap, |
| 740 |
div#wpbody-content div:nth-child(3).wrap { |
| 741 |
margin: 0; |
| 742 |
} |
| 743 |
|
| 744 |
/* Look and feel sort icons should be same as in publications and projects */ |
| 745 |
div.wpdadataforms_table th.sorting:before, |
| 746 |
div.wpdadataforms_table th.sorting:after { |
| 747 |
display: none !important; |
| 748 |
} |
| 749 |
div.wpda_publication_container .DataTables_sort_icon { |
| 750 |
display: none; |
| 751 |
} |
| 752 |
div.wpda_publication_container th.sorting { |
| 753 |
padding-right: 20px !important; |
| 754 |
} |
| 755 |
|
| 756 |
table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before, |
| 757 |
table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control:before { |
| 758 |
line-height: 0.9em; |
| 759 |
} |
| 760 |
|
| 761 |
.wpda_publication_container .dataTables_scroll { |
| 762 |
padding-top: 10px; |
| 763 |
} |
| 764 |
.wpda_publication_container .dataTables_scroll .dataTables_scrollHead, |
| 765 |
.wpda_publication_container .dataTables_scroll .dataTables_scrollHeadInner, |
| 766 |
.wpda_publication_container .dataTables_scroll table.wpda-datatable, |
| 767 |
.wpda_publication_container .dataTables_scroll .dataTables_scrollFoot, |
| 768 |
.wpda_publication_container .dataTables_scroll .dataTables_scrollFootInner{ |
| 769 |
padding: 0; |
| 770 |
margin: 0; |
| 771 |
} |
| 772 |
.wpda_publication_container .dataTables_scroll .dataTables_scrollFoot { |
| 773 |
margin-bottom: 10px; |
| 774 |
} |
| 775 |
|
| 776 |
.dataTables_scrollFoot { |
| 777 |
display: block !important; |
| 778 |
} |