| 1 |
/* WP Adminify Utilities */ |
| 2 |
.pagination-previous, |
| 3 |
.pagination-next, |
| 4 |
.pagination-link, |
| 5 |
.pagination-ellipsis { |
| 6 |
-moz-appearance: none; |
| 7 |
-webkit-appearance: none; |
| 8 |
-webkit-box-align: center; |
| 9 |
-webkit-align-items: center; |
| 10 |
-ms-flex-align: center; |
| 11 |
align-items: center; |
| 12 |
border: 1px solid transparent; |
| 13 |
-webkit-border-radius: 4px; |
| 14 |
border-radius: 4px; |
| 15 |
-webkit-box-shadow: none; |
| 16 |
box-shadow: none; |
| 17 |
display: -webkit-inline-box; |
| 18 |
display: -webkit-inline-flex; |
| 19 |
display: -ms-inline-flexbox; |
| 20 |
display: inline-flex; |
| 21 |
font-size: 1rem; |
| 22 |
height: 2.5em; |
| 23 |
-webkit-box-pack: start; |
| 24 |
-webkit-justify-content: flex-start; |
| 25 |
-ms-flex-pack: start; |
| 26 |
justify-content: flex-start; |
| 27 |
line-height: 1.5; |
| 28 |
padding-bottom: -webkit-calc(0.5em - 1px); |
| 29 |
padding-bottom: calc(0.5em - 1px); |
| 30 |
padding-left: -webkit-calc(0.75em - 1px); |
| 31 |
padding-left: calc(0.75em - 1px); |
| 32 |
padding-right: -webkit-calc(0.75em - 1px); |
| 33 |
padding-right: calc(0.75em - 1px); |
| 34 |
padding-top: -webkit-calc(0.5em - 1px); |
| 35 |
padding-top: calc(0.5em - 1px); |
| 36 |
position: relative; |
| 37 |
vertical-align: top; |
| 38 |
} |
| 39 |
.pagination-previous:focus, |
| 40 |
.pagination-next:focus, |
| 41 |
.pagination-link:focus, |
| 42 |
.pagination-ellipsis:focus, .is-focused.pagination-previous, |
| 43 |
.is-focused.pagination-next, |
| 44 |
.is-focused.pagination-link, |
| 45 |
.is-focused.pagination-ellipsis, .pagination-previous:active, |
| 46 |
.pagination-next:active, |
| 47 |
.pagination-link:active, |
| 48 |
.pagination-ellipsis:active, .is-active.pagination-previous, |
| 49 |
.is-active.pagination-next, |
| 50 |
.is-active.pagination-link, |
| 51 |
.is-active.pagination-ellipsis { |
| 52 |
outline: none; |
| 53 |
} |
| 54 |
[disabled].pagination-previous, |
| 55 |
[disabled].pagination-next, |
| 56 |
[disabled].pagination-link, |
| 57 |
[disabled].pagination-ellipsis, fieldset[disabled] .pagination-previous, |
| 58 |
fieldset[disabled] .pagination-next, |
| 59 |
fieldset[disabled] .pagination-link, |
| 60 |
fieldset[disabled] .pagination-ellipsis { |
| 61 |
cursor: not-allowed; |
| 62 |
} |
| 63 |
|
| 64 |
.pagination-previous, |
| 65 |
.pagination-next, |
| 66 |
.pagination-link, |
| 67 |
.pagination-ellipsis { |
| 68 |
-webkit-touch-callout: none; |
| 69 |
-webkit-user-select: none; |
| 70 |
-moz-user-select: none; |
| 71 |
-ms-user-select: none; |
| 72 |
user-select: none; |
| 73 |
} |
| 74 |
|
| 75 |
.navbar-link:not(.is-arrowless)::after { |
| 76 |
border: 3px solid transparent; |
| 77 |
-webkit-border-radius: 2px; |
| 78 |
border-radius: 2px; |
| 79 |
border-right: 0; |
| 80 |
border-top: 0; |
| 81 |
content: " "; |
| 82 |
display: block; |
| 83 |
height: 0.625em; |
| 84 |
margin-top: -0.4375em; |
| 85 |
pointer-events: none; |
| 86 |
position: absolute; |
| 87 |
top: 50%; |
| 88 |
-webkit-transform: rotate(-45deg); |
| 89 |
-ms-transform: rotate(-45deg); |
| 90 |
transform: rotate(-45deg); |
| 91 |
-webkit-transform-origin: center; |
| 92 |
-ms-transform-origin: center; |
| 93 |
transform-origin: center; |
| 94 |
width: 0.625em; |
| 95 |
} |
| 96 |
|
| 97 |
.pagination:not(:last-child) { |
| 98 |
margin-bottom: 1.5rem; |
| 99 |
} |
| 100 |
|
| 101 |
/* WP Adminify Components */ |
| 102 |
.dropdown { |
| 103 |
display: -webkit-inline-box; |
| 104 |
display: -webkit-inline-flex; |
| 105 |
display: -ms-inline-flexbox; |
| 106 |
display: inline-flex; |
| 107 |
position: relative; |
| 108 |
vertical-align: top; |
| 109 |
} |
| 110 |
.dropdown.is-active .dropdown-menu, .dropdown.is-hoverable:hover .dropdown-menu { |
| 111 |
display: block; |
| 112 |
} |
| 113 |
.dropdown.is-right .dropdown-menu { |
| 114 |
left: auto; |
| 115 |
right: 0; |
| 116 |
} |
| 117 |
.dropdown.is-up .dropdown-menu { |
| 118 |
bottom: 100%; |
| 119 |
padding-bottom: 4px; |
| 120 |
padding-top: initial; |
| 121 |
top: auto; |
| 122 |
} |
| 123 |
|
| 124 |
.dropdown-menu { |
| 125 |
display: none; |
| 126 |
left: 0; |
| 127 |
min-width: 12rem; |
| 128 |
padding-top: 4px; |
| 129 |
position: absolute; |
| 130 |
top: 100%; |
| 131 |
z-index: 20; |
| 132 |
} |
| 133 |
|
| 134 |
.dropdown-content { |
| 135 |
-webkit-border-radius: 4px; |
| 136 |
border-radius: 4px; |
| 137 |
-webkit-box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02); |
| 138 |
box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02); |
| 139 |
padding-bottom: 0.5rem; |
| 140 |
padding-top: 0.5rem; |
| 141 |
} |
| 142 |
|
| 143 |
.dropdown-item { |
| 144 |
display: block; |
| 145 |
font-size: 0.875rem; |
| 146 |
line-height: 1.5; |
| 147 |
padding: 0.375rem 1rem; |
| 148 |
position: relative; |
| 149 |
} |
| 150 |
|
| 151 |
a.dropdown-item, |
| 152 |
button.dropdown-item { |
| 153 |
padding-right: 3rem; |
| 154 |
text-align: inherit; |
| 155 |
white-space: nowrap; |
| 156 |
width: 100%; |
| 157 |
} |
| 158 |
|
| 159 |
.media { |
| 160 |
-webkit-box-align: start; |
| 161 |
-webkit-align-items: flex-start; |
| 162 |
-ms-flex-align: start; |
| 163 |
align-items: flex-start; |
| 164 |
display: -webkit-box; |
| 165 |
display: -webkit-flex; |
| 166 |
display: -ms-flexbox; |
| 167 |
display: flex; |
| 168 |
text-align: inherit; |
| 169 |
} |
| 170 |
|
| 171 |
.media-left { |
| 172 |
-webkit-flex-basis: auto; |
| 173 |
-ms-flex-preferred-size: auto; |
| 174 |
flex-basis: auto; |
| 175 |
-webkit-box-flex: 0; |
| 176 |
-webkit-flex-grow: 0; |
| 177 |
-ms-flex-positive: 0; |
| 178 |
flex-grow: 0; |
| 179 |
-webkit-flex-shrink: 0; |
| 180 |
-ms-flex-negative: 0; |
| 181 |
flex-shrink: 0; |
| 182 |
} |
| 183 |
|
| 184 |
.media-content { |
| 185 |
-webkit-flex-basis: auto; |
| 186 |
-ms-flex-preferred-size: auto; |
| 187 |
flex-basis: auto; |
| 188 |
-webkit-box-flex: 1; |
| 189 |
-webkit-flex-grow: 1; |
| 190 |
-ms-flex-positive: 1; |
| 191 |
flex-grow: 1; |
| 192 |
-webkit-flex-shrink: 1; |
| 193 |
-ms-flex-negative: 1; |
| 194 |
flex-shrink: 1; |
| 195 |
text-align: inherit; |
| 196 |
} |
| 197 |
|
| 198 |
.navbar { |
| 199 |
position: relative; |
| 200 |
z-index: 30; |
| 201 |
} |
| 202 |
.navbar.is-white { |
| 203 |
background-color: white; |
| 204 |
color: #0a0a0a; |
| 205 |
} |
| 206 |
.navbar.is-white .navbar-brand > .navbar-item, |
| 207 |
.navbar.is-white .navbar-brand .navbar-link { |
| 208 |
color: #0a0a0a; |
| 209 |
} |
| 210 |
.navbar.is-white .navbar-brand > a.navbar-item:focus, .navbar.is-white .navbar-brand > a.navbar-item:hover, .navbar.is-white .navbar-brand > a.navbar-item.is-active, |
| 211 |
.navbar.is-white .navbar-brand .navbar-link:focus, |
| 212 |
.navbar.is-white .navbar-brand .navbar-link:hover, |
| 213 |
.navbar.is-white .navbar-brand .navbar-link.is-active { |
| 214 |
background-color: #f2f2f2; |
| 215 |
color: #0a0a0a; |
| 216 |
} |
| 217 |
.navbar.is-white .navbar-brand .navbar-link::after { |
| 218 |
border-color: #0a0a0a; |
| 219 |
} |
| 220 |
.navbar.is-white .navbar-burger { |
| 221 |
color: #0a0a0a; |
| 222 |
} |
| 223 |
@media screen and (min-width: 1024px) { |
| 224 |
.navbar.is-white .navbar-start > .navbar-item, |
| 225 |
.navbar.is-white .navbar-start .navbar-link, |
| 226 |
.navbar.is-white .navbar-end > .navbar-item, |
| 227 |
.navbar.is-white .navbar-end .navbar-link { |
| 228 |
color: #0a0a0a; |
| 229 |
} |
| 230 |
.navbar.is-white .navbar-start > a.navbar-item:focus, .navbar.is-white .navbar-start > a.navbar-item:hover, .navbar.is-white .navbar-start > a.navbar-item.is-active, |
| 231 |
.navbar.is-white .navbar-start .navbar-link:focus, |
| 232 |
.navbar.is-white .navbar-start .navbar-link:hover, |
| 233 |
.navbar.is-white .navbar-start .navbar-link.is-active, |
| 234 |
.navbar.is-white .navbar-end > a.navbar-item:focus, |
| 235 |
.navbar.is-white .navbar-end > a.navbar-item:hover, |
| 236 |
.navbar.is-white .navbar-end > a.navbar-item.is-active, |
| 237 |
.navbar.is-white .navbar-end .navbar-link:focus, |
| 238 |
.navbar.is-white .navbar-end .navbar-link:hover, |
| 239 |
.navbar.is-white .navbar-end .navbar-link.is-active { |
| 240 |
background-color: #f2f2f2; |
| 241 |
color: #0a0a0a; |
| 242 |
} |
| 243 |
.navbar.is-white .navbar-start .navbar-link::after, |
| 244 |
.navbar.is-white .navbar-end .navbar-link::after { |
| 245 |
border-color: #0a0a0a; |
| 246 |
} |
| 247 |
.navbar.is-white .navbar-item.has-dropdown:focus .navbar-link, |
| 248 |
.navbar.is-white .navbar-item.has-dropdown:hover .navbar-link, |
| 249 |
.navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link { |
| 250 |
background-color: #f2f2f2; |
| 251 |
color: #0a0a0a; |
| 252 |
} |
| 253 |
.navbar.is-white .navbar-dropdown a.navbar-item.is-active { |
| 254 |
background-color: white; |
| 255 |
color: #0a0a0a; |
| 256 |
} |
| 257 |
} |
| 258 |
.navbar.is-black { |
| 259 |
background-color: #0a0a0a; |
| 260 |
color: white; |
| 261 |
} |
| 262 |
.navbar.is-black .navbar-brand > .navbar-item, |
| 263 |
.navbar.is-black .navbar-brand .navbar-link { |
| 264 |
color: white; |
| 265 |
} |
| 266 |
.navbar.is-black .navbar-brand > a.navbar-item:focus, .navbar.is-black .navbar-brand > a.navbar-item:hover, .navbar.is-black .navbar-brand > a.navbar-item.is-active, |
| 267 |
.navbar.is-black .navbar-brand .navbar-link:focus, |
| 268 |
.navbar.is-black .navbar-brand .navbar-link:hover, |
| 269 |
.navbar.is-black .navbar-brand .navbar-link.is-active { |
| 270 |
background-color: black; |
| 271 |
color: white; |
| 272 |
} |
| 273 |
.navbar.is-black .navbar-brand .navbar-link::after { |
| 274 |
border-color: white; |
| 275 |
} |
| 276 |
.navbar.is-black .navbar-burger { |
| 277 |
color: white; |
| 278 |
} |
| 279 |
@media screen and (min-width: 1024px) { |
| 280 |
.navbar.is-black .navbar-start > .navbar-item, |
| 281 |
.navbar.is-black .navbar-start .navbar-link, |
| 282 |
.navbar.is-black .navbar-end > .navbar-item, |
| 283 |
.navbar.is-black .navbar-end .navbar-link { |
| 284 |
color: white; |
| 285 |
} |
| 286 |
.navbar.is-black .navbar-start > a.navbar-item:focus, .navbar.is-black .navbar-start > a.navbar-item:hover, .navbar.is-black .navbar-start > a.navbar-item.is-active, |
| 287 |
.navbar.is-black .navbar-start .navbar-link:focus, |
| 288 |
.navbar.is-black .navbar-start .navbar-link:hover, |
| 289 |
.navbar.is-black .navbar-start .navbar-link.is-active, |
| 290 |
.navbar.is-black .navbar-end > a.navbar-item:focus, |
| 291 |
.navbar.is-black .navbar-end > a.navbar-item:hover, |
| 292 |
.navbar.is-black .navbar-end > a.navbar-item.is-active, |
| 293 |
.navbar.is-black .navbar-end .navbar-link:focus, |
| 294 |
.navbar.is-black .navbar-end .navbar-link:hover, |
| 295 |
.navbar.is-black .navbar-end .navbar-link.is-active { |
| 296 |
background-color: black; |
| 297 |
color: white; |
| 298 |
} |
| 299 |
.navbar.is-black .navbar-start .navbar-link::after, |
| 300 |
.navbar.is-black .navbar-end .navbar-link::after { |
| 301 |
border-color: white; |
| 302 |
} |
| 303 |
.navbar.is-black .navbar-item.has-dropdown:focus .navbar-link, |
| 304 |
.navbar.is-black .navbar-item.has-dropdown:hover .navbar-link, |
| 305 |
.navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link { |
| 306 |
background-color: black; |
| 307 |
color: white; |
| 308 |
} |
| 309 |
.navbar.is-black .navbar-dropdown a.navbar-item.is-active { |
| 310 |
background-color: #0a0a0a; |
| 311 |
color: white; |
| 312 |
} |
| 313 |
} |
| 314 |
.navbar.is-light { |
| 315 |
background-color: whitesmoke; |
| 316 |
color: rgba(0, 0, 0, 0.7); |
| 317 |
} |
| 318 |
.navbar.is-light .navbar-brand > .navbar-item, |
| 319 |
.navbar.is-light .navbar-brand .navbar-link { |
| 320 |
color: rgba(0, 0, 0, 0.7); |
| 321 |
} |
| 322 |
.navbar.is-light .navbar-brand > a.navbar-item:focus, .navbar.is-light .navbar-brand > a.navbar-item:hover, .navbar.is-light .navbar-brand > a.navbar-item.is-active, |
| 323 |
.navbar.is-light .navbar-brand .navbar-link:focus, |
| 324 |
.navbar.is-light .navbar-brand .navbar-link:hover, |
| 325 |
.navbar.is-light .navbar-brand .navbar-link.is-active { |
| 326 |
background-color: #e8e8e8; |
| 327 |
color: rgba(0, 0, 0, 0.7); |
| 328 |
} |
| 329 |
.navbar.is-light .navbar-brand .navbar-link::after { |
| 330 |
border-color: rgba(0, 0, 0, 0.7); |
| 331 |
} |
| 332 |
.navbar.is-light .navbar-burger { |
| 333 |
color: rgba(0, 0, 0, 0.7); |
| 334 |
} |
| 335 |
@media screen and (min-width: 1024px) { |
| 336 |
.navbar.is-light .navbar-start > .navbar-item, |
| 337 |
.navbar.is-light .navbar-start .navbar-link, |
| 338 |
.navbar.is-light .navbar-end > .navbar-item, |
| 339 |
.navbar.is-light .navbar-end .navbar-link { |
| 340 |
color: rgba(0, 0, 0, 0.7); |
| 341 |
} |
| 342 |
.navbar.is-light .navbar-start > a.navbar-item:focus, .navbar.is-light .navbar-start > a.navbar-item:hover, .navbar.is-light .navbar-start > a.navbar-item.is-active, |
| 343 |
.navbar.is-light .navbar-start .navbar-link:focus, |
| 344 |
.navbar.is-light .navbar-start .navbar-link:hover, |
| 345 |
.navbar.is-light .navbar-start .navbar-link.is-active, |
| 346 |
.navbar.is-light .navbar-end > a.navbar-item:focus, |
| 347 |
.navbar.is-light .navbar-end > a.navbar-item:hover, |
| 348 |
.navbar.is-light .navbar-end > a.navbar-item.is-active, |
| 349 |
.navbar.is-light .navbar-end .navbar-link:focus, |
| 350 |
.navbar.is-light .navbar-end .navbar-link:hover, |
| 351 |
.navbar.is-light .navbar-end .navbar-link.is-active { |
| 352 |
background-color: #e8e8e8; |
| 353 |
color: rgba(0, 0, 0, 0.7); |
| 354 |
} |
| 355 |
.navbar.is-light .navbar-start .navbar-link::after, |
| 356 |
.navbar.is-light .navbar-end .navbar-link::after { |
| 357 |
border-color: rgba(0, 0, 0, 0.7); |
| 358 |
} |
| 359 |
.navbar.is-light .navbar-item.has-dropdown:focus .navbar-link, |
| 360 |
.navbar.is-light .navbar-item.has-dropdown:hover .navbar-link, |
| 361 |
.navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link { |
| 362 |
background-color: #e8e8e8; |
| 363 |
color: rgba(0, 0, 0, 0.7); |
| 364 |
} |
| 365 |
.navbar.is-light .navbar-dropdown a.navbar-item.is-active { |
| 366 |
background-color: whitesmoke; |
| 367 |
color: rgba(0, 0, 0, 0.7); |
| 368 |
} |
| 369 |
} |
| 370 |
.navbar.is-dark { |
| 371 |
background-color: #363636; |
| 372 |
color: #fff; |
| 373 |
} |
| 374 |
.navbar.is-dark .navbar-brand > .navbar-item, |
| 375 |
.navbar.is-dark .navbar-brand .navbar-link { |
| 376 |
color: #fff; |
| 377 |
} |
| 378 |
.navbar.is-dark .navbar-brand > a.navbar-item:focus, .navbar.is-dark .navbar-brand > a.navbar-item:hover, .navbar.is-dark .navbar-brand > a.navbar-item.is-active, |
| 379 |
.navbar.is-dark .navbar-brand .navbar-link:focus, |
| 380 |
.navbar.is-dark .navbar-brand .navbar-link:hover, |
| 381 |
.navbar.is-dark .navbar-brand .navbar-link.is-active { |
| 382 |
background-color: #292929; |
| 383 |
color: #fff; |
| 384 |
} |
| 385 |
.navbar.is-dark .navbar-brand .navbar-link::after { |
| 386 |
border-color: #fff; |
| 387 |
} |
| 388 |
.navbar.is-dark .navbar-burger { |
| 389 |
color: #fff; |
| 390 |
} |
| 391 |
@media screen and (min-width: 1024px) { |
| 392 |
.navbar.is-dark .navbar-start > .navbar-item, |
| 393 |
.navbar.is-dark .navbar-start .navbar-link, |
| 394 |
.navbar.is-dark .navbar-end > .navbar-item, |
| 395 |
.navbar.is-dark .navbar-end .navbar-link { |
| 396 |
color: #fff; |
| 397 |
} |
| 398 |
.navbar.is-dark .navbar-start > a.navbar-item:focus, .navbar.is-dark .navbar-start > a.navbar-item:hover, .navbar.is-dark .navbar-start > a.navbar-item.is-active, |
| 399 |
.navbar.is-dark .navbar-start .navbar-link:focus, |
| 400 |
.navbar.is-dark .navbar-start .navbar-link:hover, |
| 401 |
.navbar.is-dark .navbar-start .navbar-link.is-active, |
| 402 |
.navbar.is-dark .navbar-end > a.navbar-item:focus, |
| 403 |
.navbar.is-dark .navbar-end > a.navbar-item:hover, |
| 404 |
.navbar.is-dark .navbar-end > a.navbar-item.is-active, |
| 405 |
.navbar.is-dark .navbar-end .navbar-link:focus, |
| 406 |
.navbar.is-dark .navbar-end .navbar-link:hover, |
| 407 |
.navbar.is-dark .navbar-end .navbar-link.is-active { |
| 408 |
background-color: #292929; |
| 409 |
color: #fff; |
| 410 |
} |
| 411 |
.navbar.is-dark .navbar-start .navbar-link::after, |
| 412 |
.navbar.is-dark .navbar-end .navbar-link::after { |
| 413 |
border-color: #fff; |
| 414 |
} |
| 415 |
.navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link, |
| 416 |
.navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link, |
| 417 |
.navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link { |
| 418 |
background-color: #292929; |
| 419 |
color: #fff; |
| 420 |
} |
| 421 |
.navbar.is-dark .navbar-dropdown a.navbar-item.is-active { |
| 422 |
background-color: #363636; |
| 423 |
color: #fff; |
| 424 |
} |
| 425 |
} |
| 426 |
.navbar.is-primary { |
| 427 |
background-color: #00d1b2; |
| 428 |
color: #fff; |
| 429 |
} |
| 430 |
.navbar.is-primary .navbar-brand > .navbar-item, |
| 431 |
.navbar.is-primary .navbar-brand .navbar-link { |
| 432 |
color: #fff; |
| 433 |
} |
| 434 |
.navbar.is-primary .navbar-brand > a.navbar-item:focus, .navbar.is-primary .navbar-brand > a.navbar-item:hover, .navbar.is-primary .navbar-brand > a.navbar-item.is-active, |
| 435 |
.navbar.is-primary .navbar-brand .navbar-link:focus, |
| 436 |
.navbar.is-primary .navbar-brand .navbar-link:hover, |
| 437 |
.navbar.is-primary .navbar-brand .navbar-link.is-active { |
| 438 |
background-color: #00b89c; |
| 439 |
color: #fff; |
| 440 |
} |
| 441 |
.navbar.is-primary .navbar-brand .navbar-link::after { |
| 442 |
border-color: #fff; |
| 443 |
} |
| 444 |
.navbar.is-primary .navbar-burger { |
| 445 |
color: #fff; |
| 446 |
} |
| 447 |
@media screen and (min-width: 1024px) { |
| 448 |
.navbar.is-primary .navbar-start > .navbar-item, |
| 449 |
.navbar.is-primary .navbar-start .navbar-link, |
| 450 |
.navbar.is-primary .navbar-end > .navbar-item, |
| 451 |
.navbar.is-primary .navbar-end .navbar-link { |
| 452 |
color: #fff; |
| 453 |
} |
| 454 |
.navbar.is-primary .navbar-start > a.navbar-item:focus, .navbar.is-primary .navbar-start > a.navbar-item:hover, .navbar.is-primary .navbar-start > a.navbar-item.is-active, |
| 455 |
.navbar.is-primary .navbar-start .navbar-link:focus, |
| 456 |
.navbar.is-primary .navbar-start .navbar-link:hover, |
| 457 |
.navbar.is-primary .navbar-start .navbar-link.is-active, |
| 458 |
.navbar.is-primary .navbar-end > a.navbar-item:focus, |
| 459 |
.navbar.is-primary .navbar-end > a.navbar-item:hover, |
| 460 |
.navbar.is-primary .navbar-end > a.navbar-item.is-active, |
| 461 |
.navbar.is-primary .navbar-end .navbar-link:focus, |
| 462 |
.navbar.is-primary .navbar-end .navbar-link:hover, |
| 463 |
.navbar.is-primary .navbar-end .navbar-link.is-active { |
| 464 |
background-color: #00b89c; |
| 465 |
color: #fff; |
| 466 |
} |
| 467 |
.navbar.is-primary .navbar-start .navbar-link::after, |
| 468 |
.navbar.is-primary .navbar-end .navbar-link::after { |
| 469 |
border-color: #fff; |
| 470 |
} |
| 471 |
.navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link, |
| 472 |
.navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link, |
| 473 |
.navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link { |
| 474 |
background-color: #00b89c; |
| 475 |
color: #fff; |
| 476 |
} |
| 477 |
.navbar.is-primary .navbar-dropdown a.navbar-item.is-active { |
| 478 |
background-color: #00d1b2; |
| 479 |
color: #fff; |
| 480 |
} |
| 481 |
} |
| 482 |
.navbar.is-link { |
| 483 |
background-color: #3273dc; |
| 484 |
color: #fff; |
| 485 |
} |
| 486 |
.navbar.is-link .navbar-brand > .navbar-item, |
| 487 |
.navbar.is-link .navbar-brand .navbar-link { |
| 488 |
color: #fff; |
| 489 |
} |
| 490 |
.navbar.is-link .navbar-brand > a.navbar-item:focus, .navbar.is-link .navbar-brand > a.navbar-item:hover, .navbar.is-link .navbar-brand > a.navbar-item.is-active, |
| 491 |
.navbar.is-link .navbar-brand .navbar-link:focus, |
| 492 |
.navbar.is-link .navbar-brand .navbar-link:hover, |
| 493 |
.navbar.is-link .navbar-brand .navbar-link.is-active { |
| 494 |
background-color: #2366d1; |
| 495 |
color: #fff; |
| 496 |
} |
| 497 |
.navbar.is-link .navbar-brand .navbar-link::after { |
| 498 |
border-color: #fff; |
| 499 |
} |
| 500 |
.navbar.is-link .navbar-burger { |
| 501 |
color: #fff; |
| 502 |
} |
| 503 |
@media screen and (min-width: 1024px) { |
| 504 |
.navbar.is-link .navbar-start > .navbar-item, |
| 505 |
.navbar.is-link .navbar-start .navbar-link, |
| 506 |
.navbar.is-link .navbar-end > .navbar-item, |
| 507 |
.navbar.is-link .navbar-end .navbar-link { |
| 508 |
color: #fff; |
| 509 |
} |
| 510 |
.navbar.is-link .navbar-start > a.navbar-item:focus, .navbar.is-link .navbar-start > a.navbar-item:hover, .navbar.is-link .navbar-start > a.navbar-item.is-active, |
| 511 |
.navbar.is-link .navbar-start .navbar-link:focus, |
| 512 |
.navbar.is-link .navbar-start .navbar-link:hover, |
| 513 |
.navbar.is-link .navbar-start .navbar-link.is-active, |
| 514 |
.navbar.is-link .navbar-end > a.navbar-item:focus, |
| 515 |
.navbar.is-link .navbar-end > a.navbar-item:hover, |
| 516 |
.navbar.is-link .navbar-end > a.navbar-item.is-active, |
| 517 |
.navbar.is-link .navbar-end .navbar-link:focus, |
| 518 |
.navbar.is-link .navbar-end .navbar-link:hover, |
| 519 |
.navbar.is-link .navbar-end .navbar-link.is-active { |
| 520 |
background-color: #2366d1; |
| 521 |
color: #fff; |
| 522 |
} |
| 523 |
.navbar.is-link .navbar-start .navbar-link::after, |
| 524 |
.navbar.is-link .navbar-end .navbar-link::after { |
| 525 |
border-color: #fff; |
| 526 |
} |
| 527 |
.navbar.is-link .navbar-item.has-dropdown:focus .navbar-link, |
| 528 |
.navbar.is-link .navbar-item.has-dropdown:hover .navbar-link, |
| 529 |
.navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link { |
| 530 |
background-color: #2366d1; |
| 531 |
color: #fff; |
| 532 |
} |
| 533 |
.navbar.is-link .navbar-dropdown a.navbar-item.is-active { |
| 534 |
background-color: #3273dc; |
| 535 |
color: #fff; |
| 536 |
} |
| 537 |
} |
| 538 |
.navbar.is-info { |
| 539 |
background-color: #3298dc; |
| 540 |
color: #fff; |
| 541 |
} |
| 542 |
.navbar.is-info .navbar-brand > .navbar-item, |
| 543 |
.navbar.is-info .navbar-brand .navbar-link { |
| 544 |
color: #fff; |
| 545 |
} |
| 546 |
.navbar.is-info .navbar-brand > a.navbar-item:focus, .navbar.is-info .navbar-brand > a.navbar-item:hover, .navbar.is-info .navbar-brand > a.navbar-item.is-active, |
| 547 |
.navbar.is-info .navbar-brand .navbar-link:focus, |
| 548 |
.navbar.is-info .navbar-brand .navbar-link:hover, |
| 549 |
.navbar.is-info .navbar-brand .navbar-link.is-active { |
| 550 |
background-color: #238cd1; |
| 551 |
color: #fff; |
| 552 |
} |
| 553 |
.navbar.is-info .navbar-brand .navbar-link::after { |
| 554 |
border-color: #fff; |
| 555 |
} |
| 556 |
.navbar.is-info .navbar-burger { |
| 557 |
color: #fff; |
| 558 |
} |
| 559 |
@media screen and (min-width: 1024px) { |
| 560 |
.navbar.is-info .navbar-start > .navbar-item, |
| 561 |
.navbar.is-info .navbar-start .navbar-link, |
| 562 |
.navbar.is-info .navbar-end > .navbar-item, |
| 563 |
.navbar.is-info .navbar-end .navbar-link { |
| 564 |
color: #fff; |
| 565 |
} |
| 566 |
.navbar.is-info .navbar-start > a.navbar-item:focus, .navbar.is-info .navbar-start > a.navbar-item:hover, .navbar.is-info .navbar-start > a.navbar-item.is-active, |
| 567 |
.navbar.is-info .navbar-start .navbar-link:focus, |
| 568 |
.navbar.is-info .navbar-start .navbar-link:hover, |
| 569 |
.navbar.is-info .navbar-start .navbar-link.is-active, |
| 570 |
.navbar.is-info .navbar-end > a.navbar-item:focus, |
| 571 |
.navbar.is-info .navbar-end > a.navbar-item:hover, |
| 572 |
.navbar.is-info .navbar-end > a.navbar-item.is-active, |
| 573 |
.navbar.is-info .navbar-end .navbar-link:focus, |
| 574 |
.navbar.is-info .navbar-end .navbar-link:hover, |
| 575 |
.navbar.is-info .navbar-end .navbar-link.is-active { |
| 576 |
background-color: #238cd1; |
| 577 |
color: #fff; |
| 578 |
} |
| 579 |
.navbar.is-info .navbar-start .navbar-link::after, |
| 580 |
.navbar.is-info .navbar-end .navbar-link::after { |
| 581 |
border-color: #fff; |
| 582 |
} |
| 583 |
.navbar.is-info .navbar-item.has-dropdown:focus .navbar-link, |
| 584 |
.navbar.is-info .navbar-item.has-dropdown:hover .navbar-link, |
| 585 |
.navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link { |
| 586 |
background-color: #238cd1; |
| 587 |
color: #fff; |
| 588 |
} |
| 589 |
.navbar.is-info .navbar-dropdown a.navbar-item.is-active { |
| 590 |
background-color: #3298dc; |
| 591 |
color: #fff; |
| 592 |
} |
| 593 |
} |
| 594 |
.navbar.is-success { |
| 595 |
background-color: #48c774; |
| 596 |
color: #fff; |
| 597 |
} |
| 598 |
.navbar.is-success .navbar-brand > .navbar-item, |
| 599 |
.navbar.is-success .navbar-brand .navbar-link { |
| 600 |
color: #fff; |
| 601 |
} |
| 602 |
.navbar.is-success .navbar-brand > a.navbar-item:focus, .navbar.is-success .navbar-brand > a.navbar-item:hover, .navbar.is-success .navbar-brand > a.navbar-item.is-active, |
| 603 |
.navbar.is-success .navbar-brand .navbar-link:focus, |
| 604 |
.navbar.is-success .navbar-brand .navbar-link:hover, |
| 605 |
.navbar.is-success .navbar-brand .navbar-link.is-active { |
| 606 |
background-color: #3abb67; |
| 607 |
color: #fff; |
| 608 |
} |
| 609 |
.navbar.is-success .navbar-brand .navbar-link::after { |
| 610 |
border-color: #fff; |
| 611 |
} |
| 612 |
.navbar.is-success .navbar-burger { |
| 613 |
color: #fff; |
| 614 |
} |
| 615 |
@media screen and (min-width: 1024px) { |
| 616 |
.navbar.is-success .navbar-start > .navbar-item, |
| 617 |
.navbar.is-success .navbar-start .navbar-link, |
| 618 |
.navbar.is-success .navbar-end > .navbar-item, |
| 619 |
.navbar.is-success .navbar-end .navbar-link { |
| 620 |
color: #fff; |
| 621 |
} |
| 622 |
.navbar.is-success .navbar-start > a.navbar-item:focus, .navbar.is-success .navbar-start > a.navbar-item:hover, .navbar.is-success .navbar-start > a.navbar-item.is-active, |
| 623 |
.navbar.is-success .navbar-start .navbar-link:focus, |
| 624 |
.navbar.is-success .navbar-start .navbar-link:hover, |
| 625 |
.navbar.is-success .navbar-start .navbar-link.is-active, |
| 626 |
.navbar.is-success .navbar-end > a.navbar-item:focus, |
| 627 |
.navbar.is-success .navbar-end > a.navbar-item:hover, |
| 628 |
.navbar.is-success .navbar-end > a.navbar-item.is-active, |
| 629 |
.navbar.is-success .navbar-end .navbar-link:focus, |
| 630 |
.navbar.is-success .navbar-end .navbar-link:hover, |
| 631 |
.navbar.is-success .navbar-end .navbar-link.is-active { |
| 632 |
background-color: #3abb67; |
| 633 |
color: #fff; |
| 634 |
} |
| 635 |
.navbar.is-success .navbar-start .navbar-link::after, |
| 636 |
.navbar.is-success .navbar-end .navbar-link::after { |
| 637 |
border-color: #fff; |
| 638 |
} |
| 639 |
.navbar.is-success .navbar-item.has-dropdown:focus .navbar-link, |
| 640 |
.navbar.is-success .navbar-item.has-dropdown:hover .navbar-link, |
| 641 |
.navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link { |
| 642 |
background-color: #3abb67; |
| 643 |
color: #fff; |
| 644 |
} |
| 645 |
.navbar.is-success .navbar-dropdown a.navbar-item.is-active { |
| 646 |
background-color: #48c774; |
| 647 |
color: #fff; |
| 648 |
} |
| 649 |
} |
| 650 |
.navbar.is-warning { |
| 651 |
background-color: #ffdd57; |
| 652 |
color: rgba(0, 0, 0, 0.7); |
| 653 |
} |
| 654 |
.navbar.is-warning .navbar-brand > .navbar-item, |
| 655 |
.navbar.is-warning .navbar-brand .navbar-link { |
| 656 |
color: rgba(0, 0, 0, 0.7); |
| 657 |
} |
| 658 |
.navbar.is-warning .navbar-brand > a.navbar-item:focus, .navbar.is-warning .navbar-brand > a.navbar-item:hover, .navbar.is-warning .navbar-brand > a.navbar-item.is-active, |
| 659 |
.navbar.is-warning .navbar-brand .navbar-link:focus, |
| 660 |
.navbar.is-warning .navbar-brand .navbar-link:hover, |
| 661 |
.navbar.is-warning .navbar-brand .navbar-link.is-active { |
| 662 |
background-color: #ffd83d; |
| 663 |
color: rgba(0, 0, 0, 0.7); |
| 664 |
} |
| 665 |
.navbar.is-warning .navbar-brand .navbar-link::after { |
| 666 |
border-color: rgba(0, 0, 0, 0.7); |
| 667 |
} |
| 668 |
.navbar.is-warning .navbar-burger { |
| 669 |
color: rgba(0, 0, 0, 0.7); |
| 670 |
} |
| 671 |
@media screen and (min-width: 1024px) { |
| 672 |
.navbar.is-warning .navbar-start > .navbar-item, |
| 673 |
.navbar.is-warning .navbar-start .navbar-link, |
| 674 |
.navbar.is-warning .navbar-end > .navbar-item, |
| 675 |
.navbar.is-warning .navbar-end .navbar-link { |
| 676 |
color: rgba(0, 0, 0, 0.7); |
| 677 |
} |
| 678 |
.navbar.is-warning .navbar-start > a.navbar-item:focus, .navbar.is-warning .navbar-start > a.navbar-item:hover, .navbar.is-warning .navbar-start > a.navbar-item.is-active, |
| 679 |
.navbar.is-warning .navbar-start .navbar-link:focus, |
| 680 |
.navbar.is-warning .navbar-start .navbar-link:hover, |
| 681 |
.navbar.is-warning .navbar-start .navbar-link.is-active, |
| 682 |
.navbar.is-warning .navbar-end > a.navbar-item:focus, |
| 683 |
.navbar.is-warning .navbar-end > a.navbar-item:hover, |
| 684 |
.navbar.is-warning .navbar-end > a.navbar-item.is-active, |
| 685 |
.navbar.is-warning .navbar-end .navbar-link:focus, |
| 686 |
.navbar.is-warning .navbar-end .navbar-link:hover, |
| 687 |
.navbar.is-warning .navbar-end .navbar-link.is-active { |
| 688 |
background-color: #ffd83d; |
| 689 |
color: rgba(0, 0, 0, 0.7); |
| 690 |
} |
| 691 |
.navbar.is-warning .navbar-start .navbar-link::after, |
| 692 |
.navbar.is-warning .navbar-end .navbar-link::after { |
| 693 |
border-color: rgba(0, 0, 0, 0.7); |
| 694 |
} |
| 695 |
.navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link, |
| 696 |
.navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link, |
| 697 |
.navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link { |
| 698 |
background-color: #ffd83d; |
| 699 |
color: rgba(0, 0, 0, 0.7); |
| 700 |
} |
| 701 |
.navbar.is-warning .navbar-dropdown a.navbar-item.is-active { |
| 702 |
background-color: #ffdd57; |
| 703 |
color: rgba(0, 0, 0, 0.7); |
| 704 |
} |
| 705 |
} |
| 706 |
.navbar.is-danger { |
| 707 |
background-color: #f14668; |
| 708 |
color: #fff; |
| 709 |
} |
| 710 |
.navbar.is-danger .navbar-brand > .navbar-item, |
| 711 |
.navbar.is-danger .navbar-brand .navbar-link { |
| 712 |
color: #fff; |
| 713 |
} |
| 714 |
.navbar.is-danger .navbar-brand > a.navbar-item:focus, .navbar.is-danger .navbar-brand > a.navbar-item:hover, .navbar.is-danger .navbar-brand > a.navbar-item.is-active, |
| 715 |
.navbar.is-danger .navbar-brand .navbar-link:focus, |
| 716 |
.navbar.is-danger .navbar-brand .navbar-link:hover, |
| 717 |
.navbar.is-danger .navbar-brand .navbar-link.is-active { |
| 718 |
background-color: #ef2e55; |
| 719 |
color: #fff; |
| 720 |
} |
| 721 |
.navbar.is-danger .navbar-brand .navbar-link::after { |
| 722 |
border-color: #fff; |
| 723 |
} |
| 724 |
.navbar.is-danger .navbar-burger { |
| 725 |
color: #fff; |
| 726 |
} |
| 727 |
@media screen and (min-width: 1024px) { |
| 728 |
.navbar.is-danger .navbar-start > .navbar-item, |
| 729 |
.navbar.is-danger .navbar-start .navbar-link, |
| 730 |
.navbar.is-danger .navbar-end > .navbar-item, |
| 731 |
.navbar.is-danger .navbar-end .navbar-link { |
| 732 |
color: #fff; |
| 733 |
} |
| 734 |
.navbar.is-danger .navbar-start > a.navbar-item:focus, .navbar.is-danger .navbar-start > a.navbar-item:hover, .navbar.is-danger .navbar-start > a.navbar-item.is-active, |
| 735 |
.navbar.is-danger .navbar-start .navbar-link:focus, |
| 736 |
.navbar.is-danger .navbar-start .navbar-link:hover, |
| 737 |
.navbar.is-danger .navbar-start .navbar-link.is-active, |
| 738 |
.navbar.is-danger .navbar-end > a.navbar-item:focus, |
| 739 |
.navbar.is-danger .navbar-end > a.navbar-item:hover, |
| 740 |
.navbar.is-danger .navbar-end > a.navbar-item.is-active, |
| 741 |
.navbar.is-danger .navbar-end .navbar-link:focus, |
| 742 |
.navbar.is-danger .navbar-end .navbar-link:hover, |
| 743 |
.navbar.is-danger .navbar-end .navbar-link.is-active { |
| 744 |
background-color: #ef2e55; |
| 745 |
color: #fff; |
| 746 |
} |
| 747 |
.navbar.is-danger .navbar-start .navbar-link::after, |
| 748 |
.navbar.is-danger .navbar-end .navbar-link::after { |
| 749 |
border-color: #fff; |
| 750 |
} |
| 751 |
.navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link, |
| 752 |
.navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link, |
| 753 |
.navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link { |
| 754 |
background-color: #ef2e55; |
| 755 |
color: #fff; |
| 756 |
} |
| 757 |
.navbar.is-danger .navbar-dropdown a.navbar-item.is-active { |
| 758 |
background-color: #f14668; |
| 759 |
color: #fff; |
| 760 |
} |
| 761 |
} |
| 762 |
.navbar > .container { |
| 763 |
-webkit-box-align: stretch; |
| 764 |
-webkit-align-items: stretch; |
| 765 |
-ms-flex-align: stretch; |
| 766 |
align-items: stretch; |
| 767 |
display: -webkit-box; |
| 768 |
display: -webkit-flex; |
| 769 |
display: -ms-flexbox; |
| 770 |
display: flex; |
| 771 |
min-height: 3.25rem; |
| 772 |
width: 100%; |
| 773 |
} |
| 774 |
|
| 775 |
.navbar-brand, |
| 776 |
.navbar-tabs { |
| 777 |
-webkit-box-align: stretch; |
| 778 |
-webkit-align-items: stretch; |
| 779 |
-ms-flex-align: stretch; |
| 780 |
align-items: stretch; |
| 781 |
display: -webkit-box; |
| 782 |
display: -webkit-flex; |
| 783 |
display: -ms-flexbox; |
| 784 |
display: flex; |
| 785 |
-webkit-flex-shrink: 0; |
| 786 |
-ms-flex-negative: 0; |
| 787 |
flex-shrink: 0; |
| 788 |
min-height: 3.25rem; |
| 789 |
} |
| 790 |
|
| 791 |
.navbar-brand a.navbar-item:focus, .navbar-brand a.navbar-item:hover { |
| 792 |
background-color: transparent; |
| 793 |
} |
| 794 |
|
| 795 |
.navbar-tabs { |
| 796 |
-webkit-overflow-scrolling: touch; |
| 797 |
max-width: 100vw; |
| 798 |
overflow-x: auto; |
| 799 |
overflow-y: hidden; |
| 800 |
} |
| 801 |
|
| 802 |
.navbar-burger { |
| 803 |
color: #4a4a4a; |
| 804 |
cursor: pointer; |
| 805 |
display: block; |
| 806 |
height: 3.25rem; |
| 807 |
position: relative; |
| 808 |
width: 3.25rem; |
| 809 |
margin-left: auto; |
| 810 |
} |
| 811 |
.navbar-burger span { |
| 812 |
background-color: currentColor; |
| 813 |
display: block; |
| 814 |
height: 1px; |
| 815 |
left: -webkit-calc(50% - 8px); |
| 816 |
left: calc(50% - 8px); |
| 817 |
position: absolute; |
| 818 |
-webkit-transform-origin: center; |
| 819 |
-ms-transform-origin: center; |
| 820 |
transform-origin: center; |
| 821 |
-webkit-transition-duration: 86ms; |
| 822 |
-o-transition-duration: 86ms; |
| 823 |
transition-duration: 86ms; |
| 824 |
-webkit-transition-property: background-color, opacity, -webkit-transform; |
| 825 |
transition-property: background-color, opacity, -webkit-transform; |
| 826 |
-o-transition-property: background-color, opacity, transform; |
| 827 |
transition-property: background-color, opacity, transform; |
| 828 |
transition-property: background-color, opacity, transform, -webkit-transform; |
| 829 |
-webkit-transition-timing-function: ease-out; |
| 830 |
-o-transition-timing-function: ease-out; |
| 831 |
transition-timing-function: ease-out; |
| 832 |
width: 16px; |
| 833 |
} |
| 834 |
.navbar-burger span:nth-child(1) { |
| 835 |
top: -webkit-calc(50% - 6px); |
| 836 |
top: calc(50% - 6px); |
| 837 |
} |
| 838 |
.navbar-burger span:nth-child(2) { |
| 839 |
top: -webkit-calc(50% - 1px); |
| 840 |
top: calc(50% - 1px); |
| 841 |
} |
| 842 |
.navbar-burger span:nth-child(3) { |
| 843 |
top: -webkit-calc(50% + 4px); |
| 844 |
top: calc(50% + 4px); |
| 845 |
} |
| 846 |
.navbar-burger:hover { |
| 847 |
background-color: rgba(0, 0, 0, 0.05); |
| 848 |
} |
| 849 |
.navbar-burger.is-active span:nth-child(1) { |
| 850 |
-webkit-transform: translateY(5px) rotate(45deg); |
| 851 |
-ms-transform: translateY(5px) rotate(45deg); |
| 852 |
transform: translateY(5px) rotate(45deg); |
| 853 |
} |
| 854 |
.navbar-burger.is-active span:nth-child(2) { |
| 855 |
opacity: 0; |
| 856 |
} |
| 857 |
.navbar-burger.is-active span:nth-child(3) { |
| 858 |
-webkit-transform: translateY(-5px) rotate(-45deg); |
| 859 |
-ms-transform: translateY(-5px) rotate(-45deg); |
| 860 |
transform: translateY(-5px) rotate(-45deg); |
| 861 |
} |
| 862 |
|
| 863 |
.navbar-menu { |
| 864 |
display: none; |
| 865 |
} |
| 866 |
|
| 867 |
.navbar-item, |
| 868 |
.navbar-link { |
| 869 |
color: #4a4a4a; |
| 870 |
display: block; |
| 871 |
line-height: 1.5; |
| 872 |
padding: 0.5rem 0.75rem; |
| 873 |
position: relative; |
| 874 |
} |
| 875 |
.navbar-item .icon:only-child, |
| 876 |
.navbar-link .icon:only-child { |
| 877 |
margin-left: -0.25rem; |
| 878 |
margin-right: -0.25rem; |
| 879 |
} |
| 880 |
|
| 881 |
a.navbar-item, |
| 882 |
.navbar-link { |
| 883 |
cursor: pointer; |
| 884 |
} |
| 885 |
a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover, a.navbar-item.is-active, |
| 886 |
.navbar-link:focus, |
| 887 |
.navbar-link:focus-within, |
| 888 |
.navbar-link:hover, |
| 889 |
.navbar-link.is-active { |
| 890 |
background-color: #fafafa; |
| 891 |
color: #3273dc; |
| 892 |
} |
| 893 |
|
| 894 |
.navbar-item { |
| 895 |
-webkit-box-flex: 0; |
| 896 |
-webkit-flex-grow: 0; |
| 897 |
-ms-flex-positive: 0; |
| 898 |
flex-grow: 0; |
| 899 |
-webkit-flex-shrink: 0; |
| 900 |
-ms-flex-negative: 0; |
| 901 |
flex-shrink: 0; |
| 902 |
} |
| 903 |
.navbar-item img { |
| 904 |
max-height: 2.75rem; |
| 905 |
} |
| 906 |
.navbar-item.has-dropdown { |
| 907 |
padding: 0; |
| 908 |
} |
| 909 |
.navbar-item.is-expanded { |
| 910 |
-webkit-box-flex: 1; |
| 911 |
-webkit-flex-grow: 1; |
| 912 |
-ms-flex-positive: 1; |
| 913 |
flex-grow: 1; |
| 914 |
-webkit-flex-shrink: 1; |
| 915 |
-ms-flex-negative: 1; |
| 916 |
flex-shrink: 1; |
| 917 |
} |
| 918 |
.navbar-item.is-tab { |
| 919 |
border-bottom: 1px solid transparent; |
| 920 |
min-height: 3.25rem; |
| 921 |
padding-bottom: -webkit-calc(0.5rem - 1px); |
| 922 |
padding-bottom: calc(0.5rem - 1px); |
| 923 |
} |
| 924 |
.navbar-item.is-tab:focus, .navbar-item.is-tab:hover { |
| 925 |
background-color: transparent; |
| 926 |
border-bottom-color: #3273dc; |
| 927 |
} |
| 928 |
.navbar-item.is-tab.is-active { |
| 929 |
background-color: transparent; |
| 930 |
border-bottom-color: #3273dc; |
| 931 |
border-bottom-style: solid; |
| 932 |
border-bottom-width: 3px; |
| 933 |
color: #3273dc; |
| 934 |
padding-bottom: -webkit-calc(0.5rem - 3px); |
| 935 |
padding-bottom: calc(0.5rem - 3px); |
| 936 |
} |
| 937 |
|
| 938 |
.navbar-content { |
| 939 |
-webkit-box-flex: 1; |
| 940 |
-webkit-flex-grow: 1; |
| 941 |
-ms-flex-positive: 1; |
| 942 |
flex-grow: 1; |
| 943 |
-webkit-flex-shrink: 1; |
| 944 |
-ms-flex-negative: 1; |
| 945 |
flex-shrink: 1; |
| 946 |
} |
| 947 |
|
| 948 |
.navbar-link:not(.is-arrowless) { |
| 949 |
padding-right: 2.5em; |
| 950 |
} |
| 951 |
.navbar-link:not(.is-arrowless)::after { |
| 952 |
border-color: #3273dc; |
| 953 |
margin-top: -0.375em; |
| 954 |
right: 1.125em; |
| 955 |
} |
| 956 |
|
| 957 |
.navbar-dropdown { |
| 958 |
font-size: 0.875rem; |
| 959 |
padding-bottom: 0.5rem; |
| 960 |
padding-top: 0.5rem; |
| 961 |
} |
| 962 |
.navbar-dropdown .navbar-item { |
| 963 |
padding-left: 1.5rem; |
| 964 |
padding-right: 1.5rem; |
| 965 |
} |
| 966 |
|
| 967 |
.navbar-divider { |
| 968 |
background-color: whitesmoke; |
| 969 |
border: none; |
| 970 |
display: none; |
| 971 |
height: 2px; |
| 972 |
margin: 0.5rem 0; |
| 973 |
} |
| 974 |
|
| 975 |
@media screen and (max-width: 1023px) { |
| 976 |
.navbar > .container { |
| 977 |
display: block; |
| 978 |
} |
| 979 |
|
| 980 |
.navbar-brand .navbar-item, |
| 981 |
.navbar-tabs .navbar-item { |
| 982 |
-webkit-box-align: center; |
| 983 |
-webkit-align-items: center; |
| 984 |
-ms-flex-align: center; |
| 985 |
align-items: center; |
| 986 |
display: -webkit-box; |
| 987 |
display: -webkit-flex; |
| 988 |
display: -ms-flexbox; |
| 989 |
display: flex; |
| 990 |
} |
| 991 |
|
| 992 |
.navbar-link::after { |
| 993 |
display: none; |
| 994 |
} |
| 995 |
|
| 996 |
.navbar-menu { |
| 997 |
background-color: white; |
| 998 |
-webkit-box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1); |
| 999 |
box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1); |
| 1000 |
padding: 0.5rem 0; |
| 1001 |
} |
| 1002 |
.navbar-menu.is-active { |
| 1003 |
display: block; |
| 1004 |
} |
| 1005 |
} |
| 1006 |
@media screen and (min-width: 1024px) { |
| 1007 |
.navbar, |
| 1008 |
.navbar-menu, |
| 1009 |
.navbar-start, |
| 1010 |
.navbar-end { |
| 1011 |
-webkit-box-align: stretch; |
| 1012 |
-webkit-align-items: stretch; |
| 1013 |
-ms-flex-align: stretch; |
| 1014 |
align-items: stretch; |
| 1015 |
display: -webkit-box; |
| 1016 |
display: -webkit-flex; |
| 1017 |
display: -ms-flexbox; |
| 1018 |
display: flex; |
| 1019 |
} |
| 1020 |
|
| 1021 |
.navbar { |
| 1022 |
min-height: 3.25rem; |
| 1023 |
} |
| 1024 |
.navbar .navbar-dropdown a.navbar-item:focus, .navbar .navbar-dropdown a.navbar-item:hover { |
| 1025 |
background-color: whitesmoke; |
| 1026 |
color: #0a0a0a; |
| 1027 |
} |
| 1028 |
.navbar .navbar-dropdown a.navbar-item.is-active { |
| 1029 |
background-color: whitesmoke; |
| 1030 |
color: #3273dc; |
| 1031 |
} |
| 1032 |
|
| 1033 |
.navbar-burger { |
| 1034 |
display: none; |
| 1035 |
} |
| 1036 |
|
| 1037 |
.navbar-item, |
| 1038 |
.navbar-link { |
| 1039 |
-webkit-box-align: center; |
| 1040 |
-webkit-align-items: center; |
| 1041 |
-ms-flex-align: center; |
| 1042 |
align-items: center; |
| 1043 |
display: -webkit-box; |
| 1044 |
display: -webkit-flex; |
| 1045 |
display: -ms-flexbox; |
| 1046 |
display: flex; |
| 1047 |
} |
| 1048 |
|
| 1049 |
.navbar-item.has-dropdown { |
| 1050 |
-webkit-box-align: stretch; |
| 1051 |
-webkit-align-items: stretch; |
| 1052 |
-ms-flex-align: stretch; |
| 1053 |
align-items: stretch; |
| 1054 |
} |
| 1055 |
.navbar-item.has-dropdown-up .navbar-link::after { |
| 1056 |
-webkit-transform: rotate(135deg) translate(0.25em, -0.25em); |
| 1057 |
-ms-transform: rotate(135deg) translate(0.25em, -0.25em); |
| 1058 |
transform: rotate(135deg) translate(0.25em, -0.25em); |
| 1059 |
} |
| 1060 |
.navbar-item.has-dropdown-up .navbar-dropdown { |
| 1061 |
border-bottom: 2px solid #dbdbdb; |
| 1062 |
-webkit-border-radius: 6px 6px 0 0; |
| 1063 |
border-radius: 6px 6px 0 0; |
| 1064 |
border-top: none; |
| 1065 |
bottom: 100%; |
| 1066 |
-webkit-box-shadow: 0 -8px 8px rgba(10, 10, 10, 0.1); |
| 1067 |
box-shadow: 0 -8px 8px rgba(10, 10, 10, 0.1); |
| 1068 |
top: auto; |
| 1069 |
} |
| 1070 |
.navbar-item.is-active .navbar-dropdown, .navbar-item.is-hoverable:focus .navbar-dropdown, .navbar-item.is-hoverable:focus-within .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown { |
| 1071 |
display: block; |
| 1072 |
} |
| 1073 |
.navbar.is-spaced .navbar-item.is-active .navbar-dropdown, .navbar-item.is-active .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:focus .navbar-dropdown, .navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:focus-within .navbar-dropdown, .navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:hover .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed { |
| 1074 |
opacity: 1; |
| 1075 |
pointer-events: auto; |
| 1076 |
-webkit-transform: translateY(0); |
| 1077 |
-ms-transform: translateY(0); |
| 1078 |
transform: translateY(0); |
| 1079 |
} |
| 1080 |
|
| 1081 |
.navbar-menu { |
| 1082 |
-webkit-box-flex: 1; |
| 1083 |
-webkit-flex-grow: 1; |
| 1084 |
-ms-flex-positive: 1; |
| 1085 |
flex-grow: 1; |
| 1086 |
-webkit-flex-shrink: 0; |
| 1087 |
-ms-flex-negative: 0; |
| 1088 |
flex-shrink: 0; |
| 1089 |
} |
| 1090 |
|
| 1091 |
.navbar-start { |
| 1092 |
-webkit-box-pack: start; |
| 1093 |
-webkit-justify-content: flex-start; |
| 1094 |
-ms-flex-pack: start; |
| 1095 |
justify-content: flex-start; |
| 1096 |
margin-right: auto; |
| 1097 |
} |
| 1098 |
|
| 1099 |
.navbar-end { |
| 1100 |
-webkit-box-pack: end; |
| 1101 |
-webkit-justify-content: flex-end; |
| 1102 |
-ms-flex-pack: end; |
| 1103 |
justify-content: flex-end; |
| 1104 |
margin-left: auto; |
| 1105 |
} |
| 1106 |
|
| 1107 |
.navbar-dropdown { |
| 1108 |
background-color: white; |
| 1109 |
-webkit-box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1); |
| 1110 |
box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1); |
| 1111 |
display: none; |
| 1112 |
font-size: 0.875rem; |
| 1113 |
left: 0; |
| 1114 |
min-width: 100%; |
| 1115 |
position: absolute; |
| 1116 |
top: 100%; |
| 1117 |
z-index: 20; |
| 1118 |
} |
| 1119 |
.navbar-dropdown .navbar-item { |
| 1120 |
padding: 0.375rem 1rem; |
| 1121 |
white-space: nowrap; |
| 1122 |
} |
| 1123 |
.navbar-dropdown a.navbar-item { |
| 1124 |
padding-right: 3rem; |
| 1125 |
} |
| 1126 |
.navbar-dropdown.is-right { |
| 1127 |
left: auto; |
| 1128 |
right: 0; |
| 1129 |
} |
| 1130 |
|
| 1131 |
.navbar-divider { |
| 1132 |
display: block; |
| 1133 |
} |
| 1134 |
|
| 1135 |
.navbar > .container .navbar-brand, |
| 1136 |
.container > .navbar .navbar-brand { |
| 1137 |
margin-left: -0.75rem; |
| 1138 |
} |
| 1139 |
.navbar > .container .navbar-menu, |
| 1140 |
.container > .navbar .navbar-menu { |
| 1141 |
margin-right: -0.75rem; |
| 1142 |
} |
| 1143 |
} |
| 1144 |
.pagination { |
| 1145 |
font-size: 1rem; |
| 1146 |
margin: -0.25rem; |
| 1147 |
} |
| 1148 |
|
| 1149 |
.pagination, |
| 1150 |
.pagination-list { |
| 1151 |
-webkit-box-align: center; |
| 1152 |
-webkit-align-items: center; |
| 1153 |
-ms-flex-align: center; |
| 1154 |
align-items: center; |
| 1155 |
display: -webkit-box; |
| 1156 |
display: -webkit-flex; |
| 1157 |
display: -ms-flexbox; |
| 1158 |
display: flex; |
| 1159 |
-webkit-box-pack: center; |
| 1160 |
-webkit-justify-content: center; |
| 1161 |
-ms-flex-pack: center; |
| 1162 |
justify-content: center; |
| 1163 |
text-align: center; |
| 1164 |
} |
| 1165 |
|
| 1166 |
.pagination-previous, |
| 1167 |
.pagination-next, |
| 1168 |
.pagination-link, |
| 1169 |
.pagination-ellipsis { |
| 1170 |
font-size: 1em; |
| 1171 |
-webkit-box-pack: center; |
| 1172 |
-webkit-justify-content: center; |
| 1173 |
-ms-flex-pack: center; |
| 1174 |
justify-content: center; |
| 1175 |
margin: 0.25rem; |
| 1176 |
padding-left: 0.5em; |
| 1177 |
padding-right: 0.5em; |
| 1178 |
text-align: center; |
| 1179 |
} |
| 1180 |
|
| 1181 |
.pagination-previous, |
| 1182 |
.pagination-next, |
| 1183 |
.pagination-link { |
| 1184 |
border-color: #dbdbdb; |
| 1185 |
color: #363636; |
| 1186 |
min-width: 2.5em; |
| 1187 |
} |
| 1188 |
.pagination-previous:hover, |
| 1189 |
.pagination-next:hover, |
| 1190 |
.pagination-link:hover { |
| 1191 |
border-color: #b5b5b5; |
| 1192 |
color: #363636; |
| 1193 |
} |
| 1194 |
.pagination-previous:focus, |
| 1195 |
.pagination-next:focus, |
| 1196 |
.pagination-link:focus { |
| 1197 |
border-color: #3273dc; |
| 1198 |
} |
| 1199 |
.pagination-previous:active, |
| 1200 |
.pagination-next:active, |
| 1201 |
.pagination-link:active { |
| 1202 |
-webkit-box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2); |
| 1203 |
box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2); |
| 1204 |
} |
| 1205 |
.pagination-previous[disabled], |
| 1206 |
.pagination-next[disabled], |
| 1207 |
.pagination-link[disabled] { |
| 1208 |
background-color: #dbdbdb; |
| 1209 |
border-color: #dbdbdb; |
| 1210 |
-webkit-box-shadow: none; |
| 1211 |
box-shadow: none; |
| 1212 |
color: #7a7a7a; |
| 1213 |
opacity: 0.5; |
| 1214 |
} |
| 1215 |
|
| 1216 |
.pagination-previous, |
| 1217 |
.pagination-next { |
| 1218 |
padding-left: 0.75em; |
| 1219 |
padding-right: 0.75em; |
| 1220 |
white-space: nowrap; |
| 1221 |
} |
| 1222 |
|
| 1223 |
.pagination-link.is-current { |
| 1224 |
background-color: #3273dc; |
| 1225 |
border-color: #3273dc; |
| 1226 |
color: #fff; |
| 1227 |
} |
| 1228 |
|
| 1229 |
/* WP Adminify Grid */ |
| 1230 |
.column { |
| 1231 |
display: block; |
| 1232 |
-webkit-flex-basis: 0; |
| 1233 |
-ms-flex-preferred-size: 0; |
| 1234 |
flex-basis: 0; |
| 1235 |
-webkit-box-flex: 1; |
| 1236 |
-webkit-flex-grow: 1; |
| 1237 |
-ms-flex-positive: 1; |
| 1238 |
flex-grow: 1; |
| 1239 |
-webkit-flex-shrink: 1; |
| 1240 |
-ms-flex-negative: 1; |
| 1241 |
flex-shrink: 1; |
| 1242 |
padding: 0.75rem; |
| 1243 |
} |
| 1244 |
.columns.is-mobile > .column.is-offset-three-quarters { |
| 1245 |
margin-left: 75%; |
| 1246 |
} |
| 1247 |
.columns.is-mobile > .column.is-offset-two-thirds { |
| 1248 |
margin-left: 66.6666%; |
| 1249 |
} |
| 1250 |
.columns.is-mobile > .column.is-offset-half { |
| 1251 |
margin-left: 50%; |
| 1252 |
} |
| 1253 |
.columns.is-mobile > .column.is-offset-one-third { |
| 1254 |
margin-left: 33.3333%; |
| 1255 |
} |
| 1256 |
.columns.is-mobile > .column.is-offset-one-quarter { |
| 1257 |
margin-left: 25%; |
| 1258 |
} |
| 1259 |
.columns.is-mobile > .column.is-offset-one-fifth { |
| 1260 |
margin-left: 20%; |
| 1261 |
} |
| 1262 |
.columns.is-mobile > .column.is-offset-two-fifths { |
| 1263 |
margin-left: 40%; |
| 1264 |
} |
| 1265 |
.columns.is-mobile > .column.is-offset-three-fifths { |
| 1266 |
margin-left: 60%; |
| 1267 |
} |
| 1268 |
.columns.is-mobile > .column.is-offset-four-fifths { |
| 1269 |
margin-left: 80%; |
| 1270 |
} |
| 1271 |
.columns.is-mobile > .column.is-0 { |
| 1272 |
-webkit-box-flex: 0; |
| 1273 |
-webkit-flex: none; |
| 1274 |
-ms-flex: none; |
| 1275 |
flex: none; |
| 1276 |
width: 0%; |
| 1277 |
} |
| 1278 |
.columns.is-mobile > .column.is-offset-0 { |
| 1279 |
margin-left: 0%; |
| 1280 |
} |
| 1281 |
.columns.is-mobile > .column.is-1 { |
| 1282 |
-webkit-box-flex: 0; |
| 1283 |
-webkit-flex: none; |
| 1284 |
-ms-flex: none; |
| 1285 |
flex: none; |
| 1286 |
width: 8.3333333333%; |
| 1287 |
} |
| 1288 |
.columns.is-mobile > .column.is-offset-1 { |
| 1289 |
margin-left: 8.3333333333%; |
| 1290 |
} |
| 1291 |
.columns.is-mobile > .column.is-2 { |
| 1292 |
-webkit-box-flex: 0; |
| 1293 |
-webkit-flex: none; |
| 1294 |
-ms-flex: none; |
| 1295 |
flex: none; |
| 1296 |
width: 16.6666666667%; |
| 1297 |
} |
| 1298 |
.columns.is-mobile > .column.is-offset-2 { |
| 1299 |
margin-left: 16.6666666667%; |
| 1300 |
} |
| 1301 |
.columns.is-mobile > .column.is-3 { |
| 1302 |
-webkit-box-flex: 0; |
| 1303 |
-webkit-flex: none; |
| 1304 |
-ms-flex: none; |
| 1305 |
flex: none; |
| 1306 |
width: 25%; |
| 1307 |
} |
| 1308 |
.columns.is-mobile > .column.is-offset-3 { |
| 1309 |
margin-left: 25%; |
| 1310 |
} |
| 1311 |
.columns.is-mobile > .column.is-4 { |
| 1312 |
-webkit-box-flex: 0; |
| 1313 |
-webkit-flex: none; |
| 1314 |
-ms-flex: none; |
| 1315 |
flex: none; |
| 1316 |
width: 33.3333333333%; |
| 1317 |
} |
| 1318 |
.columns.is-mobile > .column.is-offset-4 { |
| 1319 |
margin-left: 33.3333333333%; |
| 1320 |
} |
| 1321 |
.columns.is-mobile > .column.is-5 { |
| 1322 |
-webkit-box-flex: 0; |
| 1323 |
-webkit-flex: none; |
| 1324 |
-ms-flex: none; |
| 1325 |
flex: none; |
| 1326 |
width: 41.6666666667%; |
| 1327 |
} |
| 1328 |
.columns.is-mobile > .column.is-offset-5 { |
| 1329 |
margin-left: 41.6666666667%; |
| 1330 |
} |
| 1331 |
.columns.is-mobile > .column.is-6 { |
| 1332 |
-webkit-box-flex: 0; |
| 1333 |
-webkit-flex: none; |
| 1334 |
-ms-flex: none; |
| 1335 |
flex: none; |
| 1336 |
width: 50%; |
| 1337 |
} |
| 1338 |
.columns.is-mobile > .column.is-offset-6 { |
| 1339 |
margin-left: 50%; |
| 1340 |
} |
| 1341 |
.columns.is-mobile > .column.is-7 { |
| 1342 |
-webkit-box-flex: 0; |
| 1343 |
-webkit-flex: none; |
| 1344 |
-ms-flex: none; |
| 1345 |
flex: none; |
| 1346 |
width: 58.3333333333%; |
| 1347 |
} |
| 1348 |
.columns.is-mobile > .column.is-offset-7 { |
| 1349 |
margin-left: 58.3333333333%; |
| 1350 |
} |
| 1351 |
.columns.is-mobile > .column.is-8 { |
| 1352 |
-webkit-box-flex: 0; |
| 1353 |
-webkit-flex: none; |
| 1354 |
-ms-flex: none; |
| 1355 |
flex: none; |
| 1356 |
width: 66.6666666667%; |
| 1357 |
} |
| 1358 |
.columns.is-mobile > .column.is-offset-8 { |
| 1359 |
margin-left: 66.6666666667%; |
| 1360 |
} |
| 1361 |
.columns.is-mobile > .column.is-9 { |
| 1362 |
-webkit-box-flex: 0; |
| 1363 |
-webkit-flex: none; |
| 1364 |
-ms-flex: none; |
| 1365 |
flex: none; |
| 1366 |
width: 75%; |
| 1367 |
} |
| 1368 |
.columns.is-mobile > .column.is-offset-9 { |
| 1369 |
margin-left: 75%; |
| 1370 |
} |
| 1371 |
.columns.is-mobile > .column.is-10 { |
| 1372 |
-webkit-box-flex: 0; |
| 1373 |
-webkit-flex: none; |
| 1374 |
-ms-flex: none; |
| 1375 |
flex: none; |
| 1376 |
width: 83.3333333333%; |
| 1377 |
} |
| 1378 |
.columns.is-mobile > .column.is-offset-10 { |
| 1379 |
margin-left: 83.3333333333%; |
| 1380 |
} |
| 1381 |
.columns.is-mobile > .column.is-11 { |
| 1382 |
-webkit-box-flex: 0; |
| 1383 |
-webkit-flex: none; |
| 1384 |
-ms-flex: none; |
| 1385 |
flex: none; |
| 1386 |
width: 91.6666666667%; |
| 1387 |
} |
| 1388 |
.columns.is-mobile > .column.is-offset-11 { |
| 1389 |
margin-left: 91.6666666667%; |
| 1390 |
} |
| 1391 |
.columns.is-mobile > .column.is-12 { |
| 1392 |
-webkit-box-flex: 0; |
| 1393 |
-webkit-flex: none; |
| 1394 |
-ms-flex: none; |
| 1395 |
flex: none; |
| 1396 |
width: 100%; |
| 1397 |
} |
| 1398 |
.columns.is-mobile > .column.is-offset-12 { |
| 1399 |
margin-left: 100%; |
| 1400 |
} |
| 1401 |
@media screen and (max-width: 768px) { |
| 1402 |
.column.is-narrow-mobile { |
| 1403 |
-webkit-box-flex: 0; |
| 1404 |
-webkit-flex: none; |
| 1405 |
-ms-flex: none; |
| 1406 |
flex: none; |
| 1407 |
width: unset; |
| 1408 |
} |
| 1409 |
.column.is-full-mobile { |
| 1410 |
-webkit-box-flex: 0; |
| 1411 |
-webkit-flex: none; |
| 1412 |
-ms-flex: none; |
| 1413 |
flex: none; |
| 1414 |
width: 100%; |
| 1415 |
} |
| 1416 |
.column.is-three-quarters-mobile { |
| 1417 |
-webkit-box-flex: 0; |
| 1418 |
-webkit-flex: none; |
| 1419 |
-ms-flex: none; |
| 1420 |
flex: none; |
| 1421 |
width: 75%; |
| 1422 |
} |
| 1423 |
.column.is-two-thirds-mobile { |
| 1424 |
-webkit-box-flex: 0; |
| 1425 |
-webkit-flex: none; |
| 1426 |
-ms-flex: none; |
| 1427 |
flex: none; |
| 1428 |
width: 66.6666%; |
| 1429 |
} |
| 1430 |
.column.is-half-mobile { |
| 1431 |
-webkit-box-flex: 0; |
| 1432 |
-webkit-flex: none; |
| 1433 |
-ms-flex: none; |
| 1434 |
flex: none; |
| 1435 |
width: 50%; |
| 1436 |
} |
| 1437 |
.column.is-one-third-mobile { |
| 1438 |
-webkit-box-flex: 0; |
| 1439 |
-webkit-flex: none; |
| 1440 |
-ms-flex: none; |
| 1441 |
flex: none; |
| 1442 |
width: 33.3333%; |
| 1443 |
} |
| 1444 |
.column.is-one-quarter-mobile { |
| 1445 |
-webkit-box-flex: 0; |
| 1446 |
-webkit-flex: none; |
| 1447 |
-ms-flex: none; |
| 1448 |
flex: none; |
| 1449 |
width: 25%; |
| 1450 |
} |
| 1451 |
.column.is-one-fifth-mobile { |
| 1452 |
-webkit-box-flex: 0; |
| 1453 |
-webkit-flex: none; |
| 1454 |
-ms-flex: none; |
| 1455 |
flex: none; |
| 1456 |
width: 20%; |
| 1457 |
} |
| 1458 |
.column.is-two-fifths-mobile { |
| 1459 |
-webkit-box-flex: 0; |
| 1460 |
-webkit-flex: none; |
| 1461 |
-ms-flex: none; |
| 1462 |
flex: none; |
| 1463 |
width: 40%; |
| 1464 |
} |
| 1465 |
.column.is-three-fifths-mobile { |
| 1466 |
-webkit-box-flex: 0; |
| 1467 |
-webkit-flex: none; |
| 1468 |
-ms-flex: none; |
| 1469 |
flex: none; |
| 1470 |
width: 60%; |
| 1471 |
} |
| 1472 |
.column.is-four-fifths-mobile { |
| 1473 |
-webkit-box-flex: 0; |
| 1474 |
-webkit-flex: none; |
| 1475 |
-ms-flex: none; |
| 1476 |
flex: none; |
| 1477 |
width: 80%; |
| 1478 |
} |
| 1479 |
.column.is-offset-three-quarters-mobile { |
| 1480 |
margin-left: 75%; |
| 1481 |
} |
| 1482 |
.column.is-offset-two-thirds-mobile { |
| 1483 |
margin-left: 66.6666%; |
| 1484 |
} |
| 1485 |
.column.is-offset-half-mobile { |
| 1486 |
margin-left: 50%; |
| 1487 |
} |
| 1488 |
.column.is-offset-one-third-mobile { |
| 1489 |
margin-left: 33.3333%; |
| 1490 |
} |
| 1491 |
.column.is-offset-one-quarter-mobile { |
| 1492 |
margin-left: 25%; |
| 1493 |
} |
| 1494 |
.column.is-offset-one-fifth-mobile { |
| 1495 |
margin-left: 20%; |
| 1496 |
} |
| 1497 |
.column.is-offset-two-fifths-mobile { |
| 1498 |
margin-left: 40%; |
| 1499 |
} |
| 1500 |
.column.is-offset-three-fifths-mobile { |
| 1501 |
margin-left: 60%; |
| 1502 |
} |
| 1503 |
.column.is-offset-four-fifths-mobile { |
| 1504 |
margin-left: 80%; |
| 1505 |
} |
| 1506 |
.column.is-0-mobile { |
| 1507 |
-webkit-box-flex: 0; |
| 1508 |
-webkit-flex: none; |
| 1509 |
-ms-flex: none; |
| 1510 |
flex: none; |
| 1511 |
width: 0%; |
| 1512 |
} |
| 1513 |
.column.is-offset-0-mobile { |
| 1514 |
margin-left: 0%; |
| 1515 |
} |
| 1516 |
.column.is-1-mobile { |
| 1517 |
-webkit-box-flex: 0; |
| 1518 |
-webkit-flex: none; |
| 1519 |
-ms-flex: none; |
| 1520 |
flex: none; |
| 1521 |
width: 8.3333333333%; |
| 1522 |
} |
| 1523 |
.column.is-offset-1-mobile { |
| 1524 |
margin-left: 8.3333333333%; |
| 1525 |
} |
| 1526 |
.column.is-2-mobile { |
| 1527 |
-webkit-box-flex: 0; |
| 1528 |
-webkit-flex: none; |
| 1529 |
-ms-flex: none; |
| 1530 |
flex: none; |
| 1531 |
width: 16.6666666667%; |
| 1532 |
} |
| 1533 |
.column.is-offset-2-mobile { |
| 1534 |
margin-left: 16.6666666667%; |
| 1535 |
} |
| 1536 |
.column.is-3-mobile { |
| 1537 |
-webkit-box-flex: 0; |
| 1538 |
-webkit-flex: none; |
| 1539 |
-ms-flex: none; |
| 1540 |
flex: none; |
| 1541 |
width: 25%; |
| 1542 |
} |
| 1543 |
.column.is-offset-3-mobile { |
| 1544 |
margin-left: 25%; |
| 1545 |
} |
| 1546 |
.column.is-4-mobile { |
| 1547 |
-webkit-box-flex: 0; |
| 1548 |
-webkit-flex: none; |
| 1549 |
-ms-flex: none; |
| 1550 |
flex: none; |
| 1551 |
width: 33.3333333333%; |
| 1552 |
} |
| 1553 |
.column.is-offset-4-mobile { |
| 1554 |
margin-left: 33.3333333333%; |
| 1555 |
} |
| 1556 |
.column.is-5-mobile { |
| 1557 |
-webkit-box-flex: 0; |
| 1558 |
-webkit-flex: none; |
| 1559 |
-ms-flex: none; |
| 1560 |
flex: none; |
| 1561 |
width: 41.6666666667%; |
| 1562 |
} |
| 1563 |
.column.is-offset-5-mobile { |
| 1564 |
margin-left: 41.6666666667%; |
| 1565 |
} |
| 1566 |
.column.is-6-mobile { |
| 1567 |
-webkit-box-flex: 0; |
| 1568 |
-webkit-flex: none; |
| 1569 |
-ms-flex: none; |
| 1570 |
flex: none; |
| 1571 |
width: 50%; |
| 1572 |
} |
| 1573 |
.column.is-offset-6-mobile { |
| 1574 |
margin-left: 50%; |
| 1575 |
} |
| 1576 |
.column.is-7-mobile { |
| 1577 |
-webkit-box-flex: 0; |
| 1578 |
-webkit-flex: none; |
| 1579 |
-ms-flex: none; |
| 1580 |
flex: none; |
| 1581 |
width: 58.3333333333%; |
| 1582 |
} |
| 1583 |
.column.is-offset-7-mobile { |
| 1584 |
margin-left: 58.3333333333%; |
| 1585 |
} |
| 1586 |
.column.is-8-mobile { |
| 1587 |
-webkit-box-flex: 0; |
| 1588 |
-webkit-flex: none; |
| 1589 |
-ms-flex: none; |
| 1590 |
flex: none; |
| 1591 |
width: 66.6666666667%; |
| 1592 |
} |
| 1593 |
.column.is-offset-8-mobile { |
| 1594 |
margin-left: 66.6666666667%; |
| 1595 |
} |
| 1596 |
.column.is-9-mobile { |
| 1597 |
-webkit-box-flex: 0; |
| 1598 |
-webkit-flex: none; |
| 1599 |
-ms-flex: none; |
| 1600 |
flex: none; |
| 1601 |
width: 75%; |
| 1602 |
} |
| 1603 |
.column.is-offset-9-mobile { |
| 1604 |
margin-left: 75%; |
| 1605 |
} |
| 1606 |
.column.is-10-mobile { |
| 1607 |
-webkit-box-flex: 0; |
| 1608 |
-webkit-flex: none; |
| 1609 |
-ms-flex: none; |
| 1610 |
flex: none; |
| 1611 |
width: 83.3333333333%; |
| 1612 |
} |
| 1613 |
.column.is-offset-10-mobile { |
| 1614 |
margin-left: 83.3333333333%; |
| 1615 |
} |
| 1616 |
.column.is-11-mobile { |
| 1617 |
-webkit-box-flex: 0; |
| 1618 |
-webkit-flex: none; |
| 1619 |
-ms-flex: none; |
| 1620 |
flex: none; |
| 1621 |
width: 91.6666666667%; |
| 1622 |
} |
| 1623 |
.column.is-offset-11-mobile { |
| 1624 |
margin-left: 91.6666666667%; |
| 1625 |
} |
| 1626 |
.column.is-12-mobile { |
| 1627 |
-webkit-box-flex: 0; |
| 1628 |
-webkit-flex: none; |
| 1629 |
-ms-flex: none; |
| 1630 |
flex: none; |
| 1631 |
width: 100%; |
| 1632 |
} |
| 1633 |
.column.is-offset-12-mobile { |
| 1634 |
margin-left: 100%; |
| 1635 |
} |
| 1636 |
} |
| 1637 |
@media screen and (min-width: 769px), print { |
| 1638 |
.column.is-narrow, .column.is-narrow-tablet { |
| 1639 |
-webkit-box-flex: 0; |
| 1640 |
-webkit-flex: none; |
| 1641 |
-ms-flex: none; |
| 1642 |
flex: none; |
| 1643 |
width: unset; |
| 1644 |
} |
| 1645 |
.column.is-full, .column.is-full-tablet { |
| 1646 |
-webkit-box-flex: 0; |
| 1647 |
-webkit-flex: none; |
| 1648 |
-ms-flex: none; |
| 1649 |
flex: none; |
| 1650 |
width: 100%; |
| 1651 |
} |
| 1652 |
.column.is-three-quarters, .column.is-three-quarters-tablet { |
| 1653 |
-webkit-box-flex: 0; |
| 1654 |
-webkit-flex: none; |
| 1655 |
-ms-flex: none; |
| 1656 |
flex: none; |
| 1657 |
width: 75%; |
| 1658 |
} |
| 1659 |
.column.is-two-thirds, .column.is-two-thirds-tablet { |
| 1660 |
-webkit-box-flex: 0; |
| 1661 |
-webkit-flex: none; |
| 1662 |
-ms-flex: none; |
| 1663 |
flex: none; |
| 1664 |
width: 66.6666%; |
| 1665 |
} |
| 1666 |
.column.is-half, .column.is-half-tablet { |
| 1667 |
-webkit-box-flex: 0; |
| 1668 |
-webkit-flex: none; |
| 1669 |
-ms-flex: none; |
| 1670 |
flex: none; |
| 1671 |
width: 50%; |
| 1672 |
} |
| 1673 |
.column.is-one-third, .column.is-one-third-tablet { |
| 1674 |
-webkit-box-flex: 0; |
| 1675 |
-webkit-flex: none; |
| 1676 |
-ms-flex: none; |
| 1677 |
flex: none; |
| 1678 |
width: 33.3333%; |
| 1679 |
} |
| 1680 |
.column.is-one-quarter, .column.is-one-quarter-tablet { |
| 1681 |
-webkit-box-flex: 0; |
| 1682 |
-webkit-flex: none; |
| 1683 |
-ms-flex: none; |
| 1684 |
flex: none; |
| 1685 |
width: 25%; |
| 1686 |
} |
| 1687 |
.column.is-one-fifth, .column.is-one-fifth-tablet { |
| 1688 |
-webkit-box-flex: 0; |
| 1689 |
-webkit-flex: none; |
| 1690 |
-ms-flex: none; |
| 1691 |
flex: none; |
| 1692 |
width: 20%; |
| 1693 |
} |
| 1694 |
.column.is-two-fifths, .column.is-two-fifths-tablet { |
| 1695 |
-webkit-box-flex: 0; |
| 1696 |
-webkit-flex: none; |
| 1697 |
-ms-flex: none; |
| 1698 |
flex: none; |
| 1699 |
width: 40%; |
| 1700 |
} |
| 1701 |
.column.is-three-fifths, .column.is-three-fifths-tablet { |
| 1702 |
-webkit-box-flex: 0; |
| 1703 |
-webkit-flex: none; |
| 1704 |
-ms-flex: none; |
| 1705 |
flex: none; |
| 1706 |
width: 60%; |
| 1707 |
} |
| 1708 |
.column.is-four-fifths, .column.is-four-fifths-tablet { |
| 1709 |
-webkit-box-flex: 0; |
| 1710 |
-webkit-flex: none; |
| 1711 |
-ms-flex: none; |
| 1712 |
flex: none; |
| 1713 |
width: 80%; |
| 1714 |
} |
| 1715 |
.column.is-offset-three-quarters, .column.is-offset-three-quarters-tablet { |
| 1716 |
margin-left: 75%; |
| 1717 |
} |
| 1718 |
.column.is-offset-two-thirds, .column.is-offset-two-thirds-tablet { |
| 1719 |
margin-left: 66.6666%; |
| 1720 |
} |
| 1721 |
.column.is-offset-half, .column.is-offset-half-tablet { |
| 1722 |
margin-left: 50%; |
| 1723 |
} |
| 1724 |
.column.is-offset-one-third, .column.is-offset-one-third-tablet { |
| 1725 |
margin-left: 33.3333%; |
| 1726 |
} |
| 1727 |
.column.is-offset-one-quarter, .column.is-offset-one-quarter-tablet { |
| 1728 |
margin-left: 25%; |
| 1729 |
} |
| 1730 |
.column.is-offset-one-fifth, .column.is-offset-one-fifth-tablet { |
| 1731 |
margin-left: 20%; |
| 1732 |
} |
| 1733 |
.column.is-offset-two-fifths, .column.is-offset-two-fifths-tablet { |
| 1734 |
margin-left: 40%; |
| 1735 |
} |
| 1736 |
.column.is-offset-three-fifths, .column.is-offset-three-fifths-tablet { |
| 1737 |
margin-left: 60%; |
| 1738 |
} |
| 1739 |
.column.is-offset-four-fifths, .column.is-offset-four-fifths-tablet { |
| 1740 |
margin-left: 80%; |
| 1741 |
} |
| 1742 |
.column.is-0, .column.is-0-tablet { |
| 1743 |
-webkit-box-flex: 0; |
| 1744 |
-webkit-flex: none; |
| 1745 |
-ms-flex: none; |
| 1746 |
flex: none; |
| 1747 |
width: 0%; |
| 1748 |
} |
| 1749 |
.column.is-offset-0, .column.is-offset-0-tablet { |
| 1750 |
margin-left: 0%; |
| 1751 |
} |
| 1752 |
.column.is-1, .column.is-1-tablet { |
| 1753 |
-webkit-box-flex: 0; |
| 1754 |
-webkit-flex: none; |
| 1755 |
-ms-flex: none; |
| 1756 |
flex: none; |
| 1757 |
width: 8.3333333333%; |
| 1758 |
} |
| 1759 |
.column.is-offset-1, .column.is-offset-1-tablet { |
| 1760 |
margin-left: 8.3333333333%; |
| 1761 |
} |
| 1762 |
.column.is-2, .column.is-2-tablet { |
| 1763 |
-webkit-box-flex: 0; |
| 1764 |
-webkit-flex: none; |
| 1765 |
-ms-flex: none; |
| 1766 |
flex: none; |
| 1767 |
width: 16.6666666667%; |
| 1768 |
} |
| 1769 |
.column.is-offset-2, .column.is-offset-2-tablet { |
| 1770 |
margin-left: 16.6666666667%; |
| 1771 |
} |
| 1772 |
.column.is-3, .column.is-3-tablet { |
| 1773 |
-webkit-box-flex: 0; |
| 1774 |
-webkit-flex: none; |
| 1775 |
-ms-flex: none; |
| 1776 |
flex: none; |
| 1777 |
width: 25%; |
| 1778 |
} |
| 1779 |
.column.is-offset-3, .column.is-offset-3-tablet { |
| 1780 |
margin-left: 25%; |
| 1781 |
} |
| 1782 |
.column.is-4, .column.is-4-tablet { |
| 1783 |
-webkit-box-flex: 0; |
| 1784 |
-webkit-flex: none; |
| 1785 |
-ms-flex: none; |
| 1786 |
flex: none; |
| 1787 |
width: 33.3333333333%; |
| 1788 |
} |
| 1789 |
.column.is-offset-4, .column.is-offset-4-tablet { |
| 1790 |
margin-left: 33.3333333333%; |
| 1791 |
} |
| 1792 |
.column.is-5, .column.is-5-tablet { |
| 1793 |
-webkit-box-flex: 0; |
| 1794 |
-webkit-flex: none; |
| 1795 |
-ms-flex: none; |
| 1796 |
flex: none; |
| 1797 |
width: 41.6666666667%; |
| 1798 |
} |
| 1799 |
.column.is-offset-5, .column.is-offset-5-tablet { |
| 1800 |
margin-left: 41.6666666667%; |
| 1801 |
} |
| 1802 |
.column.is-6, .column.is-6-tablet { |
| 1803 |
-webkit-box-flex: 0; |
| 1804 |
-webkit-flex: none; |
| 1805 |
-ms-flex: none; |
| 1806 |
flex: none; |
| 1807 |
width: 50%; |
| 1808 |
} |
| 1809 |
.column.is-offset-6, .column.is-offset-6-tablet { |
| 1810 |
margin-left: 50%; |
| 1811 |
} |
| 1812 |
.column.is-7, .column.is-7-tablet { |
| 1813 |
-webkit-box-flex: 0; |
| 1814 |
-webkit-flex: none; |
| 1815 |
-ms-flex: none; |
| 1816 |
flex: none; |
| 1817 |
width: 58.3333333333%; |
| 1818 |
} |
| 1819 |
.column.is-offset-7, .column.is-offset-7-tablet { |
| 1820 |
margin-left: 58.3333333333%; |
| 1821 |
} |
| 1822 |
.column.is-8, .column.is-8-tablet { |
| 1823 |
-webkit-box-flex: 0; |
| 1824 |
-webkit-flex: none; |
| 1825 |
-ms-flex: none; |
| 1826 |
flex: none; |
| 1827 |
width: 66.6666666667%; |
| 1828 |
} |
| 1829 |
.column.is-offset-8, .column.is-offset-8-tablet { |
| 1830 |
margin-left: 66.6666666667%; |
| 1831 |
} |
| 1832 |
.column.is-9, .column.is-9-tablet { |
| 1833 |
-webkit-box-flex: 0; |
| 1834 |
-webkit-flex: none; |
| 1835 |
-ms-flex: none; |
| 1836 |
flex: none; |
| 1837 |
width: 75%; |
| 1838 |
} |
| 1839 |
.column.is-offset-9, .column.is-offset-9-tablet { |
| 1840 |
margin-left: 75%; |
| 1841 |
} |
| 1842 |
.column.is-10, .column.is-10-tablet { |
| 1843 |
-webkit-box-flex: 0; |
| 1844 |
-webkit-flex: none; |
| 1845 |
-ms-flex: none; |
| 1846 |
flex: none; |
| 1847 |
width: 83.3333333333%; |
| 1848 |
} |
| 1849 |
.column.is-offset-10, .column.is-offset-10-tablet { |
| 1850 |
margin-left: 83.3333333333%; |
| 1851 |
} |
| 1852 |
.column.is-11, .column.is-11-tablet { |
| 1853 |
-webkit-box-flex: 0; |
| 1854 |
-webkit-flex: none; |
| 1855 |
-ms-flex: none; |
| 1856 |
flex: none; |
| 1857 |
width: 91.6666666667%; |
| 1858 |
} |
| 1859 |
.column.is-offset-11, .column.is-offset-11-tablet { |
| 1860 |
margin-left: 91.6666666667%; |
| 1861 |
} |
| 1862 |
.column.is-12, .column.is-12-tablet { |
| 1863 |
-webkit-box-flex: 0; |
| 1864 |
-webkit-flex: none; |
| 1865 |
-ms-flex: none; |
| 1866 |
flex: none; |
| 1867 |
width: 100%; |
| 1868 |
} |
| 1869 |
.column.is-offset-12, .column.is-offset-12-tablet { |
| 1870 |
margin-left: 100%; |
| 1871 |
} |
| 1872 |
} |
| 1873 |
@media screen and (max-width: 1023px) { |
| 1874 |
.column.is-narrow-touch { |
| 1875 |
-webkit-box-flex: 0; |
| 1876 |
-webkit-flex: none; |
| 1877 |
-ms-flex: none; |
| 1878 |
flex: none; |
| 1879 |
width: unset; |
| 1880 |
} |
| 1881 |
.column.is-full-touch { |
| 1882 |
-webkit-box-flex: 0; |
| 1883 |
-webkit-flex: none; |
| 1884 |
-ms-flex: none; |
| 1885 |
flex: none; |
| 1886 |
width: 100%; |
| 1887 |
} |
| 1888 |
.column.is-three-quarters-touch { |
| 1889 |
-webkit-box-flex: 0; |
| 1890 |
-webkit-flex: none; |
| 1891 |
-ms-flex: none; |
| 1892 |
flex: none; |
| 1893 |
width: 75%; |
| 1894 |
} |
| 1895 |
.column.is-two-thirds-touch { |
| 1896 |
-webkit-box-flex: 0; |
| 1897 |
-webkit-flex: none; |
| 1898 |
-ms-flex: none; |
| 1899 |
flex: none; |
| 1900 |
width: 66.6666%; |
| 1901 |
} |
| 1902 |
.column.is-half-touch { |
| 1903 |
-webkit-box-flex: 0; |
| 1904 |
-webkit-flex: none; |
| 1905 |
-ms-flex: none; |
| 1906 |
flex: none; |
| 1907 |
width: 50%; |
| 1908 |
} |
| 1909 |
.column.is-one-third-touch { |
| 1910 |
-webkit-box-flex: 0; |
| 1911 |
-webkit-flex: none; |
| 1912 |
-ms-flex: none; |
| 1913 |
flex: none; |
| 1914 |
width: 33.3333%; |
| 1915 |
} |
| 1916 |
.column.is-one-quarter-touch { |
| 1917 |
-webkit-box-flex: 0; |
| 1918 |
-webkit-flex: none; |
| 1919 |
-ms-flex: none; |
| 1920 |
flex: none; |
| 1921 |
width: 25%; |
| 1922 |
} |
| 1923 |
.column.is-one-fifth-touch { |
| 1924 |
-webkit-box-flex: 0; |
| 1925 |
-webkit-flex: none; |
| 1926 |
-ms-flex: none; |
| 1927 |
flex: none; |
| 1928 |
width: 20%; |
| 1929 |
} |
| 1930 |
.column.is-two-fifths-touch { |
| 1931 |
-webkit-box-flex: 0; |
| 1932 |
-webkit-flex: none; |
| 1933 |
-ms-flex: none; |
| 1934 |
flex: none; |
| 1935 |
width: 40%; |
| 1936 |
} |
| 1937 |
.column.is-three-fifths-touch { |
| 1938 |
-webkit-box-flex: 0; |
| 1939 |
-webkit-flex: none; |
| 1940 |
-ms-flex: none; |
| 1941 |
flex: none; |
| 1942 |
width: 60%; |
| 1943 |
} |
| 1944 |
.column.is-four-fifths-touch { |
| 1945 |
-webkit-box-flex: 0; |
| 1946 |
-webkit-flex: none; |
| 1947 |
-ms-flex: none; |
| 1948 |
flex: none; |
| 1949 |
width: 80%; |
| 1950 |
} |
| 1951 |
.column.is-offset-three-quarters-touch { |
| 1952 |
margin-left: 75%; |
| 1953 |
} |
| 1954 |
.column.is-offset-two-thirds-touch { |
| 1955 |
margin-left: 66.6666%; |
| 1956 |
} |
| 1957 |
.column.is-offset-half-touch { |
| 1958 |
margin-left: 50%; |
| 1959 |
} |
| 1960 |
.column.is-offset-one-third-touch { |
| 1961 |
margin-left: 33.3333%; |
| 1962 |
} |
| 1963 |
.column.is-offset-one-quarter-touch { |
| 1964 |
margin-left: 25%; |
| 1965 |
} |
| 1966 |
.column.is-offset-one-fifth-touch { |
| 1967 |
margin-left: 20%; |
| 1968 |
} |
| 1969 |
.column.is-offset-two-fifths-touch { |
| 1970 |
margin-left: 40%; |
| 1971 |
} |
| 1972 |
.column.is-offset-three-fifths-touch { |
| 1973 |
margin-left: 60%; |
| 1974 |
} |
| 1975 |
.column.is-offset-four-fifths-touch { |
| 1976 |
margin-left: 80%; |
| 1977 |
} |
| 1978 |
.column.is-0-touch { |
| 1979 |
-webkit-box-flex: 0; |
| 1980 |
-webkit-flex: none; |
| 1981 |
-ms-flex: none; |
| 1982 |
flex: none; |
| 1983 |
width: 0%; |
| 1984 |
} |
| 1985 |
.column.is-offset-0-touch { |
| 1986 |
margin-left: 0%; |
| 1987 |
} |
| 1988 |
.column.is-1-touch { |
| 1989 |
-webkit-box-flex: 0; |
| 1990 |
-webkit-flex: none; |
| 1991 |
-ms-flex: none; |
| 1992 |
flex: none; |
| 1993 |
width: 8.3333333333%; |
| 1994 |
} |
| 1995 |
.column.is-offset-1-touch { |
| 1996 |
margin-left: 8.3333333333%; |
| 1997 |
} |
| 1998 |
.column.is-2-touch { |
| 1999 |
-webkit-box-flex: 0; |
| 2000 |
-webkit-flex: none; |
| 2001 |
-ms-flex: none; |
| 2002 |
flex: none; |
| 2003 |
width: 16.6666666667%; |
| 2004 |
} |
| 2005 |
.column.is-offset-2-touch { |
| 2006 |
margin-left: 16.6666666667%; |
| 2007 |
} |
| 2008 |
.column.is-3-touch { |
| 2009 |
-webkit-box-flex: 0; |
| 2010 |
-webkit-flex: none; |
| 2011 |
-ms-flex: none; |
| 2012 |
flex: none; |
| 2013 |
width: 25%; |
| 2014 |
} |
| 2015 |
.column.is-offset-3-touch { |
| 2016 |
margin-left: 25%; |
| 2017 |
} |
| 2018 |
.column.is-4-touch { |
| 2019 |
-webkit-box-flex: 0; |
| 2020 |
-webkit-flex: none; |
| 2021 |
-ms-flex: none; |
| 2022 |
flex: none; |
| 2023 |
width: 33.3333333333%; |
| 2024 |
} |
| 2025 |
.column.is-offset-4-touch { |
| 2026 |
margin-left: 33.3333333333%; |
| 2027 |
} |
| 2028 |
.column.is-5-touch { |
| 2029 |
-webkit-box-flex: 0; |
| 2030 |
-webkit-flex: none; |
| 2031 |
-ms-flex: none; |
| 2032 |
flex: none; |
| 2033 |
width: 41.6666666667%; |
| 2034 |
} |
| 2035 |
.column.is-offset-5-touch { |
| 2036 |
margin-left: 41.6666666667%; |
| 2037 |
} |
| 2038 |
.column.is-6-touch { |
| 2039 |
-webkit-box-flex: 0; |
| 2040 |
-webkit-flex: none; |
| 2041 |
-ms-flex: none; |
| 2042 |
flex: none; |
| 2043 |
width: 50%; |
| 2044 |
} |
| 2045 |
.column.is-offset-6-touch { |
| 2046 |
margin-left: 50%; |
| 2047 |
} |
| 2048 |
.column.is-7-touch { |
| 2049 |
-webkit-box-flex: 0; |
| 2050 |
-webkit-flex: none; |
| 2051 |
-ms-flex: none; |
| 2052 |
flex: none; |
| 2053 |
width: 58.3333333333%; |
| 2054 |
} |
| 2055 |
.column.is-offset-7-touch { |
| 2056 |
margin-left: 58.3333333333%; |
| 2057 |
} |
| 2058 |
.column.is-8-touch { |
| 2059 |
-webkit-box-flex: 0; |
| 2060 |
-webkit-flex: none; |
| 2061 |
-ms-flex: none; |
| 2062 |
flex: none; |
| 2063 |
width: 66.6666666667%; |
| 2064 |
} |
| 2065 |
.column.is-offset-8-touch { |
| 2066 |
margin-left: 66.6666666667%; |
| 2067 |
} |
| 2068 |
.column.is-9-touch { |
| 2069 |
-webkit-box-flex: 0; |
| 2070 |
-webkit-flex: none; |
| 2071 |
-ms-flex: none; |
| 2072 |
flex: none; |
| 2073 |
width: 75%; |
| 2074 |
} |
| 2075 |
.column.is-offset-9-touch { |
| 2076 |
margin-left: 75%; |
| 2077 |
} |
| 2078 |
.column.is-10-touch { |
| 2079 |
-webkit-box-flex: 0; |
| 2080 |
-webkit-flex: none; |
| 2081 |
-ms-flex: none; |
| 2082 |
flex: none; |
| 2083 |
width: 83.3333333333%; |
| 2084 |
} |
| 2085 |
.column.is-offset-10-touch { |
| 2086 |
margin-left: 83.3333333333%; |
| 2087 |
} |
| 2088 |
.column.is-11-touch { |
| 2089 |
-webkit-box-flex: 0; |
| 2090 |
-webkit-flex: none; |
| 2091 |
-ms-flex: none; |
| 2092 |
flex: none; |
| 2093 |
width: 91.6666666667%; |
| 2094 |
} |
| 2095 |
.column.is-offset-11-touch { |
| 2096 |
margin-left: 91.6666666667%; |
| 2097 |
} |
| 2098 |
.column.is-12-touch { |
| 2099 |
-webkit-box-flex: 0; |
| 2100 |
-webkit-flex: none; |
| 2101 |
-ms-flex: none; |
| 2102 |
flex: none; |
| 2103 |
width: 100%; |
| 2104 |
} |
| 2105 |
.column.is-offset-12-touch { |
| 2106 |
margin-left: 100%; |
| 2107 |
} |
| 2108 |
} |
| 2109 |
@media screen and (min-width: 1024px) { |
| 2110 |
.column.is-narrow-desktop { |
| 2111 |
-webkit-box-flex: 0; |
| 2112 |
-webkit-flex: none; |
| 2113 |
-ms-flex: none; |
| 2114 |
flex: none; |
| 2115 |
width: unset; |
| 2116 |
} |
| 2117 |
.column.is-full-desktop { |
| 2118 |
-webkit-box-flex: 0; |
| 2119 |
-webkit-flex: none; |
| 2120 |
-ms-flex: none; |
| 2121 |
flex: none; |
| 2122 |
width: 100%; |
| 2123 |
} |
| 2124 |
.column.is-three-quarters-desktop { |
| 2125 |
-webkit-box-flex: 0; |
| 2126 |
-webkit-flex: none; |
| 2127 |
-ms-flex: none; |
| 2128 |
flex: none; |
| 2129 |
width: 75%; |
| 2130 |
} |
| 2131 |
.column.is-two-thirds-desktop { |
| 2132 |
-webkit-box-flex: 0; |
| 2133 |
-webkit-flex: none; |
| 2134 |
-ms-flex: none; |
| 2135 |
flex: none; |
| 2136 |
width: 66.6666%; |
| 2137 |
} |
| 2138 |
.column.is-half-desktop { |
| 2139 |
-webkit-box-flex: 0; |
| 2140 |
-webkit-flex: none; |
| 2141 |
-ms-flex: none; |
| 2142 |
flex: none; |
| 2143 |
width: 50%; |
| 2144 |
} |
| 2145 |
.column.is-one-third-desktop { |
| 2146 |
-webkit-box-flex: 0; |
| 2147 |
-webkit-flex: none; |
| 2148 |
-ms-flex: none; |
| 2149 |
flex: none; |
| 2150 |
width: 33.3333%; |
| 2151 |
} |
| 2152 |
.column.is-one-quarter-desktop { |
| 2153 |
-webkit-box-flex: 0; |
| 2154 |
-webkit-flex: none; |
| 2155 |
-ms-flex: none; |
| 2156 |
flex: none; |
| 2157 |
width: 25%; |
| 2158 |
} |
| 2159 |
.column.is-one-fifth-desktop { |
| 2160 |
-webkit-box-flex: 0; |
| 2161 |
-webkit-flex: none; |
| 2162 |
-ms-flex: none; |
| 2163 |
flex: none; |
| 2164 |
width: 20%; |
| 2165 |
} |
| 2166 |
.column.is-two-fifths-desktop { |
| 2167 |
-webkit-box-flex: 0; |
| 2168 |
-webkit-flex: none; |
| 2169 |
-ms-flex: none; |
| 2170 |
flex: none; |
| 2171 |
width: 40%; |
| 2172 |
} |
| 2173 |
.column.is-three-fifths-desktop { |
| 2174 |
-webkit-box-flex: 0; |
| 2175 |
-webkit-flex: none; |
| 2176 |
-ms-flex: none; |
| 2177 |
flex: none; |
| 2178 |
width: 60%; |
| 2179 |
} |
| 2180 |
.column.is-four-fifths-desktop { |
| 2181 |
-webkit-box-flex: 0; |
| 2182 |
-webkit-flex: none; |
| 2183 |
-ms-flex: none; |
| 2184 |
flex: none; |
| 2185 |
width: 80%; |
| 2186 |
} |
| 2187 |
.column.is-offset-three-quarters-desktop { |
| 2188 |
margin-left: 75%; |
| 2189 |
} |
| 2190 |
.column.is-offset-two-thirds-desktop { |
| 2191 |
margin-left: 66.6666%; |
| 2192 |
} |
| 2193 |
.column.is-offset-half-desktop { |
| 2194 |
margin-left: 50%; |
| 2195 |
} |
| 2196 |
.column.is-offset-one-third-desktop { |
| 2197 |
margin-left: 33.3333%; |
| 2198 |
} |
| 2199 |
.column.is-offset-one-quarter-desktop { |
| 2200 |
margin-left: 25%; |
| 2201 |
} |
| 2202 |
.column.is-offset-one-fifth-desktop { |
| 2203 |
margin-left: 20%; |
| 2204 |
} |
| 2205 |
.column.is-offset-two-fifths-desktop { |
| 2206 |
margin-left: 40%; |
| 2207 |
} |
| 2208 |
.column.is-offset-three-fifths-desktop { |
| 2209 |
margin-left: 60%; |
| 2210 |
} |
| 2211 |
.column.is-offset-four-fifths-desktop { |
| 2212 |
margin-left: 80%; |
| 2213 |
} |
| 2214 |
.column.is-0-desktop { |
| 2215 |
-webkit-box-flex: 0; |
| 2216 |
-webkit-flex: none; |
| 2217 |
-ms-flex: none; |
| 2218 |
flex: none; |
| 2219 |
width: 0%; |
| 2220 |
} |
| 2221 |
.column.is-offset-0-desktop { |
| 2222 |
margin-left: 0%; |
| 2223 |
} |
| 2224 |
.column.is-1-desktop { |
| 2225 |
-webkit-box-flex: 0; |
| 2226 |
-webkit-flex: none; |
| 2227 |
-ms-flex: none; |
| 2228 |
flex: none; |
| 2229 |
width: 8.3333333333%; |
| 2230 |
} |
| 2231 |
.column.is-offset-1-desktop { |
| 2232 |
margin-left: 8.3333333333%; |
| 2233 |
} |
| 2234 |
.column.is-2-desktop { |
| 2235 |
-webkit-box-flex: 0; |
| 2236 |
-webkit-flex: none; |
| 2237 |
-ms-flex: none; |
| 2238 |
flex: none; |
| 2239 |
width: 16.6666666667%; |
| 2240 |
} |
| 2241 |
.column.is-offset-2-desktop { |
| 2242 |
margin-left: 16.6666666667%; |
| 2243 |
} |
| 2244 |
.column.is-3-desktop { |
| 2245 |
-webkit-box-flex: 0; |
| 2246 |
-webkit-flex: none; |
| 2247 |
-ms-flex: none; |
| 2248 |
flex: none; |
| 2249 |
width: 25%; |
| 2250 |
} |
| 2251 |
.column.is-offset-3-desktop { |
| 2252 |
margin-left: 25%; |
| 2253 |
} |
| 2254 |
.column.is-4-desktop { |
| 2255 |
-webkit-box-flex: 0; |
| 2256 |
-webkit-flex: none; |
| 2257 |
-ms-flex: none; |
| 2258 |
flex: none; |
| 2259 |
width: 33.3333333333%; |
| 2260 |
} |
| 2261 |
.column.is-offset-4-desktop { |
| 2262 |
margin-left: 33.3333333333%; |
| 2263 |
} |
| 2264 |
.column.is-5-desktop { |
| 2265 |
-webkit-box-flex: 0; |
| 2266 |
-webkit-flex: none; |
| 2267 |
-ms-flex: none; |
| 2268 |
flex: none; |
| 2269 |
width: 41.6666666667%; |
| 2270 |
} |
| 2271 |
.column.is-offset-5-desktop { |
| 2272 |
margin-left: 41.6666666667%; |
| 2273 |
} |
| 2274 |
.column.is-6-desktop { |
| 2275 |
-webkit-box-flex: 0; |
| 2276 |
-webkit-flex: none; |
| 2277 |
-ms-flex: none; |
| 2278 |
flex: none; |
| 2279 |
width: 50%; |
| 2280 |
} |
| 2281 |
.column.is-offset-6-desktop { |
| 2282 |
margin-left: 50%; |
| 2283 |
} |
| 2284 |
.column.is-7-desktop { |
| 2285 |
-webkit-box-flex: 0; |
| 2286 |
-webkit-flex: none; |
| 2287 |
-ms-flex: none; |
| 2288 |
flex: none; |
| 2289 |
width: 58.3333333333%; |
| 2290 |
} |
| 2291 |
.column.is-offset-7-desktop { |
| 2292 |
margin-left: 58.3333333333%; |
| 2293 |
} |
| 2294 |
.column.is-8-desktop { |
| 2295 |
-webkit-box-flex: 0; |
| 2296 |
-webkit-flex: none; |
| 2297 |
-ms-flex: none; |
| 2298 |
flex: none; |
| 2299 |
width: 66.6666666667%; |
| 2300 |
} |
| 2301 |
.column.is-offset-8-desktop { |
| 2302 |
margin-left: 66.6666666667%; |
| 2303 |
} |
| 2304 |
.column.is-9-desktop { |
| 2305 |
-webkit-box-flex: 0; |
| 2306 |
-webkit-flex: none; |
| 2307 |
-ms-flex: none; |
| 2308 |
flex: none; |
| 2309 |
width: 75%; |
| 2310 |
} |
| 2311 |
.column.is-offset-9-desktop { |
| 2312 |
margin-left: 75%; |
| 2313 |
} |
| 2314 |
.column.is-10-desktop { |
| 2315 |
-webkit-box-flex: 0; |
| 2316 |
-webkit-flex: none; |
| 2317 |
-ms-flex: none; |
| 2318 |
flex: none; |
| 2319 |
width: 83.3333333333%; |
| 2320 |
} |
| 2321 |
.column.is-offset-10-desktop { |
| 2322 |
margin-left: 83.3333333333%; |
| 2323 |
} |
| 2324 |
.column.is-11-desktop { |
| 2325 |
-webkit-box-flex: 0; |
| 2326 |
-webkit-flex: none; |
| 2327 |
-ms-flex: none; |
| 2328 |
flex: none; |
| 2329 |
width: 91.6666666667%; |
| 2330 |
} |
| 2331 |
.column.is-offset-11-desktop { |
| 2332 |
margin-left: 91.6666666667%; |
| 2333 |
} |
| 2334 |
.column.is-12-desktop { |
| 2335 |
-webkit-box-flex: 0; |
| 2336 |
-webkit-flex: none; |
| 2337 |
-ms-flex: none; |
| 2338 |
flex: none; |
| 2339 |
width: 100%; |
| 2340 |
} |
| 2341 |
.column.is-offset-12-desktop { |
| 2342 |
margin-left: 100%; |
| 2343 |
} |
| 2344 |
} |
| 2345 |
@media screen and (min-width: 1216px) { |
| 2346 |
.column.is-narrow-widescreen { |
| 2347 |
-webkit-box-flex: 0; |
| 2348 |
-webkit-flex: none; |
| 2349 |
-ms-flex: none; |
| 2350 |
flex: none; |
| 2351 |
width: unset; |
| 2352 |
} |
| 2353 |
.column.is-full-widescreen { |
| 2354 |
-webkit-box-flex: 0; |
| 2355 |
-webkit-flex: none; |
| 2356 |
-ms-flex: none; |
| 2357 |
flex: none; |
| 2358 |
width: 100%; |
| 2359 |
} |
| 2360 |
.column.is-three-quarters-widescreen { |
| 2361 |
-webkit-box-flex: 0; |
| 2362 |
-webkit-flex: none; |
| 2363 |
-ms-flex: none; |
| 2364 |
flex: none; |
| 2365 |
width: 75%; |
| 2366 |
} |
| 2367 |
.column.is-two-thirds-widescreen { |
| 2368 |
-webkit-box-flex: 0; |
| 2369 |
-webkit-flex: none; |
| 2370 |
-ms-flex: none; |
| 2371 |
flex: none; |
| 2372 |
width: 66.6666%; |
| 2373 |
} |
| 2374 |
.column.is-half-widescreen { |
| 2375 |
-webkit-box-flex: 0; |
| 2376 |
-webkit-flex: none; |
| 2377 |
-ms-flex: none; |
| 2378 |
flex: none; |
| 2379 |
width: 50%; |
| 2380 |
} |
| 2381 |
.column.is-one-third-widescreen { |
| 2382 |
-webkit-box-flex: 0; |
| 2383 |
-webkit-flex: none; |
| 2384 |
-ms-flex: none; |
| 2385 |
flex: none; |
| 2386 |
width: 33.3333%; |
| 2387 |
} |
| 2388 |
.column.is-one-quarter-widescreen { |
| 2389 |
-webkit-box-flex: 0; |
| 2390 |
-webkit-flex: none; |
| 2391 |
-ms-flex: none; |
| 2392 |
flex: none; |
| 2393 |
width: 25%; |
| 2394 |
} |
| 2395 |
.column.is-one-fifth-widescreen { |
| 2396 |
-webkit-box-flex: 0; |
| 2397 |
-webkit-flex: none; |
| 2398 |
-ms-flex: none; |
| 2399 |
flex: none; |
| 2400 |
width: 20%; |
| 2401 |
} |
| 2402 |
.column.is-two-fifths-widescreen { |
| 2403 |
-webkit-box-flex: 0; |
| 2404 |
-webkit-flex: none; |
| 2405 |
-ms-flex: none; |
| 2406 |
flex: none; |
| 2407 |
width: 40%; |
| 2408 |
} |
| 2409 |
.column.is-three-fifths-widescreen { |
| 2410 |
-webkit-box-flex: 0; |
| 2411 |
-webkit-flex: none; |
| 2412 |
-ms-flex: none; |
| 2413 |
flex: none; |
| 2414 |
width: 60%; |
| 2415 |
} |
| 2416 |
.column.is-four-fifths-widescreen { |
| 2417 |
-webkit-box-flex: 0; |
| 2418 |
-webkit-flex: none; |
| 2419 |
-ms-flex: none; |
| 2420 |
flex: none; |
| 2421 |
width: 80%; |
| 2422 |
} |
| 2423 |
.column.is-offset-three-quarters-widescreen { |
| 2424 |
margin-left: 75%; |
| 2425 |
} |
| 2426 |
.column.is-offset-two-thirds-widescreen { |
| 2427 |
margin-left: 66.6666%; |
| 2428 |
} |
| 2429 |
.column.is-offset-half-widescreen { |
| 2430 |
margin-left: 50%; |
| 2431 |
} |
| 2432 |
.column.is-offset-one-third-widescreen { |
| 2433 |
margin-left: 33.3333%; |
| 2434 |
} |
| 2435 |
.column.is-offset-one-quarter-widescreen { |
| 2436 |
margin-left: 25%; |
| 2437 |
} |
| 2438 |
.column.is-offset-one-fifth-widescreen { |
| 2439 |
margin-left: 20%; |
| 2440 |
} |
| 2441 |
.column.is-offset-two-fifths-widescreen { |
| 2442 |
margin-left: 40%; |
| 2443 |
} |
| 2444 |
.column.is-offset-three-fifths-widescreen { |
| 2445 |
margin-left: 60%; |
| 2446 |
} |
| 2447 |
.column.is-offset-four-fifths-widescreen { |
| 2448 |
margin-left: 80%; |
| 2449 |
} |
| 2450 |
.column.is-0-widescreen { |
| 2451 |
-webkit-box-flex: 0; |
| 2452 |
-webkit-flex: none; |
| 2453 |
-ms-flex: none; |
| 2454 |
flex: none; |
| 2455 |
width: 0%; |
| 2456 |
} |
| 2457 |
.column.is-offset-0-widescreen { |
| 2458 |
margin-left: 0%; |
| 2459 |
} |
| 2460 |
.column.is-1-widescreen { |
| 2461 |
-webkit-box-flex: 0; |
| 2462 |
-webkit-flex: none; |
| 2463 |
-ms-flex: none; |
| 2464 |
flex: none; |
| 2465 |
width: 8.3333333333%; |
| 2466 |
} |
| 2467 |
.column.is-offset-1-widescreen { |
| 2468 |
margin-left: 8.3333333333%; |
| 2469 |
} |
| 2470 |
.column.is-2-widescreen { |
| 2471 |
-webkit-box-flex: 0; |
| 2472 |
-webkit-flex: none; |
| 2473 |
-ms-flex: none; |
| 2474 |
flex: none; |
| 2475 |
width: 16.6666666667%; |
| 2476 |
} |
| 2477 |
.column.is-offset-2-widescreen { |
| 2478 |
margin-left: 16.6666666667%; |
| 2479 |
} |
| 2480 |
.column.is-3-widescreen { |
| 2481 |
-webkit-box-flex: 0; |
| 2482 |
-webkit-flex: none; |
| 2483 |
-ms-flex: none; |
| 2484 |
flex: none; |
| 2485 |
width: 25%; |
| 2486 |
} |
| 2487 |
.column.is-offset-3-widescreen { |
| 2488 |
margin-left: 25%; |
| 2489 |
} |
| 2490 |
.column.is-4-widescreen { |
| 2491 |
-webkit-box-flex: 0; |
| 2492 |
-webkit-flex: none; |
| 2493 |
-ms-flex: none; |
| 2494 |
flex: none; |
| 2495 |
width: 33.3333333333%; |
| 2496 |
} |
| 2497 |
.column.is-offset-4-widescreen { |
| 2498 |
margin-left: 33.3333333333%; |
| 2499 |
} |
| 2500 |
.column.is-5-widescreen { |
| 2501 |
-webkit-box-flex: 0; |
| 2502 |
-webkit-flex: none; |
| 2503 |
-ms-flex: none; |
| 2504 |
flex: none; |
| 2505 |
width: 41.6666666667%; |
| 2506 |
} |
| 2507 |
.column.is-offset-5-widescreen { |
| 2508 |
margin-left: 41.6666666667%; |
| 2509 |
} |
| 2510 |
.column.is-6-widescreen { |
| 2511 |
-webkit-box-flex: 0; |
| 2512 |
-webkit-flex: none; |
| 2513 |
-ms-flex: none; |
| 2514 |
flex: none; |
| 2515 |
width: 50%; |
| 2516 |
} |
| 2517 |
.column.is-offset-6-widescreen { |
| 2518 |
margin-left: 50%; |
| 2519 |
} |
| 2520 |
.column.is-7-widescreen { |
| 2521 |
-webkit-box-flex: 0; |
| 2522 |
-webkit-flex: none; |
| 2523 |
-ms-flex: none; |
| 2524 |
flex: none; |
| 2525 |
width: 58.3333333333%; |
| 2526 |
} |
| 2527 |
.column.is-offset-7-widescreen { |
| 2528 |
margin-left: 58.3333333333%; |
| 2529 |
} |
| 2530 |
.column.is-8-widescreen { |
| 2531 |
-webkit-box-flex: 0; |
| 2532 |
-webkit-flex: none; |
| 2533 |
-ms-flex: none; |
| 2534 |
flex: none; |
| 2535 |
width: 66.6666666667%; |
| 2536 |
} |
| 2537 |
.column.is-offset-8-widescreen { |
| 2538 |
margin-left: 66.6666666667%; |
| 2539 |
} |
| 2540 |
.column.is-9-widescreen { |
| 2541 |
-webkit-box-flex: 0; |
| 2542 |
-webkit-flex: none; |
| 2543 |
-ms-flex: none; |
| 2544 |
flex: none; |
| 2545 |
width: 75%; |
| 2546 |
} |
| 2547 |
.column.is-offset-9-widescreen { |
| 2548 |
margin-left: 75%; |
| 2549 |
} |
| 2550 |
.column.is-10-widescreen { |
| 2551 |
-webkit-box-flex: 0; |
| 2552 |
-webkit-flex: none; |
| 2553 |
-ms-flex: none; |
| 2554 |
flex: none; |
| 2555 |
width: 83.3333333333%; |
| 2556 |
} |
| 2557 |
.column.is-offset-10-widescreen { |
| 2558 |
margin-left: 83.3333333333%; |
| 2559 |
} |
| 2560 |
.column.is-11-widescreen { |
| 2561 |
-webkit-box-flex: 0; |
| 2562 |
-webkit-flex: none; |
| 2563 |
-ms-flex: none; |
| 2564 |
flex: none; |
| 2565 |
width: 91.6666666667%; |
| 2566 |
} |
| 2567 |
.column.is-offset-11-widescreen { |
| 2568 |
margin-left: 91.6666666667%; |
| 2569 |
} |
| 2570 |
.column.is-12-widescreen { |
| 2571 |
-webkit-box-flex: 0; |
| 2572 |
-webkit-flex: none; |
| 2573 |
-ms-flex: none; |
| 2574 |
flex: none; |
| 2575 |
width: 100%; |
| 2576 |
} |
| 2577 |
.column.is-offset-12-widescreen { |
| 2578 |
margin-left: 100%; |
| 2579 |
} |
| 2580 |
} |
| 2581 |
@media screen and (min-width: 1408px) { |
| 2582 |
.column.is-narrow-fullhd { |
| 2583 |
-webkit-box-flex: 0; |
| 2584 |
-webkit-flex: none; |
| 2585 |
-ms-flex: none; |
| 2586 |
flex: none; |
| 2587 |
width: unset; |
| 2588 |
} |
| 2589 |
.column.is-full-fullhd { |
| 2590 |
-webkit-box-flex: 0; |
| 2591 |
-webkit-flex: none; |
| 2592 |
-ms-flex: none; |
| 2593 |
flex: none; |
| 2594 |
width: 100%; |
| 2595 |
} |
| 2596 |
.column.is-three-quarters-fullhd { |
| 2597 |
-webkit-box-flex: 0; |
| 2598 |
-webkit-flex: none; |
| 2599 |
-ms-flex: none; |
| 2600 |
flex: none; |
| 2601 |
width: 75%; |
| 2602 |
} |
| 2603 |
.column.is-two-thirds-fullhd { |
| 2604 |
-webkit-box-flex: 0; |
| 2605 |
-webkit-flex: none; |
| 2606 |
-ms-flex: none; |
| 2607 |
flex: none; |
| 2608 |
width: 66.6666%; |
| 2609 |
} |
| 2610 |
.column.is-half-fullhd { |
| 2611 |
-webkit-box-flex: 0; |
| 2612 |
-webkit-flex: none; |
| 2613 |
-ms-flex: none; |
| 2614 |
flex: none; |
| 2615 |
width: 50%; |
| 2616 |
} |
| 2617 |
.column.is-one-third-fullhd { |
| 2618 |
-webkit-box-flex: 0; |
| 2619 |
-webkit-flex: none; |
| 2620 |
-ms-flex: none; |
| 2621 |
flex: none; |
| 2622 |
width: 33.3333%; |
| 2623 |
} |
| 2624 |
.column.is-one-quarter-fullhd { |
| 2625 |
-webkit-box-flex: 0; |
| 2626 |
-webkit-flex: none; |
| 2627 |
-ms-flex: none; |
| 2628 |
flex: none; |
| 2629 |
width: 25%; |
| 2630 |
} |
| 2631 |
.column.is-one-fifth-fullhd { |
| 2632 |
-webkit-box-flex: 0; |
| 2633 |
-webkit-flex: none; |
| 2634 |
-ms-flex: none; |
| 2635 |
flex: none; |
| 2636 |
width: 20%; |
| 2637 |
} |
| 2638 |
.column.is-two-fifths-fullhd { |
| 2639 |
-webkit-box-flex: 0; |
| 2640 |
-webkit-flex: none; |
| 2641 |
-ms-flex: none; |
| 2642 |
flex: none; |
| 2643 |
width: 40%; |
| 2644 |
} |
| 2645 |
.column.is-three-fifths-fullhd { |
| 2646 |
-webkit-box-flex: 0; |
| 2647 |
-webkit-flex: none; |
| 2648 |
-ms-flex: none; |
| 2649 |
flex: none; |
| 2650 |
width: 60%; |
| 2651 |
} |
| 2652 |
.column.is-four-fifths-fullhd { |
| 2653 |
-webkit-box-flex: 0; |
| 2654 |
-webkit-flex: none; |
| 2655 |
-ms-flex: none; |
| 2656 |
flex: none; |
| 2657 |
width: 80%; |
| 2658 |
} |
| 2659 |
.column.is-offset-three-quarters-fullhd { |
| 2660 |
margin-left: 75%; |
| 2661 |
} |
| 2662 |
.column.is-offset-two-thirds-fullhd { |
| 2663 |
margin-left: 66.6666%; |
| 2664 |
} |
| 2665 |
.column.is-offset-half-fullhd { |
| 2666 |
margin-left: 50%; |
| 2667 |
} |
| 2668 |
.column.is-offset-one-third-fullhd { |
| 2669 |
margin-left: 33.3333%; |
| 2670 |
} |
| 2671 |
.column.is-offset-one-quarter-fullhd { |
| 2672 |
margin-left: 25%; |
| 2673 |
} |
| 2674 |
.column.is-offset-one-fifth-fullhd { |
| 2675 |
margin-left: 20%; |
| 2676 |
} |
| 2677 |
.column.is-offset-two-fifths-fullhd { |
| 2678 |
margin-left: 40%; |
| 2679 |
} |
| 2680 |
.column.is-offset-three-fifths-fullhd { |
| 2681 |
margin-left: 60%; |
| 2682 |
} |
| 2683 |
.column.is-offset-four-fifths-fullhd { |
| 2684 |
margin-left: 80%; |
| 2685 |
} |
| 2686 |
.column.is-0-fullhd { |
| 2687 |
-webkit-box-flex: 0; |
| 2688 |
-webkit-flex: none; |
| 2689 |
-ms-flex: none; |
| 2690 |
flex: none; |
| 2691 |
width: 0%; |
| 2692 |
} |
| 2693 |
.column.is-offset-0-fullhd { |
| 2694 |
margin-left: 0%; |
| 2695 |
} |
| 2696 |
.column.is-1-fullhd { |
| 2697 |
-webkit-box-flex: 0; |
| 2698 |
-webkit-flex: none; |
| 2699 |
-ms-flex: none; |
| 2700 |
flex: none; |
| 2701 |
width: 8.3333333333%; |
| 2702 |
} |
| 2703 |
.column.is-offset-1-fullhd { |
| 2704 |
margin-left: 8.3333333333%; |
| 2705 |
} |
| 2706 |
.column.is-2-fullhd { |
| 2707 |
-webkit-box-flex: 0; |
| 2708 |
-webkit-flex: none; |
| 2709 |
-ms-flex: none; |
| 2710 |
flex: none; |
| 2711 |
width: 16.6666666667%; |
| 2712 |
} |
| 2713 |
.column.is-offset-2-fullhd { |
| 2714 |
margin-left: 16.6666666667%; |
| 2715 |
} |
| 2716 |
.column.is-3-fullhd { |
| 2717 |
-webkit-box-flex: 0; |
| 2718 |
-webkit-flex: none; |
| 2719 |
-ms-flex: none; |
| 2720 |
flex: none; |
| 2721 |
width: 25%; |
| 2722 |
} |
| 2723 |
.column.is-offset-3-fullhd { |
| 2724 |
margin-left: 25%; |
| 2725 |
} |
| 2726 |
.column.is-4-fullhd { |
| 2727 |
-webkit-box-flex: 0; |
| 2728 |
-webkit-flex: none; |
| 2729 |
-ms-flex: none; |
| 2730 |
flex: none; |
| 2731 |
width: 33.3333333333%; |
| 2732 |
} |
| 2733 |
.column.is-offset-4-fullhd { |
| 2734 |
margin-left: 33.3333333333%; |
| 2735 |
} |
| 2736 |
.column.is-5-fullhd { |
| 2737 |
-webkit-box-flex: 0; |
| 2738 |
-webkit-flex: none; |
| 2739 |
-ms-flex: none; |
| 2740 |
flex: none; |
| 2741 |
width: 41.6666666667%; |
| 2742 |
} |
| 2743 |
.column.is-offset-5-fullhd { |
| 2744 |
margin-left: 41.6666666667%; |
| 2745 |
} |
| 2746 |
.column.is-6-fullhd { |
| 2747 |
-webkit-box-flex: 0; |
| 2748 |
-webkit-flex: none; |
| 2749 |
-ms-flex: none; |
| 2750 |
flex: none; |
| 2751 |
width: 50%; |
| 2752 |
} |
| 2753 |
.column.is-offset-6-fullhd { |
| 2754 |
margin-left: 50%; |
| 2755 |
} |
| 2756 |
.column.is-7-fullhd { |
| 2757 |
-webkit-box-flex: 0; |
| 2758 |
-webkit-flex: none; |
| 2759 |
-ms-flex: none; |
| 2760 |
flex: none; |
| 2761 |
width: 58.3333333333%; |
| 2762 |
} |
| 2763 |
.column.is-offset-7-fullhd { |
| 2764 |
margin-left: 58.3333333333%; |
| 2765 |
} |
| 2766 |
.column.is-8-fullhd { |
| 2767 |
-webkit-box-flex: 0; |
| 2768 |
-webkit-flex: none; |
| 2769 |
-ms-flex: none; |
| 2770 |
flex: none; |
| 2771 |
width: 66.6666666667%; |
| 2772 |
} |
| 2773 |
.column.is-offset-8-fullhd { |
| 2774 |
margin-left: 66.6666666667%; |
| 2775 |
} |
| 2776 |
.column.is-9-fullhd { |
| 2777 |
-webkit-box-flex: 0; |
| 2778 |
-webkit-flex: none; |
| 2779 |
-ms-flex: none; |
| 2780 |
flex: none; |
| 2781 |
width: 75%; |
| 2782 |
} |
| 2783 |
.column.is-offset-9-fullhd { |
| 2784 |
margin-left: 75%; |
| 2785 |
} |
| 2786 |
.column.is-10-fullhd { |
| 2787 |
-webkit-box-flex: 0; |
| 2788 |
-webkit-flex: none; |
| 2789 |
-ms-flex: none; |
| 2790 |
flex: none; |
| 2791 |
width: 83.3333333333%; |
| 2792 |
} |
| 2793 |
.column.is-offset-10-fullhd { |
| 2794 |
margin-left: 83.3333333333%; |
| 2795 |
} |
| 2796 |
.column.is-11-fullhd { |
| 2797 |
-webkit-box-flex: 0; |
| 2798 |
-webkit-flex: none; |
| 2799 |
-ms-flex: none; |
| 2800 |
flex: none; |
| 2801 |
width: 91.6666666667%; |
| 2802 |
} |
| 2803 |
.column.is-offset-11-fullhd { |
| 2804 |
margin-left: 91.6666666667%; |
| 2805 |
} |
| 2806 |
.column.is-12-fullhd { |
| 2807 |
-webkit-box-flex: 0; |
| 2808 |
-webkit-flex: none; |
| 2809 |
-ms-flex: none; |
| 2810 |
flex: none; |
| 2811 |
width: 100%; |
| 2812 |
} |
| 2813 |
.column.is-offset-12-fullhd { |
| 2814 |
margin-left: 100%; |
| 2815 |
} |
| 2816 |
} |
| 2817 |
|
| 2818 |
.columns { |
| 2819 |
margin-left: -0.75rem; |
| 2820 |
margin-right: -0.75rem; |
| 2821 |
margin-top: -0.75rem; |
| 2822 |
} |
| 2823 |
.columns:last-child { |
| 2824 |
margin-bottom: -0.75rem; |
| 2825 |
} |
| 2826 |
.columns:not(:last-child) { |
| 2827 |
margin-bottom: -webkit-calc(1.5rem - 0.75rem); |
| 2828 |
margin-bottom: calc(1.5rem - 0.75rem); |
| 2829 |
} |
| 2830 |
.columns.is-centered { |
| 2831 |
-webkit-box-pack: center; |
| 2832 |
-webkit-justify-content: center; |
| 2833 |
-ms-flex-pack: center; |
| 2834 |
justify-content: center; |
| 2835 |
} |
| 2836 |
.columns.is-gapless { |
| 2837 |
margin-left: 0; |
| 2838 |
margin-right: 0; |
| 2839 |
margin-top: 0; |
| 2840 |
} |
| 2841 |
.columns.is-gapless > .column { |
| 2842 |
margin: 0; |
| 2843 |
padding: 0 !important; |
| 2844 |
} |
| 2845 |
.columns.is-gapless:not(:last-child) { |
| 2846 |
margin-bottom: 1.5rem; |
| 2847 |
} |
| 2848 |
.columns.is-gapless:last-child { |
| 2849 |
margin-bottom: 0; |
| 2850 |
} |
| 2851 |
.columns.is-mobile { |
| 2852 |
display: -webkit-box; |
| 2853 |
display: -webkit-flex; |
| 2854 |
display: -ms-flexbox; |
| 2855 |
display: flex; |
| 2856 |
} |
| 2857 |
.columns.is-multiline { |
| 2858 |
-webkit-flex-wrap: wrap; |
| 2859 |
-ms-flex-wrap: wrap; |
| 2860 |
flex-wrap: wrap; |
| 2861 |
} |
| 2862 |
.columns.is-vcentered { |
| 2863 |
-webkit-box-align: center; |
| 2864 |
-webkit-align-items: center; |
| 2865 |
-ms-flex-align: center; |
| 2866 |
align-items: center; |
| 2867 |
} |
| 2868 |
@media screen and (min-width: 769px), print { |
| 2869 |
.columns:not(.is-desktop) { |
| 2870 |
display: -webkit-box; |
| 2871 |
display: -webkit-flex; |
| 2872 |
display: -ms-flexbox; |
| 2873 |
display: flex; |
| 2874 |
} |
| 2875 |
} |
| 2876 |
@media screen and (min-width: 1024px) { |
| 2877 |
.columns.is-desktop { |
| 2878 |
display: -webkit-box; |
| 2879 |
display: -webkit-flex; |
| 2880 |
display: -ms-flexbox; |
| 2881 |
display: flex; |
| 2882 |
} |
| 2883 |
} |
| 2884 |
|
| 2885 |
.columns.is-variable { |
| 2886 |
--columnGap: 0.75rem; |
| 2887 |
margin-left: -webkit-calc(-1 * var(--columnGap)); |
| 2888 |
margin-left: calc(-1 * var(--columnGap)); |
| 2889 |
margin-right: -webkit-calc(-1 * var(--columnGap)); |
| 2890 |
margin-right: calc(-1 * var(--columnGap)); |
| 2891 |
} |
| 2892 |
.columns.is-variable > .column { |
| 2893 |
padding-left: var(--columnGap); |
| 2894 |
padding-right: var(--columnGap); |
| 2895 |
} |
| 2896 |
.columns.is-variable.is-0 { |
| 2897 |
--columnGap: 0rem; |
| 2898 |
} |
| 2899 |
@media screen and (max-width: 768px) { |
| 2900 |
.columns.is-variable.is-0-mobile { |
| 2901 |
--columnGap: 0rem; |
| 2902 |
} |
| 2903 |
} |
| 2904 |
@media screen and (min-width: 769px), print { |
| 2905 |
.columns.is-variable.is-0-tablet { |
| 2906 |
--columnGap: 0rem; |
| 2907 |
} |
| 2908 |
} |
| 2909 |
@media screen and (min-width: 769px) and (max-width: 1023px) { |
| 2910 |
.columns.is-variable.is-0-tablet-only { |
| 2911 |
--columnGap: 0rem; |
| 2912 |
} |
| 2913 |
} |
| 2914 |
@media screen and (max-width: 1023px) { |
| 2915 |
.columns.is-variable.is-0-touch { |
| 2916 |
--columnGap: 0rem; |
| 2917 |
} |
| 2918 |
} |
| 2919 |
@media screen and (min-width: 1024px) { |
| 2920 |
.columns.is-variable.is-0-desktop { |
| 2921 |
--columnGap: 0rem; |
| 2922 |
} |
| 2923 |
} |
| 2924 |
@media screen and (min-width: 1024px) and (max-width: 1215px) { |
| 2925 |
.columns.is-variable.is-0-desktop-only { |
| 2926 |
--columnGap: 0rem; |
| 2927 |
} |
| 2928 |
} |
| 2929 |
@media screen and (min-width: 1216px) { |
| 2930 |
.columns.is-variable.is-0-widescreen { |
| 2931 |
--columnGap: 0rem; |
| 2932 |
} |
| 2933 |
} |
| 2934 |
@media screen and (min-width: 1216px) and (max-width: 1407px) { |
| 2935 |
.columns.is-variable.is-0-widescreen-only { |
| 2936 |
--columnGap: 0rem; |
| 2937 |
} |
| 2938 |
} |
| 2939 |
@media screen and (min-width: 1408px) { |
| 2940 |
.columns.is-variable.is-0-fullhd { |
| 2941 |
--columnGap: 0rem; |
| 2942 |
} |
| 2943 |
} |
| 2944 |
.columns.is-variable.is-1 { |
| 2945 |
--columnGap: 0.25rem; |
| 2946 |
} |
| 2947 |
@media screen and (max-width: 768px) { |
| 2948 |
.columns.is-variable.is-1-mobile { |
| 2949 |
--columnGap: 0.25rem; |
| 2950 |
} |
| 2951 |
} |
| 2952 |
@media screen and (min-width: 769px), print { |
| 2953 |
.columns.is-variable.is-1-tablet { |
| 2954 |
--columnGap: 0.25rem; |
| 2955 |
} |
| 2956 |
} |
| 2957 |
@media screen and (min-width: 769px) and (max-width: 1023px) { |
| 2958 |
.columns.is-variable.is-1-tablet-only { |
| 2959 |
--columnGap: 0.25rem; |
| 2960 |
} |
| 2961 |
} |
| 2962 |
@media screen and (max-width: 1023px) { |
| 2963 |
.columns.is-variable.is-1-touch { |
| 2964 |
--columnGap: 0.25rem; |
| 2965 |
} |
| 2966 |
} |
| 2967 |
@media screen and (min-width: 1024px) { |
| 2968 |
.columns.is-variable.is-1-desktop { |
| 2969 |
--columnGap: 0.25rem; |
| 2970 |
} |
| 2971 |
} |
| 2972 |
@media screen and (min-width: 1024px) and (max-width: 1215px) { |
| 2973 |
.columns.is-variable.is-1-desktop-only { |
| 2974 |
--columnGap: 0.25rem; |
| 2975 |
} |
| 2976 |
} |
| 2977 |
@media screen and (min-width: 1216px) { |
| 2978 |
.columns.is-variable.is-1-widescreen { |
| 2979 |
--columnGap: 0.25rem; |
| 2980 |
} |
| 2981 |
} |
| 2982 |
@media screen and (min-width: 1216px) and (max-width: 1407px) { |
| 2983 |
.columns.is-variable.is-1-widescreen-only { |
| 2984 |
--columnGap: 0.25rem; |
| 2985 |
} |
| 2986 |
} |
| 2987 |
@media screen and (min-width: 1408px) { |
| 2988 |
.columns.is-variable.is-1-fullhd { |
| 2989 |
--columnGap: 0.25rem; |
| 2990 |
} |
| 2991 |
} |
| 2992 |
.columns.is-variable.is-2 { |
| 2993 |
--columnGap: 0.5rem; |
| 2994 |
} |
| 2995 |
@media screen and (max-width: 768px) { |
| 2996 |
.columns.is-variable.is-2-mobile { |
| 2997 |
--columnGap: 0.5rem; |
| 2998 |
} |
| 2999 |
} |
| 3000 |
@media screen and (min-width: 769px), print { |
| 3001 |
.columns.is-variable.is-2-tablet { |
| 3002 |
--columnGap: 0.5rem; |
| 3003 |
} |
| 3004 |
} |
| 3005 |
@media screen and (min-width: 769px) and (max-width: 1023px) { |
| 3006 |
.columns.is-variable.is-2-tablet-only { |
| 3007 |
--columnGap: 0.5rem; |
| 3008 |
} |
| 3009 |
} |
| 3010 |
@media screen and (max-width: 1023px) { |
| 3011 |
.columns.is-variable.is-2-touch { |
| 3012 |
--columnGap: 0.5rem; |
| 3013 |
} |
| 3014 |
} |
| 3015 |
@media screen and (min-width: 1024px) { |
| 3016 |
.columns.is-variable.is-2-desktop { |
| 3017 |
--columnGap: 0.5rem; |
| 3018 |
} |
| 3019 |
} |
| 3020 |
@media screen and (min-width: 1024px) and (max-width: 1215px) { |
| 3021 |
.columns.is-variable.is-2-desktop-only { |
| 3022 |
--columnGap: 0.5rem; |
| 3023 |
} |
| 3024 |
} |
| 3025 |
@media screen and (min-width: 1216px) { |
| 3026 |
.columns.is-variable.is-2-widescreen { |
| 3027 |
--columnGap: 0.5rem; |
| 3028 |
} |
| 3029 |
} |
| 3030 |
@media screen and (min-width: 1216px) and (max-width: 1407px) { |
| 3031 |
.columns.is-variable.is-2-widescreen-only { |
| 3032 |
--columnGap: 0.5rem; |
| 3033 |
} |
| 3034 |
} |
| 3035 |
@media screen and (min-width: 1408px) { |
| 3036 |
.columns.is-variable.is-2-fullhd { |
| 3037 |
--columnGap: 0.5rem; |
| 3038 |
} |
| 3039 |
} |
| 3040 |
.columns.is-variable.is-3 { |
| 3041 |
--columnGap: 0.75rem; |
| 3042 |
} |
| 3043 |
@media screen and (max-width: 768px) { |
| 3044 |
.columns.is-variable.is-3-mobile { |
| 3045 |
--columnGap: 0.75rem; |
| 3046 |
} |
| 3047 |
} |
| 3048 |
@media screen and (min-width: 769px), print { |
| 3049 |
.columns.is-variable.is-3-tablet { |
| 3050 |
--columnGap: 0.75rem; |
| 3051 |
} |
| 3052 |
} |
| 3053 |
@media screen and (min-width: 769px) and (max-width: 1023px) { |
| 3054 |
.columns.is-variable.is-3-tablet-only { |
| 3055 |
--columnGap: 0.75rem; |
| 3056 |
} |
| 3057 |
} |
| 3058 |
@media screen and (max-width: 1023px) { |
| 3059 |
.columns.is-variable.is-3-touch { |
| 3060 |
--columnGap: 0.75rem; |
| 3061 |
} |
| 3062 |
} |
| 3063 |
@media screen and (min-width: 1024px) { |
| 3064 |
.columns.is-variable.is-3-desktop { |
| 3065 |
--columnGap: 0.75rem; |
| 3066 |
} |
| 3067 |
} |
| 3068 |
@media screen and (min-width: 1024px) and (max-width: 1215px) { |
| 3069 |
.columns.is-variable.is-3-desktop-only { |
| 3070 |
--columnGap: 0.75rem; |
| 3071 |
} |
| 3072 |
} |
| 3073 |
@media screen and (min-width: 1216px) { |
| 3074 |
.columns.is-variable.is-3-widescreen { |
| 3075 |
--columnGap: 0.75rem; |
| 3076 |
} |
| 3077 |
} |
| 3078 |
@media screen and (min-width: 1216px) and (max-width: 1407px) { |
| 3079 |
.columns.is-variable.is-3-widescreen-only { |
| 3080 |
--columnGap: 0.75rem; |
| 3081 |
} |
| 3082 |
} |
| 3083 |
@media screen and (min-width: 1408px) { |
| 3084 |
.columns.is-variable.is-3-fullhd { |
| 3085 |
--columnGap: 0.75rem; |
| 3086 |
} |
| 3087 |
} |
| 3088 |
.columns.is-variable.is-4 { |
| 3089 |
--columnGap: 1rem; |
| 3090 |
} |
| 3091 |
@media screen and (max-width: 768px) { |
| 3092 |
.columns.is-variable.is-4-mobile { |
| 3093 |
--columnGap: 1rem; |
| 3094 |
} |
| 3095 |
} |
| 3096 |
@media screen and (min-width: 769px), print { |
| 3097 |
.columns.is-variable.is-4-tablet { |
| 3098 |
--columnGap: 1rem; |
| 3099 |
} |
| 3100 |
} |
| 3101 |
@media screen and (min-width: 769px) and (max-width: 1023px) { |
| 3102 |
.columns.is-variable.is-4-tablet-only { |
| 3103 |
--columnGap: 1rem; |
| 3104 |
} |
| 3105 |
} |
| 3106 |
@media screen and (max-width: 1023px) { |
| 3107 |
.columns.is-variable.is-4-touch { |
| 3108 |
--columnGap: 1rem; |
| 3109 |
} |
| 3110 |
} |
| 3111 |
@media screen and (min-width: 1024px) { |
| 3112 |
.columns.is-variable.is-4-desktop { |
| 3113 |
--columnGap: 1rem; |
| 3114 |
} |
| 3115 |
} |
| 3116 |
@media screen and (min-width: 1024px) and (max-width: 1215px) { |
| 3117 |
.columns.is-variable.is-4-desktop-only { |
| 3118 |
--columnGap: 1rem; |
| 3119 |
} |
| 3120 |
} |
| 3121 |
@media screen and (min-width: 1216px) { |
| 3122 |
.columns.is-variable.is-4-widescreen { |
| 3123 |
--columnGap: 1rem; |
| 3124 |
} |
| 3125 |
} |
| 3126 |
@media screen and (min-width: 1216px) and (max-width: 1407px) { |
| 3127 |
.columns.is-variable.is-4-widescreen-only { |
| 3128 |
--columnGap: 1rem; |
| 3129 |
} |
| 3130 |
} |
| 3131 |
@media screen and (min-width: 1408px) { |
| 3132 |
.columns.is-variable.is-4-fullhd { |
| 3133 |
--columnGap: 1rem; |
| 3134 |
} |
| 3135 |
} |
| 3136 |
.columns.is-variable.is-5 { |
| 3137 |
--columnGap: 1.25rem; |
| 3138 |
} |
| 3139 |
@media screen and (max-width: 768px) { |
| 3140 |
.columns.is-variable.is-5-mobile { |
| 3141 |
--columnGap: 1.25rem; |
| 3142 |
} |
| 3143 |
} |
| 3144 |
@media screen and (min-width: 769px), print { |
| 3145 |
.columns.is-variable.is-5-tablet { |
| 3146 |
--columnGap: 1.25rem; |
| 3147 |
} |
| 3148 |
} |
| 3149 |
@media screen and (min-width: 769px) and (max-width: 1023px) { |
| 3150 |
.columns.is-variable.is-5-tablet-only { |
| 3151 |
--columnGap: 1.25rem; |
| 3152 |
} |
| 3153 |
} |
| 3154 |
@media screen and (max-width: 1023px) { |
| 3155 |
.columns.is-variable.is-5-touch { |
| 3156 |
--columnGap: 1.25rem; |
| 3157 |
} |
| 3158 |
} |
| 3159 |
@media screen and (min-width: 1024px) { |
| 3160 |
.columns.is-variable.is-5-desktop { |
| 3161 |
--columnGap: 1.25rem; |
| 3162 |
} |
| 3163 |
} |
| 3164 |
@media screen and (min-width: 1024px) and (max-width: 1215px) { |
| 3165 |
.columns.is-variable.is-5-desktop-only { |
| 3166 |
--columnGap: 1.25rem; |
| 3167 |
} |
| 3168 |
} |
| 3169 |
@media screen and (min-width: 1216px) { |
| 3170 |
.columns.is-variable.is-5-widescreen { |
| 3171 |
--columnGap: 1.25rem; |
| 3172 |
} |
| 3173 |
} |
| 3174 |
@media screen and (min-width: 1216px) and (max-width: 1407px) { |
| 3175 |
.columns.is-variable.is-5-widescreen-only { |
| 3176 |
--columnGap: 1.25rem; |
| 3177 |
} |
| 3178 |
} |
| 3179 |
@media screen and (min-width: 1408px) { |
| 3180 |
.columns.is-variable.is-5-fullhd { |
| 3181 |
--columnGap: 1.25rem; |
| 3182 |
} |
| 3183 |
} |
| 3184 |
.columns.is-variable.is-6 { |
| 3185 |
--columnGap: 1.5rem; |
| 3186 |
} |
| 3187 |
@media screen and (max-width: 768px) { |
| 3188 |
.columns.is-variable.is-6-mobile { |
| 3189 |
--columnGap: 1.5rem; |
| 3190 |
} |
| 3191 |
} |
| 3192 |
@media screen and (min-width: 769px), print { |
| 3193 |
.columns.is-variable.is-6-tablet { |
| 3194 |
--columnGap: 1.5rem; |
| 3195 |
} |
| 3196 |
} |
| 3197 |
@media screen and (min-width: 769px) and (max-width: 1023px) { |
| 3198 |
.columns.is-variable.is-6-tablet-only { |
| 3199 |
--columnGap: 1.5rem; |
| 3200 |
} |
| 3201 |
} |
| 3202 |
@media screen and (max-width: 1023px) { |
| 3203 |
.columns.is-variable.is-6-touch { |
| 3204 |
--columnGap: 1.5rem; |
| 3205 |
} |
| 3206 |
} |
| 3207 |
@media screen and (min-width: 1024px) { |
| 3208 |
.columns.is-variable.is-6-desktop { |
| 3209 |
--columnGap: 1.5rem; |
| 3210 |
} |
| 3211 |
} |
| 3212 |
@media screen and (min-width: 1024px) and (max-width: 1215px) { |
| 3213 |
.columns.is-variable.is-6-desktop-only { |
| 3214 |
--columnGap: 1.5rem; |
| 3215 |
} |
| 3216 |
} |
| 3217 |
@media screen and (min-width: 1216px) { |
| 3218 |
.columns.is-variable.is-6-widescreen { |
| 3219 |
--columnGap: 1.5rem; |
| 3220 |
} |
| 3221 |
} |
| 3222 |
@media screen and (min-width: 1216px) and (max-width: 1407px) { |
| 3223 |
.columns.is-variable.is-6-widescreen-only { |
| 3224 |
--columnGap: 1.5rem; |
| 3225 |
} |
| 3226 |
} |
| 3227 |
@media screen and (min-width: 1408px) { |
| 3228 |
.columns.is-variable.is-6-fullhd { |
| 3229 |
--columnGap: 1.5rem; |
| 3230 |
} |
| 3231 |
} |
| 3232 |
.columns.is-variable.is-7 { |
| 3233 |
--columnGap: 1.75rem; |
| 3234 |
} |
| 3235 |
@media screen and (max-width: 768px) { |
| 3236 |
.columns.is-variable.is-7-mobile { |
| 3237 |
--columnGap: 1.75rem; |
| 3238 |
} |
| 3239 |
} |
| 3240 |
@media screen and (min-width: 769px), print { |
| 3241 |
.columns.is-variable.is-7-tablet { |
| 3242 |
--columnGap: 1.75rem; |
| 3243 |
} |
| 3244 |
} |
| 3245 |
@media screen and (min-width: 769px) and (max-width: 1023px) { |
| 3246 |
.columns.is-variable.is-7-tablet-only { |
| 3247 |
--columnGap: 1.75rem; |
| 3248 |
} |
| 3249 |
} |
| 3250 |
@media screen and (max-width: 1023px) { |
| 3251 |
.columns.is-variable.is-7-touch { |
| 3252 |
--columnGap: 1.75rem; |
| 3253 |
} |
| 3254 |
} |
| 3255 |
@media screen and (min-width: 1024px) { |
| 3256 |
.columns.is-variable.is-7-desktop { |
| 3257 |
--columnGap: 1.75rem; |
| 3258 |
} |
| 3259 |
} |
| 3260 |
@media screen and (min-width: 1024px) and (max-width: 1215px) { |
| 3261 |
.columns.is-variable.is-7-desktop-only { |
| 3262 |
--columnGap: 1.75rem; |
| 3263 |
} |
| 3264 |
} |
| 3265 |
@media screen and (min-width: 1216px) { |
| 3266 |
.columns.is-variable.is-7-widescreen { |
| 3267 |
--columnGap: 1.75rem; |
| 3268 |
} |
| 3269 |
} |
| 3270 |
@media screen and (min-width: 1216px) and (max-width: 1407px) { |
| 3271 |
.columns.is-variable.is-7-widescreen-only { |
| 3272 |
--columnGap: 1.75rem; |
| 3273 |
} |
| 3274 |
} |
| 3275 |
@media screen and (min-width: 1408px) { |
| 3276 |
.columns.is-variable.is-7-fullhd { |
| 3277 |
--columnGap: 1.75rem; |
| 3278 |
} |
| 3279 |
} |
| 3280 |
.columns.is-variable.is-8 { |
| 3281 |
--columnGap: 2rem; |
| 3282 |
} |
| 3283 |
@media screen and (max-width: 768px) { |
| 3284 |
.columns.is-variable.is-8-mobile { |
| 3285 |
--columnGap: 2rem; |
| 3286 |
} |
| 3287 |
} |
| 3288 |
@media screen and (min-width: 769px), print { |
| 3289 |
.columns.is-variable.is-8-tablet { |
| 3290 |
--columnGap: 2rem; |
| 3291 |
} |
| 3292 |
} |
| 3293 |
@media screen and (min-width: 769px) and (max-width: 1023px) { |
| 3294 |
.columns.is-variable.is-8-tablet-only { |
| 3295 |
--columnGap: 2rem; |
| 3296 |
} |
| 3297 |
} |
| 3298 |
@media screen and (max-width: 1023px) { |
| 3299 |
.columns.is-variable.is-8-touch { |
| 3300 |
--columnGap: 2rem; |
| 3301 |
} |
| 3302 |
} |
| 3303 |
@media screen and (min-width: 1024px) { |
| 3304 |
.columns.is-variable.is-8-desktop { |
| 3305 |
--columnGap: 2rem; |
| 3306 |
} |
| 3307 |
} |
| 3308 |
@media screen and (min-width: 1024px) and (max-width: 1215px) { |
| 3309 |
.columns.is-variable.is-8-desktop-only { |
| 3310 |
--columnGap: 2rem; |
| 3311 |
} |
| 3312 |
} |
| 3313 |
@media screen and (min-width: 1216px) { |
| 3314 |
.columns.is-variable.is-8-widescreen { |
| 3315 |
--columnGap: 2rem; |
| 3316 |
} |
| 3317 |
} |
| 3318 |
@media screen and (min-width: 1216px) and (max-width: 1407px) { |
| 3319 |
.columns.is-variable.is-8-widescreen-only { |
| 3320 |
--columnGap: 2rem; |
| 3321 |
} |
| 3322 |
} |
| 3323 |
@media screen and (min-width: 1408px) { |
| 3324 |
.columns.is-variable.is-8-fullhd { |
| 3325 |
--columnGap: 2rem; |
| 3326 |
} |
| 3327 |
} |
| 3328 |
|
| 3329 |
/* WP Adminify Helpers */ |
| 3330 |
.has-text-white { |
| 3331 |
color: white !important; |
| 3332 |
} |
| 3333 |
|
| 3334 |
a.has-text-white:hover, a.has-text-white:focus { |
| 3335 |
color: #e6e6e6 !important; |
| 3336 |
} |
| 3337 |
|
| 3338 |
.has-background-white { |
| 3339 |
background-color: white !important; |
| 3340 |
} |
| 3341 |
|
| 3342 |
.has-text-black { |
| 3343 |
color: #0a0a0a !important; |
| 3344 |
} |
| 3345 |
|
| 3346 |
a.has-text-black:hover, a.has-text-black:focus { |
| 3347 |
color: black !important; |
| 3348 |
} |
| 3349 |
|
| 3350 |
.has-background-black { |
| 3351 |
background-color: #0a0a0a !important; |
| 3352 |
} |
| 3353 |
|
| 3354 |
.has-text-light { |
| 3355 |
color: whitesmoke !important; |
| 3356 |
} |
| 3357 |
|
| 3358 |
a.has-text-light:hover, a.has-text-light:focus { |
| 3359 |
color: #dbdbdb !important; |
| 3360 |
} |
| 3361 |
|
| 3362 |
.has-background-light { |
| 3363 |
background-color: whitesmoke !important; |
| 3364 |
} |
| 3365 |
|
| 3366 |
.has-text-dark { |
| 3367 |
color: #363636 !important; |
| 3368 |
} |
| 3369 |
|
| 3370 |
a.has-text-dark:hover, a.has-text-dark:focus { |
| 3371 |
color: #1c1c1c !important; |
| 3372 |
} |
| 3373 |
|
| 3374 |
.has-background-dark { |
| 3375 |
background-color: #363636 !important; |
| 3376 |
} |
| 3377 |
|
| 3378 |
.has-text-primary { |
| 3379 |
color: #00d1b2 !important; |
| 3380 |
} |
| 3381 |
|
| 3382 |
a.has-text-primary:hover, a.has-text-primary:focus { |
| 3383 |
color: #009e86 !important; |
| 3384 |
} |
| 3385 |
|
| 3386 |
.has-background-primary { |
| 3387 |
background-color: #00d1b2 !important; |
| 3388 |
} |
| 3389 |
|
| 3390 |
.has-text-primary-light { |
| 3391 |
color: #ebfffc !important; |
| 3392 |
} |
| 3393 |
|
| 3394 |
a.has-text-primary-light:hover, a.has-text-primary-light:focus { |
| 3395 |
color: #b8fff4 !important; |
| 3396 |
} |
| 3397 |
|
| 3398 |
.has-background-primary-light { |
| 3399 |
background-color: #ebfffc !important; |
| 3400 |
} |
| 3401 |
|
| 3402 |
.has-text-primary-dark { |
| 3403 |
color: #00947e !important; |
| 3404 |
} |
| 3405 |
|
| 3406 |
a.has-text-primary-dark:hover, a.has-text-primary-dark:focus { |
| 3407 |
color: #00c7a9 !important; |
| 3408 |
} |
| 3409 |
|
| 3410 |
.has-background-primary-dark { |
| 3411 |
background-color: #00947e !important; |
| 3412 |
} |
| 3413 |
|
| 3414 |
.has-text-link { |
| 3415 |
color: #3273dc !important; |
| 3416 |
} |
| 3417 |
|
| 3418 |
a.has-text-link:hover, a.has-text-link:focus { |
| 3419 |
color: #205bbc !important; |
| 3420 |
} |
| 3421 |
|
| 3422 |
.has-background-link { |
| 3423 |
background-color: #3273dc !important; |
| 3424 |
} |
| 3425 |
|
| 3426 |
.has-text-link-light { |
| 3427 |
color: #eef3fc !important; |
| 3428 |
} |
| 3429 |
|
| 3430 |
a.has-text-link-light:hover, a.has-text-link-light:focus { |
| 3431 |
color: #c2d5f5 !important; |
| 3432 |
} |
| 3433 |
|
| 3434 |
.has-background-link-light { |
| 3435 |
background-color: #eef3fc !important; |
| 3436 |
} |
| 3437 |
|
| 3438 |
.has-text-link-dark { |
| 3439 |
color: #2160c4 !important; |
| 3440 |
} |
| 3441 |
|
| 3442 |
a.has-text-link-dark:hover, a.has-text-link-dark:focus { |
| 3443 |
color: #3b79de !important; |
| 3444 |
} |
| 3445 |
|
| 3446 |
.has-background-link-dark { |
| 3447 |
background-color: #2160c4 !important; |
| 3448 |
} |
| 3449 |
|
| 3450 |
.has-text-info { |
| 3451 |
color: #3298dc !important; |
| 3452 |
} |
| 3453 |
|
| 3454 |
a.has-text-info:hover, a.has-text-info:focus { |
| 3455 |
color: #207dbc !important; |
| 3456 |
} |
| 3457 |
|
| 3458 |
.has-background-info { |
| 3459 |
background-color: #3298dc !important; |
| 3460 |
} |
| 3461 |
|
| 3462 |
.has-text-info-light { |
| 3463 |
color: #eef6fc !important; |
| 3464 |
} |
| 3465 |
|
| 3466 |
a.has-text-info-light:hover, a.has-text-info-light:focus { |
| 3467 |
color: #c2e0f5 !important; |
| 3468 |
} |
| 3469 |
|
| 3470 |
.has-background-info-light { |
| 3471 |
background-color: #eef6fc !important; |
| 3472 |
} |
| 3473 |
|
| 3474 |
.has-text-info-dark { |
| 3475 |
color: #1d72aa !important; |
| 3476 |
} |
| 3477 |
|
| 3478 |
a.has-text-info-dark:hover, a.has-text-info-dark:focus { |
| 3479 |
color: #248fd6 !important; |
| 3480 |
} |
| 3481 |
|
| 3482 |
.has-background-info-dark { |
| 3483 |
background-color: #1d72aa !important; |
| 3484 |
} |
| 3485 |
|
| 3486 |
.has-text-success { |
| 3487 |
color: #48c774 !important; |
| 3488 |
} |
| 3489 |
|
| 3490 |
a.has-text-success:hover, a.has-text-success:focus { |
| 3491 |
color: #34a85c !important; |
| 3492 |
} |
| 3493 |
|
| 3494 |
.has-background-success { |
| 3495 |
background-color: #48c774 !important; |
| 3496 |
} |
| 3497 |
|
| 3498 |
.has-text-success-light { |
| 3499 |
color: #effaf3 !important; |
| 3500 |
} |
| 3501 |
|
| 3502 |
a.has-text-success-light:hover, a.has-text-success-light:focus { |
| 3503 |
color: #c8eed6 !important; |
| 3504 |
} |
| 3505 |
|
| 3506 |
.has-background-success-light { |
| 3507 |
background-color: #effaf3 !important; |
| 3508 |
} |
| 3509 |
|
| 3510 |
.has-text-success-dark { |
| 3511 |
color: #257942 !important; |
| 3512 |
} |
| 3513 |
|
| 3514 |
a.has-text-success-dark:hover, a.has-text-success-dark:focus { |
| 3515 |
color: #31a058 !important; |
| 3516 |
} |
| 3517 |
|
| 3518 |
.has-background-success-dark { |
| 3519 |
background-color: #257942 !important; |
| 3520 |
} |
| 3521 |
|
| 3522 |
.has-text-warning { |
| 3523 |
color: #ffdd57 !important; |
| 3524 |
} |
| 3525 |
|
| 3526 |
a.has-text-warning:hover, a.has-text-warning:focus { |
| 3527 |
color: #ffd324 !important; |
| 3528 |
} |
| 3529 |
|
| 3530 |
.has-background-warning { |
| 3531 |
background-color: #ffdd57 !important; |
| 3532 |
} |
| 3533 |
|
| 3534 |
.has-text-warning-light { |
| 3535 |
color: #fffbeb !important; |
| 3536 |
} |
| 3537 |
|
| 3538 |
a.has-text-warning-light:hover, a.has-text-warning-light:focus { |
| 3539 |
color: #fff1b8 !important; |
| 3540 |
} |
| 3541 |
|
| 3542 |
.has-background-warning-light { |
| 3543 |
background-color: #fffbeb !important; |
| 3544 |
} |
| 3545 |
|
| 3546 |
.has-text-warning-dark { |
| 3547 |
color: #947600 !important; |
| 3548 |
} |
| 3549 |
|
| 3550 |
a.has-text-warning-dark:hover, a.has-text-warning-dark:focus { |
| 3551 |
color: #c79f00 !important; |
| 3552 |
} |
| 3553 |
|
| 3554 |
.has-background-warning-dark { |
| 3555 |
background-color: #947600 !important; |
| 3556 |
} |
| 3557 |
|
| 3558 |
.has-text-danger { |
| 3559 |
color: #f14668 !important; |
| 3560 |
} |
| 3561 |
|
| 3562 |
a.has-text-danger:hover, a.has-text-danger:focus { |
| 3563 |
color: #ee1742 !important; |
| 3564 |
} |
| 3565 |
|
| 3566 |
.has-background-danger { |
| 3567 |
background-color: #f14668 !important; |
| 3568 |
} |
| 3569 |
|
| 3570 |
.has-text-danger-light { |
| 3571 |
color: #feecf0 !important; |
| 3572 |
} |
| 3573 |
|
| 3574 |
a.has-text-danger-light:hover, a.has-text-danger-light:focus { |
| 3575 |
color: #fabdc9 !important; |
| 3576 |
} |
| 3577 |
|
| 3578 |
.has-background-danger-light { |
| 3579 |
background-color: #feecf0 !important; |
| 3580 |
} |
| 3581 |
|
| 3582 |
.has-text-danger-dark { |
| 3583 |
color: #cc0f35 !important; |
| 3584 |
} |
| 3585 |
|
| 3586 |
a.has-text-danger-dark:hover, a.has-text-danger-dark:focus { |
| 3587 |
color: #ee2049 !important; |
| 3588 |
} |
| 3589 |
|
| 3590 |
.has-background-danger-dark { |
| 3591 |
background-color: #cc0f35 !important; |
| 3592 |
} |
| 3593 |
|
| 3594 |
.has-text-black-bis { |
| 3595 |
color: #121212 !important; |
| 3596 |
} |
| 3597 |
|
| 3598 |
.has-background-black-bis { |
| 3599 |
background-color: #121212 !important; |
| 3600 |
} |
| 3601 |
|
| 3602 |
.has-text-black-ter { |
| 3603 |
color: #242424 !important; |
| 3604 |
} |
| 3605 |
|
| 3606 |
.has-background-black-ter { |
| 3607 |
background-color: #242424 !important; |
| 3608 |
} |
| 3609 |
|
| 3610 |
.has-text-grey-darker { |
| 3611 |
color: #363636 !important; |
| 3612 |
} |
| 3613 |
|
| 3614 |
.has-background-grey-darker { |
| 3615 |
background-color: #363636 !important; |
| 3616 |
} |
| 3617 |
|
| 3618 |
.has-text-grey-dark { |
| 3619 |
color: #4a4a4a !important; |
| 3620 |
} |
| 3621 |
|
| 3622 |
.has-background-grey-dark { |
| 3623 |
background-color: #4a4a4a !important; |
| 3624 |
} |
| 3625 |
|
| 3626 |
.has-text-grey { |
| 3627 |
color: #7a7a7a !important; |
| 3628 |
} |
| 3629 |
|
| 3630 |
.has-background-grey { |
| 3631 |
background-color: #7a7a7a !important; |
| 3632 |
} |
| 3633 |
|
| 3634 |
.has-text-grey-light { |
| 3635 |
color: #b5b5b5 !important; |
| 3636 |
} |
| 3637 |
|
| 3638 |
.has-background-grey-light { |
| 3639 |
background-color: #b5b5b5 !important; |
| 3640 |
} |
| 3641 |
|
| 3642 |
.has-text-grey-lighter { |
| 3643 |
color: #dbdbdb !important; |
| 3644 |
} |
| 3645 |
|
| 3646 |
.has-background-grey-lighter { |
| 3647 |
background-color: #dbdbdb !important; |
| 3648 |
} |
| 3649 |
|
| 3650 |
.has-text-white-ter { |
| 3651 |
color: whitesmoke !important; |
| 3652 |
} |
| 3653 |
|
| 3654 |
.has-background-white-ter { |
| 3655 |
background-color: whitesmoke !important; |
| 3656 |
} |
| 3657 |
|
| 3658 |
.has-text-white-bis { |
| 3659 |
color: #fafafa !important; |
| 3660 |
} |
| 3661 |
|
| 3662 |
.has-background-white-bis { |
| 3663 |
background-color: #fafafa !important; |
| 3664 |
} |
| 3665 |
|
| 3666 |
.is-flex-direction-row { |
| 3667 |
-webkit-box-orient: horizontal !important; |
| 3668 |
-webkit-box-direction: normal !important; |
| 3669 |
-webkit-flex-direction: row !important; |
| 3670 |
-ms-flex-direction: row !important; |
| 3671 |
flex-direction: row !important; |
| 3672 |
} |
| 3673 |
|
| 3674 |
.is-flex-direction-row-reverse { |
| 3675 |
-webkit-box-orient: horizontal !important; |
| 3676 |
-webkit-box-direction: reverse !important; |
| 3677 |
-webkit-flex-direction: row-reverse !important; |
| 3678 |
-ms-flex-direction: row-reverse !important; |
| 3679 |
flex-direction: row-reverse !important; |
| 3680 |
} |
| 3681 |
|
| 3682 |
.is-flex-direction-column { |
| 3683 |
-webkit-box-orient: vertical !important; |
| 3684 |
-webkit-box-direction: normal !important; |
| 3685 |
-webkit-flex-direction: column !important; |
| 3686 |
-ms-flex-direction: column !important; |
| 3687 |
flex-direction: column !important; |
| 3688 |
} |
| 3689 |
|
| 3690 |
.is-flex-direction-column-reverse { |
| 3691 |
-webkit-box-orient: vertical !important; |
| 3692 |
-webkit-box-direction: reverse !important; |
| 3693 |
-webkit-flex-direction: column-reverse !important; |
| 3694 |
-ms-flex-direction: column-reverse !important; |
| 3695 |
flex-direction: column-reverse !important; |
| 3696 |
} |
| 3697 |
|
| 3698 |
.is-flex-wrap-nowrap { |
| 3699 |
-webkit-flex-wrap: nowrap !important; |
| 3700 |
-ms-flex-wrap: nowrap !important; |
| 3701 |
flex-wrap: nowrap !important; |
| 3702 |
} |
| 3703 |
|
| 3704 |
.is-flex-wrap-wrap { |
| 3705 |
-webkit-flex-wrap: wrap !important; |
| 3706 |
-ms-flex-wrap: wrap !important; |
| 3707 |
flex-wrap: wrap !important; |
| 3708 |
} |
| 3709 |
|
| 3710 |
.is-flex-wrap-wrap-reverse { |
| 3711 |
-webkit-flex-wrap: wrap-reverse !important; |
| 3712 |
-ms-flex-wrap: wrap-reverse !important; |
| 3713 |
flex-wrap: wrap-reverse !important; |
| 3714 |
} |
| 3715 |
|
| 3716 |
.is-justify-content-flex-start { |
| 3717 |
-webkit-box-pack: start !important; |
| 3718 |
-webkit-justify-content: flex-start !important; |
| 3719 |
-ms-flex-pack: start !important; |
| 3720 |
justify-content: flex-start !important; |
| 3721 |
} |
| 3722 |
|
| 3723 |
.is-justify-content-flex-end { |
| 3724 |
-webkit-box-pack: end !important; |
| 3725 |
-webkit-justify-content: flex-end !important; |
| 3726 |
-ms-flex-pack: end !important; |
| 3727 |
justify-content: flex-end !important; |
| 3728 |
} |
| 3729 |
|
| 3730 |
.is-justify-content-center { |
| 3731 |
-webkit-box-pack: center !important; |
| 3732 |
-webkit-justify-content: center !important; |
| 3733 |
-ms-flex-pack: center !important; |
| 3734 |
justify-content: center !important; |
| 3735 |
} |
| 3736 |
|
| 3737 |
.is-justify-content-space-between { |
| 3738 |
-webkit-box-pack: justify !important; |
| 3739 |
-webkit-justify-content: space-between !important; |
| 3740 |
-ms-flex-pack: justify !important; |
| 3741 |
justify-content: space-between !important; |
| 3742 |
} |
| 3743 |
|
| 3744 |
.is-justify-content-space-around { |
| 3745 |
-webkit-justify-content: space-around !important; |
| 3746 |
-ms-flex-pack: distribute !important; |
| 3747 |
justify-content: space-around !important; |
| 3748 |
} |
| 3749 |
|
| 3750 |
.is-justify-content-space-evenly { |
| 3751 |
-webkit-box-pack: space-evenly !important; |
| 3752 |
-webkit-justify-content: space-evenly !important; |
| 3753 |
-ms-flex-pack: space-evenly !important; |
| 3754 |
justify-content: space-evenly !important; |
| 3755 |
} |
| 3756 |
|
| 3757 |
.is-justify-content-start { |
| 3758 |
-webkit-box-pack: start !important; |
| 3759 |
-webkit-justify-content: start !important; |
| 3760 |
-ms-flex-pack: start !important; |
| 3761 |
justify-content: start !important; |
| 3762 |
} |
| 3763 |
|
| 3764 |
.is-justify-content-end { |
| 3765 |
-webkit-box-pack: end !important; |
| 3766 |
-webkit-justify-content: end !important; |
| 3767 |
-ms-flex-pack: end !important; |
| 3768 |
justify-content: end !important; |
| 3769 |
} |
| 3770 |
|
| 3771 |
.is-justify-content-left { |
| 3772 |
-webkit-box-pack: left !important; |
| 3773 |
-webkit-justify-content: left !important; |
| 3774 |
-ms-flex-pack: left !important; |
| 3775 |
justify-content: left !important; |
| 3776 |
} |
| 3777 |
|
| 3778 |
.is-justify-content-right { |
| 3779 |
-webkit-box-pack: right !important; |
| 3780 |
-webkit-justify-content: right !important; |
| 3781 |
-ms-flex-pack: right !important; |
| 3782 |
justify-content: right !important; |
| 3783 |
} |
| 3784 |
|
| 3785 |
.is-align-content-flex-start { |
| 3786 |
-webkit-align-content: flex-start !important; |
| 3787 |
-ms-flex-line-pack: start !important; |
| 3788 |
align-content: flex-start !important; |
| 3789 |
} |
| 3790 |
|
| 3791 |
.is-align-content-flex-end { |
| 3792 |
-webkit-align-content: flex-end !important; |
| 3793 |
-ms-flex-line-pack: end !important; |
| 3794 |
align-content: flex-end !important; |
| 3795 |
} |
| 3796 |
|
| 3797 |
.is-align-content-center { |
| 3798 |
-webkit-align-content: center !important; |
| 3799 |
-ms-flex-line-pack: center !important; |
| 3800 |
align-content: center !important; |
| 3801 |
} |
| 3802 |
|
| 3803 |
.is-align-content-space-between { |
| 3804 |
-webkit-align-content: space-between !important; |
| 3805 |
-ms-flex-line-pack: justify !important; |
| 3806 |
align-content: space-between !important; |
| 3807 |
} |
| 3808 |
|
| 3809 |
.is-align-content-space-around { |
| 3810 |
-webkit-align-content: space-around !important; |
| 3811 |
-ms-flex-line-pack: distribute !important; |
| 3812 |
align-content: space-around !important; |
| 3813 |
} |
| 3814 |
|
| 3815 |
.is-align-content-space-evenly { |
| 3816 |
-webkit-align-content: space-evenly !important; |
| 3817 |
-ms-flex-line-pack: space-evenly !important; |
| 3818 |
align-content: space-evenly !important; |
| 3819 |
} |
| 3820 |
|
| 3821 |
.is-align-content-stretch { |
| 3822 |
-webkit-align-content: stretch !important; |
| 3823 |
-ms-flex-line-pack: stretch !important; |
| 3824 |
align-content: stretch !important; |
| 3825 |
} |
| 3826 |
|
| 3827 |
.is-align-content-start { |
| 3828 |
-webkit-align-content: start !important; |
| 3829 |
-ms-flex-line-pack: start !important; |
| 3830 |
align-content: start !important; |
| 3831 |
} |
| 3832 |
|
| 3833 |
.is-align-content-end { |
| 3834 |
-webkit-align-content: end !important; |
| 3835 |
-ms-flex-line-pack: end !important; |
| 3836 |
align-content: end !important; |
| 3837 |
} |
| 3838 |
|
| 3839 |
.is-align-content-baseline { |
| 3840 |
-webkit-align-content: baseline !important; |
| 3841 |
-ms-flex-line-pack: baseline !important; |
| 3842 |
align-content: baseline !important; |
| 3843 |
} |
| 3844 |
|
| 3845 |
.is-align-items-stretch { |
| 3846 |
-webkit-box-align: stretch !important; |
| 3847 |
-webkit-align-items: stretch !important; |
| 3848 |
-ms-flex-align: stretch !important; |
| 3849 |
align-items: stretch !important; |
| 3850 |
} |
| 3851 |
|
| 3852 |
.is-align-items-flex-start { |
| 3853 |
-webkit-box-align: start !important; |
| 3854 |
-webkit-align-items: flex-start !important; |
| 3855 |
-ms-flex-align: start !important; |
| 3856 |
align-items: flex-start !important; |
| 3857 |
} |
| 3858 |
|
| 3859 |
.is-align-items-flex-end { |
| 3860 |
-webkit-box-align: end !important; |
| 3861 |
-webkit-align-items: flex-end !important; |
| 3862 |
-ms-flex-align: end !important; |
| 3863 |
align-items: flex-end !important; |
| 3864 |
} |
| 3865 |
|
| 3866 |
.is-align-items-center { |
| 3867 |
-webkit-box-align: center !important; |
| 3868 |
-webkit-align-items: center !important; |
| 3869 |
-ms-flex-align: center !important; |
| 3870 |
align-items: center !important; |
| 3871 |
} |
| 3872 |
|
| 3873 |
.is-align-items-baseline { |
| 3874 |
-webkit-box-align: baseline !important; |
| 3875 |
-webkit-align-items: baseline !important; |
| 3876 |
-ms-flex-align: baseline !important; |
| 3877 |
align-items: baseline !important; |
| 3878 |
} |
| 3879 |
|
| 3880 |
.is-align-items-start { |
| 3881 |
-webkit-box-align: start !important; |
| 3882 |
-webkit-align-items: start !important; |
| 3883 |
-ms-flex-align: start !important; |
| 3884 |
align-items: start !important; |
| 3885 |
} |
| 3886 |
|
| 3887 |
.is-align-items-end { |
| 3888 |
-webkit-box-align: end !important; |
| 3889 |
-webkit-align-items: end !important; |
| 3890 |
-ms-flex-align: end !important; |
| 3891 |
align-items: end !important; |
| 3892 |
} |
| 3893 |
|
| 3894 |
.is-align-items-self-start { |
| 3895 |
-webkit-box-align: self-start !important; |
| 3896 |
-webkit-align-items: self-start !important; |
| 3897 |
-ms-flex-align: self-start !important; |
| 3898 |
align-items: self-start !important; |
| 3899 |
} |
| 3900 |
|
| 3901 |
.is-align-items-self-end { |
| 3902 |
-webkit-box-align: self-end !important; |
| 3903 |
-webkit-align-items: self-end !important; |
| 3904 |
-ms-flex-align: self-end !important; |
| 3905 |
align-items: self-end !important; |
| 3906 |
} |
| 3907 |
|
| 3908 |
.is-align-self-auto { |
| 3909 |
-webkit-align-self: auto !important; |
| 3910 |
-ms-flex-item-align: auto !important; |
| 3911 |
align-self: auto !important; |
| 3912 |
} |
| 3913 |
|
| 3914 |
.is-align-self-flex-start { |
| 3915 |
-webkit-align-self: flex-start !important; |
| 3916 |
-ms-flex-item-align: start !important; |
| 3917 |
align-self: flex-start !important; |
| 3918 |
} |
| 3919 |
|
| 3920 |
.is-align-self-flex-end { |
| 3921 |
-webkit-align-self: flex-end !important; |
| 3922 |
-ms-flex-item-align: end !important; |
| 3923 |
align-self: flex-end !important; |
| 3924 |
} |
| 3925 |
|
| 3926 |
.is-align-self-center { |
| 3927 |
-webkit-align-self: center !important; |
| 3928 |
-ms-flex-item-align: center !important; |
| 3929 |
align-self: center !important; |
| 3930 |
} |
| 3931 |
|
| 3932 |
.is-align-self-baseline { |
| 3933 |
-webkit-align-self: baseline !important; |
| 3934 |
-ms-flex-item-align: baseline !important; |
| 3935 |
align-self: baseline !important; |
| 3936 |
} |
| 3937 |
|
| 3938 |
.is-align-self-stretch { |
| 3939 |
-webkit-align-self: stretch !important; |
| 3940 |
-ms-flex-item-align: stretch !important; |
| 3941 |
align-self: stretch !important; |
| 3942 |
} |
| 3943 |
|
| 3944 |
.is-flex-grow-0 { |
| 3945 |
-webkit-box-flex: 0 !important; |
| 3946 |
-webkit-flex-grow: 0 !important; |
| 3947 |
-ms-flex-positive: 0 !important; |
| 3948 |
flex-grow: 0 !important; |
| 3949 |
} |
| 3950 |
|
| 3951 |
.is-flex-grow-1 { |
| 3952 |
-webkit-box-flex: 1 !important; |
| 3953 |
-webkit-flex-grow: 1 !important; |
| 3954 |
-ms-flex-positive: 1 !important; |
| 3955 |
flex-grow: 1 !important; |
| 3956 |
} |
| 3957 |
|
| 3958 |
.is-flex-grow-2 { |
| 3959 |
-webkit-box-flex: 2 !important; |
| 3960 |
-webkit-flex-grow: 2 !important; |
| 3961 |
-ms-flex-positive: 2 !important; |
| 3962 |
flex-grow: 2 !important; |
| 3963 |
} |
| 3964 |
|
| 3965 |
.is-flex-grow-3 { |
| 3966 |
-webkit-box-flex: 3 !important; |
| 3967 |
-webkit-flex-grow: 3 !important; |
| 3968 |
-ms-flex-positive: 3 !important; |
| 3969 |
flex-grow: 3 !important; |
| 3970 |
} |
| 3971 |
|
| 3972 |
.is-flex-grow-4 { |
| 3973 |
-webkit-box-flex: 4 !important; |
| 3974 |
-webkit-flex-grow: 4 !important; |
| 3975 |
-ms-flex-positive: 4 !important; |
| 3976 |
flex-grow: 4 !important; |
| 3977 |
} |
| 3978 |
|
| 3979 |
.is-flex-grow-5 { |
| 3980 |
-webkit-box-flex: 5 !important; |
| 3981 |
-webkit-flex-grow: 5 !important; |
| 3982 |
-ms-flex-positive: 5 !important; |
| 3983 |
flex-grow: 5 !important; |
| 3984 |
} |
| 3985 |
|
| 3986 |
.is-flex-shrink-0 { |
| 3987 |
-webkit-flex-shrink: 0 !important; |
| 3988 |
-ms-flex-negative: 0 !important; |
| 3989 |
flex-shrink: 0 !important; |
| 3990 |
} |
| 3991 |
|
| 3992 |
.is-flex-shrink-1 { |
| 3993 |
-webkit-flex-shrink: 1 !important; |
| 3994 |
-ms-flex-negative: 1 !important; |
| 3995 |
flex-shrink: 1 !important; |
| 3996 |
} |
| 3997 |
|
| 3998 |
.is-flex-shrink-2 { |
| 3999 |
-webkit-flex-shrink: 2 !important; |
| 4000 |
-ms-flex-negative: 2 !important; |
| 4001 |
flex-shrink: 2 !important; |
| 4002 |
} |
| 4003 |
|
| 4004 |
.is-flex-shrink-3 { |
| 4005 |
-webkit-flex-shrink: 3 !important; |
| 4006 |
-ms-flex-negative: 3 !important; |
| 4007 |
flex-shrink: 3 !important; |
| 4008 |
} |
| 4009 |
|
| 4010 |
.is-flex-shrink-4 { |
| 4011 |
-webkit-flex-shrink: 4 !important; |
| 4012 |
-ms-flex-negative: 4 !important; |
| 4013 |
flex-shrink: 4 !important; |
| 4014 |
} |
| 4015 |
|
| 4016 |
.is-flex-shrink-5 { |
| 4017 |
-webkit-flex-shrink: 5 !important; |
| 4018 |
-ms-flex-negative: 5 !important; |
| 4019 |
flex-shrink: 5 !important; |
| 4020 |
} |
| 4021 |
|
| 4022 |
.is-clearfix::after { |
| 4023 |
clear: both; |
| 4024 |
content: " "; |
| 4025 |
display: table; |
| 4026 |
} |
| 4027 |
|
| 4028 |
.is-pulled-left { |
| 4029 |
float: left !important; |
| 4030 |
} |
| 4031 |
|
| 4032 |
.is-pulled-right { |
| 4033 |
float: right !important; |
| 4034 |
} |
| 4035 |
|
| 4036 |
.is-clickable { |
| 4037 |
cursor: pointer !important; |
| 4038 |
pointer-events: all !important; |
| 4039 |
} |
| 4040 |
|
| 4041 |
.is-relative { |
| 4042 |
position: relative !important; |
| 4043 |
} |
| 4044 |
|
| 4045 |
.m-0 { |
| 4046 |
margin: 0 !important; |
| 4047 |
} |
| 4048 |
|
| 4049 |
.mt-0 { |
| 4050 |
margin-top: 0 !important; |
| 4051 |
} |
| 4052 |
|
| 4053 |
.mr-0 { |
| 4054 |
margin-right: 0 !important; |
| 4055 |
} |
| 4056 |
|
| 4057 |
.mb-0 { |
| 4058 |
margin-bottom: 0 !important; |
| 4059 |
} |
| 4060 |
|
| 4061 |
.ml-0 { |
| 4062 |
margin-left: 0 !important; |
| 4063 |
} |
| 4064 |
|
| 4065 |
.mx-0 { |
| 4066 |
margin-left: 0 !important; |
| 4067 |
margin-right: 0 !important; |
| 4068 |
} |
| 4069 |
|
| 4070 |
.my-0 { |
| 4071 |
margin-top: 0 !important; |
| 4072 |
margin-bottom: 0 !important; |
| 4073 |
} |
| 4074 |
|
| 4075 |
.m-1 { |
| 4076 |
margin: 0.25rem !important; |
| 4077 |
} |
| 4078 |
|
| 4079 |
.mt-1 { |
| 4080 |
margin-top: 0.25rem !important; |
| 4081 |
} |
| 4082 |
|
| 4083 |
.mr-1 { |
| 4084 |
margin-right: 0.25rem !important; |
| 4085 |
} |
| 4086 |
|
| 4087 |
.mb-1 { |
| 4088 |
margin-bottom: 0.25rem !important; |
| 4089 |
} |
| 4090 |
|
| 4091 |
.ml-1 { |
| 4092 |
margin-left: 0.25rem !important; |
| 4093 |
} |
| 4094 |
|
| 4095 |
.mx-1 { |
| 4096 |
margin-left: 0.25rem !important; |
| 4097 |
margin-right: 0.25rem !important; |
| 4098 |
} |
| 4099 |
|
| 4100 |
.my-1 { |
| 4101 |
margin-top: 0.25rem !important; |
| 4102 |
margin-bottom: 0.25rem !important; |
| 4103 |
} |
| 4104 |
|
| 4105 |
.m-2 { |
| 4106 |
margin: 0.5rem !important; |
| 4107 |
} |
| 4108 |
|
| 4109 |
.mt-2 { |
| 4110 |
margin-top: 0.5rem !important; |
| 4111 |
} |
| 4112 |
|
| 4113 |
.mr-2 { |
| 4114 |
margin-right: 0.5rem !important; |
| 4115 |
} |
| 4116 |
|
| 4117 |
.mb-2 { |
| 4118 |
margin-bottom: 0.5rem !important; |
| 4119 |
} |
| 4120 |
|
| 4121 |
.ml-2 { |
| 4122 |
margin-left: 0.5rem !important; |
| 4123 |
} |
| 4124 |
|
| 4125 |
.mx-2 { |
| 4126 |
margin-left: 0.5rem !important; |
| 4127 |
margin-right: 0.5rem !important; |
| 4128 |
} |
| 4129 |
|
| 4130 |
.my-2 { |
| 4131 |
margin-top: 0.5rem !important; |
| 4132 |
margin-bottom: 0.5rem !important; |
| 4133 |
} |
| 4134 |
|
| 4135 |
.m-3 { |
| 4136 |
margin: 0.75rem !important; |
| 4137 |
} |
| 4138 |
|
| 4139 |
.mt-3 { |
| 4140 |
margin-top: 0.75rem !important; |
| 4141 |
} |
| 4142 |
|
| 4143 |
.mr-3 { |
| 4144 |
margin-right: 0.75rem !important; |
| 4145 |
} |
| 4146 |
|
| 4147 |
.mb-3 { |
| 4148 |
margin-bottom: 0.75rem !important; |
| 4149 |
} |
| 4150 |
|
| 4151 |
.ml-3 { |
| 4152 |
margin-left: 0.75rem !important; |
| 4153 |
} |
| 4154 |
|
| 4155 |
.mx-3 { |
| 4156 |
margin-left: 0.75rem !important; |
| 4157 |
margin-right: 0.75rem !important; |
| 4158 |
} |
| 4159 |
|
| 4160 |
.my-3 { |
| 4161 |
margin-top: 0.75rem !important; |
| 4162 |
margin-bottom: 0.75rem !important; |
| 4163 |
} |
| 4164 |
|
| 4165 |
.m-4 { |
| 4166 |
margin: 1rem !important; |
| 4167 |
} |
| 4168 |
|
| 4169 |
.mt-4 { |
| 4170 |
margin-top: 1rem !important; |
| 4171 |
} |
| 4172 |
|
| 4173 |
.mr-4 { |
| 4174 |
margin-right: 1rem !important; |
| 4175 |
} |
| 4176 |
|
| 4177 |
.mb-4 { |
| 4178 |
margin-bottom: 1rem !important; |
| 4179 |
} |
| 4180 |
|
| 4181 |
.ml-4 { |
| 4182 |
margin-left: 1rem !important; |
| 4183 |
} |
| 4184 |
|
| 4185 |
.mx-4 { |
| 4186 |
margin-left: 1rem !important; |
| 4187 |
margin-right: 1rem !important; |
| 4188 |
} |
| 4189 |
|
| 4190 |
.my-4 { |
| 4191 |
margin-top: 1rem !important; |
| 4192 |
margin-bottom: 1rem !important; |
| 4193 |
} |
| 4194 |
|
| 4195 |
.m-5 { |
| 4196 |
margin: 1.5rem !important; |
| 4197 |
} |
| 4198 |
|
| 4199 |
.mt-5 { |
| 4200 |
margin-top: 1.5rem !important; |
| 4201 |
} |
| 4202 |
|
| 4203 |
.mr-5 { |
| 4204 |
margin-right: 1.5rem !important; |
| 4205 |
} |
| 4206 |
|
| 4207 |
.mb-5 { |
| 4208 |
margin-bottom: 1.5rem !important; |
| 4209 |
} |
| 4210 |
|
| 4211 |
.ml-5 { |
| 4212 |
margin-left: 1.5rem !important; |
| 4213 |
} |
| 4214 |
|
| 4215 |
.mx-5 { |
| 4216 |
margin-left: 1.5rem !important; |
| 4217 |
margin-right: 1.5rem !important; |
| 4218 |
} |
| 4219 |
|
| 4220 |
.my-5 { |
| 4221 |
margin-top: 1.5rem !important; |
| 4222 |
margin-bottom: 1.5rem !important; |
| 4223 |
} |
| 4224 |
|
| 4225 |
.m-6 { |
| 4226 |
margin: 3rem !important; |
| 4227 |
} |
| 4228 |
|
| 4229 |
.mt-6 { |
| 4230 |
margin-top: 3rem !important; |
| 4231 |
} |
| 4232 |
|
| 4233 |
.mr-6 { |
| 4234 |
margin-right: 3rem !important; |
| 4235 |
} |
| 4236 |
|
| 4237 |
.mb-6 { |
| 4238 |
margin-bottom: 3rem !important; |
| 4239 |
} |
| 4240 |
|
| 4241 |
.ml-6 { |
| 4242 |
margin-left: 3rem !important; |
| 4243 |
} |
| 4244 |
|
| 4245 |
.mx-6 { |
| 4246 |
margin-left: 3rem !important; |
| 4247 |
margin-right: 3rem !important; |
| 4248 |
} |
| 4249 |
|
| 4250 |
.my-6 { |
| 4251 |
margin-top: 3rem !important; |
| 4252 |
margin-bottom: 3rem !important; |
| 4253 |
} |
| 4254 |
|
| 4255 |
.p-0 { |
| 4256 |
padding: 0 !important; |
| 4257 |
} |
| 4258 |
|
| 4259 |
.pt-0 { |
| 4260 |
padding-top: 0 !important; |
| 4261 |
} |
| 4262 |
|
| 4263 |
.pr-0 { |
| 4264 |
padding-right: 0 !important; |
| 4265 |
} |
| 4266 |
|
| 4267 |
.pb-0 { |
| 4268 |
padding-bottom: 0 !important; |
| 4269 |
} |
| 4270 |
|
| 4271 |
.pl-0 { |
| 4272 |
padding-left: 0 !important; |
| 4273 |
} |
| 4274 |
|
| 4275 |
.px-0 { |
| 4276 |
padding-left: 0 !important; |
| 4277 |
padding-right: 0 !important; |
| 4278 |
} |
| 4279 |
|
| 4280 |
.py-0 { |
| 4281 |
padding-top: 0 !important; |
| 4282 |
padding-bottom: 0 !important; |
| 4283 |
} |
| 4284 |
|
| 4285 |
.p-1 { |
| 4286 |
padding: 0.25rem !important; |
| 4287 |
} |
| 4288 |
|
| 4289 |
.pt-1 { |
| 4290 |
padding-top: 0.25rem !important; |
| 4291 |
} |
| 4292 |
|
| 4293 |
.pr-1 { |
| 4294 |
padding-right: 0.25rem !important; |
| 4295 |
} |
| 4296 |
|
| 4297 |
.pb-1 { |
| 4298 |
padding-bottom: 0.25rem !important; |
| 4299 |
} |
| 4300 |
|
| 4301 |
.pl-1 { |
| 4302 |
padding-left: 0.25rem !important; |
| 4303 |
} |
| 4304 |
|
| 4305 |
.px-1 { |
| 4306 |
padding-left: 0.25rem !important; |
| 4307 |
padding-right: 0.25rem !important; |
| 4308 |
} |
| 4309 |
|
| 4310 |
.py-1 { |
| 4311 |
padding-top: 0.25rem !important; |
| 4312 |
padding-bottom: 0.25rem !important; |
| 4313 |
} |
| 4314 |
|
| 4315 |
.p-2 { |
| 4316 |
padding: 0.5rem !important; |
| 4317 |
} |
| 4318 |
|
| 4319 |
.pt-2 { |
| 4320 |
padding-top: 0.5rem !important; |
| 4321 |
} |
| 4322 |
|
| 4323 |
.pr-2 { |
| 4324 |
padding-right: 0.5rem !important; |
| 4325 |
} |
| 4326 |
|
| 4327 |
.pb-2 { |
| 4328 |
padding-bottom: 0.5rem !important; |
| 4329 |
} |
| 4330 |
|
| 4331 |
.pl-2 { |
| 4332 |
padding-left: 0.5rem !important; |
| 4333 |
} |
| 4334 |
|
| 4335 |
.px-2 { |
| 4336 |
padding-left: 0.5rem !important; |
| 4337 |
padding-right: 0.5rem !important; |
| 4338 |
} |
| 4339 |
|
| 4340 |
.py-2 { |
| 4341 |
padding-top: 0.5rem !important; |
| 4342 |
padding-bottom: 0.5rem !important; |
| 4343 |
} |
| 4344 |
|
| 4345 |
.p-3 { |
| 4346 |
padding: 0.75rem !important; |
| 4347 |
} |
| 4348 |
|
| 4349 |
.pt-3 { |
| 4350 |
padding-top: 0.75rem !important; |
| 4351 |
} |
| 4352 |
|
| 4353 |
.pr-3 { |
| 4354 |
padding-right: 0.75rem !important; |
| 4355 |
} |
| 4356 |
|
| 4357 |
.pb-3 { |
| 4358 |
padding-bottom: 0.75rem !important; |
| 4359 |
} |
| 4360 |
|
| 4361 |
.pl-3 { |
| 4362 |
padding-left: 0.75rem !important; |
| 4363 |
} |
| 4364 |
|
| 4365 |
.px-3 { |
| 4366 |
padding-left: 0.75rem !important; |
| 4367 |
padding-right: 0.75rem !important; |
| 4368 |
} |
| 4369 |
|
| 4370 |
.py-3 { |
| 4371 |
padding-top: 0.75rem !important; |
| 4372 |
padding-bottom: 0.75rem !important; |
| 4373 |
} |
| 4374 |
|
| 4375 |
.p-4 { |
| 4376 |
padding: 1rem !important; |
| 4377 |
} |
| 4378 |
|
| 4379 |
.pt-4 { |
| 4380 |
padding-top: 1rem !important; |
| 4381 |
} |
| 4382 |
|
| 4383 |
.pr-4 { |
| 4384 |
padding-right: 1rem !important; |
| 4385 |
} |
| 4386 |
|
| 4387 |
.pb-4 { |
| 4388 |
padding-bottom: 1rem !important; |
| 4389 |
} |
| 4390 |
|
| 4391 |
.pl-4 { |
| 4392 |
padding-left: 1rem !important; |
| 4393 |
} |
| 4394 |
|
| 4395 |
.px-4 { |
| 4396 |
padding-left: 1rem !important; |
| 4397 |
padding-right: 1rem !important; |
| 4398 |
} |
| 4399 |
|
| 4400 |
.py-4 { |
| 4401 |
padding-top: 1rem !important; |
| 4402 |
padding-bottom: 1rem !important; |
| 4403 |
} |
| 4404 |
|
| 4405 |
.p-5 { |
| 4406 |
padding: 1.5rem !important; |
| 4407 |
} |
| 4408 |
|
| 4409 |
.pt-5 { |
| 4410 |
padding-top: 1.5rem !important; |
| 4411 |
} |
| 4412 |
|
| 4413 |
.pr-5 { |
| 4414 |
padding-right: 1.5rem !important; |
| 4415 |
} |
| 4416 |
|
| 4417 |
.pb-5 { |
| 4418 |
padding-bottom: 1.5rem !important; |
| 4419 |
} |
| 4420 |
|
| 4421 |
.pl-5 { |
| 4422 |
padding-left: 1.5rem !important; |
| 4423 |
} |
| 4424 |
|
| 4425 |
.px-5 { |
| 4426 |
padding-left: 1.5rem !important; |
| 4427 |
padding-right: 1.5rem !important; |
| 4428 |
} |
| 4429 |
|
| 4430 |
.py-5 { |
| 4431 |
padding-top: 1.5rem !important; |
| 4432 |
padding-bottom: 1.5rem !important; |
| 4433 |
} |
| 4434 |
|
| 4435 |
.p-6 { |
| 4436 |
padding: 3rem !important; |
| 4437 |
} |
| 4438 |
|
| 4439 |
.pt-6 { |
| 4440 |
padding-top: 3rem !important; |
| 4441 |
} |
| 4442 |
|
| 4443 |
.pr-6 { |
| 4444 |
padding-right: 3rem !important; |
| 4445 |
} |
| 4446 |
|
| 4447 |
.pb-6 { |
| 4448 |
padding-bottom: 3rem !important; |
| 4449 |
} |
| 4450 |
|
| 4451 |
.pl-6 { |
| 4452 |
padding-left: 3rem !important; |
| 4453 |
} |
| 4454 |
|
| 4455 |
.px-6 { |
| 4456 |
padding-left: 3rem !important; |
| 4457 |
padding-right: 3rem !important; |
| 4458 |
} |
| 4459 |
|
| 4460 |
.py-6 { |
| 4461 |
padding-top: 3rem !important; |
| 4462 |
padding-bottom: 3rem !important; |
| 4463 |
} |
| 4464 |
|
| 4465 |
.has-text-centered { |
| 4466 |
text-align: center !important; |
| 4467 |
} |
| 4468 |
|
| 4469 |
.has-text-justified { |
| 4470 |
text-align: justify !important; |
| 4471 |
} |
| 4472 |
|
| 4473 |
.has-text-left { |
| 4474 |
text-align: left !important; |
| 4475 |
} |
| 4476 |
|
| 4477 |
.has-text-right { |
| 4478 |
text-align: right !important; |
| 4479 |
} |
| 4480 |
|
| 4481 |
@media screen and (max-width: 768px) { |
| 4482 |
.has-text-centered-mobile { |
| 4483 |
text-align: center !important; |
| 4484 |
} |
| 4485 |
} |
| 4486 |
@media screen and (min-width: 769px), print { |
| 4487 |
.has-text-centered-tablet { |
| 4488 |
text-align: center !important; |
| 4489 |
} |
| 4490 |
} |
| 4491 |
@media screen and (min-width: 769px) and (max-width: 1023px) { |
| 4492 |
.has-text-centered-tablet-only { |
| 4493 |
text-align: center !important; |
| 4494 |
} |
| 4495 |
} |
| 4496 |
@media screen and (max-width: 1023px) { |
| 4497 |
.has-text-centered-touch { |
| 4498 |
text-align: center !important; |
| 4499 |
} |
| 4500 |
} |
| 4501 |
@media screen and (min-width: 1024px) { |
| 4502 |
.has-text-centered-desktop { |
| 4503 |
text-align: center !important; |
| 4504 |
} |
| 4505 |
} |
| 4506 |
@media screen and (min-width: 1024px) and (max-width: 1215px) { |
| 4507 |
.has-text-centered-desktop-only { |
| 4508 |
text-align: center !important; |
| 4509 |
} |
| 4510 |
} |
| 4511 |
@media screen and (min-width: 1216px) { |
| 4512 |
.has-text-centered-widescreen { |
| 4513 |
text-align: center !important; |
| 4514 |
} |
| 4515 |
} |
| 4516 |
@media screen and (min-width: 1216px) and (max-width: 1407px) { |
| 4517 |
.has-text-centered-widescreen-only { |
| 4518 |
text-align: center !important; |
| 4519 |
} |
| 4520 |
} |
| 4521 |
@media screen and (min-width: 1408px) { |
| 4522 |
.has-text-centered-fullhd { |
| 4523 |
text-align: center !important; |
| 4524 |
} |
| 4525 |
} |
| 4526 |
@media screen and (max-width: 768px) { |
| 4527 |
.has-text-justified-mobile { |
| 4528 |
text-align: justify !important; |
| 4529 |
} |
| 4530 |
} |
| 4531 |
@media screen and (min-width: 769px), print { |
| 4532 |
.has-text-justified-tablet { |
| 4533 |
text-align: justify !important; |
| 4534 |
} |
| 4535 |
} |
| 4536 |
@media screen and (min-width: 769px) and (max-width: 1023px) { |
| 4537 |
.has-text-justified-tablet-only { |
| 4538 |
text-align: justify !important; |
| 4539 |
} |
| 4540 |
} |
| 4541 |
@media screen and (max-width: 1023px) { |
| 4542 |
.has-text-justified-touch { |
| 4543 |
text-align: justify !important; |
| 4544 |
} |
| 4545 |
} |
| 4546 |
@media screen and (min-width: 1024px) { |
| 4547 |
.has-text-justified-desktop { |
| 4548 |
text-align: justify !important; |
| 4549 |
} |
| 4550 |
} |
| 4551 |
@media screen and (min-width: 1024px) and (max-width: 1215px) { |
| 4552 |
.has-text-justified-desktop-only { |
| 4553 |
text-align: justify !important; |
| 4554 |
} |
| 4555 |
} |
| 4556 |
@media screen and (min-width: 1216px) { |
| 4557 |
.has-text-justified-widescreen { |
| 4558 |
text-align: justify !important; |
| 4559 |
} |
| 4560 |
} |
| 4561 |
@media screen and (min-width: 1216px) and (max-width: 1407px) { |
| 4562 |
.has-text-justified-widescreen-only { |
| 4563 |
text-align: justify !important; |
| 4564 |
} |
| 4565 |
} |
| 4566 |
@media screen and (min-width: 1408px) { |
| 4567 |
.has-text-justified-fullhd { |
| 4568 |
text-align: justify !important; |
| 4569 |
} |
| 4570 |
} |
| 4571 |
@media screen and (max-width: 768px) { |
| 4572 |
.has-text-left-mobile { |
| 4573 |
text-align: left !important; |
| 4574 |
} |
| 4575 |
} |
| 4576 |
@media screen and (min-width: 769px), print { |
| 4577 |
.has-text-left-tablet { |
| 4578 |
text-align: left !important; |
| 4579 |
} |
| 4580 |
} |
| 4581 |
@media screen and (min-width: 769px) and (max-width: 1023px) { |
| 4582 |
.has-text-left-tablet-only { |
| 4583 |
text-align: left !important; |
| 4584 |
} |
| 4585 |
} |
| 4586 |
@media screen and (max-width: 1023px) { |
| 4587 |
.has-text-left-touch { |
| 4588 |
text-align: left !important; |
| 4589 |
} |
| 4590 |
} |
| 4591 |
@media screen and (min-width: 1024px) { |
| 4592 |
.has-text-left-desktop { |
| 4593 |
text-align: left !important; |
| 4594 |
} |
| 4595 |
} |
| 4596 |
@media screen and (min-width: 1024px) and (max-width: 1215px) { |
| 4597 |
.has-text-left-desktop-only { |
| 4598 |
text-align: left !important; |
| 4599 |
} |
| 4600 |
} |
| 4601 |
@media screen and (min-width: 1216px) { |
| 4602 |
.has-text-left-widescreen { |
| 4603 |
text-align: left !important; |
| 4604 |
} |
| 4605 |
} |
| 4606 |
@media screen and (min-width: 1216px) and (max-width: 1407px) { |
| 4607 |
.has-text-left-widescreen-only { |
| 4608 |
text-align: left !important; |
| 4609 |
} |
| 4610 |
} |
| 4611 |
@media screen and (min-width: 1408px) { |
| 4612 |
.has-text-left-fullhd { |
| 4613 |
text-align: left !important; |
| 4614 |
} |
| 4615 |
} |
| 4616 |
@media screen and (max-width: 768px) { |
| 4617 |
.has-text-right-mobile { |
| 4618 |
text-align: right !important; |
| 4619 |
} |
| 4620 |
} |
| 4621 |
@media screen and (min-width: 769px), print { |
| 4622 |
.has-text-right-tablet { |
| 4623 |
text-align: right !important; |
| 4624 |
} |
| 4625 |
} |
| 4626 |
@media screen and (min-width: 769px) and (max-width: 1023px) { |
| 4627 |
.has-text-right-tablet-only { |
| 4628 |
text-align: right !important; |
| 4629 |
} |
| 4630 |
} |
| 4631 |
@media screen and (max-width: 1023px) { |
| 4632 |
.has-text-right-touch { |
| 4633 |
text-align: right !important; |
| 4634 |
} |
| 4635 |
} |
| 4636 |
@media screen and (min-width: 1024px) { |
| 4637 |
.has-text-right-desktop { |
| 4638 |
text-align: right !important; |
| 4639 |
} |
| 4640 |
} |
| 4641 |
@media screen and (min-width: 1024px) and (max-width: 1215px) { |
| 4642 |
.has-text-right-desktop-only { |
| 4643 |
text-align: right !important; |
| 4644 |
} |
| 4645 |
} |
| 4646 |
@media screen and (min-width: 1216px) { |
| 4647 |
.has-text-right-widescreen { |
| 4648 |
text-align: right !important; |
| 4649 |
} |
| 4650 |
} |
| 4651 |
@media screen and (min-width: 1216px) and (max-width: 1407px) { |
| 4652 |
.has-text-right-widescreen-only { |
| 4653 |
text-align: right !important; |
| 4654 |
} |
| 4655 |
} |
| 4656 |
@media screen and (min-width: 1408px) { |
| 4657 |
.has-text-right-fullhd { |
| 4658 |
text-align: right !important; |
| 4659 |
} |
| 4660 |
} |
| 4661 |
.is-capitalized { |
| 4662 |
text-transform: capitalize !important; |
| 4663 |
} |
| 4664 |
|
| 4665 |
.is-lowercase { |
| 4666 |
text-transform: lowercase !important; |
| 4667 |
} |
| 4668 |
|
| 4669 |
.is-uppercase { |
| 4670 |
text-transform: uppercase !important; |
| 4671 |
} |
| 4672 |
|
| 4673 |
.is-italic { |
| 4674 |
font-style: italic !important; |
| 4675 |
} |
| 4676 |
|
| 4677 |
.has-text-weight-light { |
| 4678 |
font-weight: 300 !important; |
| 4679 |
} |
| 4680 |
|
| 4681 |
.has-text-weight-normal { |
| 4682 |
font-weight: 400 !important; |
| 4683 |
} |
| 4684 |
|
| 4685 |
.has-text-weight-medium { |
| 4686 |
font-weight: 500 !important; |
| 4687 |
} |
| 4688 |
|
| 4689 |
.has-text-weight-semibold { |
| 4690 |
font-weight: 600 !important; |
| 4691 |
} |
| 4692 |
|
| 4693 |
.has-text-weight-bold { |
| 4694 |
font-weight: 700 !important; |
| 4695 |
} |
| 4696 |
|
| 4697 |
body.wp-adminify { |
| 4698 |
--adminify-text-color: #fff; |
| 4699 |
} |
| 4700 |
|
| 4701 |
body.wp-adminify { |
| 4702 |
--adminify-text-color: #fff; |
| 4703 |
} |
| 4704 |
|
| 4705 |
@font-face { |
| 4706 |
font-family: no-parens; |
| 4707 |
src: url("data:application/x-font-woff;base64,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"); |
| 4708 |
unicode-range: U+0028, U+0029; |
| 4709 |
} |
| 4710 |
html, |
| 4711 |
body.wp-adminify { |
| 4712 |
background-color: var(--adminify-preset-background); |
| 4713 |
font-family: "Nunito Sans", sans-serif; |
| 4714 |
height: auto; |
| 4715 |
line-height: 20px; |
| 4716 |
-webkit-font-smoothing: antialiased; |
| 4717 |
-moz-osx-font-smoothing: grayscale; |
| 4718 |
text-rendering: geometricPrecision; |
| 4719 |
-ms-text-size-adjust: 100%; |
| 4720 |
-webkit-text-size-adjust: 100%; |
| 4721 |
} |
| 4722 |
|
| 4723 |
html.wp-toolbar { |
| 4724 |
padding-top: 0 !important; |
| 4725 |
} |
| 4726 |
|
| 4727 |
#plugin-information .adminify-top_bar { |
| 4728 |
display: none; |
| 4729 |
} |
| 4730 |
#plugin-information #plugin-information-title.with-banner h2 { |
| 4731 |
background-color: #D5E0FF; |
| 4732 |
-webkit-border-radius: 6px; |
| 4733 |
border-radius: 6px; |
| 4734 |
color: #14142B; |
| 4735 |
font-size: 24px; |
| 4736 |
text-shadow: none; |
| 4737 |
} |
| 4738 |
#plugin-information #plugin-information-footer { |
| 4739 |
height: auto; |
| 4740 |
} |
| 4741 |
#plugin-information a.button.button-primary.right.disabled { |
| 4742 |
background-color: var(--adminify-btn-bg) !important; |
| 4743 |
border: 1px solid var(--adminify-btn-bg) !important; |
| 4744 |
color: var(--adminify-text-color) !important; |
| 4745 |
margin-bottom: 0; |
| 4746 |
} |
| 4747 |
#plugin-information a.button.button-primary.right.disabled:hover { |
| 4748 |
background-color: var(--adminify-text-color) !important; |
| 4749 |
color: var(--adminify-btn-bg) !important; |
| 4750 |
} |
| 4751 |
|
| 4752 |
.js.plugins-php.wp-adminify .search-box .wp-filter-search { |
| 4753 |
width: 200px; |
| 4754 |
} |
| 4755 |
|
| 4756 |
.wp-adminify.folded .adminify-top_bar nav.adminify-top-navbar .navbar-brand { |
| 4757 |
padding: 0 10px; |
| 4758 |
width: 6rem; |
| 4759 |
} |
| 4760 |
.wp-adminify.folded .adminify-top_bar nav.adminify-top-navbar .navbar-brand img[class*=logo] { |
| 4761 |
-o-object-position: 1px 0px; |
| 4762 |
object-position: 1px 0px; |
| 4763 |
-o-object-fit: cover; |
| 4764 |
object-fit: cover; |
| 4765 |
height: 36px; |
| 4766 |
width: 40px; |
| 4767 |
} |
| 4768 |
.wp-adminify.folded .adminify-top_bar nav.adminify-top-navbar .navbar-brand .wp-adminify-site-name { |
| 4769 |
display: none; |
| 4770 |
} |
| 4771 |
.wp-adminify [data-value=script].adminify-field-code_editor .CodeMirror { |
| 4772 |
height: 200px; |
| 4773 |
} |
| 4774 |
.wp-adminify #wpbody-content .wp-list-table.widefat #the-list { |
| 4775 |
position: relative; |
| 4776 |
} |
| 4777 |
.wp-adminify body.wp-adminify { |
| 4778 |
--adminify-text-color: #fff; |
| 4779 |
} |
| 4780 |
.wp-adminify body.wp-adminify { |
| 4781 |
--adminify-text-color: #fff; |
| 4782 |
} |
| 4783 |
@font-face { |
| 4784 |
.wp-adminify { |
| 4785 |
font-family: no-parens; |
| 4786 |
src: url("data:application/x-font-woff;base64,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"); |
| 4787 |
unicode-range: U+0028, U+0029; |
| 4788 |
} |
| 4789 |
} |
| 4790 |
.wp-adminify * { |
| 4791 |
-webkit-box-sizing: border-box; |
| 4792 |
box-sizing: border-box; |
| 4793 |
} |
| 4794 |
.wp-adminify .wp-die-message, |
| 4795 |
.wp-adminify p:not(.interface-interface-skeleton__content p) { |
| 4796 |
color: #4E4B66; |
| 4797 |
font-size: 14px; |
| 4798 |
line-height: 22px; |
| 4799 |
} |
| 4800 |
.wp-adminify .wp-die-message a, |
| 4801 |
.wp-adminify p:not(.interface-interface-skeleton__content p) a { |
| 4802 |
color: var(--adminify-btn-bg); |
| 4803 |
} |
| 4804 |
.wp-adminify a, |
| 4805 |
.wp-adminify a:hover, |
| 4806 |
.wp-adminify .field-move .menus-move, |
| 4807 |
.wp-adminify .components-button.is-secondary:not(.block-editor-link-control__search-item-action), |
| 4808 |
.wp-adminify .components-button.is-tertiary { |
| 4809 |
color: var(--adminify-btn-bg); |
| 4810 |
text-decoration: none; |
| 4811 |
} |
| 4812 |
.wp-adminify #wpbody-content .block-editor .edit-post-header__settings .components-button.is-tertiary { |
| 4813 |
background: transparent !important; |
| 4814 |
} |
| 4815 |
.wp-adminify #wpbody-content #site-editor .components-panel__body .components-checkbox-control__input-container input + svg { |
| 4816 |
display: none !important; |
| 4817 |
} |
| 4818 |
.wp-adminify .components-button.is-secondary { |
| 4819 |
-webkit-box-shadow: none !important; |
| 4820 |
box-shadow: none !important; |
| 4821 |
} |
| 4822 |
.wp-adminify a.edit-site-navigation-panel__back-to-dashboard { |
| 4823 |
color: var(--adminify-text-color) !important; |
| 4824 |
} |
| 4825 |
.wp-adminify a, |
| 4826 |
.wp-adminify button:not(.block-editor-block-mover-button), |
| 4827 |
.wp-adminify .button, |
| 4828 |
.wp-adminify input, |
| 4829 |
.wp-adminify select, |
| 4830 |
.wp-adminify textarea, |
| 4831 |
.wp-adminify label, |
| 4832 |
.wp-adminify .adminify-copy-btn, |
| 4833 |
.wp-adminify .clear-button { |
| 4834 |
-webkit-box-shadow: none; |
| 4835 |
box-shadow: none; |
| 4836 |
min-height: inherit; |
| 4837 |
} |
| 4838 |
.wp-adminify a:hover, .wp-adminify a:focus, .wp-adminify a:visited, .wp-adminify a:active, |
| 4839 |
.wp-adminify button:not(.block-editor-block-mover-button):hover, |
| 4840 |
.wp-adminify button:not(.block-editor-block-mover-button):focus, |
| 4841 |
.wp-adminify button:not(.block-editor-block-mover-button):visited, |
| 4842 |
.wp-adminify button:not(.block-editor-block-mover-button):active, |
| 4843 |
.wp-adminify .button:hover, |
| 4844 |
.wp-adminify .button:focus, |
| 4845 |
.wp-adminify .button:visited, |
| 4846 |
.wp-adminify .button:active, |
| 4847 |
.wp-adminify input:hover, |
| 4848 |
.wp-adminify input:focus, |
| 4849 |
.wp-adminify input:visited, |
| 4850 |
.wp-adminify input:active, |
| 4851 |
.wp-adminify select:hover, |
| 4852 |
.wp-adminify select:focus, |
| 4853 |
.wp-adminify select:visited, |
| 4854 |
.wp-adminify select:active, |
| 4855 |
.wp-adminify textarea:hover, |
| 4856 |
.wp-adminify textarea:focus, |
| 4857 |
.wp-adminify textarea:visited, |
| 4858 |
.wp-adminify textarea:active, |
| 4859 |
.wp-adminify label:hover, |
| 4860 |
.wp-adminify label:focus, |
| 4861 |
.wp-adminify label:visited, |
| 4862 |
.wp-adminify label:active, |
| 4863 |
.wp-adminify .adminify-copy-btn:hover, |
| 4864 |
.wp-adminify .adminify-copy-btn:focus, |
| 4865 |
.wp-adminify .adminify-copy-btn:visited, |
| 4866 |
.wp-adminify .adminify-copy-btn:active, |
| 4867 |
.wp-adminify .clear-button:hover, |
| 4868 |
.wp-adminify .clear-button:focus, |
| 4869 |
.wp-adminify .clear-button:visited, |
| 4870 |
.wp-adminify .clear-button:active { |
| 4871 |
-webkit-box-shadow: none !important; |
| 4872 |
box-shadow: none !important; |
| 4873 |
outline: 0 !important; |
| 4874 |
} |
| 4875 |
.wp-adminify button:not(.components-dropdown .components-color-palette__custom-color, .components-circular-option-picker .components-circular-option-picker__option, .components-dropdown .components-button), |
| 4876 |
.wp-adminify .button { |
| 4877 |
height: auto; |
| 4878 |
line-height: 34px; |
| 4879 |
padding: 0 1rem; |
| 4880 |
} |
| 4881 |
.wp-adminify button:not(.components-dropdown .components-color-palette__custom-color, .components-circular-option-picker .components-circular-option-picker__option, .components-dropdown .components-button).dashicons, |
| 4882 |
.wp-adminify .button.dashicons { |
| 4883 |
font-family: dashicons; |
| 4884 |
} |
| 4885 |
.wp-adminify button:not(.components-dropdown .components-color-palette__custom-color, .components-circular-option-picker .components-circular-option-picker__option, .components-dropdown .components-button) .is-busy, |
| 4886 |
.wp-adminify .button .is-busy { |
| 4887 |
background-color: var(--adminify-btn-bg); |
| 4888 |
} |
| 4889 |
.wp-adminify #wpcontent, |
| 4890 |
.wp-adminify #wpfooter { |
| 4891 |
margin-left: 15.25rem; |
| 4892 |
} |
| 4893 |
.wp-adminify :root { |
| 4894 |
--wp-admin-border-width-focus: 0; |
| 4895 |
} |
| 4896 |
.wp-adminify img:not(.plugin-icon) { |
| 4897 |
max-width: 100%; |
| 4898 |
} |
| 4899 |
.wp-adminify .field.is-grouped { |
| 4900 |
display: -webkit-box; |
| 4901 |
display: -webkit-flex; |
| 4902 |
display: -ms-flexbox; |
| 4903 |
display: flex; |
| 4904 |
} |
| 4905 |
.wp-adminify .is-rounded { |
| 4906 |
-webkit-border-radius: 9999px; |
| 4907 |
border-radius: 9999px; |
| 4908 |
} |
| 4909 |
.wp-adminify .is-inline-block { |
| 4910 |
display: inline-block; |
| 4911 |
} |
| 4912 |
.wp-adminify .nav-tabs, |
| 4913 |
.wp-adminify .is-flex { |
| 4914 |
display: -webkit-box; |
| 4915 |
display: -webkit-flex; |
| 4916 |
display: -ms-flexbox; |
| 4917 |
display: flex; |
| 4918 |
} |
| 4919 |
.wp-adminify .is-inline-flex { |
| 4920 |
display: -webkit-inline-box; |
| 4921 |
display: -webkit-inline-flex; |
| 4922 |
display: -ms-inline-flexbox; |
| 4923 |
display: inline-flex; |
| 4924 |
} |
| 4925 |
.wp-adminify .is-boxed.is-centered { |
| 4926 |
display: -webkit-box; |
| 4927 |
display: -webkit-flex; |
| 4928 |
display: -ms-flexbox; |
| 4929 |
display: flex; |
| 4930 |
-webkit-box-align: center; |
| 4931 |
-webkit-align-items: center; |
| 4932 |
-ms-flex-align: center; |
| 4933 |
align-items: center; |
| 4934 |
-webkit-box-pack: center; |
| 4935 |
-webkit-justify-content: center; |
| 4936 |
-ms-flex-pack: center; |
| 4937 |
justify-content: center; |
| 4938 |
} |
| 4939 |
.wp-adminify .dropdown-menu { |
| 4940 |
background-color: var(--adminify-menu-bg); |
| 4941 |
} |
| 4942 |
.wp-adminify #dashboard-widgets-wrap { |
| 4943 |
overflow: visible; |
| 4944 |
} |
| 4945 |
.wp-adminify #dashboard-widgets-wrap iframe { |
| 4946 |
max-width: 100%; |
| 4947 |
} |
| 4948 |
.wp-adminify #wpwrap #wpbody-content { |
| 4949 |
margin-top: 68px; |
| 4950 |
} |
| 4951 |
.wp-adminify #wpwrap .wrap { |
| 4952 |
clear: both; |
| 4953 |
margin-top: 25px; |
| 4954 |
padding-top: 0; |
| 4955 |
} |
| 4956 |
.wp-adminify .percentage { |
| 4957 |
padding: 0 3px; |
| 4958 |
} |
| 4959 |
.wp-adminify input, |
| 4960 |
.wp-adminify textarea, |
| 4961 |
.wp-adminify select, |
| 4962 |
.wp-adminify .form-table .select2-container .select2-selection, |
| 4963 |
.wp-adminify .wp-adminify-top-header--search--form input, .wp-adminify.modal-open input[type=text], .wp-adminify.modal-open input[type=search], |
| 4964 |
.wp-adminify .wp-adminify-dashboard-widgets .chosen-choices, |
| 4965 |
.wp-adminify .adminify-section[data-section-id] .adminify-data-wrapper .adminify-cloneable-content .adminify--result, |
| 4966 |
.wp-adminify #nav-menus-frame .tabs-panel input[type=search], |
| 4967 |
.wp-adminify #nav-menu-header input[type=text], |
| 4968 |
.wp-adminify #posts-filter .wp-filter .search-form input, |
| 4969 |
.wp-adminify .postbox-container #comments-form .search-box input, |
| 4970 |
.wp-adminify .postbox-container #post_tag input[type=text], |
| 4971 |
.wp-adminify .media-modal .media-frame-content input[type=search], |
| 4972 |
.wp-adminify .media-frame-content .media-sidebar .compat-item input[type=text], |
| 4973 |
.wp-adminify .media-frame-content .settings input, |
| 4974 |
.wp-adminify .media-frame-content .settings textarea, |
| 4975 |
.wp-adminify .media-frame-content .setting input, |
| 4976 |
.wp-adminify .media-frame-content .setting textarea, |
| 4977 |
.wp-adminify .wp-adminify--menu--editor--settings .panel .menu-editor-form input[type=text], |
| 4978 |
.wp-adminify .wp-adminify--menu--editor--settings .panel .menu-editor-form input[type=url], |
| 4979 |
.wp-adminify #wpbody-content #createuser .form-table input, |
| 4980 |
.wp-adminify .media-frame .embed-url input { |
| 4981 |
background-color: var(--adminify-admin-bar-input-bg); |
| 4982 |
border: none; |
| 4983 |
-webkit-border-radius: 6px; |
| 4984 |
border-radius: 6px; |
| 4985 |
color: var(--adminify-admin-bar-input-text); |
| 4986 |
font-size: 14px; |
| 4987 |
line-height: 20px; |
| 4988 |
padding: 8px 16px; |
| 4989 |
} |
| 4990 |
.wp-adminify #fs_affiliation_content_wrapper #messages { |
| 4991 |
display: inline-block; |
| 4992 |
width: 100%; |
| 4993 |
} |
| 4994 |
.wp-adminify input::-webkit-input-placeholder, |
| 4995 |
.wp-adminify textarea::-webkit-input-placeholder { |
| 4996 |
color: rgba(78, 75, 102, 0.54); |
| 4997 |
} |
| 4998 |
.wp-adminify input::-moz-placeholder, |
| 4999 |
.wp-adminify textarea::-moz-placeholder { |
| 5000 |
color: rgba(78, 75, 102, 0.54); |
| 5001 |
} |
| 5002 |
.wp-adminify input:-ms-input-placeholder, |
| 5003 |
.wp-adminify textarea:-ms-input-placeholder { |
| 5004 |
color: rgba(78, 75, 102, 0.54); |
| 5005 |
} |
| 5006 |
.wp-adminify input:-moz-placeholder, |
| 5007 |
.wp-adminify textarea:-moz-placeholder { |
| 5008 |
color: rgba(78, 75, 102, 0.54); |
| 5009 |
} |
| 5010 |
.wp-adminify .select2-container .select2-selection--single { |
| 5011 |
height: auto; |
| 5012 |
min-height: 36px; |
| 5013 |
} |
| 5014 |
.wp-adminify .select2-container .select2-selection--single .select2-selection__rendered { |
| 5015 |
color: #000; |
| 5016 |
line-height: 23px; |
| 5017 |
} |
| 5018 |
.wp-adminify #customize-theme-controls .customize-pane-child input { |
| 5019 |
border: 1px solid #c1c1c1; |
| 5020 |
} |
| 5021 |
.wp-adminify .is-primary:not(.wp-editor-wrap button, #adminify-data-saved-message), |
| 5022 |
.wp-adminify .is-secondary:not(.wp-editor-wrap button, .wp-editor-wrap button), |
| 5023 |
.wp-adminify .button-primary:not(.wp-editor-wrap button, .wp-editor-wrap button), |
| 5024 |
.wp-adminify #wpbody-content .page-title-action, |
| 5025 |
.wp-adminify #wpbody-content .elementor-button.elementor-button-success, |
| 5026 |
.wp-adminify .elementor-button-go-pro, |
| 5027 |
.wp-adminify #e-admin-top-bar-root .page-title-action, |
| 5028 |
.wp-adminify #wpbody-content input[type=submit]:not(.actions .button, #create-page), |
| 5029 |
.wp-adminify .adminify-options.wp-adminify-settings .adminify-reset-section, |
| 5030 |
.wp-adminify .wp-adminify-dashboard-widgets .adminify-field button:not(.wp-editor-wrap button), |
| 5031 |
.wp-adminify .adminify-section[data-section-id] .adminify-fieldset button:not(.wp-switch-editor, .wp-editor-wrap button, .adminify-content button), |
| 5032 |
.wp-adminify .adminify-data-wrapper .adminify-cloneable-content button:not(.wp-editor-wrap button), |
| 5033 |
.wp-adminify #wpbody-content .wp-picker-input-wrap .button.wp-picker-default, .wp-adminify.wp-adminify_page_adminify-sidebar-generator .sidebar-title a, .wp-adminify.wp-adminify_page_adminify-sidebar-generator .wp-adminify--popup-container_inner form .button.button-primary, |
| 5034 |
.wp-adminify #wpadminify-admin-columns .columns.is-desktop button, .wp-adminify.appearance_page_custom-background #custom-background .form-table #choose-from-library-link, .wp-adminify.appearance_page_custom-background #custom-background .wp-picker-container .wp-picker-input-wrap .button, .wp-adminify.nav-menus-php #nav-menus-frame .menu-edit .button, .wp-adminify.nav-menus-php .appearance_page_custom-background .wp-upload-form button, |
| 5035 |
.wp-adminify #widgets-left .widgets-chooser .widgets-chooser-sidebars button, |
| 5036 |
.wp-adminify #wpbody-content .postbox-container #post_tag input.button, |
| 5037 |
.wp-adminify #post-body-content .postarea button:not(.wp-switch-editor, .ed_button, .mce-widget button), |
| 5038 |
.wp-adminify .-interface-skeleton__header .edit-post-header .edit-post-header__settings .editor-post-switch-to-draft, |
| 5039 |
.wp-adminify #posts-filter .wp-list-table.widefat .inline-edit-row.inline-edit-save button, |
| 5040 |
.wp-adminify #wpbody-content .metabox-holder .inside button:not(.button-link, .wp-editor-wrap button, .wp-editor-wrap button, .rwmb-meta-box .rwmb-field .rwmb-input .wp-picker-container .button.wp-color-result, .rwmb-field .rwmb-input .wp-picker-container .wp-picker-input-wrap .wp-picker-clear), |
| 5041 |
.wp-adminify #wpbody-content .metabox-holder .inside .button:not(.wp-editor-wrap button, .rwmb-meta-box .rwmb-field .rwmb-input .wp-picker-container .button.wp-color-result, .rwmb-field .rwmb-input .wp-picker-container .wp-picker-input-wrap .wp-picker-clear), |
| 5042 |
.wp-adminify #wpbody-content .metabox-holder .inside input[type=submit], |
| 5043 |
.wp-adminify #wpbody-content .metabox-holder .postbox-header + .inside button:not(.button-link, .wp-editor-wrap button, .wp-editor-wrap button, .rwmb-meta-box .rwmb-field .rwmb-input .wp-picker-container .button.wp-color-result, .rwmb-field .rwmb-input .wp-picker-container .wp-picker-input-wrap .wp-picker-clear), |
| 5044 |
.wp-adminify #wpbody-content .metabox-holder .postbox-header + .inside .button:not(.wp-editor-wrap button, .rwmb-meta-box .rwmb-field .rwmb-input .wp-picker-container .button.wp-color-result, .rwmb-field .rwmb-input .wp-picker-container .wp-picker-input-wrap .wp-picker-clear), |
| 5045 |
.wp-adminify #wpbody-content .metabox-holder .postbox-header + .inside input[type=submit], |
| 5046 |
.wp-adminify #major-publishing-actions input[type=submit], |
| 5047 |
.wp-adminify .media-modal .media-frame-toolbar .media-toolbar button, |
| 5048 |
.wp-adminify #post-body-content .image-editor button:not(.imgedit-help-toggle), |
| 5049 |
.wp-adminify #post-body-content .image-editor input[type=button], |
| 5050 |
.wp-adminify .wp-adminify-page-speed-wrapper .wp-adminify-analyze-button, |
| 5051 |
.wp-adminify #wpbody-content #documentation #docs-lookup, |
| 5052 |
.wp-adminify .wp-list-table.widefat.comments .inline-edit-row .comment-reply .reply-submit-buttons button, .wp-adminify.themes-php #wpbody-content .theme-overlay .theme-actions .button, .wp-adminify.theme-install-php #wpbody-content .theme-browser .theme .theme-actions .button, .wp-adminify.theme-install-php #wpbody-content .theme-install-overlay .wp-full-overlay-header .button, .wp-adminify.theme-install-php #wpbody-content .filter-drawer .buttons .button, |
| 5053 |
.wp-adminify .health-check-body .site-health-view-passed, |
| 5054 |
.wp-adminify .health-check-body .site-health-copy-buttons button, |
| 5055 |
.wp-adminify .privacy-settings-accordion-actions button, |
| 5056 |
.wp-adminify .adminify-copy-btn, |
| 5057 |
.wp-adminify .blocks-widgets-container .block-editor-inserter button:not(.is-pressed, .components-panel__body-toggle), |
| 5058 |
.wp-adminify .popup--delete-history .button.button-primary { |
| 5059 |
background-color: var(--adminify-btn-bg); |
| 5060 |
-webkit-border-radius: 6px; |
| 5061 |
border-radius: 6px; |
| 5062 |
color: var(--adminify-text-color); |
| 5063 |
border: 1px solid var(--adminify-btn-bg); |
| 5064 |
font-size: 14px; |
| 5065 |
font-weight: 600; |
| 5066 |
line-height: 34px !important; |
| 5067 |
padding: 0 16px !important; |
| 5068 |
height: auto; |
| 5069 |
} |
| 5070 |
.wp-adminify .is-primary:not(.wp-editor-wrap button, #adminify-data-saved-message):hover, |
| 5071 |
.wp-adminify .is-secondary:not(.wp-editor-wrap button, .wp-editor-wrap button):hover, |
| 5072 |
.wp-adminify .button-primary:not(.wp-editor-wrap button, .wp-editor-wrap button):hover, |
| 5073 |
.wp-adminify #wpbody-content .page-title-action:hover, |
| 5074 |
.wp-adminify #wpbody-content .elementor-button.elementor-button-success:hover, |
| 5075 |
.wp-adminify .elementor-button-go-pro:hover, |
| 5076 |
.wp-adminify #e-admin-top-bar-root .page-title-action:hover, |
| 5077 |
.wp-adminify #wpbody-content input[type=submit]:not(.actions .button, #create-page):hover, |
| 5078 |
.wp-adminify .adminify-options.wp-adminify-settings .adminify-reset-section:hover, |
| 5079 |
.wp-adminify .wp-adminify-dashboard-widgets .adminify-field button:not(.wp-editor-wrap button):hover, |
| 5080 |
.wp-adminify .adminify-section[data-section-id] .adminify-fieldset button:not(.wp-switch-editor, .wp-editor-wrap button, .adminify-content button):hover, |
| 5081 |
.wp-adminify .adminify-data-wrapper .adminify-cloneable-content button:not(.wp-editor-wrap button):hover, |
| 5082 |
.wp-adminify #wpbody-content .wp-picker-input-wrap .button.wp-picker-default:hover, .wp-adminify.wp-adminify_page_adminify-sidebar-generator .sidebar-title a:hover, .wp-adminify.wp-adminify_page_adminify-sidebar-generator .wp-adminify--popup-container_inner form .button.button-primary:hover, |
| 5083 |
.wp-adminify #wpadminify-admin-columns .columns.is-desktop button:hover, .wp-adminify.appearance_page_custom-background #custom-background .form-table #choose-from-library-link:hover, .wp-adminify.appearance_page_custom-background #custom-background .wp-picker-container .wp-picker-input-wrap .button:hover, .wp-adminify.nav-menus-php #nav-menus-frame .menu-edit .button:hover, .wp-adminify.nav-menus-php .appearance_page_custom-background .wp-upload-form button:hover, |
| 5084 |
.wp-adminify #widgets-left .widgets-chooser .widgets-chooser-sidebars button:hover, |
| 5085 |
.wp-adminify #wpbody-content .postbox-container #post_tag input.button:hover, |
| 5086 |
.wp-adminify #post-body-content .postarea button:not(.wp-switch-editor, .ed_button, .mce-widget button):hover, |
| 5087 |
.wp-adminify .-interface-skeleton__header .edit-post-header .edit-post-header__settings .editor-post-switch-to-draft:hover, |
| 5088 |
.wp-adminify #posts-filter .wp-list-table.widefat .inline-edit-row.inline-edit-save button:hover, |
| 5089 |
.wp-adminify #wpbody-content .metabox-holder .inside button:not(.button-link, .wp-editor-wrap button, .wp-editor-wrap button, .rwmb-meta-box .rwmb-field .rwmb-input .wp-picker-container .button.wp-color-result, .rwmb-field .rwmb-input .wp-picker-container .wp-picker-input-wrap .wp-picker-clear):hover, |
| 5090 |
.wp-adminify #wpbody-content .metabox-holder .inside .button:not(.wp-editor-wrap button, .rwmb-meta-box .rwmb-field .rwmb-input .wp-picker-container .button.wp-color-result, .rwmb-field .rwmb-input .wp-picker-container .wp-picker-input-wrap .wp-picker-clear):hover, |
| 5091 |
.wp-adminify #wpbody-content .metabox-holder .inside input[type=submit]:hover, |
| 5092 |
.wp-adminify #wpbody-content .metabox-holder .postbox-header + .inside button:not(.button-link, .wp-editor-wrap button, .wp-editor-wrap button, .rwmb-meta-box .rwmb-field .rwmb-input .wp-picker-container .button.wp-color-result, .rwmb-field .rwmb-input .wp-picker-container .wp-picker-input-wrap .wp-picker-clear):hover, |
| 5093 |
.wp-adminify #wpbody-content .metabox-holder .postbox-header + .inside .button:not(.wp-editor-wrap button, .rwmb-meta-box .rwmb-field .rwmb-input .wp-picker-container .button.wp-color-result, .rwmb-field .rwmb-input .wp-picker-container .wp-picker-input-wrap .wp-picker-clear):hover, |
| 5094 |
.wp-adminify #wpbody-content .metabox-holder .postbox-header + .inside input[type=submit]:hover, |
| 5095 |
.wp-adminify #major-publishing-actions input[type=submit]:hover, |
| 5096 |
.wp-adminify .media-modal .media-frame-toolbar .media-toolbar button:hover, |
| 5097 |
.wp-adminify #post-body-content .image-editor button:not(.imgedit-help-toggle):hover, |
| 5098 |
.wp-adminify #post-body-content .image-editor input[type=button]:hover, |
| 5099 |
.wp-adminify .wp-adminify-page-speed-wrapper .wp-adminify-analyze-button:hover, |
| 5100 |
.wp-adminify #wpbody-content #documentation #docs-lookup:hover, |
| 5101 |
.wp-adminify .wp-list-table.widefat.comments .inline-edit-row .comment-reply .reply-submit-buttons button:hover, .wp-adminify.themes-php #wpbody-content .theme-overlay .theme-actions .button:hover, .wp-adminify.theme-install-php #wpbody-content .theme-browser .theme .theme-actions .button:hover, .wp-adminify.theme-install-php #wpbody-content .theme-install-overlay .wp-full-overlay-header .button:hover, .wp-adminify.theme-install-php #wpbody-content .filter-drawer .buttons .button:hover, |
| 5102 |
.wp-adminify .health-check-body .site-health-view-passed:hover, |
| 5103 |
.wp-adminify .health-check-body .site-health-copy-buttons button:hover, |
| 5104 |
.wp-adminify .privacy-settings-accordion-actions button:hover, |
| 5105 |
.wp-adminify .adminify-copy-btn:hover, |
| 5106 |
.wp-adminify .blocks-widgets-container .block-editor-inserter button:not(.is-pressed, .components-panel__body-toggle):hover, |
| 5107 |
.wp-adminify .popup--delete-history .button.button-primary:hover { |
| 5108 |
background-color: var(--adminify-text-color) !important; |
| 5109 |
border-color: var(--adminify-btn-bg) !important; |
| 5110 |
color: var(--adminify-btn-bg) !important; |
| 5111 |
} |
| 5112 |
.wp-adminify.themes-php #wpbody-content .theme-browser .theme .theme-actions .button, |
| 5113 |
.wp-adminify .is-secondary:not(.wp-editor-wrap button), |
| 5114 |
.wp-adminify #wpbody-content input[type=submit]#create-page, |
| 5115 |
.wp-adminify .button-secondary:not(.wp-editor-wrap button), |
| 5116 |
.wp-adminify #wpbody-content #createuser .wp-generate-pw, |
| 5117 |
.wp-adminify #wpbody-content #createuser .wp-hide-pw, |
| 5118 |
.wp-adminify #wpbody-content #your-profile .wp-generate-pw, |
| 5119 |
.wp-adminify #wpbody-content #your-profile .wp-hide-pw, |
| 5120 |
.wp-adminify #wpbody-content .actions input[type=submit], |
| 5121 |
.wp-adminify #wpbody-content .ac-table-actions .-edit-columns, |
| 5122 |
.wp-adminify #wpbody-content .postbox-container.category-add input[type=button], |
| 5123 |
.wp-adminify #misc-publishing-actions button, |
| 5124 |
.wp-adminify #wp-media-grid .media-frame .uploader-inline-content button.browser, |
| 5125 |
.wp-adminify .media-modal .media-frame-content button, |
| 5126 |
.wp-adminify .plugin-install-tab-featured .plugin-card .plugin-card-top .button.activate-now, |
| 5127 |
.wp-adminify .plugin-install-tab-popular .plugin-card .plugin-card-top .button.activate-now, |
| 5128 |
.wp-adminify .plugin-install-tab-recommended .plugin-card .plugin-card-top .button.activate-now, |
| 5129 |
.wp-adminify .plugin-install-tab-favorites .plugin-card .plugin-card-top .button.activate-now, |
| 5130 |
.wp-adminify .plugin-install-tab-search .plugin-card .plugin-card-top .button.activate-now, .wp-adminify.themes-php .theme-browser .theme:hover.activate, .wp-adminify.themes-php .theme-browser .theme.active .activate .wp-adminify.theme-install-php .theme-browser .theme:hover.activate, .wp-adminify.theme-install-php .theme-browser .theme.active .activate, |
| 5131 |
.wp-adminify .plugin-install-tab-featured .plugin-card .plugin-card-top .button, |
| 5132 |
.wp-adminify .plugin-install-tab-popular .plugin-card .plugin-card-top .button, |
| 5133 |
.wp-adminify .plugin-install-tab-recommended .plugin-card .plugin-card-top .button, |
| 5134 |
.wp-adminify .plugin-install-tab-favorites .plugin-card .plugin-card-top .button, |
| 5135 |
.wp-adminify .plugin-install-tab-search .plugin-card .plugin-card-top .button, |
| 5136 |
.wp-adminify #wpbody-content .adminify-section[data-section-id] .button.adminify-edit-gallery, |
| 5137 |
.wp-adminify .popup--delete-history .button { |
| 5138 |
background-color: transparent !important; |
| 5139 |
border: 1px solid var(--adminify-btn-bg) !important; |
| 5140 |
-webkit-border-radius: 6px !important; |
| 5141 |
border-radius: 6px !important; |
| 5142 |
color: var(--adminify-btn-bg) !important; |
| 5143 |
font-size: 14px; |
| 5144 |
font-weight: 600; |
| 5145 |
line-height: 34px !important; |
| 5146 |
padding: 0 16px !important; |
| 5147 |
} |
| 5148 |
.wp-adminify.themes-php #wpbody-content .theme-browser .theme .theme-actions .button:hover, |
| 5149 |
.wp-adminify .is-secondary:not(.wp-editor-wrap button):hover, |
| 5150 |
.wp-adminify #wpbody-content input[type=submit]#create-page:hover, |
| 5151 |
.wp-adminify .button-secondary:not(.wp-editor-wrap button):hover, |
| 5152 |
.wp-adminify #wpbody-content #createuser .wp-generate-pw:hover, |
| 5153 |
.wp-adminify #wpbody-content #createuser .wp-hide-pw:hover, |
| 5154 |
.wp-adminify #wpbody-content #your-profile .wp-generate-pw:hover, |
| 5155 |
.wp-adminify #wpbody-content #your-profile .wp-hide-pw:hover, |
| 5156 |
.wp-adminify #wpbody-content .actions input[type=submit]:hover, |
| 5157 |
.wp-adminify #wpbody-content .ac-table-actions .-edit-columns:hover, |
| 5158 |
.wp-adminify #wpbody-content .postbox-container.category-add input[type=button]:hover, |
| 5159 |
.wp-adminify #misc-publishing-actions button:hover, |
| 5160 |
.wp-adminify #wp-media-grid .media-frame .uploader-inline-content button.browser:hover, |
| 5161 |
.wp-adminify .media-modal .media-frame-content button:hover, |
| 5162 |
.wp-adminify .plugin-install-tab-featured .plugin-card .plugin-card-top .button.activate-now:hover, |
| 5163 |
.wp-adminify .plugin-install-tab-popular .plugin-card .plugin-card-top .button.activate-now:hover, |
| 5164 |
.wp-adminify .plugin-install-tab-recommended .plugin-card .plugin-card-top .button.activate-now:hover, |
| 5165 |
.wp-adminify .plugin-install-tab-favorites .plugin-card .plugin-card-top .button.activate-now:hover, |
| 5166 |
.wp-adminify .plugin-install-tab-search .plugin-card .plugin-card-top .button.activate-now:hover, .wp-adminify.themes-php .theme-browser .theme:hover.activate:hover, .wp-adminify.themes-php .theme-browser .theme.active .activate .wp-adminify.theme-install-php .theme-browser .theme:hover.activate:hover, .wp-adminify.theme-install-php .theme-browser .theme.active .activate:hover, |
| 5167 |
.wp-adminify .plugin-install-tab-featured .plugin-card .plugin-card-top .button:hover, |
| 5168 |
.wp-adminify .plugin-install-tab-popular .plugin-card .plugin-card-top .button:hover, |
| 5169 |
.wp-adminify .plugin-install-tab-recommended .plugin-card .plugin-card-top .button:hover, |
| 5170 |
.wp-adminify .plugin-install-tab-favorites .plugin-card .plugin-card-top .button:hover, |
| 5171 |
.wp-adminify .plugin-install-tab-search .plugin-card .plugin-card-top .button:hover, |
| 5172 |
.wp-adminify #wpbody-content .adminify-section[data-section-id] .button.adminify-edit-gallery:hover, |
| 5173 |
.wp-adminify .popup--delete-history .button:hover { |
| 5174 |
background-color: var(--adminify-btn-bg) !important; |
| 5175 |
color: var(--adminify-text-color) !important; |
| 5176 |
} |
| 5177 |
.wp-adminify #wpbody-content .adminify-section[data-section-id] .adminify-fieldset input[type=checkbox], .wp-adminify.nav-menus-php #nav-menus-frame input[type=checkbox], |
| 5178 |
.wp-adminify #wpbody-content .postbox-container .disable-section-meta div input[type=checkbox], |
| 5179 |
.wp-adminify #wpbody-content .postbox-container .tabs-panel label input[type=checkbox], |
| 5180 |
.wp-adminify #wpbody-content #update-themes-table input[type=checkbox], |
| 5181 |
.wp-adminify #wpbody-content .form-table td input[type=checkbox], |
| 5182 |
.wp-adminify #wpbody-content .form-table td label input[type=checkbox], |
| 5183 |
.wp-adminify #wpbody-content #thumbnail_crop input[type=checkbox], |
| 5184 |
.wp-adminify #wpbody-content #createuser input[type=checkbox], .wp-adminify.profile-php #wpbody-content #profile-page #your-profile input[type=checkbox] { |
| 5185 |
border: 1px solid rgba(78, 75, 102, 0.54); |
| 5186 |
-webkit-border-radius: 50%; |
| 5187 |
border-radius: 50%; |
| 5188 |
-webkit-box-shadow: none; |
| 5189 |
box-shadow: none; |
| 5190 |
height: 14px; |
| 5191 |
width: 14px; |
| 5192 |
min-height: auto; |
| 5193 |
min-width: auto; |
| 5194 |
position: relative; |
| 5195 |
} |
| 5196 |
.wp-adminify #wpbody-content .adminify-section[data-section-id] .adminify-fieldset input[type=checkbox]:checked, .wp-adminify.nav-menus-php #nav-menus-frame input[type=checkbox]:checked, |
| 5197 |
.wp-adminify #wpbody-content .postbox-container .disable-section-meta div input[type=checkbox]:checked, |
| 5198 |
.wp-adminify #wpbody-content .postbox-container .tabs-panel label input[type=checkbox]:checked, |
| 5199 |
.wp-adminify #wpbody-content #update-themes-table input[type=checkbox]:checked, |
| 5200 |
.wp-adminify #wpbody-content .form-table td input[type=checkbox]:checked, |
| 5201 |
.wp-adminify #wpbody-content .form-table td label input[type=checkbox]:checked, |
| 5202 |
.wp-adminify #wpbody-content #thumbnail_crop input[type=checkbox]:checked, |
| 5203 |
.wp-adminify #wpbody-content #createuser input[type=checkbox]:checked, .wp-adminify.profile-php #wpbody-content #profile-page #your-profile input[type=checkbox]:checked { |
| 5204 |
background-color: var(--adminify-btn-bg); |
| 5205 |
border-color: var(--adminify-btn-bg); |
| 5206 |
color: var(--adminify-text-color); |
| 5207 |
} |
| 5208 |
.wp-adminify #wpbody-content .adminify-section[data-section-id] .adminify-fieldset input[type=checkbox]:checked:before, .wp-adminify.nav-menus-php #nav-menus-frame input[type=checkbox]:checked:before, |
| 5209 |
.wp-adminify #wpbody-content .postbox-container .disable-section-meta div input[type=checkbox]:checked:before, |
| 5210 |
.wp-adminify #wpbody-content .postbox-container .tabs-panel label input[type=checkbox]:checked:before, |
| 5211 |
.wp-adminify #wpbody-content #update-themes-table input[type=checkbox]:checked:before, |
| 5212 |
.wp-adminify #wpbody-content .form-table td input[type=checkbox]:checked:before, |
| 5213 |
.wp-adminify #wpbody-content .form-table td label input[type=checkbox]:checked:before, |
| 5214 |
.wp-adminify #wpbody-content #thumbnail_crop input[type=checkbox]:checked:before, |
| 5215 |
.wp-adminify #wpbody-content #createuser input[type=checkbox]:checked:before, .wp-adminify.profile-php #wpbody-content #profile-page #your-profile input[type=checkbox]:checked:before { |
| 5216 |
background-color: transparent; |
| 5217 |
-webkit-filter: brightness(0) invert(1); |
| 5218 |
filter: brightness(0) invert(1); |
| 5219 |
height: 15px; |
| 5220 |
width: 15px; |
| 5221 |
top: -1px; |
| 5222 |
left: -2px; |
| 5223 |
margin: 0; |
| 5224 |
position: inherit; |
| 5225 |
} |
| 5226 |
.wp-adminify input[type=radio] { |
| 5227 |
border: 1px solid rgba(78, 75, 102, 0.54); |
| 5228 |
-webkit-border-radius: 50%; |
| 5229 |
border-radius: 50%; |
| 5230 |
-webkit-box-shadow: none; |
| 5231 |
box-shadow: none; |
| 5232 |
height: 14px; |
| 5233 |
width: 14px; |
| 5234 |
min-height: inherit; |
| 5235 |
min-width: inherit; |
| 5236 |
position: relative; |
| 5237 |
} |
| 5238 |
.wp-adminify input[type=radio]:checked:before, .wp-adminify input[type=radio]:checked::before { |
| 5239 |
content: ""; |
| 5240 |
background: var(--adminify-btn-bg); |
| 5241 |
-webkit-border-radius: 50%; |
| 5242 |
border-radius: 50%; |
| 5243 |
height: 8px; |
| 5244 |
width: 8px; |
| 5245 |
position: absolute; |
| 5246 |
left: 2px; |
| 5247 |
top: 2px; |
| 5248 |
margin: 0; |
| 5249 |
} |
| 5250 |
.wp-adminify #wpbody-content strong { |
| 5251 |
font-weight: 700; |
| 5252 |
} |
| 5253 |
.wp-adminify #wpbody-content input[type=radio] { |
| 5254 |
border: 1px solid rgba(78, 75, 102, 0.54); |
| 5255 |
-webkit-border-radius: 50%; |
| 5256 |
border-radius: 50%; |
| 5257 |
-webkit-box-shadow: none; |
| 5258 |
box-shadow: none; |
| 5259 |
height: 14px; |
| 5260 |
width: 14px; |
| 5261 |
min-height: inherit; |
| 5262 |
min-width: inherit; |
| 5263 |
position: relative; |
| 5264 |
} |
| 5265 |
.wp-adminify #wpbody-content input[type=radio]:checked:before, .wp-adminify #wpbody-content input[type=radio]:checked::before { |
| 5266 |
content: ""; |
| 5267 |
background: var(--adminify-btn-bg); |
| 5268 |
-webkit-border-radius: 50%; |
| 5269 |
border-radius: 50%; |
| 5270 |
height: 8px; |
| 5271 |
width: 8px; |
| 5272 |
position: absolute; |
| 5273 |
left: 2px; |
| 5274 |
top: 2px; |
| 5275 |
margin: 0; |
| 5276 |
} |
| 5277 |
.wp-adminify #wpbody-content input[type=checkbox], |
| 5278 |
.wp-adminify #wpbody-content #blog_public { |
| 5279 |
background-color: var(--adminify-text-color); |
| 5280 |
border: 1px solid rgba(78, 75, 102, 0.54); |
| 5281 |
-webkit-border-radius: 4px; |
| 5282 |
border-radius: 4px; |
| 5283 |
height: 14px; |
| 5284 |
width: 14px; |
| 5285 |
position: relative; |
| 5286 |
min-width: inherit; |
| 5287 |
} |
| 5288 |
.wp-adminify #wpbody-content input[type=checkbox]:checked, |
| 5289 |
.wp-adminify #wpbody-content #blog_public:checked { |
| 5290 |
background-color: var(--adminify-btn-bg); |
| 5291 |
border-color: var(--adminify-btn-bg); |
| 5292 |
color: var(--adminify-text-color); |
| 5293 |
} |
| 5294 |
.wp-adminify #wpbody-content input[type=checkbox]:checked:before, |
| 5295 |
.wp-adminify #wpbody-content #blog_public:checked:before { |
| 5296 |
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%233582c4%27%2F%3E%3C%2Fsvg%3E"); |
| 5297 |
background-color: transparent; |
| 5298 |
-webkit-filter: brightness(0) invert(1); |
| 5299 |
filter: brightness(0) invert(1); |
| 5300 |
height: 16px; |
| 5301 |
width: 16px; |
| 5302 |
top: -2px; |
| 5303 |
left: -2px; |
| 5304 |
margin: 0; |
| 5305 |
position: inherit; |
| 5306 |
} |
| 5307 |
.wp-adminify #wpbody-content .editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type=radio]:checked::before { |
| 5308 |
-webkit-transform: translate(0px, 0px); |
| 5309 |
-ms-transform: translate(0px, 0px); |
| 5310 |
transform: translate(0px, 0px); |
| 5311 |
} |
| 5312 |
.wp-adminify #wpbody-content #editor .components-popover__content input[type=text]::-webkit-input-placeholder { |
| 5313 |
color: #cfcfcf !important; |
| 5314 |
} |
| 5315 |
.wp-adminify #wpbody-content #editor .components-popover__content input[type=text]::-moz-placeholder { |
| 5316 |
color: #cfcfcf !important; |
| 5317 |
} |
| 5318 |
.wp-adminify #wpbody-content #editor .components-popover__content input[type=text]:-ms-input-placeholder { |
| 5319 |
color: #cfcfcf !important; |
| 5320 |
} |
| 5321 |
.wp-adminify #wpbody-content #editor .components-popover__content input[type=text]::-ms-input-placeholder { |
| 5322 |
color: #cfcfcf !important; |
| 5323 |
} |
| 5324 |
.wp-adminify #wpbody-content #editor .components-popover__content input[type=text]::placeholder { |
| 5325 |
color: #cfcfcf !important; |
| 5326 |
} |
| 5327 |
.wp-adminify #wpbody-content #editor .components-popover__content .components-form-toggle .components-form-toggle__input { |
| 5328 |
background-color: var(--adminify-text-color); |
| 5329 |
border: 1px solid rgba(78, 75, 102, 0.54); |
| 5330 |
-webkit-border-radius: 4px; |
| 5331 |
border-radius: 4px; |
| 5332 |
height: 14px; |
| 5333 |
width: 14px; |
| 5334 |
position: relative; |
| 5335 |
height: 18px !important; |
| 5336 |
width: 36px !important; |
| 5337 |
} |
| 5338 |
.wp-adminify #wpbody-content #editor .components-popover__content .components-form-toggle .components-form-toggle__input:checked { |
| 5339 |
background-color: var(--adminify-btn-bg); |
| 5340 |
border-color: var(--adminify-btn-bg); |
| 5341 |
color: var(--adminify-text-color); |
| 5342 |
} |
| 5343 |
.wp-adminify #wpbody-content #editor .components-popover__content .components-form-toggle .components-form-toggle__input:checked:before { |
| 5344 |
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%233582c4%27%2F%3E%3C%2Fsvg%3E"); |
| 5345 |
background-color: transparent; |
| 5346 |
-webkit-filter: brightness(0) invert(1); |
| 5347 |
filter: brightness(0) invert(1); |
| 5348 |
height: 16px; |
| 5349 |
width: 16px; |
| 5350 |
top: -2px; |
| 5351 |
left: -2px; |
| 5352 |
margin: 0; |
| 5353 |
position: inherit; |
| 5354 |
} |
| 5355 |
.wp-adminify #wpbody-content #editor .components-popover__content .components-form-toggle .components-form-toggle__track { |
| 5356 |
left: 0; |
| 5357 |
position: absolute; |
| 5358 |
} |
| 5359 |
.wp-adminify #wpbody-content #editor .components-popover__content .components-form-toggle .components-form-toggle__thumb { |
| 5360 |
background: #cfcfcf; |
| 5361 |
border-width: 0; |
| 5362 |
} |
| 5363 |
.wp-adminify #wpbody-content #editor .components-popover__content .components-form-toggle:not(.is-checked) .components-form-toggle__track { |
| 5364 |
background-color: inherit !important; |
| 5365 |
border-color: #fff !important; |
| 5366 |
} |
| 5367 |
.wp-adminify #wpbody-content .notice .button-primary { |
| 5368 |
color: var(--adminify-text-color); |
| 5369 |
} |
| 5370 |
.wp-adminify #wpbody-content .notice .button-link:focus { |
| 5371 |
background-color: transparent; |
| 5372 |
} |
| 5373 |
.wp-adminify #wpbody-content a.dropdown-item { |
| 5374 |
width: auto; |
| 5375 |
} |
| 5376 |
.wp-adminify #wpbody-content .button-link { |
| 5377 |
background-color: transparent; |
| 5378 |
border: 0; |
| 5379 |
font-size: inherit; |
| 5380 |
font-weight: inherit; |
| 5381 |
line-height: 14px; |
| 5382 |
padding: inherit; |
| 5383 |
} |
| 5384 |
.wp-adminify #wpbody-content .button-hero { |
| 5385 |
min-height: inherit; |
| 5386 |
} |
| 5387 |
.wp-adminify #wpbody-content input:not([type=checkbox], [type=radio], [type=hidden], [type=submit], [type=button], [type=number]), |
| 5388 |
.wp-adminify #wpbody-content textarea { |
| 5389 |
background-color: var(--adminify-admin-bar-input-bg); |
| 5390 |
border: none; |
| 5391 |
-webkit-border-radius: 6px; |
| 5392 |
border-radius: 6px; |
| 5393 |
color: var(--adminify-admin-bar-input-text); |
| 5394 |
font-size: 14px; |
| 5395 |
line-height: 20px; |
| 5396 |
padding: 8px 16px; |
| 5397 |
} |
| 5398 |
.wp-adminify #wpbody-content select { |
| 5399 |
background-color: var(--adminify-text-color); |
| 5400 |
border: 1px solid #F1F1F3; |
| 5401 |
-webkit-border-radius: 6px; |
| 5402 |
border-radius: 6px; |
| 5403 |
color: rgba(78, 75, 102, 0.72); |
| 5404 |
min-height: 36px; |
| 5405 |
background-position: right 0 top 55%; |
| 5406 |
} |
| 5407 |
.wp-adminify #wpbody-content #posts-filter, |
| 5408 |
.wp-adminify #wpbody-content .search-plugins, |
| 5409 |
.wp-adminify #wpbody-content .search-form { |
| 5410 |
margin: 10px 0; |
| 5411 |
} |
| 5412 |
.wp-adminify #wpbody-content #posts-filter input[type=text], |
| 5413 |
.wp-adminify #wpbody-content #posts-filter input[type=search], |
| 5414 |
.wp-adminify #wpbody-content #posts-filter input[type=url], |
| 5415 |
.wp-adminify #wpbody-content .search-plugins input[type=text], |
| 5416 |
.wp-adminify #wpbody-content .search-plugins input[type=search], |
| 5417 |
.wp-adminify #wpbody-content .search-plugins input[type=url], |
| 5418 |
.wp-adminify #wpbody-content .search-form input[type=text], |
| 5419 |
.wp-adminify #wpbody-content .search-form input[type=search], |
| 5420 |
.wp-adminify #wpbody-content .search-form input[type=url] { |
| 5421 |
background-color: var(--adminify-admin-bar-input-bg); |
| 5422 |
border: none; |
| 5423 |
-webkit-border-radius: 6px; |
| 5424 |
border-radius: 6px; |
| 5425 |
color: var(--adminify-admin-bar-input-text); |
| 5426 |
font-size: 14px; |
| 5427 |
line-height: 20px; |
| 5428 |
padding: 8px 16px; |
| 5429 |
} |
| 5430 |
.wp-adminify #wpbody-content #posts-filter input[type=text]#plugin-search-input, |
| 5431 |
.wp-adminify #wpbody-content #posts-filter input[type=search]#plugin-search-input, |
| 5432 |
.wp-adminify #wpbody-content #posts-filter input[type=url]#plugin-search-input, |
| 5433 |
.wp-adminify #wpbody-content .search-plugins input[type=text]#plugin-search-input, |
| 5434 |
.wp-adminify #wpbody-content .search-plugins input[type=search]#plugin-search-input, |
| 5435 |
.wp-adminify #wpbody-content .search-plugins input[type=url]#plugin-search-input, |
| 5436 |
.wp-adminify #wpbody-content .search-form input[type=text]#plugin-search-input, |
| 5437 |
.wp-adminify #wpbody-content .search-form input[type=search]#plugin-search-input, |
| 5438 |
.wp-adminify #wpbody-content .search-form input[type=url]#plugin-search-input { |
| 5439 |
background-color: var(--adminify-text-color); |
| 5440 |
} |
| 5441 |
.wp-adminify #wpbody-content .search-form .search-box { |
| 5442 |
margin: 0; |
| 5443 |
} |
| 5444 |
.wp-adminify #wpbody-content .wp-list-table.widefat .inline-edit-save button.cancel, |
| 5445 |
.wp-adminify #wpbody-content .comment-reply .reply-submit-buttons button.cancel, |
| 5446 |
.wp-adminify #wpbody-content .widget-control-actions .button-link.widget-control-close, |
| 5447 |
.wp-adminify #wpbody-content .wp-adminify-dialog-cancel.wp-adminify-dialog-confirm-cancel { |
| 5448 |
background-color: #c30052; |
| 5449 |
border-color: #c30052; |
| 5450 |
-webkit-border-radius: 6px; |
| 5451 |
border-radius: 6px; |
| 5452 |
color: var(--adminify-text-color); |
| 5453 |
font-size: 14px; |
| 5454 |
font-weight: 600; |
| 5455 |
} |
| 5456 |
.wp-adminify #wpbody-content .wp-list-table.widefat .inline-edit-save button.cancel:hover, |
| 5457 |
.wp-adminify #wpbody-content .comment-reply .reply-submit-buttons button.cancel:hover, |
| 5458 |
.wp-adminify #wpbody-content .widget-control-actions .button-link.widget-control-close:hover, |
| 5459 |
.wp-adminify #wpbody-content .wp-adminify-dialog-cancel.wp-adminify-dialog-confirm-cancel:hover { |
| 5460 |
background-color: var(--adminify-text-color); |
| 5461 |
color: #c30052; |
| 5462 |
} |
| 5463 |
.wp-adminify #wpbody-content .bulk-actions label { |
| 5464 |
background-color: transparent; |
| 5465 |
border: 0; |
| 5466 |
margin: 0; |
| 5467 |
padding: 0; |
| 5468 |
} |
| 5469 |
.wp-adminify #wpbody-content .bulk-actions input.menu-items-delete.disabled { |
| 5470 |
display: block; |
| 5471 |
padding: 0; |
| 5472 |
} |
| 5473 |
.wp-adminify #wpbody-content .nav-tab-wrapper .nav-tab { |
| 5474 |
color: #14142B; |
| 5475 |
} |
| 5476 |
.wp-adminify #wpbody-content .nav-tab-wrapper .nav-tab-active { |
| 5477 |
color: var(--adminify-btn-bg); |
| 5478 |
} |
| 5479 |
.wp-adminify #wpbody-content #post-body-content #titlewrap input, |
| 5480 |
.wp-adminify #wpbody-content .wp_attachment_details.edit-form-section .widefat, |
| 5481 |
.wp-adminify #wpbody-content .wp_attachment_details.edit-form-section .wp-editor-area { |
| 5482 |
background-color: var(--adminify-text-color); |
| 5483 |
border: 1px solid #F1F1F3; |
| 5484 |
-webkit-border-radius: 6px; |
| 5485 |
border-radius: 6px; |
| 5486 |
color: #14142B; |
| 5487 |
font-size: 14px; |
| 5488 |
font-weight: 400; |
| 5489 |
line-height: 20px; |
| 5490 |
height: auto; |
| 5491 |
padding: 8px 1rem; |
| 5492 |
} |
| 5493 |
.wp-adminify .adminify-copy-btn .icon { |
| 5494 |
font-size: 16px; |
| 5495 |
height: auto; |
| 5496 |
width: auto; |
| 5497 |
line-height: 1; |
| 5498 |
margin: 0; |
| 5499 |
} |
| 5500 |
.wp-adminify .adminify-copy-btn .icon:before { |
| 5501 |
line-height: 32px; |
| 5502 |
} |
| 5503 |
.wp-adminify.adminify-ui .clear-button .components-panel .components-panel__body button.is-destructive, |
| 5504 |
.wp-adminify.adminify-ui #wpbody-content .interface-interface-skeleton__body .components-panel .components-panel__body button.is-destructive { |
| 5505 |
border-color: #c30052 !important; |
| 5506 |
background-color: transparent !important; |
| 5507 |
color: #c30052 !important; |
| 5508 |
font-size: 12px; |
| 5509 |
line-height: 18px !important; |
| 5510 |
padding: 7px 10px !important; |
| 5511 |
} |
| 5512 |
.wp-adminify.adminify-ui .clear-button .components-panel .components-panel__body button.is-destructive:hover, |
| 5513 |
.wp-adminify.adminify-ui #wpbody-content .interface-interface-skeleton__body .components-panel .components-panel__body button.is-destructive:hover { |
| 5514 |
background-color: #c30052 !important; |
| 5515 |
color: var(--adminify-text-color) !important; |
| 5516 |
} |
| 5517 |
.wp-adminify.adminify-ui #wpbody-content .interface-interface-skeleton__body .components-panel .components-panel__body button.is-destructive { |
| 5518 |
line-height: 34px !important; |
| 5519 |
padding: 0 10px !important; |
| 5520 |
} |
| 5521 |
.wp-adminify.adminify-ui #wpbody-content .interface-interface-skeleton__body .button-hero { |
| 5522 |
min-height: inherit; |
| 5523 |
} |
| 5524 |
.wp-adminify hr { |
| 5525 |
border-top: 1px solid #F1F1F3; |
| 5526 |
border-bottom: 0; |
| 5527 |
display: inline-block; |
| 5528 |
width: 100%; |
| 5529 |
} |
| 5530 |
.wp-adminify .adminify-compability { |
| 5531 |
-webkit-border-radius: 3px; |
| 5532 |
border-radius: 3px; |
| 5533 |
color: var(--adminify-text-color); |
| 5534 |
float: left; |
| 5535 |
font-size: 0; |
| 5536 |
height: 20px; |
| 5537 |
width: 20px; |
| 5538 |
margin-right: 10px; |
| 5539 |
position: relative; |
| 5540 |
} |
| 5541 |
.wp-adminify .adminify-compability .dashicons { |
| 5542 |
font-size: 18px; |
| 5543 |
line-height: 20px; |
| 5544 |
} |
| 5545 |
.wp-adminify .adminify-compability.enable .dashicons { |
| 5546 |
font-size: 16px; |
| 5547 |
} |
| 5548 |
.wp-adminify .adminify-compability.enable .dashicons:before { |
| 5549 |
content: "\f15e"; |
| 5550 |
} |
| 5551 |
.wp-adminify .enable { |
| 5552 |
background: #00BA88; |
| 5553 |
} |
| 5554 |
.wp-adminify .disable { |
| 5555 |
background: #c30052; |
| 5556 |
} |
| 5557 |
.wp-adminify .dashicons:before { |
| 5558 |
font-family: dashicons; |
| 5559 |
} |
| 5560 |
.wp-adminify #templateside li { |
| 5561 |
background-color: var(--adminify-text-color); |
| 5562 |
color: #000; |
| 5563 |
font-size: 13px; |
| 5564 |
line-height: 20px; |
| 5565 |
} |
| 5566 |
.wp-adminify #templateside li a { |
| 5567 |
color: var(--adminify-btn-bg); |
| 5568 |
} |
| 5569 |
.wp-adminify #templateside li a .nonessential { |
| 5570 |
color: rgba(78, 75, 102, 0.72); |
| 5571 |
font-size: 12px; |
| 5572 |
font-weight: 400; |
| 5573 |
line-height: 16px; |
| 5574 |
} |
| 5575 |
.wp-adminify #templateside li .notice { |
| 5576 |
background-color: var(--adminify-preset-background); |
| 5577 |
-webkit-border-radius: 0; |
| 5578 |
border-radius: 0; |
| 5579 |
} |
| 5580 |
.wp-adminify.adminify-default-v-menu #adminmenu .wp_adminify_admin-menu li.wp-not-current-submenu .wp-submenu, |
| 5581 |
.wp-adminify #wpbody-content .card, |
| 5582 |
.wp-adminify .wp-adminify_page_adminify-custom-css-js .adminify-field.adminify-field-group, |
| 5583 |
.wp-adminify .wp-adminify-top-header--search--form .top-header-search-results, |
| 5584 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content, |
| 5585 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content .admin-column-accordion, |
| 5586 |
.wp-adminify .adminify-options.wp-adminify-settings .adminify-container, |
| 5587 |
.wp-adminify .wp-adminify-dashboard-widgets .adminify-field + .adminify-field, |
| 5588 |
.wp-adminify .adminify-section .chosen-drop, .wp-adminify.modal-open #wp-link-wrap, .wp-adminify.appearance_page_custom-background .form-table #custom-background-image, .wp-adminify.nav-menus-php #menu-locations-wrap table.widefat, |
| 5589 |
.wp-adminify #wpbody-content .wp-list-table.widefat, |
| 5590 |
.wp-adminify #wpbody-content #post-body-content #post-status-info, |
| 5591 |
.wp-adminify #wpbody-content .postbox, |
| 5592 |
.wp-adminify #wpbody-content #update-themes-table, .wp-adminify.options-general-php .wrap form, .wp-adminify.options-writing-php .wrap form, .wp-adminify.options-reading-php .wrap form, .wp-adminify.options-discussion-php .wrap form, .wp-adminify.options-media-php .wrap form, .wp-adminify.options-permalink-php .wrap form, |
| 5593 |
.wp-adminify #wpbody-content .privacy-settings-accordion-heading, |
| 5594 |
.wp-adminify #wpbody-content .privacy-settings-accordion-panel, |
| 5595 |
.wp-adminify .media-modal .media-modal-content, |
| 5596 |
.wp-adminify #wpbody-content .image-editor .imgedit-group, |
| 5597 |
.wp-adminify .wp-adminify_page_adminify-menu-editor .selector-popup-wrap.icons-selector .selector-popup, |
| 5598 |
.wp-adminify .wp-adminify--menu--editor--settings .accordion.adminify_menu_item, |
| 5599 |
.wp-adminify .wp-adminify--popup-container_inner, |
| 5600 |
.wp-adminify .wp-adminify-page-speed-wrapper .tab-content, |
| 5601 |
.wp-adminify .theme-install-php #wpbody-content .upload-theme .wp-upload-form, |
| 5602 |
.wp-adminify #wpbody-content .wp-filter .filter-drawer .filter-group, .wp-adminify.themes-php #wpbody-content .theme-overlay .theme-wrap, .wp-adminify.themes-php #wpbody-content .theme-overlay .screenshot, |
| 5603 |
.wp-adminify #wpbody-content .health-check-accordion .health-check-accordion-heading, |
| 5604 |
.wp-adminify #wpbody-content .health-check-accordion .health-check-accordion-panel, |
| 5605 |
.wp-adminify .editwidget .widget-inside, |
| 5606 |
.wp-adminify .editwidget table.widefat, |
| 5607 |
.wp-adminify .adminify-server-info .adminify-tabbed-contents, |
| 5608 |
.wp-adminify #PHPinfo table.widefat, |
| 5609 |
.wp-adminify #MYSQLinfo table.widefat, |
| 5610 |
.wp-adminify #wpbody-content .widefat.updates-table, |
| 5611 |
.wp-adminify #adminify-pto-media, |
| 5612 |
.wp-adminify .upload-plugin .wp-upload-form, |
| 5613 |
.wp-adminify .upload-theme .wp-upload-form, .wp-adminify.comment-php #wpbody-content #poststuff .stuffbox, |
| 5614 |
.wp-adminify #createuser, |
| 5615 |
.wp-adminify #your-profile, |
| 5616 |
.wp-adminify .wp-adminify--folder-widget .wp-adminify--folder-app--inner, |
| 5617 |
.wp-adminify .blocks-widgets-container .wp-block-widget-area { |
| 5618 |
background: var(--adminify-text-color); |
| 5619 |
-webkit-box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 5620 |
box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 5621 |
border: 0; |
| 5622 |
-webkit-border-radius: 6px; |
| 5623 |
border-radius: 6px; |
| 5624 |
} |
| 5625 |
.wp-adminify #site-editor .edit-site-header__toolbar .edit-site-header-toolbar__inserter-toggle.has-icon { |
| 5626 |
padding: 0 !important; |
| 5627 |
} |
| 5628 |
.wp-adminify .admnify-switcher { |
| 5629 |
display: inline-block; |
| 5630 |
height: 20px; |
| 5631 |
width: 36px; |
| 5632 |
margin-top: -1px; |
| 5633 |
position: relative; |
| 5634 |
} |
| 5635 |
.wp-adminify .admnify-switcher input { |
| 5636 |
height: 0; |
| 5637 |
width: 0; |
| 5638 |
opacity: 0; |
| 5639 |
} |
| 5640 |
.wp-adminify .admnify-switcher input:checked + .slider:before { |
| 5641 |
-webkit-transform: translateX(16px); |
| 5642 |
-ms-transform: translateX(16px); |
| 5643 |
transform: translateX(16px); |
| 5644 |
} |
| 5645 |
.wp-adminify .admnify-switcher .slider { |
| 5646 |
background-color: #F1F1F3; |
| 5647 |
cursor: pointer; |
| 5648 |
top: 0; |
| 5649 |
left: 0; |
| 5650 |
right: 0; |
| 5651 |
bottom: 0; |
| 5652 |
position: absolute; |
| 5653 |
-webkit-transition: 0.4s; |
| 5654 |
-o-transition: 0.4s; |
| 5655 |
transition: 0.4s; |
| 5656 |
} |
| 5657 |
.wp-adminify .admnify-switcher .slider.round { |
| 5658 |
-webkit-border-radius: 16px; |
| 5659 |
border-radius: 16px; |
| 5660 |
} |
| 5661 |
.wp-adminify .admnify-switcher .slider.round:before { |
| 5662 |
-webkit-border-radius: 50%; |
| 5663 |
border-radius: 50%; |
| 5664 |
} |
| 5665 |
.wp-adminify .admnify-switcher .slider:before { |
| 5666 |
content: ""; |
| 5667 |
background: var(--adminify-text-color); |
| 5668 |
height: 18px; |
| 5669 |
width: 18px; |
| 5670 |
left: 1px; |
| 5671 |
bottom: 1px; |
| 5672 |
position: absolute; |
| 5673 |
-webkit-transition: 0.4s; |
| 5674 |
-o-transition: 0.4s; |
| 5675 |
transition: 0.4s; |
| 5676 |
} |
| 5677 |
.wp-adminify .fade { |
| 5678 |
opacity: 0; |
| 5679 |
-webkit-transition: opacity 0.35s linear; |
| 5680 |
-o-transition: opacity 0.35s linear; |
| 5681 |
transition: opacity 0.35s linear; |
| 5682 |
} |
| 5683 |
.wp-adminify .fade.active { |
| 5684 |
opacity: 1; |
| 5685 |
} |
| 5686 |
.wp-adminify .collapse:not(.show) { |
| 5687 |
display: none; |
| 5688 |
} |
| 5689 |
.wp-adminify .collapsing { |
| 5690 |
height: 0; |
| 5691 |
overflow: hidden; |
| 5692 |
-webkit-transition: height 0.35s ease; |
| 5693 |
-o-transition: height 0.35s ease; |
| 5694 |
transition: height 0.35s ease; |
| 5695 |
} |
| 5696 |
.wp-adminify .fs-secure-notice { |
| 5697 |
margin: 20px 20px 0 0; |
| 5698 |
position: inherit; |
| 5699 |
} |
| 5700 |
.wp-adminify .fs-submenu-item.adminify { |
| 5701 |
font-size: 14px; |
| 5702 |
} |
| 5703 |
.wp-adminify .fs-submenu-item.adminify.upgrade-mode { |
| 5704 |
color: #df3b25; |
| 5705 |
font-weight: 800; |
| 5706 |
} |
| 5707 |
.wp-adminify .fs-submenu-item.adminify.pricing { |
| 5708 |
color: #0cce6b; |
| 5709 |
font-weight: 800; |
| 5710 |
} |
| 5711 |
.wp-adminify .fs-modal .fs-modal-header { |
| 5712 |
background-color: var(--adminify-btn-bg); |
| 5713 |
} |
| 5714 |
.wp-adminify .tab-content > .active { |
| 5715 |
display: block; |
| 5716 |
} |
| 5717 |
.wp-adminify.sticky-menu #adminmenuwrap { |
| 5718 |
position: relative; |
| 5719 |
} |
| 5720 |
.wp-adminify #screen-meta { |
| 5721 |
border: 1px solid #F1F1F3; |
| 5722 |
border-top: 0; |
| 5723 |
margin: 0 15px -1px 15px; |
| 5724 |
} |
| 5725 |
.wp-adminify #screen-meta #adv-settings input[type=checkbox]:before { |
| 5726 |
position: absolute; |
| 5727 |
} |
| 5728 |
.wp-adminify #screen-meta #screen-options-wrap input#edit_post_per_page { |
| 5729 |
min-width: 5rem; |
| 5730 |
} |
| 5731 |
.wp-adminify #screen-meta-links { |
| 5732 |
margin: 0; |
| 5733 |
} |
| 5734 |
.wp-adminify #screen-meta-links button { |
| 5735 |
background-color: var(--adminify-text-color); |
| 5736 |
border: 1px solid #F1F1F3; |
| 5737 |
border-top: 0; |
| 5738 |
-webkit-border-radius: 6px; |
| 5739 |
border-radius: 6px; |
| 5740 |
-webkit-border-top-left-radius: 0; |
| 5741 |
border-top-left-radius: 0; |
| 5742 |
-webkit-border-top-right-radius: 0; |
| 5743 |
border-top-right-radius: 0; |
| 5744 |
-webkit-box-shadow: none; |
| 5745 |
box-shadow: none; |
| 5746 |
color: #4E4B66; |
| 5747 |
font-size: 14px; |
| 5748 |
font-weight: 400; |
| 5749 |
line-height: 34px; |
| 5750 |
margin-bottom: 20px; |
| 5751 |
padding: 0 10px 0 17px; |
| 5752 |
} |
| 5753 |
.wp-adminify #screen-meta-links button:after { |
| 5754 |
bottom: 8px; |
| 5755 |
} |
| 5756 |
.wp-adminify #screen-meta-links button:focus { |
| 5757 |
border-color: #F1F1F3; |
| 5758 |
} |
| 5759 |
.wp-adminify #screen-meta-links + .blocks-widgets-container { |
| 5760 |
top: 40px; |
| 5761 |
} |
| 5762 |
.wp-adminify #contextual-help-back { |
| 5763 |
border: 0; |
| 5764 |
} |
| 5765 |
.wp-adminify .contextual-help-tabs .active { |
| 5766 |
border-left-color: var(--adminify-btn-bg); |
| 5767 |
} |
| 5768 |
.wp-adminify .contextual-help-tabs a { |
| 5769 |
border: 0; |
| 5770 |
color: #14142B; |
| 5771 |
font-size: 14px; |
| 5772 |
font-weight: 400; |
| 5773 |
line-height: 20px; |
| 5774 |
} |
| 5775 |
.wp-adminify #tab-panel-overview p { |
| 5776 |
color: rgba(78, 75, 102, 0.72); |
| 5777 |
} |
| 5778 |
.wp-adminify .count { |
| 5779 |
font-family: "no-parens", sans-serif; |
| 5780 |
} |
| 5781 |
.wp-adminify #file-editor-warning .file-editor-warning-content h1 { |
| 5782 |
color: #4E4B66; |
| 5783 |
} |
| 5784 |
.wp-adminify #file-editor-warning .file-editor-warning-content p { |
| 5785 |
color: #4E4B66; |
| 5786 |
} |
| 5787 |
.wp-adminify #file-editor-warning .file-editor-warning-content p .button { |
| 5788 |
-webkit-border-radius: 6px; |
| 5789 |
border-radius: 6px; |
| 5790 |
color: var(--adminify-text-color); |
| 5791 |
font-size: 14px; |
| 5792 |
font-weight: 600; |
| 5793 |
letter-spacing: 0.25px; |
| 5794 |
line-height: 34px; |
| 5795 |
padding: 0 1rem; |
| 5796 |
} |
| 5797 |
.wp-adminify #file-editor-warning .file-editor-warning-content p .button.file-editor-warning-go-back { |
| 5798 |
background-color: #c30052; |
| 5799 |
border: 1px solid #c30052; |
| 5800 |
} |
| 5801 |
.wp-adminify.php-error #adminmenuback, |
| 5802 |
.wp-adminify.php-error #adminmenuwrap { |
| 5803 |
margin-top: 0; |
| 5804 |
} |
| 5805 |
.wp-adminify .components-button.is-primary:disabled, |
| 5806 |
.wp-adminify .components-button.is-primary:disabled:active:enabled, |
| 5807 |
.wp-adminify .components-button.is-primary[aria-disabled=true], |
| 5808 |
.wp-adminify .components-button.is-primary[aria-disabled=true]:active:enabled, |
| 5809 |
.wp-adminify .components-button.is-primary[aria-disabled=true]:enabled { |
| 5810 |
background-color: var(--adminify-btn-bg); |
| 5811 |
border-color: var(--adminify-btn-bg); |
| 5812 |
} |
| 5813 |
.wp-adminify .components-button.is-primary:disabled:hover, |
| 5814 |
.wp-adminify .components-button.is-primary:disabled:active:enabled:hover, |
| 5815 |
.wp-adminify .components-button.is-primary[aria-disabled=true]:hover, |
| 5816 |
.wp-adminify .components-button.is-primary[aria-disabled=true]:active:enabled:hover, |
| 5817 |
.wp-adminify .components-button.is-primary[aria-disabled=true]:enabled:hover { |
| 5818 |
background-color: var(--adminify-btn-bg); |
| 5819 |
color: var(--adminify-text-color); |
| 5820 |
} |
| 5821 |
.wp-adminify #wpfooter { |
| 5822 |
clear: both; |
| 5823 |
font-size: 14px; |
| 5824 |
position: inherit; |
| 5825 |
} |
| 5826 |
.wp-adminify #wpfooter .adminify-first-child { |
| 5827 |
float: left; |
| 5828 |
width: 25%; |
| 5829 |
} |
| 5830 |
.wp-adminify #wpfooter .adminify-last-child { |
| 5831 |
float: right; |
| 5832 |
width: 75%; |
| 5833 |
} |
| 5834 |
.wp-adminify #wpfooter .adminify-last-child .column { |
| 5835 |
display: inline-block; |
| 5836 |
margin-left: 1.25rem; |
| 5837 |
} |
| 5838 |
.wp-adminify #wpfooter .adminify-last-child .column:first-child { |
| 5839 |
margin-left: 0; |
| 5840 |
} |
| 5841 |
.wp-adminify #wpfooter .wp-adminify .columns { |
| 5842 |
margin: 0; |
| 5843 |
} |
| 5844 |
.wp-adminify #wpfooter .wp-adminify .column { |
| 5845 |
padding: 0; |
| 5846 |
} |
| 5847 |
.wp-adminify.appearance_page_gutenberg-widgets #wpbody-content > div:not(.blocks-widgets-container):not(#screen-meta), .wp-adminify.appearance_page_gutenberg-widgets #wpfooter, .wp-adminify.widgets-php #wpbody-content > div:not(.blocks-widgets-container):not(#screen-meta), .wp-adminify.widgets-php #wpfooter { |
| 5848 |
display: block; |
| 5849 |
} |
| 5850 |
.wp-adminify.appearance_page_gutenberg-widgets #wpcontent, .wp-adminify.widgets-php #wpcontent { |
| 5851 |
padding-left: 15px; |
| 5852 |
} |
| 5853 |
.wp-adminify .wp-adminify-review-notice .wp-adminify-review-ul li a span { |
| 5854 |
position: static; |
| 5855 |
} |
| 5856 |
.wp-adminify #wpbody-content #editor .block-editor-block-inspector input[type=checkbox] { |
| 5857 |
height: 100% !important; |
| 5858 |
width: 100% !important; |
| 5859 |
position: absolute !important; |
| 5860 |
} |
| 5861 |
.wp-adminify .wp-adminify--popup-area { |
| 5862 |
background-color: rgba(0, 0, 0, 0.75); |
| 5863 |
height: 100%; |
| 5864 |
width: 100%; |
| 5865 |
left: 0; |
| 5866 |
top: 0; |
| 5867 |
opacity: 0; |
| 5868 |
position: fixed; |
| 5869 |
z-index: -1; |
| 5870 |
-webkit-transition: opacity 0.3s ease-in-out; |
| 5871 |
-o-transition: opacity 0.3s ease-in-out; |
| 5872 |
transition: opacity 0.3s ease-in-out; |
| 5873 |
} |
| 5874 |
.wp-adminify .wp-adminify--popup-area .wp-adminify--popup-container_inner { |
| 5875 |
max-width: 600px; |
| 5876 |
margin: 0 auto; |
| 5877 |
padding: 1.875rem; |
| 5878 |
position: relative; |
| 5879 |
} |
| 5880 |
.wp-adminify .wp-adminify--popup-area .wp-adminify--popup-close { |
| 5881 |
color: #c30052; |
| 5882 |
top: 0.5rem; |
| 5883 |
right: 1rem; |
| 5884 |
position: absolute; |
| 5885 |
} |
| 5886 |
.wp-adminify .wp-adminify--popup-area .wp-adminify--popup-close .dashicons { |
| 5887 |
font-size: 1.875rem; |
| 5888 |
} |
| 5889 |
.wp-adminify.wp-adminify--popup-show .wp-adminify--popup-area { |
| 5890 |
opacity: 1; |
| 5891 |
z-index: 9999; |
| 5892 |
} |
| 5893 |
.wp-adminify.post-type-attachment table.media .column-title .media-icon img { |
| 5894 |
width: auto; |
| 5895 |
max-height: 60px; |
| 5896 |
} |
| 5897 |
.wp-adminify .welcome-panel-header a { |
| 5898 |
color: #fff !important; |
| 5899 |
} |
| 5900 |
.wp-adminify #dashboard-widgets .meta-box-sortables { |
| 5901 |
margin: 0 10px 20px; |
| 5902 |
} |
| 5903 |
.wp-adminify #wpbody-content .metabox-holder .postbox-container .postbox-header + .inside button:not(.button-link, .rwmb-meta-box .rwmb-field .rwmb-input .wp-picker-container .button.wp-color-result), |
| 5904 |
.wp-adminify #wpbody-content .metabox-holder .postbox-container .postbox-header + .inside .button:not(.rwmb-meta-box .rwmb-field .rwmb-input .wp-picker-container .button.wp-color-result), |
| 5905 |
.wp-adminify #wpbody-content .metabox-holder .postbox-container .postbox-header + .inside input[type=submit], |
| 5906 |
.wp-adminify #wpbody-content .metabox-holder .postbox-container .postbox-header + .inside .adminify-icon-select button:not(.button-link), |
| 5907 |
.wp-adminify #wpbody-content .metabox-holder .postbox-container .postbox-header + .inside .adminify-icon-select .button, |
| 5908 |
.wp-adminify #wpbody-content .metabox-holder .postbox-container .postbox-header + .inside .adminify-icon-select input[type=submit] { |
| 5909 |
line-height: 28px !important; |
| 5910 |
padding: 0 10px !important; |
| 5911 |
} |
| 5912 |
.wp-adminify #wpbody-content .metabox-holder .postbox-container .postbox-header + .inside button:not(.button-link, .rwmb-meta-box .rwmb-field .rwmb-input .wp-picker-container .button.wp-color-result):hover, |
| 5913 |
.wp-adminify #wpbody-content .metabox-holder .postbox-container .postbox-header + .inside .button:not(.rwmb-meta-box .rwmb-field .rwmb-input .wp-picker-container .button.wp-color-result):hover, |
| 5914 |
.wp-adminify #wpbody-content .metabox-holder .postbox-container .postbox-header + .inside input[type=submit]:hover, |
| 5915 |
.wp-adminify #wpbody-content .metabox-holder .postbox-container .postbox-header + .inside .adminify-icon-select button:not(.button-link):hover, |
| 5916 |
.wp-adminify #wpbody-content .metabox-holder .postbox-container .postbox-header + .inside .adminify-icon-select .button:hover, |
| 5917 |
.wp-adminify #wpbody-content .metabox-holder .postbox-container .postbox-header + .inside .adminify-icon-select input[type=submit]:hover { |
| 5918 |
background-color: var(--adminify-text-color) !important; |
| 5919 |
border-color: var(--adminify-btn-bg) !important; |
| 5920 |
color: var(--adminify-btn-bg) !important; |
| 5921 |
} |
| 5922 |
.wp-adminify #wpbody-content .metabox-holder .postbox .postbox-header { |
| 5923 |
border: 0; |
| 5924 |
} |
| 5925 |
.wp-adminify #wpbody-content .metabox-holder .postbox .inside { |
| 5926 |
border-top: 1px solid #F1F1F3; |
| 5927 |
} |
| 5928 |
.wp-adminify #wpbody-content .metabox-holder .postbox #description-wrap { |
| 5929 |
margin-top: 3px; |
| 5930 |
} |
| 5931 |
.wp-adminify #wpbody-content .metabox-holder .postbox h2.hndle { |
| 5932 |
padding: 13px 16px; |
| 5933 |
} |
| 5934 |
.wp-adminify #wpbody-content .metabox-holder .postbox .inside { |
| 5935 |
margin: 0; |
| 5936 |
padding: 16px; |
| 5937 |
} |
| 5938 |
.wp-adminify #wpbody-content .metabox-holder .postbox#dashboard_quick_press form { |
| 5939 |
margin: 4px 12px 12px; |
| 5940 |
} |
| 5941 |
.wp-adminify #wpbody-content .metabox-holder .postbox#dashboard_quick_press .inside { |
| 5942 |
margin: 0; |
| 5943 |
padding: 16px; |
| 5944 |
} |
| 5945 |
.wp-adminify #wpbody-content .metabox-holder .postbox#dashboard_quick_press label { |
| 5946 |
color: #14142B; |
| 5947 |
font-size: 13px; |
| 5948 |
} |
| 5949 |
.wp-adminify #wpbody-content .metabox-holder .postbox#dashboard_quick_press input, |
| 5950 |
.wp-adminify #wpbody-content .metabox-holder .postbox#dashboard_quick_press textarea { |
| 5951 |
margin: 8px 0; |
| 5952 |
} |
| 5953 |
.wp-adminify #wpbody-content .metabox-holder .postbox#dashboard_quick_press input[type=submit], |
| 5954 |
.wp-adminify #wpbody-content .metabox-holder .postbox#dashboard_quick_press textarea[type=submit] { |
| 5955 |
margin: 4px 0; |
| 5956 |
} |
| 5957 |
.wp-adminify #wpbody-content .metabox-holder .postbox#dashboard_quick_press textarea { |
| 5958 |
padding: 0.75rem 1rem; |
| 5959 |
} |
| 5960 |
.wp-adminify #wpbody-content .metabox-holder .postbox#dashboard_quick_press .drafts { |
| 5961 |
color: #4E4B66; |
| 5962 |
font-size: 14px; |
| 5963 |
font-weight: 400; |
| 5964 |
line-height: 20px; |
| 5965 |
padding-top: 15px; |
| 5966 |
} |
| 5967 |
.wp-adminify #wpbody-content .metabox-holder .postbox#dashboard_quick_press .drafts a { |
| 5968 |
color: var(--adminify-btn-bg); |
| 5969 |
} |
| 5970 |
.wp-adminify #wpbody-content .metabox-holder .postbox#dashboard_quick_press .drafts ul li { |
| 5971 |
margin-bottom: 0; |
| 5972 |
} |
| 5973 |
.wp-adminify #wpbody-content .metabox-holder .postbox#dashboard_quick_press .drafts ul li p { |
| 5974 |
margin-bottom: 0; |
| 5975 |
} |
| 5976 |
.wp-adminify #wpbody-content .metabox-holder .handle-actions { |
| 5977 |
padding-right: 13px; |
| 5978 |
} |
| 5979 |
.wp-adminify #wpbody-content .metabox-holder .handle-actions button { |
| 5980 |
background-color: transparent; |
| 5981 |
border: none; |
| 5982 |
line-height: 1; |
| 5983 |
padding: 0; |
| 5984 |
width: 30px; |
| 5985 |
} |
| 5986 |
.wp-adminify #wpbody-content .metabox-holder .handle-actions button span { |
| 5987 |
color: #4E4B66; |
| 5988 |
} |
| 5989 |
.wp-adminify #wpbody-content .metabox-holder .handle-actions button span:before { |
| 5990 |
font-size: 16px; |
| 5991 |
} |
| 5992 |
.wp-adminify #wpbody-content .welcome-panel-close { |
| 5993 |
color: var(--adminify-notif-bg-color); |
| 5994 |
} |
| 5995 |
.wp-adminify #wpbody-content #dashboard_right_now .main { |
| 5996 |
padding: 0; |
| 5997 |
} |
| 5998 |
.wp-adminify #wpbody-content #dashboard_right_now ul { |
| 5999 |
border-bottom: 1px solid #F1F1F3; |
| 6000 |
display: -webkit-box; |
| 6001 |
display: -webkit-flex; |
| 6002 |
display: -ms-flexbox; |
| 6003 |
display: flex; |
| 6004 |
-webkit-box-align: center; |
| 6005 |
-webkit-align-items: center; |
| 6006 |
-ms-flex-align: center; |
| 6007 |
align-items: center; |
| 6008 |
-webkit-box-pack: center; |
| 6009 |
-webkit-justify-content: center; |
| 6010 |
-ms-flex-pack: center; |
| 6011 |
justify-content: center; |
| 6012 |
margin: 0 0 1rem; |
| 6013 |
} |
| 6014 |
.wp-adminify #wpbody-content #dashboard_right_now ul li { |
| 6015 |
float: none; |
| 6016 |
width: auto; |
| 6017 |
margin-bottom: 0; |
| 6018 |
padding: 0 15px 15px; |
| 6019 |
} |
| 6020 |
.wp-adminify #wpbody-content #dashboard_right_now ul li a { |
| 6021 |
display: block; |
| 6022 |
color: var(--adminify-btn-bg); |
| 6023 |
display: -webkit-box; |
| 6024 |
display: -webkit-flex; |
| 6025 |
display: -ms-flexbox; |
| 6026 |
display: flex; |
| 6027 |
-webkit-box-pack: center; |
| 6028 |
-webkit-justify-content: center; |
| 6029 |
-ms-flex-pack: center; |
| 6030 |
justify-content: center; |
| 6031 |
font-size: 12px; |
| 6032 |
line-height: 16px; |
| 6033 |
padding-top: 2rem; |
| 6034 |
position: relative; |
| 6035 |
} |
| 6036 |
.wp-adminify #wpbody-content #dashboard_right_now ul li a:before { |
| 6037 |
content: ""; |
| 6038 |
height: 12px; |
| 6039 |
width: 12px; |
| 6040 |
margin: 2px 4px 0 0; |
| 6041 |
background-size: 10.5px; |
| 6042 |
-webkit-filter: brightness(1) saturate(7); |
| 6043 |
filter: brightness(1) saturate(7); |
| 6044 |
padding: 0; |
| 6045 |
} |
| 6046 |
.wp-adminify #wpbody-content #dashboard_right_now ul li a span:before { |
| 6047 |
display: none; |
| 6048 |
} |
| 6049 |
.wp-adminify #wpbody-content #dashboard_right_now ul li a .counter { |
| 6050 |
color: #4E4B66; |
| 6051 |
font-size: 24px; |
| 6052 |
line-height: 32px; |
| 6053 |
top: 0; |
| 6054 |
left: 50%; |
| 6055 |
position: absolute; |
| 6056 |
} |
| 6057 |
.wp-adminify #wpbody-content #dashboard_right_now ul li.post-count a:before { |
| 6058 |
background: url(../images/widgets/posts.svg) center no-repeat; |
| 6059 |
} |
| 6060 |
.wp-adminify #wpbody-content #dashboard_right_now ul li.page-count a:before { |
| 6061 |
background: url(../images/widgets/pages.svg) center no-repeat; |
| 6062 |
} |
| 6063 |
.wp-adminify #wpbody-content #dashboard_right_now ul li.comment-count a:before { |
| 6064 |
background: url(../images/widgets/comment.svg) center no-repeat; |
| 6065 |
background-size: 12px; |
| 6066 |
} |
| 6067 |
.wp-adminify #wpbody-content #dashboard_right_now ul li.plugin-count a:before { |
| 6068 |
background: url(../images/widgets/plugins.svg) center no-repeat; |
| 6069 |
} |
| 6070 |
.wp-adminify #wpbody-content #dashboard_right_now #wp-version-message { |
| 6071 |
margin-bottom: 0; |
| 6072 |
} |
| 6073 |
.wp-adminify #wpbody-content #dashboard_right_now #wp-version { |
| 6074 |
color: #4E4B66; |
| 6075 |
font-weight: 400; |
| 6076 |
} |
| 6077 |
.wp-adminify #wpbody-content #dashboard_right_now #wp-version a { |
| 6078 |
font-weight: 600; |
| 6079 |
} |
| 6080 |
.wp-adminify #wpbody-content #dashboard_primary .inside { |
| 6081 |
padding: 0 1.5rem 11px; |
| 6082 |
} |
| 6083 |
.wp-adminify #wpbody-content #dashboard_primary .inside .community-events { |
| 6084 |
padding: 0; |
| 6085 |
} |
| 6086 |
.wp-adminify #wpbody-content #dashboard_primary .inside .activity-block { |
| 6087 |
border-bottom-color: #F1F1F3; |
| 6088 |
margin: 0; |
| 6089 |
} |
| 6090 |
.wp-adminify #wpbody-content #dashboard_primary .inside .activity-block p { |
| 6091 |
color: #4E4B66; |
| 6092 |
font-size: 14px; |
| 6093 |
font-weight: 400; |
| 6094 |
line-height: 20px; |
| 6095 |
} |
| 6096 |
.wp-adminify #wpbody-content #dashboard_primary .inside .activity-block p button { |
| 6097 |
color: var(--adminify-btn-bg); |
| 6098 |
} |
| 6099 |
.wp-adminify #wpbody-content #dashboard_primary .inside .wordpress-news { |
| 6100 |
margin: 15px 0; |
| 6101 |
} |
| 6102 |
.wp-adminify #wpbody-content #dashboard_primary .inside .rss-widget { |
| 6103 |
padding: 0; |
| 6104 |
} |
| 6105 |
.wp-adminify #wpbody-content #dashboard_primary .inside .rss-widget ul li { |
| 6106 |
padding: 5px 0; |
| 6107 |
} |
| 6108 |
.wp-adminify #wpbody-content #dashboard_primary .inside .rss-widget ul li a { |
| 6109 |
color: var(--adminify-btn-bg); |
| 6110 |
font-size: 14px; |
| 6111 |
font-weight: 600; |
| 6112 |
line-height: 20px; |
| 6113 |
} |
| 6114 |
.wp-adminify #wpbody-content #dashboard_primary .inside .dashicons { |
| 6115 |
font-size: 15px; |
| 6116 |
float: left; |
| 6117 |
height: auto; |
| 6118 |
width: auto; |
| 6119 |
margin-right: 7px; |
| 6120 |
} |
| 6121 |
.wp-adminify #wpbody-content #dashboard_primary .inside .community-events-footer { |
| 6122 |
font-size: 0; |
| 6123 |
margin-bottom: 0; |
| 6124 |
padding: 17px 0 2px; |
| 6125 |
} |
| 6126 |
.wp-adminify #wpbody-content #dashboard_primary .inside .community-events-footer a { |
| 6127 |
display: inline-block; |
| 6128 |
font-size: 14px; |
| 6129 |
font-weight: 700; |
| 6130 |
padding-right: 0.75rem; |
| 6131 |
} |
| 6132 |
.wp-adminify #wpbody-content #dashboard_primary .inside .community-events-footer a:last-child { |
| 6133 |
padding-right: 0; |
| 6134 |
} |
| 6135 |
.wp-adminify #wpbody-content #dashboard_activity .inside { |
| 6136 |
padding: 0 1rem 6px; |
| 6137 |
} |
| 6138 |
.wp-adminify #wpbody-content #dashboard_activity #activity-widget { |
| 6139 |
padding: 10px 0 8px; |
| 6140 |
} |
| 6141 |
.wp-adminify #wpbody-content #dashboard_activity #activity-widget .activity-block { |
| 6142 |
border-bottom-color: #F1F1F3; |
| 6143 |
margin: 0; |
| 6144 |
padding: 6px 0; |
| 6145 |
} |
| 6146 |
.wp-adminify #wpbody-content #dashboard_activity #activity-widget .activity-block h3 { |
| 6147 |
color: #4E4B66; |
| 6148 |
font-size: 13px; |
| 6149 |
margin: 0 0 3px; |
| 6150 |
} |
| 6151 |
.wp-adminify #wpbody-content #dashboard_activity #activity-widget .activity-block ul { |
| 6152 |
margin: 0; |
| 6153 |
} |
| 6154 |
.wp-adminify #wpbody-content #dashboard_activity #activity-widget .activity-block ul li span { |
| 6155 |
color: rgba(78, 75, 102, 0.72); |
| 6156 |
font-size: 14px; |
| 6157 |
} |
| 6158 |
.wp-adminify #wpbody-content #dashboard_activity #activity-widget .activity-block ul li a { |
| 6159 |
color: var(--adminify-btn-bg); |
| 6160 |
font-size: 14px; |
| 6161 |
font-weight: 400; |
| 6162 |
} |
| 6163 |
.wp-adminify #wpbody-content #dashboard_activity #activity-widget #latest-comments h3 { |
| 6164 |
margin: 9px 0 5px; |
| 6165 |
} |
| 6166 |
.wp-adminify #wpbody-content #dashboard_activity #activity-widget #latest-comments ul li.comment-item { |
| 6167 |
background: none; |
| 6168 |
-webkit-box-shadow: none; |
| 6169 |
box-shadow: none; |
| 6170 |
min-height: auto; |
| 6171 |
padding: 0; |
| 6172 |
} |
| 6173 |
.wp-adminify #wpbody-content #dashboard_activity #activity-widget #latest-comments ul li .comment-meta, |
| 6174 |
.wp-adminify #wpbody-content #dashboard_activity #activity-widget #latest-comments ul li blockquote p { |
| 6175 |
font-size: 13px; |
| 6176 |
line-height: 16px; |
| 6177 |
} |
| 6178 |
.wp-adminify #wpbody-content #dashboard_activity #activity-widget #latest-comments ul li .comment-meta a, |
| 6179 |
.wp-adminify #wpbody-content #dashboard_activity #activity-widget #latest-comments ul li blockquote p a { |
| 6180 |
font-size: 13px; |
| 6181 |
} |
| 6182 |
.wp-adminify #wpbody-content #dashboard_activity #activity-widget #latest-comments ul li blockquote p { |
| 6183 |
color: #4E4B66; |
| 6184 |
} |
| 6185 |
.wp-adminify #wpbody-content #dashboard_activity #activity-widget #latest-comments ul li .comment-meta { |
| 6186 |
color: rgba(78, 75, 102, 0.72); |
| 6187 |
margin-bottom: 3px; |
| 6188 |
} |
| 6189 |
.wp-adminify #wpbody-content #dashboard_activity #activity-widget #latest-comments ul li .row-actions { |
| 6190 |
left: 0; |
| 6191 |
margin: 10px 0 13px; |
| 6192 |
} |
| 6193 |
.wp-adminify #wpbody-content #dashboard_activity #activity-widget #latest-comments ul li .row-actions span { |
| 6194 |
color: var(--adminify-btn-bg); |
| 6195 |
font-size: 0; |
| 6196 |
} |
| 6197 |
.wp-adminify #wpbody-content #dashboard_activity #activity-widget #latest-comments ul li .row-actions span a { |
| 6198 |
color: var(--adminify-btn-bg); |
| 6199 |
font-size: 13px; |
| 6200 |
display: inline-block; |
| 6201 |
padding-right: 12px; |
| 6202 |
max-width: inherit; |
| 6203 |
width: auto; |
| 6204 |
} |
| 6205 |
.wp-adminify #wpbody-content #dashboard_activity #activity-widget #latest-comments ul li .row-actions span.unapprove { |
| 6206 |
color: var(--adminify-notif-bg-color); |
| 6207 |
} |
| 6208 |
.wp-adminify #wpbody-content #dashboard_activity #activity-widget #latest-comments ul li .row-actions span.unapprove a { |
| 6209 |
color: var(--adminify-notif-bg-color); |
| 6210 |
} |
| 6211 |
.wp-adminify #wpbody-content #dashboard_activity #activity-widget #latest-comments ul li .row-actions span.spam, .wp-adminify #wpbody-content #dashboard_activity #activity-widget #latest-comments ul li .row-actions span.trash { |
| 6212 |
color: #c30052; |
| 6213 |
} |
| 6214 |
.wp-adminify #wpbody-content #dashboard_activity #activity-widget #latest-comments ul li .row-actions span.spam a, .wp-adminify #wpbody-content #dashboard_activity #activity-widget #latest-comments ul li .row-actions span.trash a { |
| 6215 |
color: #c30052; |
| 6216 |
} |
| 6217 |
.wp-adminify #wpbody-content #dashboard_activity #activity-widget #latest-comments .subsubsub { |
| 6218 |
padding-top: 16px; |
| 6219 |
} |
| 6220 |
.wp-adminify #wpbody-content #dashboard_activity #activity-widget #latest-comments .subsubsub li a { |
| 6221 |
-webkit-border-radius: 3px; |
| 6222 |
border-radius: 3px; |
| 6223 |
color: #4E4B66; |
| 6224 |
font-size: 12px; |
| 6225 |
font-weight: 600; |
| 6226 |
line-height: 16px; |
| 6227 |
margin: 0 3px 5px 0; |
| 6228 |
padding: 3px; |
| 6229 |
} |
| 6230 |
.wp-adminify #wpbody-content #dashboard_activity #activity-widget #latest-comments .subsubsub li a .count { |
| 6231 |
background-color: #4E4B66; |
| 6232 |
-webkit-border-radius: 15px; |
| 6233 |
border-radius: 15px; |
| 6234 |
height: 12px; |
| 6235 |
line-height: 10px; |
| 6236 |
margin-top: 2px; |
| 6237 |
padding: 0 3px; |
| 6238 |
} |
| 6239 |
.wp-adminify #wpbody-content #dashboard_activity #activity-widget #latest-comments .subsubsub li a span[class*=-count] { |
| 6240 |
color: var(--adminify-text-color); |
| 6241 |
font-size: 10px; |
| 6242 |
} |
| 6243 |
.wp-adminify #wpbody-content #dashboard_site_health .health-check-widget { |
| 6244 |
display: block; |
| 6245 |
} |
| 6246 |
.wp-adminify #wpbody-content #dashboard_site_health .health-check-widget-title-section { |
| 6247 |
margin-top: 7px; |
| 6248 |
} |
| 6249 |
.wp-adminify #wpbody-content #dashboard_site_health .health-check-widget-title-section .site-health-progress { |
| 6250 |
height: 44px; |
| 6251 |
width: 44px; |
| 6252 |
} |
| 6253 |
.wp-adminify #wpbody-content #dashboard_site_health .health-check-widget-title-section .site-health-progress svg circle { |
| 6254 |
stroke: #F1F1F3; |
| 6255 |
} |
| 6256 |
.wp-adminify #wpbody-content #dashboard_site_health .health-check-widget-title-section .site-health-progress-label { |
| 6257 |
color: #00BA88; |
| 6258 |
font-size: 14px; |
| 6259 |
font-weight: 400; |
| 6260 |
margin-left: 12px; |
| 6261 |
} |
| 6262 |
.wp-adminify #wpbody-content #dashboard_site_health .health-check-widget-title-section #bar { |
| 6263 |
stroke: #00BA88; |
| 6264 |
} |
| 6265 |
.wp-adminify #wpbody-content #dashboard_site_health .health-check-widget-title-section #bar.orange { |
| 6266 |
stroke: #F4B740; |
| 6267 |
} |
| 6268 |
.wp-adminify #wpbody-content #dashboard_site_health .health-check-widget-title-section.orange #bar { |
| 6269 |
stroke: #F4B740; |
| 6270 |
} |
| 6271 |
.wp-adminify #wpbody-content #dashboard_site_health .health-check-widget-title-section.orange .site-health-progress-label { |
| 6272 |
color: #F4B740; |
| 6273 |
} |
| 6274 |
.wp-adminify #wpbody-content #dashboard_site_health p { |
| 6275 |
color: rgba(78, 75, 102, 0.72); |
| 6276 |
} |
| 6277 |
.wp-adminify #wpbody-content #dashboard_site_health p strong { |
| 6278 |
color: rgba(78, 75, 102, 0.72); |
| 6279 |
font-weight: 400; |
| 6280 |
} |
| 6281 |
.wp-adminify #wpbody-content #dashboard_site_health p a { |
| 6282 |
font-weight: 600; |
| 6283 |
} |
| 6284 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_user_activities table, |
| 6285 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_activity_logs table, |
| 6286 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_recent_posts table { |
| 6287 |
width: 100%; |
| 6288 |
} |
| 6289 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_user_activities table th, |
| 6290 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_activity_logs table th, |
| 6291 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_recent_posts table th { |
| 6292 |
color: #14142B; |
| 6293 |
font-size: 14px; |
| 6294 |
font-weight: 600; |
| 6295 |
line-height: 20px; |
| 6296 |
} |
| 6297 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_user_activities table tr, |
| 6298 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_user_activities table td, |
| 6299 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_activity_logs table tr, |
| 6300 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_activity_logs table td, |
| 6301 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_recent_posts table tr, |
| 6302 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_recent_posts table td { |
| 6303 |
color: #14142B; |
| 6304 |
font-size: 12px; |
| 6305 |
line-height: 16px; |
| 6306 |
text-align: left; |
| 6307 |
vertical-align: top; |
| 6308 |
} |
| 6309 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_user_activities table tr td, |
| 6310 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_activity_logs table tr td, |
| 6311 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_recent_posts table tr td { |
| 6312 |
border-bottom: 1px solid #F1F1F3; |
| 6313 |
word-break: break-all; |
| 6314 |
} |
| 6315 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_user_activities table tr:last-child td, |
| 6316 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_activity_logs table tr:last-child td, |
| 6317 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_recent_posts table tr:last-child td { |
| 6318 |
border-bottom: 0; |
| 6319 |
} |
| 6320 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_user_activities table th, |
| 6321 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_activity_logs table th, |
| 6322 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_recent_posts table th { |
| 6323 |
border-bottom: 1px solid #F1F1F3; |
| 6324 |
font-size: 14px; |
| 6325 |
font-weight: 600; |
| 6326 |
text-align: left; |
| 6327 |
} |
| 6328 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_user_activities .inside, |
| 6329 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_activity_logs .inside { |
| 6330 |
padding: 0; |
| 6331 |
} |
| 6332 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_user_activities table tr, |
| 6333 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_user_activities table td, |
| 6334 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_user_activities table th, |
| 6335 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_activity_logs table tr, |
| 6336 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_activity_logs table td, |
| 6337 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_activity_logs table th { |
| 6338 |
padding: 10px 5px 10px 10px; |
| 6339 |
} |
| 6340 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_user_activities .user-status, |
| 6341 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_activity_logs .user-status { |
| 6342 |
border: 2px solid var(--adminify-text-color); |
| 6343 |
-webkit-border-radius: 50%; |
| 6344 |
border-radius: 50%; |
| 6345 |
top: 0; |
| 6346 |
right: 0; |
| 6347 |
position: absolute; |
| 6348 |
} |
| 6349 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_user_activities .wp-adminify-user-name, |
| 6350 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_activity_logs .wp-adminify-user-name { |
| 6351 |
color: #14142B; |
| 6352 |
} |
| 6353 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_user_activities table tr, |
| 6354 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_user_activities table td, |
| 6355 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_user_activities table th { |
| 6356 |
vertical-align: middle; |
| 6357 |
} |
| 6358 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_user_activities .media { |
| 6359 |
-webkit-box-align: center; |
| 6360 |
-webkit-align-items: center; |
| 6361 |
-ms-flex-align: center; |
| 6362 |
align-items: center; |
| 6363 |
} |
| 6364 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_user_activities .wp-adminify-user-avatar { |
| 6365 |
margin-right: 10px; |
| 6366 |
position: relative; |
| 6367 |
} |
| 6368 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_user_activities .wp-adminify-user-avatar img { |
| 6369 |
height: 48px; |
| 6370 |
width: 48px; |
| 6371 |
} |
| 6372 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_user_activities .wp-adminify-user-avatar .user-status { |
| 6373 |
-webkit-border-radius: 50%; |
| 6374 |
border-radius: 50%; |
| 6375 |
height: 10px; |
| 6376 |
width: 10px; |
| 6377 |
} |
| 6378 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_user_activities .logged-in { |
| 6379 |
background-color: #00BA88; |
| 6380 |
color: var(--adminify-text-color); |
| 6381 |
} |
| 6382 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_user_activities .logged-out { |
| 6383 |
background-color: #CFCFCF; |
| 6384 |
color: rgba(78, 75, 102, 0.54); |
| 6385 |
} |
| 6386 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_user_activities .wp-adminify-user-name { |
| 6387 |
color: #14142B; |
| 6388 |
font-size: 13px; |
| 6389 |
font-weight: 600; |
| 6390 |
line-height: 1; |
| 6391 |
margin: 0 0 5px; |
| 6392 |
} |
| 6393 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_user_activities .user-status-text { |
| 6394 |
-webkit-border-radius: 2px; |
| 6395 |
border-radius: 2px; |
| 6396 |
display: inline-block; |
| 6397 |
font-size: 11px; |
| 6398 |
font-weight: 600; |
| 6399 |
line-height: 10px; |
| 6400 |
padding: 2px 3px; |
| 6401 |
} |
| 6402 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_user_activities .wp-adminify-user-time-tracker time { |
| 6403 |
color: rgba(78, 75, 102, 0.54); |
| 6404 |
font-size: 12px; |
| 6405 |
line-height: 16px; |
| 6406 |
} |
| 6407 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_user_activities .wp-adminify-user-time-tracker time span { |
| 6408 |
max-width: 85px; |
| 6409 |
} |
| 6410 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_activity_logs table tr, |
| 6411 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_activity_logs table td, |
| 6412 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_activity_logs table th { |
| 6413 |
vertical-align: top; |
| 6414 |
} |
| 6415 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_activity_logs table td:last-child { |
| 6416 |
max-width: 125px; |
| 6417 |
word-break: break-word; |
| 6418 |
} |
| 6419 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_activity_logs table .wp-adminify-user-avatar { |
| 6420 |
float: left; |
| 6421 |
margin-right: 0.5rem; |
| 6422 |
position: relative; |
| 6423 |
} |
| 6424 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_activity_logs table .wp-adminify-user-avatar img { |
| 6425 |
height: 36px; |
| 6426 |
width: 36px; |
| 6427 |
} |
| 6428 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_activity_logs table .wp-adminify-user-avatar .user-status { |
| 6429 |
background-color: #00BA88; |
| 6430 |
height: 8px; |
| 6431 |
width: 8px; |
| 6432 |
} |
| 6433 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_activity_logs table .wp-adminify-user-name { |
| 6434 |
font-size: 13px; |
| 6435 |
font-weight: 400; |
| 6436 |
margin: 7px 0 0; |
| 6437 |
text-transform: capitalize; |
| 6438 |
} |
| 6439 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_activity_logs table .wp-adminify-user-details { |
| 6440 |
clear: both; |
| 6441 |
display: inline-block; |
| 6442 |
font-size: 12px; |
| 6443 |
line-height: 16px; |
| 6444 |
} |
| 6445 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_activity_logs table .wp-adminify-user-details span { |
| 6446 |
color: rgba(78, 75, 102, 0.54); |
| 6447 |
display: block; |
| 6448 |
} |
| 6449 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_activity_logs table .wp-adminify-user-details span time { |
| 6450 |
color: rgba(78, 75, 102, 0.54); |
| 6451 |
} |
| 6452 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_activity_logs table .wp-adminify-user-details .wp-adminify-user-last-logout { |
| 6453 |
font-size: 11px; |
| 6454 |
} |
| 6455 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_recent_posts .inside { |
| 6456 |
padding: 0; |
| 6457 |
} |
| 6458 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_recent_posts table tr, |
| 6459 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_recent_posts table th, |
| 6460 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_recent_posts table td { |
| 6461 |
padding: 12px; |
| 6462 |
} |
| 6463 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_recent_posts table th img { |
| 6464 |
float: left; |
| 6465 |
height: 13.5px; |
| 6466 |
width: 13.5px; |
| 6467 |
margin-top: 2.5px; |
| 6468 |
} |
| 6469 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_recent_posts table .adminify-author-avatar { |
| 6470 |
-webkit-border-radius: 6px; |
| 6471 |
border-radius: 6px; |
| 6472 |
height: 36px; |
| 6473 |
width: 36px; |
| 6474 |
margin-right: 10px; |
| 6475 |
} |
| 6476 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_recent_posts table .adminify-post-title { |
| 6477 |
font-size: 13px; |
| 6478 |
line-height: 16px; |
| 6479 |
} |
| 6480 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_recent_posts table .adminify-post-time { |
| 6481 |
color: rgba(78, 75, 102, 0.54); |
| 6482 |
display: block; |
| 6483 |
font-size: 11px; |
| 6484 |
line-height: 12px; |
| 6485 |
} |
| 6486 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_recent_posts table .adminify-author-name, |
| 6487 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_recent_posts table .adminify-post-category, |
| 6488 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_recent_posts table .adminify-post-comments { |
| 6489 |
color: #4E4B66; |
| 6490 |
font-size: 12px; |
| 6491 |
line-height: 16px; |
| 6492 |
margin: 0; |
| 6493 |
} |
| 6494 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_recent_posts table .adminify-author-name a, |
| 6495 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_recent_posts table .adminify-post-category a, |
| 6496 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_recent_posts table .adminify-post-comments a { |
| 6497 |
color: #4E4B66; |
| 6498 |
font-weight: 400; |
| 6499 |
} |
| 6500 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_system_info .inside { |
| 6501 |
padding: 0; |
| 6502 |
} |
| 6503 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_server_uptime .inside { |
| 6504 |
padding: 1.25rem; |
| 6505 |
} |
| 6506 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_server_uptime .adminify-title { |
| 6507 |
color: #14142B; |
| 6508 |
font-size: 14px; |
| 6509 |
font-weight: 600; |
| 6510 |
line-height: 20px; |
| 6511 |
margin: 0 0 0.5rem; |
| 6512 |
} |
| 6513 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_server_uptime .adminify-realtime-chart { |
| 6514 |
height: 120px; |
| 6515 |
width: 120px; |
| 6516 |
margin: 0 auto; |
| 6517 |
} |
| 6518 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_server_uptime .adminify-realtime-chart:after { |
| 6519 |
content: attr(data-percent); |
| 6520 |
color: #4E4B66; |
| 6521 |
font-size: 18px; |
| 6522 |
font-weight: 700; |
| 6523 |
position: absolute; |
| 6524 |
top: 50%; |
| 6525 |
left: 50%; |
| 6526 |
-webkit-transform: translate(-50%, -50%); |
| 6527 |
-ms-transform: translate(-50%, -50%); |
| 6528 |
transform: translate(-50%, -50%); |
| 6529 |
} |
| 6530 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_server_uptime .adminify-realtime-chart .adminify-progress-bar { |
| 6531 |
-webkit-transform: rotate(-90deg) rotateX(180deg); |
| 6532 |
transform: rotate(-90deg) rotateX(180deg); |
| 6533 |
} |
| 6534 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_server_uptime .adminify-realtime-chart .adminify-progress-bar circle { |
| 6535 |
stroke-dashoffset: 0; |
| 6536 |
-webkit-transition: stroke-dashoffset 1s ease; |
| 6537 |
-o-transition: stroke-dashoffset 1s ease; |
| 6538 |
transition: stroke-dashoffset 1s ease; |
| 6539 |
stroke: #00ba88; |
| 6540 |
stroke-width: 12px; |
| 6541 |
} |
| 6542 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_server_uptime .adminify-realtime-chart .adminify-progress-bar .adminify-bar { |
| 6543 |
stroke: #f9f9f9; |
| 6544 |
} |
| 6545 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_server_uptime .adminify-server-uptime .adminify-title { |
| 6546 |
font-size: 18px; |
| 6547 |
} |
| 6548 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_server_uptime .adminify-uptime-counter ul { |
| 6549 |
margin: 0 auto; |
| 6550 |
} |
| 6551 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_server_uptime .adminify-uptime-counter li { |
| 6552 |
-webkit-flex-basis: 25%; |
| 6553 |
-ms-flex-preferred-size: 25%; |
| 6554 |
flex-basis: 25%; |
| 6555 |
max-width: 74px; |
| 6556 |
margin: 6px; |
| 6557 |
} |
| 6558 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_server_uptime .adminify-uptime-counter li:last-child span[id*=adminify-]::after { |
| 6559 |
display: none; |
| 6560 |
} |
| 6561 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_server_uptime .adminify-uptime-counter span[id*=adminify-] { |
| 6562 |
background-color: var(--adminify-btn-bg); |
| 6563 |
color: var(--adminify-text-color); |
| 6564 |
display: inline-block; |
| 6565 |
font-size: 24px; |
| 6566 |
line-height: 74px; |
| 6567 |
height: 74px; |
| 6568 |
position: relative; |
| 6569 |
width: 100%; |
| 6570 |
} |
| 6571 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_server_uptime .adminify-uptime-counter span[id*=adminify-]:after { |
| 6572 |
content: ":"; |
| 6573 |
color: #4E4B66; |
| 6574 |
height: 100%; |
| 6575 |
top: 0; |
| 6576 |
right: -9px; |
| 6577 |
position: absolute; |
| 6578 |
} |
| 6579 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_server_uptime .adminify-uptime-counter .adminify-countdown-title { |
| 6580 |
background-color: rgba(3, 71, 255, 0.17); |
| 6581 |
-webkit-box-sizing: border-box; |
| 6582 |
box-sizing: border-box; |
| 6583 |
color: #14142B; |
| 6584 |
font-size: 10px; |
| 6585 |
font-weight: 700; |
| 6586 |
line-height: 12px; |
| 6587 |
margin-top: 2px; |
| 6588 |
padding: 5px; |
| 6589 |
} |
| 6590 |
.wp-adminify #wpbody-content #jltwp_adminify_memory_usage .inside { |
| 6591 |
padding: 0 0 5px; |
| 6592 |
} |
| 6593 |
.wp-adminify #wpbody-content #jltwp_adminify_memory_usage .halfspace { |
| 6594 |
border-bottom: 1px solid #F1F1F3; |
| 6595 |
color: #14142B; |
| 6596 |
font-size: 12px; |
| 6597 |
font-weight: 600; |
| 6598 |
line-height: 16px; |
| 6599 |
margin: 0; |
| 6600 |
padding: 0.75rem 1.125rem; |
| 6601 |
} |
| 6602 |
.wp-adminify #wpbody-content #jltwp_adminify_memory_usage .halfspace span { |
| 6603 |
color: #4E4B66; |
| 6604 |
font-size: 12px; |
| 6605 |
float: left; |
| 6606 |
font-weight: 400; |
| 6607 |
padding-left: 0; |
| 6608 |
width: 60%; |
| 6609 |
} |
| 6610 |
.wp-adminify #wpbody-content #jltwp_adminify_memory_usage .halfspace p { |
| 6611 |
display: inline-block; |
| 6612 |
font-size: 13px; |
| 6613 |
margin: 0; |
| 6614 |
padding-left: 0; |
| 6615 |
width: 100%; |
| 6616 |
} |
| 6617 |
.wp-adminify #wpbody-content #jltwp_adminify_memory_usage .halfspace br { |
| 6618 |
clear: both; |
| 6619 |
} |
| 6620 |
.wp-adminify #wpbody-content #jltwp_adminify_memory_usage .halfspace:last-child { |
| 6621 |
border-bottom: 0; |
| 6622 |
} |
| 6623 |
.wp-adminify #wpbody-content #jltwp_adminify_memory_usage p.halfspace { |
| 6624 |
display: -webkit-box; |
| 6625 |
display: -webkit-flex; |
| 6626 |
display: -ms-flexbox; |
| 6627 |
display: flex; |
| 6628 |
-webkit-box-align: center; |
| 6629 |
-webkit-align-items: center; |
| 6630 |
-ms-flex-align: center; |
| 6631 |
align-items: center; |
| 6632 |
} |
| 6633 |
.wp-adminify #wpbody-content #jltwp_adminify_memory_usage .spacedark { |
| 6634 |
color: #4E4B66; |
| 6635 |
line-height: 20px; |
| 6636 |
} |
| 6637 |
.wp-adminify #wpbody-content #jltwp_adminify_memory_usage div.halfspace .spacedark { |
| 6638 |
color: rgba(78, 75, 102, 0.72); |
| 6639 |
padding-left: 15px; |
| 6640 |
width: -webkit-calc(60% - 15px); |
| 6641 |
width: calc(60% - 15px); |
| 6642 |
} |
| 6643 |
.wp-adminify #wpbody-content #jltwp_adminify_memory_usage div.halfspace p .spacedark { |
| 6644 |
color: #4E4B66; |
| 6645 |
padding-left: 0; |
| 6646 |
} |
| 6647 |
.wp-adminify #wpbody-content .col-wrap h2 { |
| 6648 |
color: #000; |
| 6649 |
font-size: 20px; |
| 6650 |
font-weight: 700; |
| 6651 |
line-height: 32px; |
| 6652 |
} |
| 6653 |
.wp-adminify #wpbody-content #update-themes-table .check-column { |
| 6654 |
width: 1rem; |
| 6655 |
} |
| 6656 |
.wp-adminify #wpbody-content #update-themes-table .check-column input { |
| 6657 |
margin-left: 0; |
| 6658 |
} |
| 6659 |
.wp-adminify #wpbody-content #update-themes-table td, |
| 6660 |
.wp-adminify #wpbody-content #update-themes-table th { |
| 6661 |
border-bottom: 1px solid #F1F1F3; |
| 6662 |
-webkit-box-shadow: none; |
| 6663 |
box-shadow: none; |
| 6664 |
} |
| 6665 |
.wp-adminify #wpbody-content #update-themes-table td p, |
| 6666 |
.wp-adminify #wpbody-content #update-themes-table th p { |
| 6667 |
color: #4E4B66; |
| 6668 |
font-size: 14px; |
| 6669 |
line-height: 20px; |
| 6670 |
} |
| 6671 |
.wp-adminify #wpbody-content #update-themes-table tfoot tr, |
| 6672 |
.wp-adminify #wpbody-content #update-themes-table tfoot td { |
| 6673 |
border: 0; |
| 6674 |
} |
| 6675 |
.wp-adminify #wpbody-content .widefat.updates-table { |
| 6676 |
margin-top: 4rem; |
| 6677 |
} |
| 6678 |
.wp-adminify #wpbody-content .widefat.updates-table p { |
| 6679 |
margin: 0; |
| 6680 |
} |
| 6681 |
.wp-adminify #wpbody-content .widefat.updates-table img { |
| 6682 |
height: auto; |
| 6683 |
} |
| 6684 |
.wp-adminify #wpbody-content .widefat.updates-table tr td { |
| 6685 |
border-bottom: 1px solid #F1F1F3; |
| 6686 |
-webkit-box-shadow: none; |
| 6687 |
box-shadow: none; |
| 6688 |
padding: 15px 17px; |
| 6689 |
} |
| 6690 |
.wp-adminify #wpbody-content .widefat.updates-table tr td.check-column input[type=checkbox] { |
| 6691 |
margin-top: 2px; |
| 6692 |
} |
| 6693 |
.wp-adminify #wpbody-content .widefat.updates-table thead td { |
| 6694 |
border-bottom: 1px solid #F1F1F3; |
| 6695 |
color: #14142B; |
| 6696 |
} |
| 6697 |
.wp-adminify #wpbody-content .widefat.updates-table tfoot td { |
| 6698 |
border-top: 0; |
| 6699 |
} |
| 6700 |
.wp-adminify #wpbody-content .wp-adminify-server-info table, |
| 6701 |
.wp-adminify #wpbody-content .adminify-server-info table { |
| 6702 |
width: 100%; |
| 6703 |
} |
| 6704 |
.wp-adminify #wpbody-content .wp-adminify-server-info th, |
| 6705 |
.wp-adminify #wpbody-content .adminify-server-info th { |
| 6706 |
border-bottom: 1px solid #F1F1F3; |
| 6707 |
} |
| 6708 |
.wp-adminify #wpbody-content .wp-adminify-server-info tr, |
| 6709 |
.wp-adminify #wpbody-content .adminify-server-info tr { |
| 6710 |
color: #4E4B66; |
| 6711 |
font-size: 12px; |
| 6712 |
font-weight: 400; |
| 6713 |
line-height: 16px; |
| 6714 |
position: relative; |
| 6715 |
text-align: left; |
| 6716 |
width: 50%; |
| 6717 |
} |
| 6718 |
.wp-adminify #wpbody-content .wp-adminify-server-info tr td, |
| 6719 |
.wp-adminify #wpbody-content .adminify-server-info tr td { |
| 6720 |
border-bottom: 1px solid #F1F1F3; |
| 6721 |
display: table-cell; |
| 6722 |
padding: 15px; |
| 6723 |
} |
| 6724 |
.wp-adminify #wpbody-content .wp-adminify-server-info tr td:first-child, |
| 6725 |
.wp-adminify #wpbody-content .adminify-server-info tr td:first-child { |
| 6726 |
width: 55%; |
| 6727 |
} |
| 6728 |
.wp-adminify #wpbody-content .wp-adminify-server-info tr a, |
| 6729 |
.wp-adminify #wpbody-content .adminify-server-info tr a { |
| 6730 |
color: var(--adminify-btn-bg); |
| 6731 |
} |
| 6732 |
.wp-adminify #wpbody-content .wp-adminify-server-info tr strong, |
| 6733 |
.wp-adminify #wpbody-content .adminify-server-info tr strong { |
| 6734 |
color: #14142B; |
| 6735 |
font-weight: 600; |
| 6736 |
} |
| 6737 |
.wp-adminify #wpbody-content .wp-adminify-server-info tbody tr:last-child td, |
| 6738 |
.wp-adminify #wpbody-content .adminify-server-info tbody tr:last-child td { |
| 6739 |
border-bottom: 0; |
| 6740 |
height: 47px; |
| 6741 |
} |
| 6742 |
.wp-adminify #wpbody-content .wp-adminify-server-info tbody tr:last-child td a, |
| 6743 |
.wp-adminify #wpbody-content .adminify-server-info tbody tr:last-child td a { |
| 6744 |
position: absolute; |
| 6745 |
} |
| 6746 |
.wp-adminify #wpbody-content .wp-adminify-server-info .adminify-system-progress, |
| 6747 |
.wp-adminify #wpbody-content .adminify-server-info .adminify-system-progress { |
| 6748 |
display: -webkit-box; |
| 6749 |
display: -webkit-flex; |
| 6750 |
display: -ms-flexbox; |
| 6751 |
display: flex; |
| 6752 |
-webkit-box-align: center; |
| 6753 |
-webkit-align-items: center; |
| 6754 |
-ms-flex-align: center; |
| 6755 |
align-items: center; |
| 6756 |
margin-top: 10px; |
| 6757 |
} |
| 6758 |
.wp-adminify #wpbody-content .wp-adminify-server-info .status-progressbar, |
| 6759 |
.wp-adminify #wpbody-content .adminify-server-info .status-progressbar { |
| 6760 |
background-color: #cfcfcf; |
| 6761 |
height: 5px; |
| 6762 |
width: 96px; |
| 6763 |
left: 0; |
| 6764 |
position: relative; |
| 6765 |
} |
| 6766 |
.wp-adminify #wpbody-content .wp-adminify-server-info .status-progressbar span, |
| 6767 |
.wp-adminify #wpbody-content .adminify-server-info .status-progressbar span { |
| 6768 |
background-color: var(--adminify-btn-bg); |
| 6769 |
-webkit-border-radius: 3px; |
| 6770 |
border-radius: 3px; |
| 6771 |
color: var(--adminify-text-color); |
| 6772 |
font-size: 12px; |
| 6773 |
bottom: -6px; |
| 6774 |
left: 101px; |
| 6775 |
min-width: 50px; |
| 6776 |
padding: 2px 6px; |
| 6777 |
position: absolute; |
| 6778 |
} |
| 6779 |
.wp-adminify #wpbody-content .wp-adminify-server-info .status-progressbar div, |
| 6780 |
.wp-adminify #wpbody-content .adminify-server-info .status-progressbar div { |
| 6781 |
background-color: var(--adminify-btn-bg); |
| 6782 |
height: 100%; |
| 6783 |
top: 0; |
| 6784 |
left: 0; |
| 6785 |
position: absolute; |
| 6786 |
} |
| 6787 |
.wp-adminify #wpbody-content .wp-adminify-server-info .status-progressbar .dashicons, |
| 6788 |
.wp-adminify #wpbody-content .adminify-server-info .status-progressbar .dashicons { |
| 6789 |
float: left; |
| 6790 |
} |
| 6791 |
.wp-adminify #wpbody-content .wp-adminify-server-info .dashicons, |
| 6792 |
.wp-adminify #wpbody-content .adminify-server-info .dashicons { |
| 6793 |
font-size: 18px; |
| 6794 |
margin: 0 3px 0 0; |
| 6795 |
} |
| 6796 |
.wp-adminify #wpbody-content #master-addons-news-feed .postbox-header .hndle { |
| 6797 |
-webkit-box-pack: start; |
| 6798 |
-webkit-justify-content: flex-start; |
| 6799 |
-ms-flex-pack: start; |
| 6800 |
justify-content: flex-start; |
| 6801 |
} |
| 6802 |
.wp-adminify #wpbody-content #master-addons-news-feed .master-addons-posts { |
| 6803 |
padding: 5px 15px; |
| 6804 |
} |
| 6805 |
.wp-adminify #wpbody-content #master-addons-news-feed .master-addons-posts p { |
| 6806 |
margin: 10px 0; |
| 6807 |
} |
| 6808 |
.wp-adminify #wpbody-content #master-addons-news-feed .inside, |
| 6809 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_news_feed .inside { |
| 6810 |
padding: 0; |
| 6811 |
} |
| 6812 |
.wp-adminify #wpbody-content #master-addons-news-feed ul, |
| 6813 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_news_feed ul { |
| 6814 |
margin: 0; |
| 6815 |
padding: 15px; |
| 6816 |
width: 100%; |
| 6817 |
} |
| 6818 |
.wp-adminify #wpbody-content #master-addons-news-feed li:last-child, |
| 6819 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_news_feed li:last-child { |
| 6820 |
margin-bottom: 0; |
| 6821 |
} |
| 6822 |
.wp-adminify #wpbody-content #master-addons-news-feed li a, |
| 6823 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_news_feed li a { |
| 6824 |
font-size: 14px; |
| 6825 |
font-weight: 600; |
| 6826 |
line-height: 20px; |
| 6827 |
} |
| 6828 |
.wp-adminify #wpbody-content #master-addons-news-feed li a .dashicons, |
| 6829 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_news_feed li a .dashicons { |
| 6830 |
font-size: 16px; |
| 6831 |
height: inherit; |
| 6832 |
width: inherit; |
| 6833 |
} |
| 6834 |
.wp-adminify #wpbody-content #master-addons-news-feed li.wp-adminify_overview__go-pro a, |
| 6835 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_news_feed li.wp-adminify_overview__go-pro a { |
| 6836 |
color: #ffa400; |
| 6837 |
} |
| 6838 |
.wp-adminify #wpbody-content #master-addons-news-feed .master-addons-dashboard_footer, |
| 6839 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_news_feed .wp-adminify-news-feed-dashboard_footer { |
| 6840 |
border-top: 1px solid #F1F1F3; |
| 6841 |
margin: 0; |
| 6842 |
padding: 0; |
| 6843 |
} |
| 6844 |
.wp-adminify #wpbody-content #master-addons-news-feed .master-addons-dashboard_footer li, |
| 6845 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_news_feed .wp-adminify-news-feed-dashboard_footer li { |
| 6846 |
margin-bottom: 0; |
| 6847 |
} |
| 6848 |
.wp-adminify #wpbody-content #master-addons-news-feed .master-addons-dashboard_footer li a, |
| 6849 |
.wp-adminify #wpbody-content #jltwp_adminify_dash_news_feed .wp-adminify-news-feed-dashboard_footer li a { |
| 6850 |
font-weight: 700; |
| 6851 |
line-height: 16px; |
| 6852 |
} |
| 6853 |
.wp-adminify.update-core-php h2 { |
| 6854 |
margin-top: 2.5rem; |
| 6855 |
} |
| 6856 |
.wp-adminify.update-core-php p { |
| 6857 |
color: #14142B; |
| 6858 |
margin: 0 0 10px; |
| 6859 |
} |
| 6860 |
.wp-adminify.update-core-php table { |
| 6861 |
margin-bottom: 1.5rem; |
| 6862 |
} |
| 6863 |
.wp-adminify #PHPinfo tbody td a { |
| 6864 |
position: relative !important; |
| 6865 |
} |
| 6866 |
.wp-adminify .wp-adminify-error-logs li { |
| 6867 |
font-size: 12px; |
| 6868 |
} |
| 6869 |
.wp-adminify body.wp-adminify { |
| 6870 |
--adminify-text-color: #fff; |
| 6871 |
} |
| 6872 |
.wp-adminify body.wp-adminify { |
| 6873 |
--adminify-text-color: #fff; |
| 6874 |
} |
| 6875 |
.wp-adminify #wpbody-content { |
| 6876 |
min-height: 93vh; |
| 6877 |
} |
| 6878 |
.wp-adminify #wpbody-content h2 { |
| 6879 |
font-size: 16px; |
| 6880 |
font-weight: 700; |
| 6881 |
line-height: 20px; |
| 6882 |
} |
| 6883 |
.wp-adminify #wpbody-content p code, |
| 6884 |
.wp-adminify #wpbody-content p kbd { |
| 6885 |
background-color: var(--adminify-preset-background); |
| 6886 |
color: #14142B; |
| 6887 |
} |
| 6888 |
.wp-adminify #wpbody-content .wp-adminify-notices h3 { |
| 6889 |
color: #000; |
| 6890 |
} |
| 6891 |
.wp-adminify #wpbody-content .wp-adminify-notices p { |
| 6892 |
color: #14142B; |
| 6893 |
} |
| 6894 |
.wp-adminify #wpbody-content .wp-adminify-notices #message { |
| 6895 |
padding: 12px 1rem; |
| 6896 |
position: relative; |
| 6897 |
} |
| 6898 |
.wp-adminify #wpbody-content .wp-adminify-notices #message .notice-dismiss { |
| 6899 |
line-height: 1; |
| 6900 |
margin: 0; |
| 6901 |
} |
| 6902 |
.wp-adminify #wpbody-content .notice, |
| 6903 |
.wp-adminify #wpbody-content .fs-notice, |
| 6904 |
.wp-adminify #wpbody-content .components-notice { |
| 6905 |
border-width: 0 0 0 4px; |
| 6906 |
border-style: solid; |
| 6907 |
border-color: transparent; |
| 6908 |
-webkit-border-radius: 6px; |
| 6909 |
border-radius: 6px; |
| 6910 |
-webkit-box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 6911 |
box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 6912 |
color: #14142B; |
| 6913 |
font-size: 14px; |
| 6914 |
font-weight: 400; |
| 6915 |
margin: 15px 0 20px; |
| 6916 |
padding: 15px 2.5rem 15px 1.125rem; |
| 6917 |
position: relative; |
| 6918 |
} |
| 6919 |
.wp-adminify #wpbody-content .notice p, |
| 6920 |
.wp-adminify #wpbody-content .notice .fs-notice-body, |
| 6921 |
.wp-adminify #wpbody-content .fs-notice p, |
| 6922 |
.wp-adminify #wpbody-content .fs-notice .fs-notice-body, |
| 6923 |
.wp-adminify #wpbody-content .components-notice p, |
| 6924 |
.wp-adminify #wpbody-content .components-notice .fs-notice-body { |
| 6925 |
color: #14142B; |
| 6926 |
font-weight: 600; |
| 6927 |
line-height: 20px; |
| 6928 |
margin: 0; |
| 6929 |
} |
| 6930 |
.wp-adminify #wpbody-content .notice p strong, |
| 6931 |
.wp-adminify #wpbody-content .notice .fs-notice-body strong, |
| 6932 |
.wp-adminify #wpbody-content .fs-notice p strong, |
| 6933 |
.wp-adminify #wpbody-content .fs-notice .fs-notice-body strong, |
| 6934 |
.wp-adminify #wpbody-content .components-notice p strong, |
| 6935 |
.wp-adminify #wpbody-content .components-notice .fs-notice-body strong { |
| 6936 |
font-style: italic; |
| 6937 |
} |
| 6938 |
.wp-adminify #wpbody-content .notice b, |
| 6939 |
.wp-adminify #wpbody-content .fs-notice b, |
| 6940 |
.wp-adminify #wpbody-content .components-notice b { |
| 6941 |
font-weight: 700; |
| 6942 |
font-style: italic; |
| 6943 |
} |
| 6944 |
.wp-adminify #wpbody-content .notice a:not([class*=button]), |
| 6945 |
.wp-adminify #wpbody-content .fs-notice a:not([class*=button]), |
| 6946 |
.wp-adminify #wpbody-content .components-notice a:not([class*=button]) { |
| 6947 |
color: var(--adminify-btn-bg); |
| 6948 |
text-decoration: none; |
| 6949 |
} |
| 6950 |
.wp-adminify #wpbody-content .notice button, |
| 6951 |
.wp-adminify #wpbody-content .notice .button, |
| 6952 |
.wp-adminify #wpbody-content .notice .button-primary, |
| 6953 |
.wp-adminify #wpbody-content .fs-notice button, |
| 6954 |
.wp-adminify #wpbody-content .fs-notice .button, |
| 6955 |
.wp-adminify #wpbody-content .fs-notice .button-primary, |
| 6956 |
.wp-adminify #wpbody-content .components-notice button, |
| 6957 |
.wp-adminify #wpbody-content .components-notice .button, |
| 6958 |
.wp-adminify #wpbody-content .components-notice .button-primary { |
| 6959 |
color: var(--adminify-text-color); |
| 6960 |
margin: 0; |
| 6961 |
} |
| 6962 |
.wp-adminify #wpbody-content .notice button:hover, |
| 6963 |
.wp-adminify #wpbody-content .notice .button:hover, |
| 6964 |
.wp-adminify #wpbody-content .notice .button-primary:hover, |
| 6965 |
.wp-adminify #wpbody-content .fs-notice button:hover, |
| 6966 |
.wp-adminify #wpbody-content .fs-notice .button:hover, |
| 6967 |
.wp-adminify #wpbody-content .fs-notice .button-primary:hover, |
| 6968 |
.wp-adminify #wpbody-content .components-notice button:hover, |
| 6969 |
.wp-adminify #wpbody-content .components-notice .button:hover, |
| 6970 |
.wp-adminify #wpbody-content .components-notice .button-primary:hover { |
| 6971 |
color: var(--adminify-btn-bg); |
| 6972 |
} |
| 6973 |
.wp-adminify #wpbody-content .notice button:focus, |
| 6974 |
.wp-adminify #wpbody-content .notice .button:focus, |
| 6975 |
.wp-adminify #wpbody-content .notice .button-primary:focus, |
| 6976 |
.wp-adminify #wpbody-content .fs-notice button:focus, |
| 6977 |
.wp-adminify #wpbody-content .fs-notice .button:focus, |
| 6978 |
.wp-adminify #wpbody-content .fs-notice .button-primary:focus, |
| 6979 |
.wp-adminify #wpbody-content .components-notice button:focus, |
| 6980 |
.wp-adminify #wpbody-content .components-notice .button:focus, |
| 6981 |
.wp-adminify #wpbody-content .components-notice .button-primary:focus { |
| 6982 |
background-color: var(--adminify-btn-bg); |
| 6983 |
} |
| 6984 |
.wp-adminify #wpbody-content .notice.notice-updated, .wp-adminify #wpbody-content .notice.updated, |
| 6985 |
.wp-adminify #wpbody-content .fs-notice.notice-updated, |
| 6986 |
.wp-adminify #wpbody-content .fs-notice.updated, |
| 6987 |
.wp-adminify #wpbody-content .components-notice.notice-updated, |
| 6988 |
.wp-adminify #wpbody-content .components-notice.updated { |
| 6989 |
border-color: var(--adminify-btn-bg); |
| 6990 |
} |
| 6991 |
.wp-adminify #wpbody-content .notice.notice-success, .wp-adminify #wpbody-content .notice.success, |
| 6992 |
.wp-adminify #wpbody-content .fs-notice.notice-success, |
| 6993 |
.wp-adminify #wpbody-content .fs-notice.success, |
| 6994 |
.wp-adminify #wpbody-content .components-notice.notice-success, |
| 6995 |
.wp-adminify #wpbody-content .components-notice.success { |
| 6996 |
border-color: #00a32a; |
| 6997 |
} |
| 6998 |
.wp-adminify #wpbody-content .notice.notice-warning.notice-alt, .wp-adminify #wpbody-content .notice.notice-warning, |
| 6999 |
.wp-adminify #wpbody-content .fs-notice.notice-warning.notice-alt, |
| 7000 |
.wp-adminify #wpbody-content .fs-notice.notice-warning, |
| 7001 |
.wp-adminify #wpbody-content .components-notice.notice-warning.notice-alt, |
| 7002 |
.wp-adminify #wpbody-content .components-notice.notice-warning { |
| 7003 |
border-color: #dba617; |
| 7004 |
} |
| 7005 |
.wp-adminify #wpbody-content .notice-dismiss, |
| 7006 |
.wp-adminify #wpbody-content .fs-close, |
| 7007 |
.wp-adminify #wpbody-content .e-notice__dismiss { |
| 7008 |
border: 2px solid #c30052; |
| 7009 |
-webkit-border-radius: 50%; |
| 7010 |
border-radius: 50%; |
| 7011 |
color: #c30052; |
| 7012 |
display: block; |
| 7013 |
cursor: pointer; |
| 7014 |
font-size: 0; |
| 7015 |
line-height: 1; |
| 7016 |
top: 10px; |
| 7017 |
right: 10px; |
| 7018 |
margin: 0; |
| 7019 |
text-align: center; |
| 7020 |
padding: 0; |
| 7021 |
position: absolute; |
| 7022 |
} |
| 7023 |
.wp-adminify #wpbody-content .notice-dismiss .dashicons { |
| 7024 |
font-size: 14px; |
| 7025 |
height: auto; |
| 7026 |
width: auto; |
| 7027 |
} |
| 7028 |
.wp-adminify #wpbody-content .notice-dismiss:before, |
| 7029 |
.wp-adminify #wpbody-content .notice-dismiss .dashicons:before, |
| 7030 |
.wp-adminify #wpbody-content .e-notice__dismiss:before { |
| 7031 |
content: "\f158"; |
| 7032 |
color: #c30052; |
| 7033 |
font-size: 14px; |
| 7034 |
font-family: dashicons; |
| 7035 |
height: 14px; |
| 7036 |
width: 15px; |
| 7037 |
line-height: 14px; |
| 7038 |
position: static; |
| 7039 |
} |
| 7040 |
.wp-adminify #wpbody-content .fs-close { |
| 7041 |
height: 18px; |
| 7042 |
width: 18px; |
| 7043 |
line-height: 14px; |
| 7044 |
} |
| 7045 |
.wp-adminify #wpbody-content .fs-close i { |
| 7046 |
color: #c30052; |
| 7047 |
font-size: 16px; |
| 7048 |
height: inherit; |
| 7049 |
width: inherit; |
| 7050 |
margin: -1px 0 0 -2px; |
| 7051 |
} |
| 7052 |
.wp-adminify #wpbody-content .fs-notice .fs-plugin-title { |
| 7053 |
background-color: #E5E5E5; |
| 7054 |
color: #14142B; |
| 7055 |
display: inline-block; |
| 7056 |
font-size: 12px; |
| 7057 |
font-weight: 600; |
| 7058 |
line-height: 20px; |
| 7059 |
margin-bottom: 0.5rem; |
| 7060 |
} |
| 7061 |
.wp-adminify #wpbody-content .adminify-pro-notice { |
| 7062 |
background-color: #fffbe9; |
| 7063 |
border-width: 0 0 0 2px; |
| 7064 |
border-style: solid; |
| 7065 |
border-color: #F4B740; |
| 7066 |
-webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1); |
| 7067 |
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1); |
| 7068 |
padding: 13px 1rem; |
| 7069 |
} |
| 7070 |
.wp-adminify #wpbody-content .adminify-pro-notice p { |
| 7071 |
color: #000; |
| 7072 |
line-height: 20px; |
| 7073 |
margin: 0; |
| 7074 |
} |
| 7075 |
.wp-adminify #wpbody-content .adminify-pro-notice p strong { |
| 7076 |
font-style: italic; |
| 7077 |
} |
| 7078 |
.wp-adminify #wpbody-content .adminify-pro-notice p a { |
| 7079 |
color: var(--adminify-btn-bg); |
| 7080 |
font-weight: 600; |
| 7081 |
text-decoration: none; |
| 7082 |
} |
| 7083 |
.wp-adminify #wpbody-content .wp-heading-inline { |
| 7084 |
color: #14142B; |
| 7085 |
font-size: 1.5rem; |
| 7086 |
font-weight: 600; |
| 7087 |
line-height: 32px; |
| 7088 |
padding: 0; |
| 7089 |
} |
| 7090 |
.wp-adminify #wpbody-content .page-title-action { |
| 7091 |
font-weight: 700; |
| 7092 |
float: right; |
| 7093 |
margin-bottom: 15px; |
| 7094 |
margin-left: 10px; |
| 7095 |
padding: 0 10px; |
| 7096 |
top: 10px; |
| 7097 |
} |
| 7098 |
.wp-adminify #wpbody-content .subsubsub { |
| 7099 |
margin-top: 0; |
| 7100 |
padding: 9px 0 0; |
| 7101 |
} |
| 7102 |
.wp-adminify #wpbody-content .subsubsub li { |
| 7103 |
font-size: 0; |
| 7104 |
} |
| 7105 |
.wp-adminify #wpbody-content .subsubsub li a { |
| 7106 |
background-color: var(--adminify-text-color); |
| 7107 |
border: 1px solid #E5E5E5; |
| 7108 |
-webkit-border-radius: 6px; |
| 7109 |
border-radius: 6px; |
| 7110 |
display: inline-block; |
| 7111 |
font-size: 14px; |
| 7112 |
font-weight: 600; |
| 7113 |
line-height: 19px; |
| 7114 |
margin-right: 5px; |
| 7115 |
padding: 7px 12px 8px; |
| 7116 |
} |
| 7117 |
.wp-adminify #wpbody-content .subsubsub li a .count { |
| 7118 |
background-color: var(--adminify-btn-bg); |
| 7119 |
-webkit-border-radius: 3rem; |
| 7120 |
border-radius: 3rem; |
| 7121 |
color: var(--adminify-text-color); |
| 7122 |
display: inline-block; |
| 7123 |
font-size: 10px; |
| 7124 |
float: right; |
| 7125 |
line-height: 11px; |
| 7126 |
margin: 3px 0 0 5px; |
| 7127 |
padding: 1px 4px; |
| 7128 |
text-align: center; |
| 7129 |
} |
| 7130 |
.wp-adminify #wpbody-content .subsubsub li a .count span { |
| 7131 |
color: var(--adminify-text-color); |
| 7132 |
font-size: 10px; |
| 7133 |
} |
| 7134 |
.wp-adminify #wpbody-content .subsubsub li a.current { |
| 7135 |
background-color: var(--adminify-text-color); |
| 7136 |
border-color: var(--adminify-btn-bg); |
| 7137 |
color: var(--adminify-btn-bg); |
| 7138 |
} |
| 7139 |
.wp-adminify #wpbody-content .subsubsub li a.current .count { |
| 7140 |
background-color: var(--adminify-btn-bg); |
| 7141 |
color: var(--adminify-text-color); |
| 7142 |
} |
| 7143 |
.wp-adminify #wpbody-content .subsubsub li:last-child a { |
| 7144 |
margin-right: 0; |
| 7145 |
} |
| 7146 |
.wp-adminify #wpbody-content .trash a, |
| 7147 |
.wp-adminify #wpbody-content .delete, |
| 7148 |
.wp-adminify #wpbody-content .delete a { |
| 7149 |
background-color: transparent; |
| 7150 |
color: var(--adminify-notif-bg-color); |
| 7151 |
height: auto; |
| 7152 |
width: auto; |
| 7153 |
max-height: inherit; |
| 7154 |
max-width: inherit; |
| 7155 |
} |
| 7156 |
.wp-adminify #wpbody-content .trash a:before, .wp-adminify #wpbody-content .trash a:after, |
| 7157 |
.wp-adminify #wpbody-content .delete:before, |
| 7158 |
.wp-adminify #wpbody-content .delete:after, |
| 7159 |
.wp-adminify #wpbody-content .delete a:before, |
| 7160 |
.wp-adminify #wpbody-content .delete a:after { |
| 7161 |
display: none; |
| 7162 |
} |
| 7163 |
.wp-adminify #wpbody-content .trash a:hover, |
| 7164 |
.wp-adminify #wpbody-content .delete:hover, |
| 7165 |
.wp-adminify #wpbody-content .delete a:hover { |
| 7166 |
background-color: transparent; |
| 7167 |
} |
| 7168 |
.wp-adminify #wpbody-content #screen-meta + .notice { |
| 7169 |
margin: 20px 20px 20px 0; |
| 7170 |
} |
| 7171 |
.wp-adminify #wpbody-content #message + .screen-reader-text + .subsubsub { |
| 7172 |
padding-top: 0; |
| 7173 |
} |
| 7174 |
.wp-adminify #wpbody-content .tablenav { |
| 7175 |
height: auto; |
| 7176 |
margin: 0; |
| 7177 |
padding: 1.125rem 0; |
| 7178 |
} |
| 7179 |
.wp-adminify #wpbody-content .tablenav .actions select { |
| 7180 |
background-color: var(--adminify-text-color); |
| 7181 |
background-position: right 10px top 55%; |
| 7182 |
padding-right: 30px; |
| 7183 |
} |
| 7184 |
.wp-adminify #wpbody-content .tablenav .actions input[type=submit] { |
| 7185 |
padding: 0 11.75px; |
| 7186 |
} |
| 7187 |
.wp-adminify #wpbody-content .tablenav .one-page { |
| 7188 |
margin: 0; |
| 7189 |
} |
| 7190 |
.wp-adminify #wpbody-content .tablenav .one-page .displaying-num { |
| 7191 |
background-color: var(--adminify-text-color); |
| 7192 |
border: 1px solid #F1F1F3; |
| 7193 |
-webkit-border-radius: 6px; |
| 7194 |
border-radius: 6px; |
| 7195 |
color: rgba(78, 75, 102, 0.72); |
| 7196 |
min-height: 36px; |
| 7197 |
display: inline-block; |
| 7198 |
font-size: 13px; |
| 7199 |
font-weight: 400; |
| 7200 |
line-height: 34px; |
| 7201 |
margin: 0; |
| 7202 |
padding: 0 10px; |
| 7203 |
} |
| 7204 |
.wp-adminify #wpbody-content .ac-table-actions a.ac-table-button.-edit-columns.last { |
| 7205 |
height: auto; |
| 7206 |
} |
| 7207 |
.wp-adminify #wpbody-content .ac-table-actions a.ac-table-button.-edit-columns.last .dashicons { |
| 7208 |
height: auto; |
| 7209 |
line-height: 34px; |
| 7210 |
} |
| 7211 |
.wp-adminify #wpbody-content .wp-list-table .hidden { |
| 7212 |
display: none !important; |
| 7213 |
} |
| 7214 |
.wp-adminify #wpbody-content .wp-list-table.widefat { |
| 7215 |
color: #4E4B66; |
| 7216 |
display: table; |
| 7217 |
table-layout: auto; |
| 7218 |
} |
| 7219 |
.wp-adminify #wpbody-content .wp-list-table.widefat td { |
| 7220 |
max-width: 300px; |
| 7221 |
padding: 20px 10px 17px; |
| 7222 |
word-break: break-all; |
| 7223 |
} |
| 7224 |
.wp-adminify #wpbody-content .wp-list-table.widefat td.colspanchange { |
| 7225 |
background-color: var(--adminify-preset-background); |
| 7226 |
} |
| 7227 |
.wp-adminify #wpbody-content .wp-list-table.widefat td.featured_image { |
| 7228 |
max-width: 80px; |
| 7229 |
} |
| 7230 |
.wp-adminify #wpbody-content .wp-list-table.widefat td.featured_image img { |
| 7231 |
-webkit-border-radius: 6px; |
| 7232 |
border-radius: 6px; |
| 7233 |
max-height: 58px; |
| 7234 |
max-width: 58px; |
| 7235 |
} |
| 7236 |
.wp-adminify #wpbody-content .wp-list-table.widefat td.title, .wp-adminify #wpbody-content .wp-list-table.widefat td.column-title { |
| 7237 |
min-width: 200px; |
| 7238 |
} |
| 7239 |
.wp-adminify #wpbody-content .wp-list-table.widefat tr { |
| 7240 |
position: relative; |
| 7241 |
} |
| 7242 |
.wp-adminify #wpbody-content .wp-list-table.widefat tr.no-items td { |
| 7243 |
padding: 12px 17px; |
| 7244 |
} |
| 7245 |
.wp-adminify #wpbody-content .wp-list-table.widefat tr:last-child td { |
| 7246 |
border-bottom: 0; |
| 7247 |
} |
| 7248 |
.wp-adminify #wpbody-content .wp-list-table.widefat th, |
| 7249 |
.wp-adminify #wpbody-content .wp-list-table.widefat td { |
| 7250 |
border-top: 0; |
| 7251 |
border-bottom: 1px solid #F1F1F3; |
| 7252 |
color: #4E4B66; |
| 7253 |
position: relative; |
| 7254 |
} |
| 7255 |
.wp-adminify #wpbody-content .wp-list-table.widefat th input, |
| 7256 |
.wp-adminify #wpbody-content .wp-list-table.widefat td input { |
| 7257 |
margin: 0; |
| 7258 |
} |
| 7259 |
.wp-adminify #wpbody-content .wp-list-table.widefat input[type=checkbox] { |
| 7260 |
-webkit-border-radius: 50%; |
| 7261 |
border-radius: 50%; |
| 7262 |
} |
| 7263 |
.wp-adminify #wpbody-content .wp-list-table.widefat p { |
| 7264 |
margin: 0; |
| 7265 |
} |
| 7266 |
.wp-adminify #wpbody-content .wp-list-table.widefat .post-com-count:after { |
| 7267 |
display: none; |
| 7268 |
} |
| 7269 |
.wp-adminify #wpbody-content .wp-list-table.widefat a { |
| 7270 |
color: var(--adminify-btn-bg); |
| 7271 |
font-size: 14px; |
| 7272 |
font-weight: 600; |
| 7273 |
} |
| 7274 |
.wp-adminify #wpbody-content .wp-list-table.widefat tr th { |
| 7275 |
color: #14142B; |
| 7276 |
font-size: 14px; |
| 7277 |
font-weight: 600; |
| 7278 |
padding: 17px 10px; |
| 7279 |
} |
| 7280 |
.wp-adminify #wpbody-content .wp-list-table.widefat tr th .comment-grey-bubble:before { |
| 7281 |
color: #4E4B66; |
| 7282 |
} |
| 7283 |
.wp-adminify #wpbody-content .wp-list-table.widefat thead th a { |
| 7284 |
padding: 0; |
| 7285 |
} |
| 7286 |
.wp-adminify #wpbody-content .wp-list-table.widefat thead th a .sorting-indicator { |
| 7287 |
display: none; |
| 7288 |
} |
| 7289 |
.wp-adminify #wpbody-content .wp-list-table.widefat tbody th { |
| 7290 |
padding: 15px 10px; |
| 7291 |
} |
| 7292 |
.wp-adminify #wpbody-content .wp-list-table.widefat tbody td { |
| 7293 |
display: table-cell; |
| 7294 |
padding: 15px 10px; |
| 7295 |
} |
| 7296 |
.wp-adminify #wpbody-content .wp-list-table.widefat tbody td.icon { |
| 7297 |
width: auto; |
| 7298 |
} |
| 7299 |
.wp-adminify #wpbody-content .wp-list-table.widefat tbody .check-column input[type=checkbox] { |
| 7300 |
margin: 2px 0 0; |
| 7301 |
} |
| 7302 |
.wp-adminify #wpbody-content .wp-list-table.widefat tbody .row-title { |
| 7303 |
font-size: 14px; |
| 7304 |
font-weight: 700; |
| 7305 |
} |
| 7306 |
.wp-adminify #wpbody-content .wp-list-table.widefat tbody .row-actions { |
| 7307 |
left: 0; |
| 7308 |
} |
| 7309 |
.wp-adminify #wpbody-content .wp-list-table.widefat tbody .row-actions.visible { |
| 7310 |
display: block; |
| 7311 |
} |
| 7312 |
.wp-adminify #wpbody-content .wp-list-table.widefat tbody .row-actions a { |
| 7313 |
font-size: 13px; |
| 7314 |
font-weight: 400; |
| 7315 |
} |
| 7316 |
.wp-adminify #wpbody-content .wp-list-table.widefat tbody .row-actions button { |
| 7317 |
color: var(--adminify-btn-bg); |
| 7318 |
} |
| 7319 |
.wp-adminify #wpbody-content .wp-list-table.widefat tbody .row-actions .delete a { |
| 7320 |
color: #c30052; |
| 7321 |
} |
| 7322 |
.wp-adminify #wpbody-content .wp-list-table.widefat tbody .date { |
| 7323 |
color: #14142B; |
| 7324 |
font-size: 13px; |
| 7325 |
font-weight: 400; |
| 7326 |
} |
| 7327 |
.wp-adminify #wpbody-content .wp-list-table.widefat tfoot td, |
| 7328 |
.wp-adminify #wpbody-content .wp-list-table.widefat tfoot th { |
| 7329 |
border-top: 1px solid #F1F1F3; |
| 7330 |
border-bottom: 0; |
| 7331 |
} |
| 7332 |
.wp-adminify #wpbody-content .wp-list-table.widefat tfoot td a, |
| 7333 |
.wp-adminify #wpbody-content .wp-list-table.widefat tfoot th a { |
| 7334 |
padding: 0; |
| 7335 |
} |
| 7336 |
.wp-adminify #wpbody-content .wp-list-table.widefat #the-comment-list span:not(.button span, [class*=-count-]), |
| 7337 |
.wp-adminify #wpbody-content .wp-list-table.widefat .row-actions span:not(.button span, [class*=-count-]), |
| 7338 |
.wp-adminify #wpbody-content .wp-list-table.widefat .table-view-list span:not(.button span, [class*=-count-]), |
| 7339 |
.wp-adminify #wpbody-content .wp-list-table.widefat .comments span:not(.button span, [class*=-count-]) { |
| 7340 |
font-size: 10px; |
| 7341 |
float: left; |
| 7342 |
line-height: 14px; |
| 7343 |
margin: 0 5px 5px 0; |
| 7344 |
} |
| 7345 |
.wp-adminify #wpbody-content .wp-list-table.widefat #the-comment-list strong, |
| 7346 |
.wp-adminify #wpbody-content .wp-list-table.widefat .row-actions strong, |
| 7347 |
.wp-adminify #wpbody-content .wp-list-table.widefat .table-view-list strong, |
| 7348 |
.wp-adminify #wpbody-content .wp-list-table.widefat .comments strong { |
| 7349 |
line-height: 20px; |
| 7350 |
} |
| 7351 |
.wp-adminify #wpbody-content .wp-list-table.widefat #the-comment-list .unapprove a, |
| 7352 |
.wp-adminify #wpbody-content .wp-list-table.widefat #the-comment-list .spam a, |
| 7353 |
.wp-adminify #wpbody-content .wp-list-table.widefat .row-actions .unapprove a, |
| 7354 |
.wp-adminify #wpbody-content .wp-list-table.widefat .row-actions .spam a, |
| 7355 |
.wp-adminify #wpbody-content .wp-list-table.widefat .table-view-list .unapprove a, |
| 7356 |
.wp-adminify #wpbody-content .wp-list-table.widefat .table-view-list .spam a, |
| 7357 |
.wp-adminify #wpbody-content .wp-list-table.widefat .comments .unapprove a, |
| 7358 |
.wp-adminify #wpbody-content .wp-list-table.widefat .comments .spam a { |
| 7359 |
color: var(--adminify-notif-bg-color); |
| 7360 |
} |
| 7361 |
.wp-adminify #wpbody-content .wp-list-table.widefat #the-comment-list .reply a, |
| 7362 |
.wp-adminify #wpbody-content .wp-list-table.widefat #the-comment-list .quickedit a, |
| 7363 |
.wp-adminify #wpbody-content .wp-list-table.widefat .row-actions .reply a, |
| 7364 |
.wp-adminify #wpbody-content .wp-list-table.widefat .row-actions .quickedit a, |
| 7365 |
.wp-adminify #wpbody-content .wp-list-table.widefat .table-view-list .reply a, |
| 7366 |
.wp-adminify #wpbody-content .wp-list-table.widefat .table-view-list .quickedit a, |
| 7367 |
.wp-adminify #wpbody-content .wp-list-table.widefat .comments .reply a, |
| 7368 |
.wp-adminify #wpbody-content .wp-list-table.widefat .comments .quickedit a { |
| 7369 |
color: #00BA88; |
| 7370 |
} |
| 7371 |
.wp-adminify #wpbody-content .wp-list-table.widefat #the-comment-list .trash a, |
| 7372 |
.wp-adminify #wpbody-content .wp-list-table.widefat .row-actions .trash a, |
| 7373 |
.wp-adminify #wpbody-content .wp-list-table.widefat .table-view-list .trash a, |
| 7374 |
.wp-adminify #wpbody-content .wp-list-table.widefat .comments .trash a { |
| 7375 |
color: #c30052; |
| 7376 |
} |
| 7377 |
.wp-adminify #wpbody-content .wp-list-table.widefat #the-comment-list button.editinline, |
| 7378 |
.wp-adminify #wpbody-content .wp-list-table.widefat #the-comment-list .comment-inline, |
| 7379 |
.wp-adminify #wpbody-content .wp-list-table.widefat .row-actions button.editinline, |
| 7380 |
.wp-adminify #wpbody-content .wp-list-table.widefat .row-actions .comment-inline, |
| 7381 |
.wp-adminify #wpbody-content .wp-list-table.widefat .table-view-list button.editinline, |
| 7382 |
.wp-adminify #wpbody-content .wp-list-table.widefat .table-view-list .comment-inline, |
| 7383 |
.wp-adminify #wpbody-content .wp-list-table.widefat .comments button.editinline, |
| 7384 |
.wp-adminify #wpbody-content .wp-list-table.widefat .comments .comment-inline { |
| 7385 |
color: #00BA88; |
| 7386 |
font-size: 13px; |
| 7387 |
font-weight: 400; |
| 7388 |
line-height: 14px; |
| 7389 |
} |
| 7390 |
.wp-adminify #wpbody-content .wp-list-table.widefat #the-comment-list .submitted-on a, |
| 7391 |
.wp-adminify #wpbody-content .wp-list-table.widefat .row-actions .submitted-on a, |
| 7392 |
.wp-adminify #wpbody-content .wp-list-table.widefat .table-view-list .submitted-on a, |
| 7393 |
.wp-adminify #wpbody-content .wp-list-table.widefat .comments .submitted-on a { |
| 7394 |
color: rgba(78, 75, 102, 0.72); |
| 7395 |
font-size: 13px; |
| 7396 |
font-weight: 400; |
| 7397 |
} |
| 7398 |
.wp-adminify #wpbody-content .wp-list-table.widefat #the-comment-list .response-links a, |
| 7399 |
.wp-adminify #wpbody-content .wp-list-table.widefat .row-actions .response-links a, |
| 7400 |
.wp-adminify #wpbody-content .wp-list-table.widefat .table-view-list .response-links a, |
| 7401 |
.wp-adminify #wpbody-content .wp-list-table.widefat .comments .response-links a { |
| 7402 |
font-size: 13px; |
| 7403 |
} |
| 7404 |
.wp-adminify #wpbody-content .wp-list-table.widefat #the-comment-list .comments-view-item-link, |
| 7405 |
.wp-adminify #wpbody-content .wp-list-table.widefat .row-actions .comments-view-item-link, |
| 7406 |
.wp-adminify #wpbody-content .wp-list-table.widefat .table-view-list .comments-view-item-link, |
| 7407 |
.wp-adminify #wpbody-content .wp-list-table.widefat .comments .comments-view-item-link { |
| 7408 |
font-weight: 400; |
| 7409 |
} |
| 7410 |
.wp-adminify #wpbody-content #posts-filter .wp-filter { |
| 7411 |
background-color: transparent; |
| 7412 |
border: none; |
| 7413 |
-webkit-box-shadow: none; |
| 7414 |
box-shadow: none; |
| 7415 |
margin-bottom: 0; |
| 7416 |
padding: 0; |
| 7417 |
} |
| 7418 |
.wp-adminify #wpbody-content #posts-filter .wp-filter .view-switch { |
| 7419 |
margin-left: 0; |
| 7420 |
} |
| 7421 |
.wp-adminify #wpbody-content #posts-filter .wp-filter .view-switch a { |
| 7422 |
text-align: left; |
| 7423 |
} |
| 7424 |
.wp-adminify #wpbody-content #posts-filter .wp-filter .view-switch a:before { |
| 7425 |
color: rgba(3, 71, 255, 0.17); |
| 7426 |
} |
| 7427 |
.wp-adminify #wpbody-content #posts-filter .wp-filter .view-switch a.current:before { |
| 7428 |
color: var(--adminify-btn-bg); |
| 7429 |
} |
| 7430 |
.wp-adminify #wpbody-content #posts-filter .wp-filter select { |
| 7431 |
background-color: var(--adminify-text-color); |
| 7432 |
border: 1px solid #F1F1F3; |
| 7433 |
-webkit-border-radius: 6px; |
| 7434 |
border-radius: 6px; |
| 7435 |
color: rgba(78, 75, 102, 0.72); |
| 7436 |
min-height: 36px; |
| 7437 |
font-size: 14px; |
| 7438 |
font-weight: 400; |
| 7439 |
line-height: 20px; |
| 7440 |
min-height: 36px; |
| 7441 |
} |
| 7442 |
.wp-adminify #wpbody-content #posts-filter input[type=submit] { |
| 7443 |
background-color: transparent; |
| 7444 |
color: var(--adminify-btn-bg); |
| 7445 |
} |
| 7446 |
.wp-adminify #wpbody-content #posts-filter input[type=submit]:hover { |
| 7447 |
background-color: var(--adminify-btn-bg); |
| 7448 |
color: var(--adminify-text-color); |
| 7449 |
} |
| 7450 |
.wp-adminify #wpbody-content .tablenav-pages .displaying-num { |
| 7451 |
color: #4E4B66; |
| 7452 |
font-size: 14px; |
| 7453 |
font-weight: 400; |
| 7454 |
} |
| 7455 |
.wp-adminify #wpbody-content .tablenav-pages .pagination-links .button, |
| 7456 |
.wp-adminify #wpbody-content .tablenav-pages .pagination-links input { |
| 7457 |
border-color: var(--adminify-btn-bg); |
| 7458 |
color: var(--adminify-btn-bg); |
| 7459 |
display: inline-block; |
| 7460 |
font-size: 22px; |
| 7461 |
height: 36px; |
| 7462 |
min-width: 36px; |
| 7463 |
line-height: 32px; |
| 7464 |
min-height: inherit; |
| 7465 |
padding: 0; |
| 7466 |
} |
| 7467 |
.wp-adminify #wpbody-content .tablenav-pages .pagination-links .button.disabled, |
| 7468 |
.wp-adminify #wpbody-content .tablenav-pages .pagination-links input.disabled { |
| 7469 |
background-color: var(--adminify-text-color); |
| 7470 |
border: 1px solid rgba(3, 71, 255, 0.17); |
| 7471 |
color: rgba(3, 71, 255, 0.17); |
| 7472 |
} |
| 7473 |
.wp-adminify #wpbody-content .tablenav-pages .pagination-links .current-page { |
| 7474 |
border-color: var(--adminify-btn-bg); |
| 7475 |
color: var(--adminify-btn-bg); |
| 7476 |
font-size: 14px; |
| 7477 |
position: relative; |
| 7478 |
top: -2px; |
| 7479 |
} |
| 7480 |
.wp-adminify #wpbody-content .tablenav-pages .pagination-links input[type=text] { |
| 7481 |
padding: 8px 5px; |
| 7482 |
} |
| 7483 |
.wp-adminify #wpcontent .response-links .post-com-count, |
| 7484 |
.wp-adminify #wpcontent .column-comments .post-com-count { |
| 7485 |
position: relative; |
| 7486 |
} |
| 7487 |
.wp-adminify #wpcontent .response-links .post-com-count:before, |
| 7488 |
.wp-adminify #wpcontent .column-comments .post-com-count:before { |
| 7489 |
content: url("data:image/svg+xml; utf8, %3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.25 13.75V1.75C0.25 0.921573 0.921572 0.25 1.75 0.25H12.25C13.0784 0.25 13.75 0.921573 13.75 1.75V9.25C13.75 10.0784 13.0784 10.75 12.25 10.75H4.75C4.42535 10.7494 4.10936 10.8547 3.85 11.05L0.25 13.75ZM1.75 1.75V10.75L3.3505 9.55C3.60973 9.35448 3.9258 9.24913 4.2505 9.25H12.25V1.75H1.75Z' fill='%234E4B66'%3E%3C/path%3E%3C/svg%3E"); |
| 7490 |
float: left; |
| 7491 |
max-width: 14px; |
| 7492 |
} |
| 7493 |
.wp-adminify #wpcontent .response-links .post-com-count .comment-count-approved, |
| 7494 |
.wp-adminify #wpcontent .column-comments .post-com-count .comment-count-approved { |
| 7495 |
background-color: var(--adminify-notif-bg-color); |
| 7496 |
-webkit-border-radius: 3rem; |
| 7497 |
border-radius: 3rem; |
| 7498 |
color: var(--adminify-text-color); |
| 7499 |
font-size: 8px; |
| 7500 |
height: auto; |
| 7501 |
line-height: 13px; |
| 7502 |
margin-left: 20px; |
| 7503 |
min-width: inherit; |
| 7504 |
padding: 0 4px; |
| 7505 |
} |
| 7506 |
.wp-adminify #wpbody-content #poststuff { |
| 7507 |
padding-top: 30px; |
| 7508 |
} |
| 7509 |
.wp-adminify #wpbody-content .postbox-container .misc-pub-section { |
| 7510 |
color: #14142B; |
| 7511 |
font-size: 13px; |
| 7512 |
line-height: 20px; |
| 7513 |
padding: 6px 15px; |
| 7514 |
} |
| 7515 |
.wp-adminify #wpbody-content .postbox-container .misc-pub-section button { |
| 7516 |
margin: 10px 0; |
| 7517 |
} |
| 7518 |
.wp-adminify #wpbody-content .postbox-container #major-publishing-actions { |
| 7519 |
background-color: var(--adminify-text-color); |
| 7520 |
-webkit-border-bottom-left-radius: 8px; |
| 7521 |
border-bottom-left-radius: 8px; |
| 7522 |
-webkit-border-bottom-right-radius: 8px; |
| 7523 |
border-bottom-right-radius: 8px; |
| 7524 |
} |
| 7525 |
.wp-adminify #wpbody-content .postbox-container .postbox .inside p { |
| 7526 |
margin-bottom: 5px; |
| 7527 |
} |
| 7528 |
.wp-adminify #wpbody-content .postbox-container .postbox .inside select { |
| 7529 |
background-color: var(--adminify-text-color); |
| 7530 |
border: 1px solid #F1F1F3; |
| 7531 |
-webkit-border-radius: 6px; |
| 7532 |
border-radius: 6px; |
| 7533 |
color: rgba(78, 75, 102, 0.72); |
| 7534 |
min-height: 36px; |
| 7535 |
} |
| 7536 |
.wp-adminify #wpbody-content .postbox-container .disable-section-meta div { |
| 7537 |
padding: 3px 0; |
| 7538 |
} |
| 7539 |
.wp-adminify #wpbody-content .postbox-container .category-tabs li { |
| 7540 |
-webkit-border-top-left-radius: 3px; |
| 7541 |
border-top-left-radius: 3px; |
| 7542 |
-webkit-border-top-right-radius: 3px; |
| 7543 |
border-top-right-radius: 3px; |
| 7544 |
} |
| 7545 |
.wp-adminify #wpbody-content .postbox-container .category-tabs li a { |
| 7546 |
color: var(--adminify-btn-bg); |
| 7547 |
font-size: 14px; |
| 7548 |
font-weight: 600; |
| 7549 |
line-height: 20px; |
| 7550 |
} |
| 7551 |
.wp-adminify #wpbody-content .postbox-container .category-tabs li.tabs { |
| 7552 |
border-bottom-color: var(--adminify-btn-bg); |
| 7553 |
} |
| 7554 |
.wp-adminify #wpbody-content .postbox-container .category-tabs li.tabs a { |
| 7555 |
color: #14142B; |
| 7556 |
} |
| 7557 |
.wp-adminify #wpbody-content .postbox-container .category-tabs { |
| 7558 |
margin: 0; |
| 7559 |
} |
| 7560 |
.wp-adminify #wpbody-content .postbox-container .category-tabs li { |
| 7561 |
float: left; |
| 7562 |
margin: 0; |
| 7563 |
padding: 0; |
| 7564 |
} |
| 7565 |
.wp-adminify #wpbody-content .postbox-container .category-tabs li a { |
| 7566 |
border-bottom: 2px solid transparent; |
| 7567 |
-webkit-border-top-left-radius: 6px; |
| 7568 |
border-top-left-radius: 6px; |
| 7569 |
-webkit-border-top-right-radius: 6px; |
| 7570 |
border-top-right-radius: 6px; |
| 7571 |
color: #4E4B66; |
| 7572 |
display: inline-block; |
| 7573 |
padding: 5px 10px; |
| 7574 |
} |
| 7575 |
.wp-adminify #wpbody-content .postbox-container .category-tabs li.tabs a { |
| 7576 |
border-bottom-color: var(--adminify-btn-bg); |
| 7577 |
color: var(--adminify-btn-bg); |
| 7578 |
} |
| 7579 |
.wp-adminify #wpbody-content .postbox-container .tabs-panel { |
| 7580 |
clear: both; |
| 7581 |
padding: 0; |
| 7582 |
} |
| 7583 |
.wp-adminify #wpbody-content .postbox-container .tabs-panel .categorychecklist li { |
| 7584 |
padding: 5px 10px; |
| 7585 |
} |
| 7586 |
.wp-adminify #wpbody-content .postbox-container .tabs-panel label { |
| 7587 |
color: rgba(78, 75, 102, 0.72); |
| 7588 |
font-size: 14px; |
| 7589 |
font-weight: 600; |
| 7590 |
line-height: 20px; |
| 7591 |
} |
| 7592 |
.wp-adminify #wpbody-content .postbox-container .tabs-panel label input[type=checkbox] { |
| 7593 |
float: left; |
| 7594 |
margin: 3px 8px 0 0; |
| 7595 |
} |
| 7596 |
.wp-adminify #wpbody-content .postbox-container .taxonomy-add-new { |
| 7597 |
color: var(--adminify-btn-bg); |
| 7598 |
font-size: 14px; |
| 7599 |
font-weight: 600; |
| 7600 |
line-height: 20px; |
| 7601 |
} |
| 7602 |
.wp-adminify #wpbody-content .postbox-container .category-add { |
| 7603 |
margin: 0; |
| 7604 |
} |
| 7605 |
.wp-adminify #wpbody-content .postbox-container .category-add input, |
| 7606 |
.wp-adminify #wpbody-content .postbox-container .category-add select { |
| 7607 |
background-color: var(--adminify-text-color); |
| 7608 |
border: 1px solid #F1F1F3; |
| 7609 |
-webkit-border-radius: 6px; |
| 7610 |
border-radius: 6px; |
| 7611 |
color: rgba(78, 75, 102, 0.72); |
| 7612 |
min-height: 36px; |
| 7613 |
} |
| 7614 |
.wp-adminify #wpbody-content .postbox-container .tagcloud-link { |
| 7615 |
color: var(--adminify-btn-bg); |
| 7616 |
} |
| 7617 |
.wp-adminify.block-editor-page .adminify-top_bar nav.adminify-top-navbar .navbar-brand .navbar-burger { |
| 7618 |
display: none; |
| 7619 |
} |
| 7620 |
.wp-adminify.block-editor-page .interface-interface-skeleton { |
| 7621 |
border-top: 1px solid var(--adminify-preset-background); |
| 7622 |
border-left: 1px solid var(--adminify-preset-background); |
| 7623 |
top: 70px; |
| 7624 |
left: 70px; |
| 7625 |
} |
| 7626 |
.wp-adminify.block-editor-page .interface-interface-skeleton .interface-interface-skeleton__header { |
| 7627 |
z-index: 1; |
| 7628 |
} |
| 7629 |
.wp-adminify.block-editor-page .interface-interface-skeleton .interface-interface-skeleton__header .components-dropdown-menu__toggle.has-icon { |
| 7630 |
height: 36px; |
| 7631 |
} |
| 7632 |
.wp-adminify.block-editor-page .edit-post-header-toolbar__block-toolbar:not(.is-pushed-down) .block-editor-block-toolbar, |
| 7633 |
.wp-adminify.block-editor-page .block-editor-block-toolbar .components-toolbar, |
| 7634 |
.wp-adminify.block-editor-page .block-editor-block-toolbar .components-toolbar-group { |
| 7635 |
border: 0; |
| 7636 |
} |
| 7637 |
.wp-adminify.block-editor-page .components-combobox-control__suggestions-container { |
| 7638 |
border: 0; |
| 7639 |
-webkit-box-shadow: none; |
| 7640 |
box-shadow: none; |
| 7641 |
padding: 0; |
| 7642 |
} |
| 7643 |
.wp-adminify.block-editor-page .components-combobox-control__suggestions-container:focus { |
| 7644 |
border: 0; |
| 7645 |
-webkit-box-shadow: none; |
| 7646 |
box-shadow: none; |
| 7647 |
outline: 0; |
| 7648 |
} |
| 7649 |
.wp-adminify.block-editor-page .components-combobox-control__suggestions-container .components-combobox-control__reset { |
| 7650 |
opacity: 1; |
| 7651 |
} |
| 7652 |
.wp-adminify.block-editor-page .components-combobox-control__suggestions-container .components-combobox-control__reset svg { |
| 7653 |
fill: var(--adminify-notif-bg-color); |
| 7654 |
} |
| 7655 |
.wp-adminify.block-editor-page .components-custom-select-control__menu { |
| 7656 |
border-color: #F1F1F3; |
| 7657 |
} |
| 7658 |
.wp-adminify.block-editor-page .components-custom-select-control__menu li { |
| 7659 |
line-height: initial; |
| 7660 |
} |
| 7661 |
.wp-adminify.block-editor-page .editor-post-publish-panel .components-button.is-secondary { |
| 7662 |
background-color: transparent; |
| 7663 |
} |
| 7664 |
.wp-adminify.block-editor-page .editor-post-publish-panel .post-publish-panel__postpublish .components-panel__body .post-publish-panel__postpublish-buttons .components-button { |
| 7665 |
padding: 0 !important; |
| 7666 |
font-size: 12px !important; |
| 7667 |
} |
| 7668 |
.wp-adminify #wpbody-content .wp-editor-container { |
| 7669 |
border: 1px solid #F1F1F3; |
| 7670 |
-webkit-border-radius: 6px; |
| 7671 |
border-radius: 6px; |
| 7672 |
-webkit-box-shadow: none; |
| 7673 |
box-shadow: none; |
| 7674 |
} |
| 7675 |
.wp-adminify #wpbody-content .wp-editor-container .quicktags-toolbar { |
| 7676 |
background-color: #F1F1F3; |
| 7677 |
border-bottom: 1px solid #F1F1F3; |
| 7678 |
-webkit-border-top-left-radius: 6px; |
| 7679 |
border-top-left-radius: 6px; |
| 7680 |
-webkit-border-top-right-radius: 6px; |
| 7681 |
border-top-right-radius: 6px; |
| 7682 |
} |
| 7683 |
.wp-adminify #wpbody-content .wp-editor-container .quicktags-toolbar input[type=button] { |
| 7684 |
background-color: var(--adminify-text-color); |
| 7685 |
border: 1px solid #F1F1F3; |
| 7686 |
color: #4E4B66; |
| 7687 |
font-size: 13px; |
| 7688 |
height: auto; |
| 7689 |
line-height: 28px; |
| 7690 |
min-height: inherit; |
| 7691 |
padding: 0 10px; |
| 7692 |
} |
| 7693 |
.wp-adminify #wpbody-content #post-body-content #edit-slug-box { |
| 7694 |
color: #14142B; |
| 7695 |
margin-bottom: 5px; |
| 7696 |
} |
| 7697 |
.wp-adminify #wpbody-content #post-body-content #edit-slug-box a { |
| 7698 |
color: var(--adminify-btn-bg); |
| 7699 |
} |
| 7700 |
.wp-adminify #wpbody-content #post-body-content .postarea #post-status-info { |
| 7701 |
margin-top: 1rem; |
| 7702 |
} |
| 7703 |
.wp-adminify #wpbody-content #post-body-content .postarea #post-status-info td { |
| 7704 |
color: rgba(78, 75, 102, 0.72); |
| 7705 |
font-size: 14px; |
| 7706 |
padding: 7px 10px; |
| 7707 |
} |
| 7708 |
.wp-adminify #wpbody-content #post-body-content .wp-editor-wrap, |
| 7709 |
.wp-adminify #wpbody-content #post-body-content div.mce-edit-area { |
| 7710 |
padding-top: 0 !important; |
| 7711 |
} |
| 7712 |
.wp-adminify #wpbody-content #post-body-content .wp-editor-tools { |
| 7713 |
background-color: transparent; |
| 7714 |
padding-top: 0; |
| 7715 |
} |
| 7716 |
.wp-adminify #wpbody-content #post-body-content .wp-editor-tools, |
| 7717 |
.wp-adminify #wpbody-content #post-body-content .mce-toolbar-grp { |
| 7718 |
position: initial !important; |
| 7719 |
} |
| 7720 |
.wp-adminify #wpbody-content #_wp_adminify_admin_page_display .inside { |
| 7721 |
padding: 0; |
| 7722 |
} |
| 7723 |
.wp-adminify #wpbody-content #_wp_adminify_admin_page_display .inside .adminify-nav-background { |
| 7724 |
background-color: transparent; |
| 7725 |
} |
| 7726 |
.wp-adminify #wpbody-content #_wp_adminify_admin_page_display .inside .adminify-metabox { |
| 7727 |
margin: 0; |
| 7728 |
} |
| 7729 |
.wp-adminify #wpbody-content #_wp_adminify_admin_page_display .inside .adminify-metabox li a:not(.search-choice-close) { |
| 7730 |
background-color: var(--adminify-text-color); |
| 7731 |
border-bottom: 1px solid #F1F1F3; |
| 7732 |
color: #14142B; |
| 7733 |
font-size: 14px; |
| 7734 |
font-weight: 600; |
| 7735 |
padding: 14px 16px; |
| 7736 |
} |
| 7737 |
.wp-adminify #wpbody-content #_wp_adminify_admin_page_display .inside .adminify-metabox li:last-child a { |
| 7738 |
border-bottom: 0; |
| 7739 |
} |
| 7740 |
.wp-adminify #wpbody-content #_wp_adminify_admin_page_display .inside .adminify-sections { |
| 7741 |
border-left: 1px solid #F1F1F3; |
| 7742 |
} |
| 7743 |
.wp-adminify #wpbody-content #_wp_adminify_admin_page_display .inside .adminify-sections .chosen-container-multi .chosen-choices { |
| 7744 |
background-image: none; |
| 7745 |
-webkit-box-shadow: none; |
| 7746 |
box-shadow: none; |
| 7747 |
background-color: var(--adminify-text-color); |
| 7748 |
border: 1px solid #F1F1F3; |
| 7749 |
-webkit-border-radius: 6px; |
| 7750 |
border-radius: 6px; |
| 7751 |
color: rgba(78, 75, 102, 0.72); |
| 7752 |
min-height: 36px; |
| 7753 |
line-height: 36px; |
| 7754 |
} |
| 7755 |
.wp-adminify #wpbody-content #_wp_adminify_admin_page_display .inside .adminify-sections .chosen-container-multi .chosen-choices:focus-visible { |
| 7756 |
outline: 0; |
| 7757 |
} |
| 7758 |
.wp-adminify #wpbody-content #_wp_adminify_admin_page_display .inside .adminify-sections .adminify-siblings .adminify--sibling { |
| 7759 |
background-color: var(--adminify-text-color); |
| 7760 |
border: 1px solid #F1F1F3; |
| 7761 |
color: rgba(78, 75, 102, 0.72); |
| 7762 |
font-size: 14px; |
| 7763 |
font-weight: 600; |
| 7764 |
line-height: 34px; |
| 7765 |
padding: 0 1rem; |
| 7766 |
} |
| 7767 |
.wp-adminify #wpbody-content #_wp_adminify_admin_page_display .inside .adminify-sections .adminify-siblings .adminify--sibling:first-child { |
| 7768 |
border-right: 0; |
| 7769 |
} |
| 7770 |
.wp-adminify #wpbody-content #_wp_adminify_admin_page_display .inside .adminify-sections .adminify-siblings .adminify--sibling:last-child { |
| 7771 |
border-left: 0; |
| 7772 |
} |
| 7773 |
.wp-adminify #wpbody-content #_wp_adminify_admin_page_display .inside .adminify-sections .adminify-siblings .adminify--sibling.adminify--active { |
| 7774 |
background-color: var(--adminify-btn-bg); |
| 7775 |
border-color: var(--adminify-btn-bg); |
| 7776 |
color: var(--adminify-text-color); |
| 7777 |
} |
| 7778 |
.wp-adminify #wpbody-content .interface-interface-skeleton__header { |
| 7779 |
border-bottom: none; |
| 7780 |
-webkit-box-shadow: 0px 0px 5px rgba(78, 75, 102, 0.1); |
| 7781 |
box-shadow: 0px 0px 5px rgba(78, 75, 102, 0.1); |
| 7782 |
} |
| 7783 |
.wp-adminify #wpbody-content .interface-interface-skeleton__header .edit-post-header .edit-post-header-toolbar__left button { |
| 7784 |
color: #4E4B66 !important; |
| 7785 |
display: -webkit-box; |
| 7786 |
display: -webkit-flex; |
| 7787 |
display: -ms-flexbox; |
| 7788 |
display: flex; |
| 7789 |
-webkit-align-content: center; |
| 7790 |
-ms-flex-line-pack: center; |
| 7791 |
align-content: center; |
| 7792 |
height: auto; |
| 7793 |
width: auto; |
| 7794 |
line-height: 20px !important; |
| 7795 |
min-width: inherit; |
| 7796 |
text-align: center; |
| 7797 |
padding: 0 6px !important; |
| 7798 |
} |
| 7799 |
.wp-adminify #wpbody-content .interface-interface-skeleton__header .edit-post-header .edit-post-header-toolbar__left button svg path { |
| 7800 |
fill: #4E4B66; |
| 7801 |
} |
| 7802 |
.wp-adminify #wpbody-content .interface-interface-skeleton__header .edit-post-header .edit-post-header-toolbar__left button.components-button.is-primary { |
| 7803 |
background-color: transparent !important; |
| 7804 |
border: 2px solid var(--adminify-btn-bg) !important; |
| 7805 |
-webkit-border-radius: 50%; |
| 7806 |
border-radius: 50%; |
| 7807 |
color: var(--adminify-btn-bg) !important; |
| 7808 |
height: 24px; |
| 7809 |
width: 24px; |
| 7810 |
min-width: inherit; |
| 7811 |
padding: 0 !important; |
| 7812 |
} |
| 7813 |
.wp-adminify #wpbody-content .interface-interface-skeleton__header .edit-post-header .edit-post-header-toolbar__left button.components-button.is-primary svg path { |
| 7814 |
fill: var(--adminify-btn-bg); |
| 7815 |
} |
| 7816 |
.wp-adminify #wpbody-content .interface-interface-skeleton__header .edit-post-header .edit-post-header-toolbar button.button-primary { |
| 7817 |
font-size: 14px; |
| 7818 |
height: auto; |
| 7819 |
min-height: inherit; |
| 7820 |
line-height: 34px; |
| 7821 |
margin: 0 5px; |
| 7822 |
} |
| 7823 |
.wp-adminify #wpbody-content .interface-interface-skeleton__header .edit-post-header .edit-post-header-toolbar button.button-primary i { |
| 7824 |
font-size: 100%; |
| 7825 |
} |
| 7826 |
.wp-adminify #wpbody-content .interface-interface-skeleton__header .edit-post-header .edit-post-fullscreen-mode-close.has-icon { |
| 7827 |
background-color: #14142B; |
| 7828 |
} |
| 7829 |
.wp-adminify #wpbody-content .interface-interface-skeleton__header .edit-post-header .edit-post-fullscreen-mode-close.has-icon:before { |
| 7830 |
-webkit-box-shadow: none; |
| 7831 |
box-shadow: none; |
| 7832 |
} |
| 7833 |
.wp-adminify #wpbody-content .interface-interface-skeleton__header .edit-post-header .edit-post-header__settings button { |
| 7834 |
-webkit-border-radius: 6px; |
| 7835 |
border-radius: 6px; |
| 7836 |
font-size: 14px; |
| 7837 |
font-weight: 700; |
| 7838 |
outline: 0; |
| 7839 |
} |
| 7840 |
.wp-adminify #wpbody-content .interface-interface-skeleton__header .edit-post-header .edit-post-header__settings button:hover, .wp-adminify #wpbody-content .interface-interface-skeleton__header .edit-post-header .edit-post-header__settings button:focus { |
| 7841 |
-webkit-box-shadow: none; |
| 7842 |
box-shadow: none; |
| 7843 |
outline: 0; |
| 7844 |
} |
| 7845 |
.wp-adminify #wpbody-content .interface-interface-skeleton__header .edit-post-header .edit-post-header__settings button.block-editor-post-preview__button-toggle { |
| 7846 |
background-color: var(--adminify-text-color); |
| 7847 |
border: 1px solid var(--adminify-btn-bg); |
| 7848 |
color: var(--adminify-btn-bg); |
| 7849 |
padding: 0 10px; |
| 7850 |
} |
| 7851 |
.wp-adminify #wpbody-content .interface-interface-skeleton__header .edit-post-header .edit-post-header__settings button.block-editor-post-preview__button-toggle:hover { |
| 7852 |
background-color: var(--adminify-btn-bg) !important; |
| 7853 |
color: var(--adminify-text-color) !important; |
| 7854 |
} |
| 7855 |
.wp-adminify #wpbody-content .interface-interface-skeleton__header .edit-post-header .edit-post-header__settings button.editor-post-publish-button__button { |
| 7856 |
background-color: var(--adminify-btn-bg); |
| 7857 |
border: 1px solid var(--adminify-btn-bg); |
| 7858 |
color: var(--adminify-text-color); |
| 7859 |
cursor: pointer; |
| 7860 |
} |
| 7861 |
.wp-adminify #wpbody-content .interface-interface-skeleton__header .edit-post-header .edit-post-header__settings button.editor-post-publish-button__button:hover { |
| 7862 |
background-color: var(--adminify-text-color) !important; |
| 7863 |
border-color: var(--adminify-btn-bg) !important; |
| 7864 |
color: var(--adminify-btn-bg) !important; |
| 7865 |
} |
| 7866 |
.wp-adminify #wpbody-content .interface-interface-skeleton__header .edit-post-header .edit-post-header__settings .interface-pinned-items button.has-icon { |
| 7867 |
background-color: #4E4B66; |
| 7868 |
padding: 0; |
| 7869 |
} |
| 7870 |
.wp-adminify #wpbody-content .interface-interface-skeleton__header .edit-post-header .edit-post-header__settings .interface-pinned-items button.has-icon svg path { |
| 7871 |
color: var(--adminify-text-color); |
| 7872 |
} |
| 7873 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .block-editor-inserter__content .block-editor-inserter__search-input, |
| 7874 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .block-editor-inserter__search .block-editor-inserter__search-input { |
| 7875 |
height: auto; |
| 7876 |
} |
| 7877 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .block-editor-inserter__tabs .components-tab-panel__tabs { |
| 7878 |
border-bottom: 1px solid #D8D8D8; |
| 7879 |
top: 60px; |
| 7880 |
} |
| 7881 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .block-editor-inserter__tabs .components-tab-panel__tabs button { |
| 7882 |
-webkit-box-shadow: none; |
| 7883 |
box-shadow: none; |
| 7884 |
color: #4E4B66; |
| 7885 |
font-size: 14px; |
| 7886 |
font-weight: 600; |
| 7887 |
line-height: 30px; |
| 7888 |
height: auto; |
| 7889 |
margin-bottom: -2px; |
| 7890 |
} |
| 7891 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .block-editor-inserter__tabs .components-tab-panel__tabs button:before { |
| 7892 |
border-bottom: 3px solid transparent; |
| 7893 |
} |
| 7894 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .block-editor-inserter__tabs .components-tab-panel__tabs button.is-active:before { |
| 7895 |
border-bottom-color: var(--adminify-btn-bg); |
| 7896 |
} |
| 7897 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-tab-panel__tab-content .block-editor-inserter__panel-title { |
| 7898 |
color: #000; |
| 7899 |
} |
| 7900 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-tab-panel__tab-content .block-editor-block-types-list__item:hover { |
| 7901 |
border-color: var(--adminify-btn-bg); |
| 7902 |
} |
| 7903 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-tab-panel__tab-content .block-editor-block-types-list__item:hover .block-editor-block-types-list__item-icon svg path { |
| 7904 |
fill: var(--adminify-btn-bg); |
| 7905 |
} |
| 7906 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-tab-panel__tab-content .block-editor-block-types-list__item:hover .block-editor-block-types-list__item-title { |
| 7907 |
color: var(--adminify-btn-bg); |
| 7908 |
} |
| 7909 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-tab-panel__tab-content .block-editor-block-types-list__item .block-editor-block-types-list__item-icon { |
| 7910 |
padding: 0 1rem; |
| 7911 |
} |
| 7912 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-tab-panel__tab-content .block-editor-block-types-list__item .block-editor-block-types-list__item-title { |
| 7913 |
font-size: 13px; |
| 7914 |
font-weight: 600; |
| 7915 |
padding-bottom: 0; |
| 7916 |
} |
| 7917 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-tab-panel__tab-content select { |
| 7918 |
border: 1px solid #D8D8D8; |
| 7919 |
min-height: 36px; |
| 7920 |
padding-right: 1.5rem; |
| 7921 |
} |
| 7922 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-tab-panel__tab-content select:focus { |
| 7923 |
border: 1px solid #D8D8D8; |
| 7924 |
} |
| 7925 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-tab-panel__tab-content .block-editor-block-patterns-list__item { |
| 7926 |
-webkit-box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 7927 |
box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 7928 |
} |
| 7929 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-tab-panel__tab-content .block-editor-block-patterns-list__item:hover { |
| 7930 |
border: 1px solid var(--adminify-btn-bg); |
| 7931 |
} |
| 7932 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .edit-post-sidebar .edit-post-sidebar__panel-tabs, |
| 7933 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .edit-widgets-sidebar .edit-widgets-sidebar__panel-tabs { |
| 7934 |
background-color: #FAFAFA; |
| 7935 |
border-bottom-color: #F1F1F3; |
| 7936 |
} |
| 7937 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .edit-post-sidebar .edit-post-sidebar__panel-tabs button, |
| 7938 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .edit-widgets-sidebar .edit-widgets-sidebar__panel-tabs button { |
| 7939 |
-webkit-box-shadow: none; |
| 7940 |
box-shadow: none; |
| 7941 |
font-size: 14px; |
| 7942 |
font-weight: 600; |
| 7943 |
line-height: 50px; |
| 7944 |
height: auto; |
| 7945 |
padding: 0 16px; |
| 7946 |
} |
| 7947 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .edit-post-sidebar .edit-post-sidebar__panel-tabs button:before, |
| 7948 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .edit-widgets-sidebar .edit-widgets-sidebar__panel-tabs button:before { |
| 7949 |
border-bottom: 2px solid transparent; |
| 7950 |
} |
| 7951 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .edit-post-sidebar .edit-post-sidebar__panel-tabs button.is-active, |
| 7952 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .edit-widgets-sidebar .edit-widgets-sidebar__panel-tabs button.is-active { |
| 7953 |
color: var(--adminify-btn-bg); |
| 7954 |
} |
| 7955 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .edit-post-sidebar .edit-post-sidebar__panel-tabs button.is-active:before, |
| 7956 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .edit-widgets-sidebar .edit-widgets-sidebar__panel-tabs button.is-active:before { |
| 7957 |
border-bottom-color: var(--adminify-btn-bg); |
| 7958 |
} |
| 7959 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .edit-post-sidebar .edit-post-sidebar__panel-tabs button:hover, |
| 7960 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .edit-widgets-sidebar .edit-widgets-sidebar__panel-tabs button:hover { |
| 7961 |
color: var(--adminify-btn-bg); |
| 7962 |
} |
| 7963 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .edit-widgets-sidebar input[type=number], |
| 7964 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .edit-post-sidebar input[type=number] { |
| 7965 |
background-color: var(--adminify-text-color); |
| 7966 |
color: rgba(78, 75, 102, 0.72); |
| 7967 |
height: 36px; |
| 7968 |
} |
| 7969 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .edit-widgets-sidebar .components-panel .components-panel__body-title button.components-button, |
| 7970 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .edit-post-sidebar .components-panel .components-panel__body-title button.components-button { |
| 7971 |
color: #14142B; |
| 7972 |
} |
| 7973 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .edit-widgets-sidebar .components-unit-control__select, |
| 7974 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .edit-post-sidebar .components-unit-control__select { |
| 7975 |
background-color: #F1F1F3; |
| 7976 |
border: 0; |
| 7977 |
-webkit-border-radius: 0; |
| 7978 |
border-radius: 0; |
| 7979 |
color: #000; |
| 7980 |
} |
| 7981 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .edit-widgets-sidebar .components-input-control__backdrop, |
| 7982 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .edit-post-sidebar .components-input-control__backdrop { |
| 7983 |
border-color: #F1F1F3; |
| 7984 |
-webkit-box-shadow: none; |
| 7985 |
box-shadow: none; |
| 7986 |
} |
| 7987 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .edit-widgets-sidebar .components-input-control__backdrop:focus, |
| 7988 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .edit-post-sidebar .components-input-control__backdrop:focus { |
| 7989 |
outline: 0; |
| 7990 |
} |
| 7991 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .edit-widgets-sidebar button.components-color-palette__clear, |
| 7992 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .edit-post-sidebar button.components-color-palette__clear { |
| 7993 |
background-color: var(--adminify-text-color); |
| 7994 |
border: 1px solid var(--adminify-btn-bg); |
| 7995 |
height: 36px; |
| 7996 |
} |
| 7997 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .edit-widgets-sidebar .components-text-control__input, |
| 7998 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .edit-post-sidebar .components-text-control__input { |
| 7999 |
border-color: #F1F1F3; |
| 8000 |
} |
| 8001 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-panel .components-panel__body .components-panel__body-title button { |
| 8002 |
color: #14142B; |
| 8003 |
font-size: 14px; |
| 8004 |
font-weight: 700; |
| 8005 |
line-height: 20px; |
| 8006 |
padding: 1rem 15px; |
| 8007 |
} |
| 8008 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-panel .components-panel__body .components-panel__body-title button:hover { |
| 8009 |
background-color: transparent; |
| 8010 |
} |
| 8011 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-panel .edit-post-post-status .components-panel__body-title button svg { |
| 8012 |
stroke: #14142B; |
| 8013 |
} |
| 8014 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-panel .components-panel__row { |
| 8015 |
min-height: inherit; |
| 8016 |
} |
| 8017 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-panel .edit-post-post-visibility { |
| 8018 |
margin-top: 3px; |
| 8019 |
} |
| 8020 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-panel .edit-post-post-visibility span { |
| 8021 |
color: #14142B; |
| 8022 |
font-size: 14px; |
| 8023 |
font-weight: 400; |
| 8024 |
} |
| 8025 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-panel .edit-post-post-visibility button { |
| 8026 |
color: var(--adminify-btn-bg); |
| 8027 |
font-size: 14px; |
| 8028 |
font-weight: 400; |
| 8029 |
height: auto; |
| 8030 |
padding: 0; |
| 8031 |
outline: 0; |
| 8032 |
} |
| 8033 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-panel .edit-post-post-schedule { |
| 8034 |
margin-top: -7px; |
| 8035 |
} |
| 8036 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-panel .edit-post-post-schedule span { |
| 8037 |
color: #14142B; |
| 8038 |
font-size: 14px; |
| 8039 |
font-weight: 400; |
| 8040 |
} |
| 8041 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-panel .edit-post-post-schedule button { |
| 8042 |
color: var(--adminify-btn-bg); |
| 8043 |
font-size: 14px; |
| 8044 |
font-weight: 400; |
| 8045 |
height: auto; |
| 8046 |
padding: 0; |
| 8047 |
outline: 0; |
| 8048 |
} |
| 8049 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-panel .editor-post-format__content { |
| 8050 |
color: #14142B; |
| 8051 |
} |
| 8052 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-panel .components-panel__row .components-input-control__backdrop { |
| 8053 |
-webkit-box-shadow: none; |
| 8054 |
box-shadow: none; |
| 8055 |
outline: 0; |
| 8056 |
} |
| 8057 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-panel .components-panel__row .components-input-control__backdrop:hover, .wp-adminify #wpbody-content .interface-interface-skeleton__body .components-panel .components-panel__row .components-input-control__backdrop:focus { |
| 8058 |
-webkit-box-shadow: none; |
| 8059 |
box-shadow: none; |
| 8060 |
outline: 0; |
| 8061 |
} |
| 8062 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-panel .components-panel__row label { |
| 8063 |
color: #14142B; |
| 8064 |
} |
| 8065 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-panel .components-panel__row .components-checkbox-control__input-container { |
| 8066 |
margin-right: 4px; |
| 8067 |
} |
| 8068 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-panel .components-panel__row .components-checkbox-control__checked { |
| 8069 |
height: 16px; |
| 8070 |
width: 16px; |
| 8071 |
left: 0; |
| 8072 |
top: 2px; |
| 8073 |
} |
| 8074 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-panel .components-panel__body { |
| 8075 |
border-top-color: #F1F1F3; |
| 8076 |
border-bottom-color: #F1F1F3; |
| 8077 |
} |
| 8078 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-panel .components-panel__body a, |
| 8079 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-panel .components-panel__body button:not(.is-pressed, .editor-post-trash) { |
| 8080 |
-webkit-box-shadow: none; |
| 8081 |
box-shadow: none; |
| 8082 |
color: var(--adminify-btn-bg); |
| 8083 |
outline: 0; |
| 8084 |
text-decoration: none; |
| 8085 |
} |
| 8086 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-panel .components-panel__body .components-custom-select-control__button { |
| 8087 |
border-color: #F1F1F3; |
| 8088 |
-webkit-border-radius: 6px; |
| 8089 |
border-radius: 6px; |
| 8090 |
color: #14142B; |
| 8091 |
font-size: 13px; |
| 8092 |
height: auto; |
| 8093 |
line-height: 34px; |
| 8094 |
} |
| 8095 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-panel .components-panel__body .components-unit-control__select { |
| 8096 |
-webkit-border-top-left-radius: 0; |
| 8097 |
border-top-left-radius: 0; |
| 8098 |
-webkit-border-bottom-left-radius: 0; |
| 8099 |
border-bottom-left-radius: 0; |
| 8100 |
} |
| 8101 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-panel .components-panel__body input[type=checkbox] { |
| 8102 |
margin-top: 2px; |
| 8103 |
position: absolute; |
| 8104 |
} |
| 8105 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-panel .components-panel__body select { |
| 8106 |
background-color: var(--adminify-text-color); |
| 8107 |
border: 1px solid #F1F1F3; |
| 8108 |
-webkit-border-radius: 6px; |
| 8109 |
border-radius: 6px; |
| 8110 |
color: rgba(78, 75, 102, 0.72); |
| 8111 |
min-height: 36px; |
| 8112 |
} |
| 8113 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-panel .components-panel__body .components-checkbox-control__input-container svg { |
| 8114 |
height: 16px; |
| 8115 |
width: 16px; |
| 8116 |
top: 2px; |
| 8117 |
left: 0; |
| 8118 |
} |
| 8119 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-panel .components-panel__body .components-checkbox-control__input-container svg path { |
| 8120 |
fill: var(--adminify-btn-bg); |
| 8121 |
} |
| 8122 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-panel .components-panel__body .components-form-token-field__input-container { |
| 8123 |
border: 0; |
| 8124 |
padding: 0; |
| 8125 |
} |
| 8126 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-panel .components-panel__body .components-form-token-field__input-container:hover, .wp-adminify #wpbody-content .interface-interface-skeleton__body .components-panel .components-panel__body .components-form-token-field__input-container:focus { |
| 8127 |
border: 0; |
| 8128 |
-webkit-box-shadow: none; |
| 8129 |
box-shadow: none; |
| 8130 |
outline: 0; |
| 8131 |
} |
| 8132 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-panel .components-panel__body .components-form-token-field__input-container input { |
| 8133 |
margin-left: 0; |
| 8134 |
} |
| 8135 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-panel .components-panel__body .components-custom-select-control__item { |
| 8136 |
line-height: 20px; |
| 8137 |
margin-bottom: 0; |
| 8138 |
} |
| 8139 |
.wp-adminify #wpbody-content .interface-interface-skeleton__body .components-panel .components-form-toggle .components-form-toggle__input:focus + .components-form-toggle__track { |
| 8140 |
-webkit-box-shadow: none; |
| 8141 |
box-shadow: none; |
| 8142 |
} |
| 8143 |
.wp-adminify #wpbody-content .edit-post-meta-boxes-area .postbox > .inside { |
| 8144 |
border-bottom-color: #F1F1F3; |
| 8145 |
} |
| 8146 |
.wp-adminify #wpbody-content .edit-post-meta-boxes-area .postbox > .inside p { |
| 8147 |
color: #4E4B66; |
| 8148 |
font-size: 14px; |
| 8149 |
font-weight: 400; |
| 8150 |
} |
| 8151 |
.wp-adminify #wpbody-content .edit-post-meta-boxes-area .postbox > .inside select { |
| 8152 |
border-color: #F1F1F3; |
| 8153 |
} |
| 8154 |
.wp-adminify #wpbody-content .edit-post-meta-boxes-area .postbox > .inside input[type=checkbox] { |
| 8155 |
border: 1px solid rgba(78, 75, 102, 0.54); |
| 8156 |
-webkit-box-shadow: none; |
| 8157 |
box-shadow: none; |
| 8158 |
-webkit-border-radius: 50%; |
| 8159 |
border-radius: 50%; |
| 8160 |
height: 14px; |
| 8161 |
width: 14px; |
| 8162 |
min-width: inherit; |
| 8163 |
} |
| 8164 |
.wp-adminify #wpbody-content .edit-post-meta-boxes-area .postbox > .inside label { |
| 8165 |
color: #14142B; |
| 8166 |
} |
| 8167 |
.wp-adminify #wpbody-content .edit-post-meta-boxes-area .postbox > .inside .components-checkbox-control__checked { |
| 8168 |
height: 14px; |
| 8169 |
width: 14px; |
| 8170 |
left: 0; |
| 8171 |
top: 2px; |
| 8172 |
} |
| 8173 |
.wp-adminify #wpbody-content .quick-edit-row-page.inline-edit-adminify_admin_page .inline-edit-col-right { |
| 8174 |
margin-top: 16px; |
| 8175 |
} |
| 8176 |
.wp-adminify #wpbody-content .components-popover.is-from-top { |
| 8177 |
margin-top: 17px; |
| 8178 |
} |
| 8179 |
.wp-adminify #wpbody-content .blocks-widgets-container .block-editor-inserter__search-input, |
| 8180 |
.wp-adminify #wpbody-content .components-popover__content .block-editor-inserter__search-input { |
| 8181 |
height: auto; |
| 8182 |
} |
| 8183 |
.wp-adminify #wpbody-content .blocks-widgets-container .block-editor-block-types-list__item:hover, |
| 8184 |
.wp-adminify #wpbody-content .components-popover__content .block-editor-block-types-list__item:hover { |
| 8185 |
border-color: var(--adminify-btn-bg); |
| 8186 |
} |
| 8187 |
.wp-adminify #wpbody-content .blocks-widgets-container .block-editor-block-types-list__item:hover .block-editor-block-types-list__item-title, |
| 8188 |
.wp-adminify #wpbody-content .components-popover__content .block-editor-block-types-list__item:hover .block-editor-block-types-list__item-title { |
| 8189 |
color: var(--adminify-btn-bg); |
| 8190 |
} |
| 8191 |
.wp-adminify #wpbody-content .blocks-widgets-container .block-editor-block-types-list__item:hover svg path, |
| 8192 |
.wp-adminify #wpbody-content .components-popover__content .block-editor-block-types-list__item:hover svg path { |
| 8193 |
fill: var(--adminify-btn-bg); |
| 8194 |
} |
| 8195 |
.wp-adminify #wpbody-content .blocks-widgets-container .block-editor-block-types-list__item .block-editor-block-types-list__item-icon, |
| 8196 |
.wp-adminify #wpbody-content .components-popover__content .block-editor-block-types-list__item .block-editor-block-types-list__item-icon { |
| 8197 |
padding: 0 1rem; |
| 8198 |
} |
| 8199 |
.wp-adminify #wpbody-content .blocks-widgets-container .block-editor-block-types-list__item .block-editor-block-types-list__item-title, |
| 8200 |
.wp-adminify #wpbody-content .components-popover__content .block-editor-block-types-list__item .block-editor-block-types-list__item-title { |
| 8201 |
font-size: 13px; |
| 8202 |
font-weight: 600; |
| 8203 |
padding-bottom: 0; |
| 8204 |
} |
| 8205 |
.wp-adminify #wpbody-content .components-popover__content { |
| 8206 |
border-color: #F1F1F3; |
| 8207 |
} |
| 8208 |
.wp-adminify #wpbody-content .components-popover__content .components-menu-group { |
| 8209 |
border-color: #F1F1F3; |
| 8210 |
} |
| 8211 |
.wp-adminify #wpbody-content .components-popover__content .components-dropdown-menu__menu { |
| 8212 |
font-size: 14px; |
| 8213 |
font-weight: 400; |
| 8214 |
} |
| 8215 |
.wp-adminify #wpbody-content .components-popover__content .components-dropdown-menu__menu .components-menu-group { |
| 8216 |
padding: 3px 10px; |
| 8217 |
} |
| 8218 |
.wp-adminify #wpbody-content .components-popover__content .components-dropdown-menu__menu .components-menu-group .components-button { |
| 8219 |
line-height: 30px; |
| 8220 |
min-height: inherit; |
| 8221 |
} |
| 8222 |
.wp-adminify #wpbody-content .components-popover__content .components-button:hover { |
| 8223 |
color: var(--adminify-btn-bg); |
| 8224 |
} |
| 8225 |
.wp-adminify #wpbody-content .components-popover__content .components-button:hover .components-menu-item__item, |
| 8226 |
.wp-adminify #wpbody-content .components-popover__content .components-button:hover .components-menu-item__shortcut { |
| 8227 |
color: var(--adminify-btn-bg); |
| 8228 |
} |
| 8229 |
.wp-adminify #wpbody-content .components-popover__content .components-button:hover svg path { |
| 8230 |
fill: var(--adminify-btn-bg); |
| 8231 |
} |
| 8232 |
.wp-adminify #wpbody-content .components-popover__content .components-button.block-editor-inserter__toggle { |
| 8233 |
background-color: var(--adminify-btn-bg); |
| 8234 |
color: var(--adminify-text-color); |
| 8235 |
padding: 0; |
| 8236 |
} |
| 8237 |
.wp-adminify #wpbody-content .components-popover__content .components-button.block-editor-inserter__toggle:hover { |
| 8238 |
color: var(--adminify-text-color); |
| 8239 |
} |
| 8240 |
.wp-adminify #wpbody-content .components-popover__content .components-button.block-editor-inserter__toggle:hover svg path { |
| 8241 |
fill: var(--adminify-text-color); |
| 8242 |
} |
| 8243 |
.wp-adminify #wpbody-content .components-popover__content .components-button.block-editor-inserter__quick-inserter-expand:hover { |
| 8244 |
background-color: var(--adminify-btn-bg); |
| 8245 |
border: var(--adminify-btn-bg); |
| 8246 |
color: var(--adminify-text-color); |
| 8247 |
} |
| 8248 |
.wp-adminify #wpbody-content .components-popover__content .components-menu-item__item { |
| 8249 |
color: #14142B; |
| 8250 |
} |
| 8251 |
.wp-adminify #wpbody-content .components-popover__content .components-menu-item__info { |
| 8252 |
color: rgba(78, 75, 102, 0.72); |
| 8253 |
} |
| 8254 |
.wp-adminify #wpbody-content .components-popover__content .block-editor-tool-selector__help { |
| 8255 |
border-top: 1px solid #D8D8D8; |
| 8256 |
color: #4E4B66; |
| 8257 |
} |
| 8258 |
.wp-adminify #wpbody-content .components-popover__content .block-editor-inserter__panel-title { |
| 8259 |
color: #000; |
| 8260 |
} |
| 8261 |
.wp-adminify #wpbody-content .components-popover__content select { |
| 8262 |
border: 1px solid #D8D8D8; |
| 8263 |
min-height: 36px; |
| 8264 |
padding-right: 1.5rem; |
| 8265 |
} |
| 8266 |
.wp-adminify #wpbody-content .components-popover__content select:focus { |
| 8267 |
border: 1px solid #D8D8D8; |
| 8268 |
} |
| 8269 |
.wp-adminify #wpbody-content .components-popover__content .block-editor-block-patterns-list__item { |
| 8270 |
-webkit-box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 8271 |
box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 8272 |
} |
| 8273 |
.wp-adminify #wpbody-content .components-popover__content .block-editor-block-patterns-list__item:hover { |
| 8274 |
border: 1px solid var(--adminify-btn-bg); |
| 8275 |
} |
| 8276 |
.wp-adminify #wpbody-content #posts-filter .wp-list-table.widefat .inline-edit-row fieldset { |
| 8277 |
padding-top: 20px; |
| 8278 |
} |
| 8279 |
.wp-adminify #wpbody-content #posts-filter .wp-list-table.widefat .inline-edit-row fieldset .inline-edit-legend { |
| 8280 |
line-height: 1; |
| 8281 |
} |
| 8282 |
.wp-adminify #wpbody-content #posts-filter .wp-list-table.widefat .inline-edit-row .inline-edit-legend, |
| 8283 |
.wp-adminify #wpbody-content #posts-filter .wp-list-table.widefat .inline-edit-row .title { |
| 8284 |
color: #14142B; |
| 8285 |
font-size: 13px; |
| 8286 |
} |
| 8287 |
.wp-adminify #wpbody-content #posts-filter .wp-list-table.widefat .inline-edit-row .title { |
| 8288 |
display: inline-block; |
| 8289 |
font-size: 14px; |
| 8290 |
line-height: 20px; |
| 8291 |
margin: 8px 0 0; |
| 8292 |
width: auto; |
| 8293 |
} |
| 8294 |
.wp-adminify #wpbody-content #posts-filter .wp-list-table.widefat .inline-edit-row label { |
| 8295 |
clear: both; |
| 8296 |
position: relative; |
| 8297 |
} |
| 8298 |
.wp-adminify #wpbody-content #posts-filter .wp-list-table.widefat .inline-edit-row label input[type=checkbox] { |
| 8299 |
float: left; |
| 8300 |
min-width: inherit; |
| 8301 |
margin: 7px 5px 0 0; |
| 8302 |
position: static; |
| 8303 |
} |
| 8304 |
.wp-adminify #wpbody-content #posts-filter .wp-list-table.widefat .inline-edit-row label input[type=checkbox]:checked:before { |
| 8305 |
height: 16px; |
| 8306 |
width: 16px; |
| 8307 |
margin: -1px 0 0 -2px; |
| 8308 |
} |
| 8309 |
.wp-adminify #wpbody-content #posts-filter .wp-list-table.widefat .inline-edit-row .inline-edit-col label { |
| 8310 |
display: inline-block; |
| 8311 |
margin: 0.5rem 0; |
| 8312 |
width: 100%; |
| 8313 |
} |
| 8314 |
.wp-adminify #wpbody-content #posts-filter .wp-list-table.widefat .inline-edit-row .inline-edit-col label:first-child { |
| 8315 |
margin-top: 0; |
| 8316 |
} |
| 8317 |
.wp-adminify #wpbody-content #posts-filter .wp-list-table.widefat .inline-edit-row .inline-edit-col label.alignleft input[type=checkbox] { |
| 8318 |
height: 14px; |
| 8319 |
width: 14px; |
| 8320 |
margin-top: 9px; |
| 8321 |
} |
| 8322 |
.wp-adminify #wpbody-content #posts-filter .wp-list-table.widefat .inline-edit-row .inline-edit-col label.alignleft .checkbox-title { |
| 8323 |
color: #14142B; |
| 8324 |
font-size: 14px; |
| 8325 |
font-weight: 600; |
| 8326 |
} |
| 8327 |
.wp-adminify #wpbody-content #posts-filter .wp-list-table.widefat .inline-edit-row .inline-edit-col .timestamp-wrap label { |
| 8328 |
width: auto; |
| 8329 |
} |
| 8330 |
.wp-adminify #wpbody-content #posts-filter .wp-list-table.widefat .inline-edit-row input[type=text], |
| 8331 |
.wp-adminify #wpbody-content #posts-filter .wp-list-table.widefat .inline-edit-row textarea { |
| 8332 |
background-color: var(--adminify-text-color); |
| 8333 |
border: 1px solid #F1F1F3; |
| 8334 |
} |
| 8335 |
.wp-adminify #wpbody-content #posts-filter .wp-list-table.widefat .inline-edit-row .timestamp-wrap { |
| 8336 |
margin-bottom: 20px; |
| 8337 |
} |
| 8338 |
.wp-adminify #wpbody-content #posts-filter .wp-list-table.widefat .inline-edit-row ul.cat-checklist { |
| 8339 |
border: 1px solid var(--adminify-preset-background); |
| 8340 |
-webkit-border-radius: 6px; |
| 8341 |
border-radius: 6px; |
| 8342 |
margin-top: 10px; |
| 8343 |
padding: 5px 10px; |
| 8344 |
} |
| 8345 |
.wp-adminify #wpbody-content #posts-filter .wp-list-table.widefat .inline-edit-row ul.cat-checklist label { |
| 8346 |
font-size: 12px; |
| 8347 |
line-height: 24px; |
| 8348 |
} |
| 8349 |
.wp-adminify #wpbody-content #posts-filter .wp-list-table.widefat .inline-edit-row ul.cat-checklist label input[type=checkbox] { |
| 8350 |
margin-top: 4px; |
| 8351 |
} |
| 8352 |
.wp-adminify #wpbody-content #posts-filter .wp-list-table.widefat .inline-edit-row ul.cat-checklist ul { |
| 8353 |
margin-left: 12px; |
| 8354 |
} |
| 8355 |
.wp-adminify #wpbody-content #posts-filter .wp-list-table.widefat .inline-edit-row textarea { |
| 8356 |
margin-top: 10px; |
| 8357 |
} |
| 8358 |
.wp-adminify body.wp-adminify { |
| 8359 |
--adminify-text-color: #fff; |
| 8360 |
} |
| 8361 |
.wp-adminify body.wp-adminify { |
| 8362 |
--adminify-text-color: #fff; |
| 8363 |
} |
| 8364 |
@font-face { |
| 8365 |
.wp-adminify { |
| 8366 |
font-family: no-parens; |
| 8367 |
src: url("data:application/x-font-woff;base64,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"); |
| 8368 |
unicode-range: U+0028, U+0029; |
| 8369 |
} |
| 8370 |
} |
| 8371 |
.wp-adminify.post-type-post #wpbody-content .page-title-action:before { |
| 8372 |
content: "\f543"; |
| 8373 |
font-family: dashicons; |
| 8374 |
font-size: 13px; |
| 8375 |
float: left; |
| 8376 |
margin: -1px 7px 0 0; |
| 8377 |
} |
| 8378 |
.wp-adminify.post-type-post #wpbody-content .post-state { |
| 8379 |
background-color: #E5E5E5; |
| 8380 |
color: #fff; |
| 8381 |
text-transform: uppercase; |
| 8382 |
font-size: 10px; |
| 8383 |
padding: 3px 6px; |
| 8384 |
-webkit-border-radius: 3px; |
| 8385 |
border-radius: 3px; |
| 8386 |
margin: 0 4px; |
| 8387 |
} |
| 8388 |
.wp-adminify.post-type-post #wpbody-content .status-draft .post-state { |
| 8389 |
background-color: #dab35f; |
| 8390 |
} |
| 8391 |
.wp-adminify.post-type-post #wpbody-content .status-pending .post-state { |
| 8392 |
background-color: #da905f; |
| 8393 |
} |
| 8394 |
.wp-adminify.post-type-post #wpbody-content .status-private .post-state, |
| 8395 |
.wp-adminify.post-type-post #wpbody-content .post-password-required .post-state { |
| 8396 |
background-color: #222222; |
| 8397 |
} |
| 8398 |
.wp-adminify.post-type-post #wpbody-content .status-future .post-state { |
| 8399 |
background-color: #a0c96a; |
| 8400 |
} |
| 8401 |
.wp-adminify.post-type-post #wpbody-content mark.instock, |
| 8402 |
.wp-adminify.post-type-post #wpbody-content mark.outofstock { |
| 8403 |
background-color: #a0c96a; |
| 8404 |
color: #fff; |
| 8405 |
text-transform: uppercase; |
| 8406 |
font-size: 10px; |
| 8407 |
padding: 3px 6px; |
| 8408 |
-webkit-border-radius: 3px; |
| 8409 |
border-radius: 3px; |
| 8410 |
} |
| 8411 |
.wp-adminify.post-type-post #wpbody-content mark.outofstock { |
| 8412 |
background-color: #da905f; |
| 8413 |
} |
| 8414 |
.wp-adminify #wpbody-content .wp-list-table.widefat.comments .inline-edit-row .colspanchange { |
| 8415 |
padding: 15px; |
| 8416 |
} |
| 8417 |
.wp-adminify #wpbody-content .wp-list-table.widefat.comments .inline-edit-row .comment-reply legend { |
| 8418 |
color: #000; |
| 8419 |
font-size: 14px; |
| 8420 |
font-weight: 600; |
| 8421 |
padding: 0; |
| 8422 |
} |
| 8423 |
.wp-adminify #wpbody-content .wp-list-table.widefat.comments .inline-edit-row .comment-reply input.button { |
| 8424 |
background-color: var(--adminify-text-color); |
| 8425 |
line-height: 1; |
| 8426 |
} |
| 8427 |
.wp-adminify #wpbody-content .wp-list-table.widefat.comments .inline-edit-row .comment-reply .quicktags-toolbar { |
| 8428 |
border-bottom: 1px solid var(--adminify-text-color); |
| 8429 |
} |
| 8430 |
.wp-adminify #wpbody-content .wp-list-table.widefat.comments .inline-edit-row .comment-reply #replysubmit { |
| 8431 |
padding: 10px 0 0; |
| 8432 |
} |
| 8433 |
.wp-adminify #wpbody-content .wp-list-table.widefat.comments .inline-edit-row .comment-reply .reply-submit-buttons button { |
| 8434 |
float: left; |
| 8435 |
vertical-align: middle; |
| 8436 |
} |
| 8437 |
.wp-adminify #wpbody-content .wp-list-table.widefat.comments .inline-edit-row .comment-reply .reply-submit-buttons button #addbtn, |
| 8438 |
.wp-adminify #wpbody-content .wp-list-table.widefat.comments .inline-edit-row .comment-reply .reply-submit-buttons button #savebtn, |
| 8439 |
.wp-adminify #wpbody-content .wp-list-table.widefat.comments .inline-edit-row .comment-reply .reply-submit-buttons button #replybtn { |
| 8440 |
font-size: 14px; |
| 8441 |
margin: 0; |
| 8442 |
} |
| 8443 |
.wp-adminify.comment-php #wpbody-content #poststuff .stuffbox { |
| 8444 |
padding: 15px; |
| 8445 |
} |
| 8446 |
.wp-adminify.comment-php #wpbody-content #post-body-content #comment-link-box { |
| 8447 |
font-size: 14px; |
| 8448 |
font-weight: 600; |
| 8449 |
line-height: 20px; |
| 8450 |
padding: 0; |
| 8451 |
} |
| 8452 |
.wp-adminify.comment-php #wpbody-content #post-body-content #comment-link-box a { |
| 8453 |
color: var(--adminify-btn-bg); |
| 8454 |
} |
| 8455 |
.wp-adminify.comment-php #wpbody-content #post-body-content .stuffbox .edit-comment-author { |
| 8456 |
border: 0; |
| 8457 |
padding: 0 0 15px; |
| 8458 |
} |
| 8459 |
.wp-adminify.comment-php #wpbody-content #post-body-content .stuffbox .form-table td { |
| 8460 |
padding: 0; |
| 8461 |
} |
| 8462 |
.wp-adminify.comment-php #wpbody-content #post-body-content .stuffbox .form-table td.first { |
| 8463 |
padding-right: 15px; |
| 8464 |
} |
| 8465 |
.wp-adminify.comment-php #wpbody-content #post-body-content .stuffbox .form-table td label { |
| 8466 |
font-size: 13px; |
| 8467 |
} |
| 8468 |
.wp-adminify.comment-php #wpbody-content #post-body-content .stuffbox .form-table td input { |
| 8469 |
margin: 7.5px 0; |
| 8470 |
} |
| 8471 |
.wp-adminify.comment-php #wpbody-content #submitdiv h2 { |
| 8472 |
border: 0; |
| 8473 |
color: #000; |
| 8474 |
font-size: 14px; |
| 8475 |
font-weight: 600; |
| 8476 |
line-height: 20px; |
| 8477 |
padding: 0 0 15px; |
| 8478 |
} |
| 8479 |
.wp-adminify.comment-php #wpbody-content #submitdiv .misc-pub-section { |
| 8480 |
color: #14142B; |
| 8481 |
font-size: 14px; |
| 8482 |
font-weight: 400; |
| 8483 |
line-height: 20px; |
| 8484 |
padding: 0; |
| 8485 |
} |
| 8486 |
.wp-adminify.comment-php #wpbody-content #submitdiv .misc-pub-section:before { |
| 8487 |
color: #14142B; |
| 8488 |
margin-left: -3px; |
| 8489 |
} |
| 8490 |
.wp-adminify.comment-php #wpbody-content #submitdiv .misc-pub-section #comment-status-radio label { |
| 8491 |
clear: both; |
| 8492 |
font-size: 13px; |
| 8493 |
} |
| 8494 |
.wp-adminify.comment-php #wpbody-content #submitdiv .misc-pub-section #comment-status-radio label input { |
| 8495 |
margin-right: 10px; |
| 8496 |
} |
| 8497 |
.wp-adminify.comment-php #wpbody-content #submitdiv .misc-pub-section #comment-status-radio br { |
| 8498 |
display: none; |
| 8499 |
} |
| 8500 |
.wp-adminify.comment-php #wpbody-content #submitdiv .curtime { |
| 8501 |
margin-bottom: 15px; |
| 8502 |
} |
| 8503 |
.wp-adminify.comment-php #wpbody-content #submitdiv #major-publishing-actions { |
| 8504 |
border: 0; |
| 8505 |
margin: 15px 0 0; |
| 8506 |
padding: 0; |
| 8507 |
} |
| 8508 |
.wp-adminify body.wp-adminify { |
| 8509 |
--adminify-text-color: #fff; |
| 8510 |
} |
| 8511 |
.wp-adminify body.wp-adminify { |
| 8512 |
--adminify-text-color: #fff; |
| 8513 |
} |
| 8514 |
@font-face { |
| 8515 |
.wp-adminify { |
| 8516 |
font-family: no-parens; |
| 8517 |
src: url("data:application/x-font-woff;base64,d09GRk9UVE8AABuoAAoAAAAASrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAANJAAADlwAABk8NN4INERTSUcAABugAAAACAAAAAgAAAABT1MvMgAAAVAAAABRAAAAYABfsZtjbWFwAAAEQAAACM0AABnoJENu0WhlYWQAAAD0AAAAMwAAADYFl9tDaGhlYQAAASgAAAAeAAAAJAdaA+9obXR4AAAbgAAAAB8AABAGA+gAfG1heHAAAAFIAAAABgAAAAYIAVAAbmFtZQAAAaQAAAKbAAAF6yBNB5Jwb3N0AAANEAAAABMAAAAg/7gAMnjaY2BkYGBg5G6tPXx8azy/zVcGZuYXQBGGiz6un+F0zf8O5hzmAiCXmYEJJAoAkoQNcAB42mNgZGBgLvjfASRfMNQw1DDnMABFUAATAHAaBFEAAAAAUAAIAQAAeNpjYGZ+wTiBgZWBgamLKYKBgcEbQjPGMRgx3GFAAt//r/v/+/7///wPGOxBfEcXJ38GBwaG//+ZC/53MDAwFzBUJOgz/kfSosDAAAAMpBWaAAAAeNqdU9tu00AQPU6TcqmoRIV46YvFE5Vgm7ZOVDVPSS8iIkqquBTxhJzEuSiOHWwnwH8g/oHfgW9A/AZnx5smQZWg2MrumZ0z47MzEwCP8R0W9GNhS1b95HCPVoY3sIsdg/MrnAJO8NLgTTzEgEwr/4DWF3ww2MJTq2BwDtvWrsEbKFt7BudXOAWk1nuDN/HE+mHwfTjWL4O34OQWeR7lvuZaBm/Dyf+s9qKOb9cCLxy3/cEs8OIDVXRKlepZrVURp/hot2rn136cjKLQziiXrgHDKO1G4Vxb6viwMvHGfpT2VTDqHKqSKh85xfIyE04RYYrPiDFiCYZIYeMbf4co4gBHeHGDS0RV9MjvwCd2GZWQ72PC3UYdIbr0xsynV098PXqeS96U5yfY5/tRXkXGIpuSyAl9e8SrX6khIC/EGG3aA8zEjqlHUZVDVRXyz8hrCVpELuMyf4sn57imJ6baEVkhs69mueSN1k+GZKWiLMT8xqdwzIpUqNZjdl84fZ4GzNqhRzFWoczaOWSXb9X0P3X89xqmzDjlyT6uGDWSrBdyi1S+F1FvymhdR60gY2j9XdohraxvM+KeVMwmf2jU1tHg3pIvhGuZG2sZ9OTcVm/9s++krCd7KjPaoarFXGU5PVmfsaauVM8l1nNTFa2u6HhLdIVXVP2Gu7arnKc21ybtOifDlTu1uZ5yb3Ji6uLROPNdyPw38Y77a3o0R+f2qSqrTizWJ1ZGq09EeySnI/ZlKhXWypXc1Zcb3r2uNmsUrfUkkZguWX1h2mbO9L/F45r1YioKJ1LLRUcSU7+e6f9E7qInbukfEM0lNuSpzmpzviLmjmVGMk26c5miv3VV/THJCRXrzk55ltCrtQXc9R0H9OvKN34D31P2fwB42i3YLfAsS2GG8X9Pf3dP97QjqOBAUAUOHDhwxAUHLnHgwIEDBw4cOHDgEgeOuIsjLnHgAMU1tw7PnvNs1fT7zlfV7q9rd2bn7e0tv729RZYvsySWb76Ft9fr82wN77fHt/F+e3m73+8J74/8zPsxvdbqu3fvXjsYg2e/P/LTP33f367PfMj67sPZjXjsh/iU/V+If7W/Tvms/XPEF+xfJL5kf73lr9i/SnzN/nXiG/Z/I/7d/k3iW/ZvE/9h/0/iO/bvEt+zf5/4gf2HxI/sPyZ+Yn99xJ/Zf078wv5L4lf2XxO/sf+W+C/7fxO/s/+e+IP9f4iP7H8k/mT/f+LP9r8Qf7X/jfiH/WPik48+9E/Y8e4Tpvjv72cl6B/wD/oH/IP+Af+gf8A/6B/wD/oH/IP+Af+gf8A/6B/wD/oH/IP+Af+gf8A/6B/wD/oH/IP+Af+gf8A/6B/wD/oH/IP+Af+gf8A/6B/wD/oH/IP+Af+gf8A/6B/wD/oH/IP+4X8Z/8/OXATnIjAXwbkIkAfnIjAX4eVPv15fA/0v/C/9L/wv/S/8L/1fX5lL/wv/S/8L/0v/C/9L/wv/S/8L/0v/C/9L/wv/S/8L/0v/C/9L/wv/S/8L/0v/C/9L/wv/S/8L/0v/C/9L/wv/S/8L/0v/C/9L/wv/S/8L/0v/C/9L/wv/S/8L/0v/C/9L/wv/S/8L/0v/C/9L/9cvXNQ/4h/1j/hH/SP+Uf+If9Q/4h/1j/hH/SP+Uf+If9Q/4h/1j/hH/SP+Uf+If9Q/4h/1j/hH/SP+Uf+If9Q/4h/1j/hH/SP+Uf+If9Q/4h/1j/hH/SP+Uf+If9Q/4h/1j/hH/SP+Uf+If9Q/4h/1j/hH/SP+Uf/XlSXpn/BP+if8k/4J/6R/wj/pn/BP+if8k/4J/6R/wj/pn/BP+if8k/4J/6R/wj/pn/BP+if8k/4J/6R/wj/pn/BP+if8k/4J/6R/wj/pn/BP+if8k/4J/6R/wj/pn/BP+if8k/4J/6R/wj/pn/BP+if8k/4J/6T/6yqf9c/4Z/0z/ln/jH/WP+Of9c/4Z/0z/ln/jH/WP+Of9c/4Z/0z/ln/jH/WP+Of9c/4Z/0z/ln/jH/WP+Of9c/4Z/0z/ln/jH/WP+Of9c/4Z/0z/ln/jH/WP+Of9c/4Z/0z/ln/jH/WP+Of9c/4Z/0z/ln/jH/WvzAW/Qv+Rf+Cf9G/4F/0L/gX/Qv+Rf+Cf9G/4F/0L/gX/Qv+Rf+Cf9G/4F/0L/gX/Qv+Rf+Cf9G/4F/0L/gX/Qv+Rf+Cf9G/4F/0L/gX/Qv+Rf+Cf9G/4F/0L/gX/Qv+Rf+Cf9G/4F/0L/gX/Qv+Rf+Cf9G/4F/0r6/bT/0r/lX/in/Vv+Jf9a/4V/0r/lX/in/Vv+Jf9a/4V/0r/lX/in/Vv+Jf9a/4V/0r/lX/in/Vv+Jf9a/4V/0r/lX/in/Vv+Jf9a/4V/0r/lX/in/Vv+Jf9a/4V/0r/lX/in/Vv+Jf9a/4V/0r/lX/in/Vv378uuX/4P+65W/6N1aa/g3/pn/Dv+nf8G/6N/yb/g3/pn/Dv+nf8G/6N/yb/g3/pn/Dv+nf8G/6N/yb/g3/pn/Dv+nf8G/6N/yb/g3/pn/Dv+nf8G/6N/yb/g3/pn/Dv+nf8G/6N/yb/g3/pn/Dv+nf8G/6N/yb/g3/pn/Dv+nfGbv+Hf+uf8e/69/x7/p3/Lv+Hf+uf8e/69/x7/p3/Lv+Hf+uf8e/69/x7/p3/Lv+Hf+uf8e/69/x7/p3/Lv+Hf+uf8e/69/x7/p3/Lv+Hf+uf8e/69/x7/p3/Lv+Hf+uf8e/69/x7/p3/Lv+Hf+uf8e/69/x7/q//kEP/Qf+Q/+B/9B/4D/0H/gP/Qf+Q/+B/9B/4D/0H/gP/Qf+Q/+B/9B/4D/0H/gP/Qf+Q/+B/9B/4D/0H/gP/Qf+Q/+B/9B/4D/0H/gP/Qf+Q/+B/9B/4D/0H/gP/Qf+Q/+B/9B/4D/0H/gP/Qf+Q/+B/9B/4D/0n4xT/4n/1H/iP/Wf+E/9J/5T/4n/1H/iP/Wf+E/9J/5T/4n/1H/iP/Wf+E/9J/5T/4n/1H/iP/Wf+E/9J/5T/4n/1H/iP/Wf+E/9J/5T/4n/1H/iP/Wf+E/9J/5T/4n/1H/iP/Wf+E/9J/5T/4n/1H/iP/Wf+E/9X8+Dbv1v/G/9b/xv/W/8b/1v/G/9b/xv/W/8b/1v/G/9b/xv/W/8b/1v/G/9b/xv/W/8b/1v/G/9b/xv/W/8b/1v/G/9b/xv/W/8b/1v/G/9b/xv/W/8b/1v/G/9b/xv/W/8b/1v/G/9b/xv/W/8b/1v/G/9b/xv/W/8b/1v/G/9F+PSf+G/9F/4L/0X/kv/hf/Sf+G/9F/4L/0X/kv/hf/Sf+G/9F/4L/0X/kv/hf/Sf+G/9F/4L/0X/kv/hf/Sf+G/9F/4L/0X/kv/hf/Sf+G/9F/4L/0X/kv/hf/Sf+G/9F/4L/0X/kv/hf/Sf+G/9F/4L/0X/kv/zbj13/hv/Tf+W/+N/9Z/47/13/hv/Tf+W/+N/9Z/47/13/hv/Tf+W/+N/9Z/47/13/hv/Tf+W/+N/9Z/47/13/hv/Tf+W/+N/9Z/47/13/hv/Tf+W/+N/9Z/47/13/hv/Tf+W/+N/9Z/47/13/hv/Tf+W/+N/9b/eT1y1v/B/9H/wf/R/8H/0f/B/9H/wf/R/8H/0f/B/9H/wf/R/8H/0f/B/9H/wf/R/8H/0f/B/9H/wf/R/8H/0f/B/9H/wf/R/8H/0f/B/9H/wf/R/8H/0f/B/9H/wf/R/8H/0f/B/9H/wf/R/8H/0f/B/9H/wf/R/8H/0f/5+PWY/4P/6zH/0f/gf/Q/7Dj6H/yP/gf/o//B/+h/8D/6H/yP/gf/o//B/+h/8D/6H/yP/gf/o//B/+h/8D/6H/yP/gf/o//B/+h/8D/6H/yP/gf/o//B/+h/8D/6H/yP/gf/o//B/+h/8D/6H/yP/gf/o//B/+h/8D/6H/zPB/9/AsqUaXgAAAB42mNgZgCD/1sZjBiwAAAswgHqAHja7ZhVc5BNkIWn/QWCEzRAcHd3d3eX4J4Awd0luLu7e3B3d3d3h4RgC99e7I9YnoupOjXdXaempqamGxyjA4AoxVoENmtZvENAp/Z/ZdbwROF+IT5JwhNDeBIM+e4T4SJYkiTkJj5J/TzwSR5WK3pYs5hh9X1S+SVI6pPSCYBGqx0Q9F+Zci1adgpuG9yrRGBQry5tW7cJ9s+eNVuOjH/XXP7/RfjX6NU1uGXHrv7lOjUP7BIU2CUguGUL/7RtgoOD8mfJ0qNHj8wBf8MyNw/smCVd5v9N+c/c/9nMlD1rznzO/XFvv8mBc84DD/5IV8FVdJVcZVfFVXXVXHVXw9V0tVxtV8fVdfVcfdfANXSNXGPXxDV1Aa6Za+5auJaulWvt2ri2rp1r7zq4jq6TC3RBrrPr4rq6YNfNdXc9XE/Xy/V2fVxf18/1dwPcQDfIDXZD3FA3zA13I9xIN8qNdiFujBvrxrnxboKb6Ca5yW6Km+qmueluhpvpZrnZbo6b6+a5+W6BW+gWucVuiVvqlrnlboVb6Va51W6NW+vWufVug9voNrnNbovb6ra5ULfd7XA73S632+1xe90+t98dcAfdIXfYHXFH3TF33J1wJ90pd9qdcWfdOXfeXXAX3SV32V1xV901d93dcDfdLXfb3XF33T133z1wD90j99g9cU/dM/fcvXAv3Sv32r1xb9079959cB/dJ/fZfXFfXZgLd99chPvufrif7pf7DX+vCgIBg4CC/Tn/SBAZooAPRIVoEB1iQEyIBbEhDvhCXIgH8SEBJIRE4AeJIQkkBX9IBskhBaSEVJAa0kBaSAfpIQNkhEyQGbJAVsgG2SEH5IRckBvyQF7IB/mhABSEQlAYikBRKAbFoQSUhFJQGspAWSgH5aECVIRKUBmqQFWoBtWhBtSEWlAb6kBdqAf1oQE0hEbQGJpAUwiAZtAcWkBLaAWtoQ20hXbQHjpAR+gEgRAEnaELdIVg6AbdoQf0hF7QG/pAX+gH/WEADIRBMBiGwFAYBsNhBIyEUTAaQmAMjIVxMB4mwESYBJNhCkyFaTAdZsBMmAWzYQ7MhXkwHxbAQlgEi2EJLIVlsBxWwEpYBathDayFdbAeNsBG2ASbYQtshW0QCtthB+yEXbAb9sBe2Af74QAchENwGI7AUTgGx+EEnIRTcBrOwFk4B+fhAlyES3AZrsBVuAbX4QbchFtwG+7AXbgH9+EBPIRH8BiewFN4Bs/hBbyEV/Aa3sBbeAfv4QN8hE/wGb7AVwiDcPgGEfAdfsBP+AW/0SEgIiGjoKKhh5EwMkZBH4yK0TA6xsCYGAtjYxz0xbgYD+NjAkyIidAPE2MSTIr+mAyTYwpMiakwNabBtJgO02MGzIiZMDNmwayYDbNjDsyJuTA35sG8mA/zYwEsiIWwMBbBolgMi2MJLImlsDSWwbJYDstjBayIlbAyVsGqWA2rYw2sibWwNtbBulgP62MDbIiNsDE2waYYgM2wObbAltgKW2MbbIvtsD12wI7YCQMxCDtjF+yKwdgNu2MP7Im9sDf2wb7YD/vjAByIg3AwDsGhOAyH4wgciaNwNIbgGByL43A8TsCJOAkn4xScitNwOs7AmTgLZ+McnIvzcD4uwIW4CBfjElyKy3A5rsCVuApX4xpci+twPW7AjbgJN+MW3IrbMBS34w7cibtwN+7BvbgP9+MBPIiH8DAewaN4DI/jCTyJp/A0nsGzeA7P4wW8iJfwMl7Bq3gNr+MNvIm38Dbewbt4D+/jA3yIj/AxPsGn+Ayf4wt8ia/wNb7Bt/gO3+MH/Iif8DN+wa8YhuH4DSPwO/7An/gL/zy7BIRExCSkZORRJIpMUciHolI0ik4xKCbFotgUh3wpLsWj+JSAElIi8qPElISSkj8lo+SUglJSKkpNaSgtpaP0lIEyUibKTFkoK2Wj7JSDclIuyk15KC/lo/xUgApSISpMRagoFaPiVIJKUikqTWWoLJWj8lSBKlIlqkxVqCpVo+pUg2pSLapNdagu1aP61IAaUiNqTE2oKQVQM2pOLagltaLW1IbaUjtqTx2oI3WiQAqiztSFulIwdaPu1IN6Ui/qTX2oL/Wj/jSABtIgGkxDaCgNo+E0gkbSKBpNITSGxtI4Gk8TaCJNosk0habSNJpOM2gmzaLZNIfm0jyaTwtoIS2ixbSEltIyWk4raCWtotW0htbSOlpPG2gjbaLNtIW20jYKpe20g3bSLtpNe2gv7aP9dIAO0iE6TEfoKB2j43SCTtIpOk1n6Cydo/N0gS7SJbpMV+gqXaPrdINu0i26TXfoLt2j+/SAHtIjekxP6Ck9o+f0gl7SK3pNb+gtvaP39IE+0if6TF/oK4VROH2jCPpOP+gn/aLf7BgYmZhZWNnY40gcmaOwD0flaBydY3BMjsWxOQ77clyOx/E5ASfkROzHiTkJJ2V/TsbJOQWn5FScmtNwWk7H6TkDZ+RMnJmzcFbOxtk5B+fkXJyb83Bezsf5uQAX5EJcmItwUS7GxbkEl+RSXJrLcFkux+W5AlfkSlyZq3BVrsbVuQbX5Fpcm+twXa7H9bkBN+RG3JibcFMO4GbcnFtwS27FrbkNt+V23J47cEfuxIEcxJ25C3flYO7G3bkH9+Re3Jv7cF/ux/15AA/kQTyYh/BQHsbDeQSP5FE8mkN4DI/lcTyeJ/BEnsSTeQpP5Wk8nWfwTJ7Fs3kOz+V5PJ8X8EJexIt5CS/lZbycV/BKXsWreQ2v5XW8njfwRt7Em3kLb+VtHMrbeQfv5F28m/fwXt7H+/kAH+RDfJiP8FE+xsf5BJ/kU3yaz/BZPsfn+QJf5Et8ma/wVb7G1/kG3+RbfJvv8F2+x/f5AT/kR/yYn/BTfsbP+QW/5Ff8mt/wW37H7/kDf+RP/Jm/8FcO43D+xhH8nX/wT/7Fv+XPt09QSFhEVEw8iSSRJYr4SFSJJtElhsSUWBJb4oivxJV4El8SSEJJJH6SWJJIUvGXZJJcUkhKSSWpJY2klXSSXjJIRskkmSWLZJVskl1ySE7JJbklj+SVfJJfCkhBKSSFpYgUlWJSXEpISSklpaWMlJVyUl4qSEWpJJWlilSValJdakhNqSW1pY7UlXpSXxpIQ2kkjaWJNJUAaSbNpYW0lFbSWtpIW2kn7aWDdJROEihB0lm6SFcJlm7SXXpIT+klvaWP9JV+0l8GyEAZJINliAyVYTJcRshIGSWjJUTGyFgZJ+NlgkyUSTJZpshUmSbTZYbMlFkyW+bIXJkn82WBLJRFsliWyFJZJstlhayUVbJa1shaWSfrZYNslE2yWbbIVtkmobJddshO2SW7ZY/slX2yXw7IQTkkh+WIHJVjclxOyEk5JafljJyVc3JeLshFuSSX5YpclWtyXW7ITbklt+WO3JV7cl8eyEN5JI/liTyVZ/JcXshLeSWv5Y28lXfyXj7IR/kkn+WLfJUwCZdvEiHf5Yf8lF/yW52CopKyiqqaehpJI2sU9dGoGk2jawyNqbE0tsZRX42r8TS+JtCEmkj9NLEm0aTqr8k0uabQlJpKU2saTavpNL1m0IyaSTNrFs2q2TS75tCcmktzax7Nq/k0vxbQglpIC2sRLarFtLiW0JJaSktrGS2r5bS8VtCKWkkraxWtqtW0utbQmlpLa2sdrav1tL420IbaSBtrE22qAdpMm2sLbamttLW20bbaTttrB+2onTRQg7SzdtGuGqzdtLv20J7aS3trH+2r/bS/DtCBOkgH6xAdqsN0uI7QkTpKR2uIjtGxOk7H6wSdqJN0sk7RqTpNp+sMnamzdLbO0bk6T+frAl2oi3SxLtGlukyX6wpdqat0ta7RtbpO1+sG3aibdLNu0a26TUN1u+7QnbpLd+se3av7dL8e0IN6SA/rET2qx/S4ntCTekpP6xk9q+f0vF7Qi3pJL+sVvarX9Lre0Jt6S2/rHb2r9/S+PtCH+kgf6xN9qs/0ub7Ql/pKX+sbfavv9L1+0I/6ST/rF/2qYRqu3zRCv+sP/am/9Lc5A0MjYxNTM/MskkW2KOZjUS2aRbcYFtNiWWyLY74W1+JZfEtgCS2R+VliS2JJzd+SWXJLYSktlaW2NJbW0ll6y2AZLZNltiyW1bJZdsthOS2X5bY8ltfyWX4rYAWtkBW2IlbUillxK2ElrZSVtjJW1spZeatgFa2SVbYqVtWqWXWrYTWtltW2OlbX6ll9a2ANrZE1tibW1AKsmTW3FtbSWllra2NtrZ21tw7W0TpZoAVZZ+tiXS3Yull362E9rZf1tj7W1/pZfxtgA22QDbYhNtSG2XAbYSNtlI22EBtjY22cjbcJNtEm2WSbYlNtmk23GTbTZtlsm2NzbZ7NtwW20BbZYltiS22ZLbcVttJW2WpbY2ttna23DbbRNtlm22JbbZuF2nbbYTttl+22PbbX9tl+O2AH7ZAdtiN21I7ZcTthJ+2UnbYzdtbO2Xm7YBftkl22K3bVrtl1u2E37Zbdtjt21+7ZfXtgD+2RPbYn9tSe2XN7YS/tlb22N/bW3tl7+2Af7ZN9ti/21cIs3L5ZhH23H/bTftlv72/LjR557ImnnnmeF8mL7EXxfLyoXjQvuhfDi+nF8mJ7cTxfL64Xz4vvJfASeok8Py+xl8RL6vl7ybzkXgovpZfKS+2l8dJ66bz0XgYvo5fJy+xl8bJ62bzsXg4vp5fLy+3l8fJ6+bz8XgGvoFfIK+wV8Yp6xbziXgmvpFfKK+2V8cp65bzyXgX/7z6hESlDISxG6LeMoRQWI4J9f/X9NjSir/2s+yuN77eLFnbkRw5ZtsH3+5HwPBL+VZc18/150f6oHBLUyvfPbh758VWj/eMf//jHP/7xj/9//B1wRw5P6pN6ll+CTLG+jwvxk9IhuifynigRz3z/B+I69cx42u3BAQ0AAAgDoG/WNvBjGERgmg0AAADwwAGHXgFoAAAAAAEAAAAA"); |
| 8518 |
unicode-range: U+0028, U+0029; |
| 8519 |
} |
| 8520 |
} |
| 8521 |
.wp-adminify .taxonomy-category .form-wrap label, |
| 8522 |
.wp-adminify .taxonomy-post_tag .form-wrap label, |
| 8523 |
.wp-adminify .taxonomy-post_folder .form-wrap label, |
| 8524 |
.wp-adminify .taxonomy-media_folder .form-wrap label, |
| 8525 |
.wp-adminify .taxonomy-folder .form-wrap label { |
| 8526 |
color: #14142B; |
| 8527 |
font-size: 13px; |
| 8528 |
line-height: 16px; |
| 8529 |
margin-bottom: 6px; |
| 8530 |
} |
| 8531 |
.wp-adminify .taxonomy-category .form-wrap input, .wp-adminify .taxonomy-category .form-wrap select, .wp-adminify .taxonomy-category .form-wrap textarea, |
| 8532 |
.wp-adminify .taxonomy-post_tag .form-wrap input, |
| 8533 |
.wp-adminify .taxonomy-post_tag .form-wrap select, |
| 8534 |
.wp-adminify .taxonomy-post_tag .form-wrap textarea, |
| 8535 |
.wp-adminify .taxonomy-post_folder .form-wrap input, |
| 8536 |
.wp-adminify .taxonomy-post_folder .form-wrap select, |
| 8537 |
.wp-adminify .taxonomy-post_folder .form-wrap textarea, |
| 8538 |
.wp-adminify .taxonomy-media_folder .form-wrap input, |
| 8539 |
.wp-adminify .taxonomy-media_folder .form-wrap select, |
| 8540 |
.wp-adminify .taxonomy-media_folder .form-wrap textarea, |
| 8541 |
.wp-adminify .taxonomy-folder .form-wrap input, |
| 8542 |
.wp-adminify .taxonomy-folder .form-wrap select, |
| 8543 |
.wp-adminify .taxonomy-folder .form-wrap textarea { |
| 8544 |
width: 100%; |
| 8545 |
} |
| 8546 |
.wp-adminify .taxonomy-category .form-wrap select, |
| 8547 |
.wp-adminify .taxonomy-category .form-wrap input[type=submit], |
| 8548 |
.wp-adminify .taxonomy-post_tag .form-wrap select, |
| 8549 |
.wp-adminify .taxonomy-post_tag .form-wrap input[type=submit], |
| 8550 |
.wp-adminify .taxonomy-post_folder .form-wrap select, |
| 8551 |
.wp-adminify .taxonomy-post_folder .form-wrap input[type=submit], |
| 8552 |
.wp-adminify .taxonomy-media_folder .form-wrap select, |
| 8553 |
.wp-adminify .taxonomy-media_folder .form-wrap input[type=submit], |
| 8554 |
.wp-adminify .taxonomy-folder .form-wrap select, |
| 8555 |
.wp-adminify .taxonomy-folder .form-wrap input[type=submit] { |
| 8556 |
width: auto; |
| 8557 |
} |
| 8558 |
.wp-adminify .taxonomy-category .form-wrap p, |
| 8559 |
.wp-adminify .taxonomy-post_tag .form-wrap p, |
| 8560 |
.wp-adminify .taxonomy-post_folder .form-wrap p, |
| 8561 |
.wp-adminify .taxonomy-media_folder .form-wrap p, |
| 8562 |
.wp-adminify .taxonomy-folder .form-wrap p { |
| 8563 |
color: #4E4B66; |
| 8564 |
font-size: 13px; |
| 8565 |
line-height: 20px; |
| 8566 |
margin-top: 10px; |
| 8567 |
} |
| 8568 |
.wp-adminify .taxonomy-category .form-wrap p.submit, |
| 8569 |
.wp-adminify .taxonomy-post_tag .form-wrap p.submit, |
| 8570 |
.wp-adminify .taxonomy-post_folder .form-wrap p.submit, |
| 8571 |
.wp-adminify .taxonomy-media_folder .form-wrap p.submit, |
| 8572 |
.wp-adminify .taxonomy-folder .form-wrap p.submit { |
| 8573 |
margin-bottom: 0; |
| 8574 |
padding-bottom: 0; |
| 8575 |
} |
| 8576 |
.wp-adminify .taxonomy-category #wpbody-content .wrap, |
| 8577 |
.wp-adminify .taxonomy-post_tag #wpbody-content .wrap, |
| 8578 |
.wp-adminify .taxonomy-post_folder #wpbody-content .wrap, |
| 8579 |
.wp-adminify .taxonomy-media_folder #wpbody-content .wrap, |
| 8580 |
.wp-adminify .taxonomy-folder #wpbody-content .wrap { |
| 8581 |
position: relative; |
| 8582 |
} |
| 8583 |
.wp-adminify .taxonomy-category #wpbody-content .wrap .search-form, |
| 8584 |
.wp-adminify .taxonomy-post_tag #wpbody-content .wrap .search-form, |
| 8585 |
.wp-adminify .taxonomy-post_folder #wpbody-content .wrap .search-form, |
| 8586 |
.wp-adminify .taxonomy-media_folder #wpbody-content .wrap .search-form, |
| 8587 |
.wp-adminify .taxonomy-folder #wpbody-content .wrap .search-form { |
| 8588 |
top: 0; |
| 8589 |
right: 0; |
| 8590 |
margin: 0; |
| 8591 |
position: absolute; |
| 8592 |
} |
| 8593 |
.wp-adminify .taxonomy-category #wpbody-content .col-wrap h2, |
| 8594 |
.wp-adminify .taxonomy-post_tag #wpbody-content .col-wrap h2, |
| 8595 |
.wp-adminify .taxonomy-post_folder #wpbody-content .col-wrap h2, |
| 8596 |
.wp-adminify .taxonomy-media_folder #wpbody-content .col-wrap h2, |
| 8597 |
.wp-adminify .taxonomy-folder #wpbody-content .col-wrap h2 { |
| 8598 |
margin-top: 0; |
| 8599 |
} |
| 8600 |
.wp-adminify .taxonomy-category #wpbody-content #col-left .col-wrap, |
| 8601 |
.wp-adminify .taxonomy-post_tag #wpbody-content #col-left .col-wrap, |
| 8602 |
.wp-adminify .taxonomy-post_folder #wpbody-content #col-left .col-wrap, |
| 8603 |
.wp-adminify .taxonomy-media_folder #wpbody-content #col-left .col-wrap, |
| 8604 |
.wp-adminify .taxonomy-folder #wpbody-content #col-left .col-wrap { |
| 8605 |
padding-right: 1.25rem; |
| 8606 |
} |
| 8607 |
.wp-adminify .taxonomy-category #wpbody-content #col-left .form-wrap, |
| 8608 |
.wp-adminify .taxonomy-post_tag #wpbody-content #col-left .form-wrap, |
| 8609 |
.wp-adminify .taxonomy-post_folder #wpbody-content #col-left .form-wrap, |
| 8610 |
.wp-adminify .taxonomy-media_folder #wpbody-content #col-left .form-wrap, |
| 8611 |
.wp-adminify .taxonomy-folder #wpbody-content #col-left .form-wrap { |
| 8612 |
background-color: var(--adminify-text-color); |
| 8613 |
-webkit-border-radius: 6px; |
| 8614 |
border-radius: 6px; |
| 8615 |
-webkit-box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 8616 |
box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 8617 |
padding: 1.5625rem; |
| 8618 |
} |
| 8619 |
.wp-adminify .taxonomy-category #wpbody-content #col-right #posts-filter, |
| 8620 |
.wp-adminify .taxonomy-post_tag #wpbody-content #col-right #posts-filter, |
| 8621 |
.wp-adminify .taxonomy-post_folder #wpbody-content #col-right #posts-filter, |
| 8622 |
.wp-adminify .taxonomy-media_folder #wpbody-content #col-right #posts-filter, |
| 8623 |
.wp-adminify .taxonomy-folder #wpbody-content #col-right #posts-filter { |
| 8624 |
margin-top: 0; |
| 8625 |
} |
| 8626 |
.wp-adminify .taxonomy-category #wpbody-content #col-right .tablenav, |
| 8627 |
.wp-adminify .taxonomy-post_tag #wpbody-content #col-right .tablenav, |
| 8628 |
.wp-adminify .taxonomy-post_folder #wpbody-content #col-right .tablenav, |
| 8629 |
.wp-adminify .taxonomy-media_folder #wpbody-content #col-right .tablenav, |
| 8630 |
.wp-adminify .taxonomy-folder #wpbody-content #col-right .tablenav { |
| 8631 |
padding-top: 0; |
| 8632 |
} |
| 8633 |
.wp-adminify .taxonomy-category #wpbody-content #col-right .tablenav .actions select, |
| 8634 |
.wp-adminify .taxonomy-post_tag #wpbody-content #col-right .tablenav .actions select, |
| 8635 |
.wp-adminify .taxonomy-post_folder #wpbody-content #col-right .tablenav .actions select, |
| 8636 |
.wp-adminify .taxonomy-media_folder #wpbody-content #col-right .tablenav .actions select, |
| 8637 |
.wp-adminify .taxonomy-folder #wpbody-content #col-right .tablenav .actions select { |
| 8638 |
border: 1px solid #F1F1F3; |
| 8639 |
line-height: 1; |
| 8640 |
min-width: 10rem; |
| 8641 |
padding: 7px 16px; |
| 8642 |
} |
| 8643 |
.wp-adminify.edit-tags-php #wpbody-content .form-wrap label { |
| 8644 |
color: #4E4B66; |
| 8645 |
} |
| 8646 |
.wp-adminify.edit-tags-php #wpbody-content .form-wrap p { |
| 8647 |
color: rgba(78, 75, 102, 0.72); |
| 8648 |
font-size: 13px; |
| 8649 |
margin-top: 10px; |
| 8650 |
} |
| 8651 |
.wp-adminify.edit-tags-php #wpbody-content .form-wrap input:not(.button), |
| 8652 |
.wp-adminify.edit-tags-php #wpbody-content .form-wrap textarea { |
| 8653 |
background-color: var(--adminify-text-color); |
| 8654 |
border: 1px solid #F1F1F3; |
| 8655 |
} |
| 8656 |
.wp-adminify.term-php #wpbody-content .form-table label { |
| 8657 |
color: #4E4B66; |
| 8658 |
} |
| 8659 |
.wp-adminify.term-php #wpbody-content .form-table p { |
| 8660 |
color: rgba(78, 75, 102, 0.72); |
| 8661 |
font-size: 13px; |
| 8662 |
margin-top: 10px; |
| 8663 |
} |
| 8664 |
.wp-adminify.term-php #wpbody-content .form-table input:not(.button), |
| 8665 |
.wp-adminify.term-php #wpbody-content .form-table textarea { |
| 8666 |
background-color: var(--adminify-text-color); |
| 8667 |
border: 1px solid #F1F1F3; |
| 8668 |
} |
| 8669 |
.wp-adminify #wpbody-content .wp-list-table.widefat.media tbody td { |
| 8670 |
vertical-align: top; |
| 8671 |
} |
| 8672 |
.wp-adminify #wpbody-content .wp-list-table.widefat.media tbody .filename { |
| 8673 |
display: none; |
| 8674 |
} |
| 8675 |
.wp-adminify #wpbody-content .wp-list-table.widefat.media tbody input[type=checkbox] { |
| 8676 |
margin-top: 0; |
| 8677 |
position: inherit; |
| 8678 |
} |
| 8679 |
.wp-adminify #wpbody-content .wp-list-table.widefat.media tbody .row-actions { |
| 8680 |
display: inline-block; |
| 8681 |
margin: 5px 0 0; |
| 8682 |
} |
| 8683 |
.wp-adminify #wpbody-content .wp-list-table.widefat.media tbody .row-actions a { |
| 8684 |
font-size: 13px; |
| 8685 |
} |
| 8686 |
.wp-adminify #wpbody-content .wp-list-table.widefat.media tbody .row-actions span { |
| 8687 |
font-size: 0; |
| 8688 |
line-height: 1; |
| 8689 |
margin-right: 8px; |
| 8690 |
} |
| 8691 |
.wp-adminify #wpbody-content .wp-list-table.widefat.media tbody .row-actions span:last-child { |
| 8692 |
margin-right: 0; |
| 8693 |
} |
| 8694 |
.wp-adminify #wpbody-content .wp-list-table.widefat.media tbody .row-actions .delete a { |
| 8695 |
color: #c30052; |
| 8696 |
} |
| 8697 |
.wp-adminify #wpbody-content .wp-list-table.widefat.media tbody .row-actions .view a { |
| 8698 |
color: #00BA88; |
| 8699 |
} |
| 8700 |
.wp-adminify .media-upload-form #drag-drop-area { |
| 8701 |
border: 2px dashed rgba(78, 75, 102, 0.54); |
| 8702 |
} |
| 8703 |
.wp-adminify .media-upload-form .drag-drop-inside { |
| 8704 |
display: -webkit-box; |
| 8705 |
display: -webkit-flex; |
| 8706 |
display: -ms-flexbox; |
| 8707 |
display: flex; |
| 8708 |
-webkit-box-align: center; |
| 8709 |
-webkit-align-items: center; |
| 8710 |
-ms-flex-align: center; |
| 8711 |
align-items: center; |
| 8712 |
-webkit-box-pack: center; |
| 8713 |
-webkit-justify-content: center; |
| 8714 |
-ms-flex-pack: center; |
| 8715 |
justify-content: center; |
| 8716 |
-webkit-box-orient: vertical; |
| 8717 |
-webkit-box-direction: normal; |
| 8718 |
-webkit-flex-direction: column; |
| 8719 |
-ms-flex-direction: column; |
| 8720 |
flex-direction: column; |
| 8721 |
margin: 0 auto; |
| 8722 |
min-height: 200px; |
| 8723 |
} |
| 8724 |
.wp-adminify .media-upload-form .drag-drop-inside p { |
| 8725 |
color: #000; |
| 8726 |
font-size: 24px; |
| 8727 |
font-weight: 700; |
| 8728 |
line-height: 32px; |
| 8729 |
} |
| 8730 |
.wp-adminify .media-upload-form .drag-drop-inside p:nth-child(2) { |
| 8731 |
font-size: 14px; |
| 8732 |
font-weight: 400; |
| 8733 |
line-height: 20px; |
| 8734 |
} |
| 8735 |
.wp-adminify .media-upload-form .drag-drop-inside #plupload-browse-button { |
| 8736 |
background-color: transparent; |
| 8737 |
border: 1px solid var(--adminify-btn-bg); |
| 8738 |
color: var(--adminify-btn-bg); |
| 8739 |
height: auto; |
| 8740 |
min-width: 10rem; |
| 8741 |
} |
| 8742 |
.wp-adminify .media-upload-form .drag-drop-inside #plupload-browse-button:hover { |
| 8743 |
background-color: var(--adminify-btn-bg); |
| 8744 |
color: var(--adminify-text-color); |
| 8745 |
} |
| 8746 |
.wp-adminify .media-upload-form .upload-flash-bypass, |
| 8747 |
.wp-adminify .media-upload-form .max-upload-size { |
| 8748 |
color: #4E4B66; |
| 8749 |
font-size: 14px; |
| 8750 |
font-weight: 400; |
| 8751 |
line-height: 20px; |
| 8752 |
} |
| 8753 |
.wp-adminify .media-upload-form #media-items .media-item { |
| 8754 |
-webkit-box-shadow: none; |
| 8755 |
box-shadow: none; |
| 8756 |
margin-bottom: 0; |
| 8757 |
min-height: 44px; |
| 8758 |
} |
| 8759 |
.wp-adminify .media-upload-form #media-items .pinkynail { |
| 8760 |
height: 40px; |
| 8761 |
width: 40px; |
| 8762 |
max-height: inherit; |
| 8763 |
} |
| 8764 |
.wp-adminify .media-upload-form #media-items .edit-attachment { |
| 8765 |
color: var(--adminify-btn-bg); |
| 8766 |
font-size: 14px; |
| 8767 |
font-weight: 600; |
| 8768 |
line-height: 20px; |
| 8769 |
margin-top: 13px; |
| 8770 |
} |
| 8771 |
.wp-adminify .media-upload-form #media-items .filename { |
| 8772 |
float: left; |
| 8773 |
margin-top: 6px; |
| 8774 |
} |
| 8775 |
.wp-adminify .media-upload-form #media-items .filename .title { |
| 8776 |
color: #4E4B66; |
| 8777 |
font-size: 14px; |
| 8778 |
font-weight: 400; |
| 8779 |
line-height: 20px; |
| 8780 |
} |
| 8781 |
.wp-adminify .wp_attachment_details input, |
| 8782 |
.wp-adminify .wp_attachment_details textarea { |
| 8783 |
background-color: var(--adminify-admin-bar-input-bg); |
| 8784 |
border: none; |
| 8785 |
-webkit-border-radius: 6px; |
| 8786 |
border-radius: 6px; |
| 8787 |
color: var(--adminify-admin-bar-input-text); |
| 8788 |
font-size: 14px; |
| 8789 |
line-height: 20px; |
| 8790 |
padding: 8px 16px; |
| 8791 |
} |
| 8792 |
.wp-adminify .wp_attachment_details .attachment-content-description { |
| 8793 |
color: rgba(78, 75, 102, 0.72); |
| 8794 |
} |
| 8795 |
.wp-adminify #misc-publishing-actions { |
| 8796 |
color: #4E4B66; |
| 8797 |
font-size: 14px; |
| 8798 |
font-weight: 400; |
| 8799 |
line-height: 16px; |
| 8800 |
} |
| 8801 |
.wp-adminify #misc-publishing-actions a { |
| 8802 |
color: var(--adminify-btn-bg); |
| 8803 |
} |
| 8804 |
.wp-adminify #misc-publishing-actions #timestamp { |
| 8805 |
color: #14142B; |
| 8806 |
font-size: 13px; |
| 8807 |
line-height: 16px; |
| 8808 |
} |
| 8809 |
.wp-adminify #misc-publishing-actions #timestamp b { |
| 8810 |
font-size: 13px; |
| 8811 |
} |
| 8812 |
.wp-adminify #misc-publishing-actions #timestamp:before { |
| 8813 |
font-size: 16px; |
| 8814 |
} |
| 8815 |
.wp-adminify #misc-publishing-actions label { |
| 8816 |
display: block; |
| 8817 |
font-size: 12px; |
| 8818 |
font-weight: 400; |
| 8819 |
margin-bottom: 5px; |
| 8820 |
} |
| 8821 |
.wp-adminify #misc-publishing-actions input { |
| 8822 |
background-color: var(--adminify-admin-bar-input-bg); |
| 8823 |
border: none; |
| 8824 |
-webkit-border-radius: 6px; |
| 8825 |
border-radius: 6px; |
| 8826 |
color: var(--adminify-admin-bar-input-text); |
| 8827 |
font-size: 14px; |
| 8828 |
line-height: 20px; |
| 8829 |
padding: 8px 16px; |
| 8830 |
} |
| 8831 |
.wp-adminify #major-publishing-actions a { |
| 8832 |
color: #c30052; |
| 8833 |
} |
| 8834 |
.wp-adminify #posts-filter .filename { |
| 8835 |
color: #4E4B66; |
| 8836 |
font-size: 14px; |
| 8837 |
font-weight: 400; |
| 8838 |
line-height: 20px; |
| 8839 |
} |
| 8840 |
.wp-adminify .media-frame-content .wp-filter { |
| 8841 |
background-color: transparent; |
| 8842 |
border: 0; |
| 8843 |
-webkit-box-shadow: none; |
| 8844 |
box-shadow: none; |
| 8845 |
padding: 0; |
| 8846 |
} |
| 8847 |
.wp-adminify .media-frame-content .wp-filter .view-switch { |
| 8848 |
margin-left: 0; |
| 8849 |
} |
| 8850 |
.wp-adminify .media-frame-content .wp-filter .view-switch a { |
| 8851 |
text-align: left; |
| 8852 |
} |
| 8853 |
.wp-adminify .media-frame-content .wp-filter .view-switch a:before { |
| 8854 |
color: #D5E0FF; |
| 8855 |
} |
| 8856 |
.wp-adminify .media-frame-content .wp-filter .view-switch a.current:before { |
| 8857 |
color: var(--adminify-btn-bg); |
| 8858 |
} |
| 8859 |
.wp-adminify .media-frame-content .wp-filter .view-switch a:focus { |
| 8860 |
border: 0; |
| 8861 |
-webkit-box-shadow: none; |
| 8862 |
box-shadow: none; |
| 8863 |
outline: 0; |
| 8864 |
} |
| 8865 |
.wp-adminify .media-frame-content .wp-filter select { |
| 8866 |
background-color: var(--adminify-text-color); |
| 8867 |
border: 1px solid #F1F1F3; |
| 8868 |
-webkit-border-radius: 6px; |
| 8869 |
border-radius: 6px; |
| 8870 |
color: rgba(78, 75, 102, 0.72); |
| 8871 |
min-height: 36px; |
| 8872 |
} |
| 8873 |
.wp-adminify .media-frame-content .wp-filter button { |
| 8874 |
background-color: transparent; |
| 8875 |
border: 1px solid rgba(78, 75, 102, 0.72); |
| 8876 |
-webkit-border-radius: 6px; |
| 8877 |
border-radius: 6px; |
| 8878 |
color: rgba(78, 75, 102, 0.72); |
| 8879 |
display: inline-block; |
| 8880 |
font-size: 14px; |
| 8881 |
font-weight: 700; |
| 8882 |
line-height: 20px; |
| 8883 |
min-height: 36px; |
| 8884 |
padding: 7px 16px; |
| 8885 |
} |
| 8886 |
.wp-adminify .media-frame.mode-grid .attachments-browser .attachments { |
| 8887 |
margin: 0 -8px; |
| 8888 |
padding: 0; |
| 8889 |
} |
| 8890 |
.wp-adminify #wp-media-grid .media-frame .uploader-inline { |
| 8891 |
border: 2px dashed rgba(78, 75, 102, 0.54); |
| 8892 |
} |
| 8893 |
.wp-adminify #wp-media-grid .media-frame .uploader-inline-content h2 { |
| 8894 |
font-size: 24px; |
| 8895 |
line-height: 32px; |
| 8896 |
} |
| 8897 |
.wp-adminify #wp-media-grid .media-frame .uploader-inline-content p { |
| 8898 |
color: #000; |
| 8899 |
font-size: 14px; |
| 8900 |
font-weight: 400; |
| 8901 |
line-height: 20px; |
| 8902 |
} |
| 8903 |
.wp-adminify #wp-media-grid .media-frame .uploader-inline-content button.browser { |
| 8904 |
min-height: inherit; |
| 8905 |
padding: 7px 2.5rem; |
| 8906 |
} |
| 8907 |
.wp-adminify #wp-media-grid .media-frame .attachments-browser .attachments li:focus { |
| 8908 |
border: 0; |
| 8909 |
-webkit-box-shadow: none; |
| 8910 |
box-shadow: none; |
| 8911 |
outline: 0; |
| 8912 |
} |
| 8913 |
.wp-adminify .media-modal .media-modal-close { |
| 8914 |
color: var(--adminify-notif-bg-color); |
| 8915 |
height: 50px; |
| 8916 |
padding: 0; |
| 8917 |
} |
| 8918 |
.wp-adminify .media-modal .media-modal-close:focus { |
| 8919 |
border: 0; |
| 8920 |
} |
| 8921 |
.wp-adminify .media-modal .media-frame-router .media-router .media-menu-item { |
| 8922 |
background-color: transparent; |
| 8923 |
border: 1px solid transparent; |
| 8924 |
border-bottom-width: 0; |
| 8925 |
-webkit-border-radius: 0; |
| 8926 |
border-radius: 0; |
| 8927 |
-webkit-border-top-left-radius: 6px; |
| 8928 |
border-top-left-radius: 6px; |
| 8929 |
-webkit-border-top-right-radius: 6px; |
| 8930 |
border-top-right-radius: 6px; |
| 8931 |
color: #14142B; |
| 8932 |
font-size: 14px; |
| 8933 |
font-weight: 600; |
| 8934 |
height: auto; |
| 8935 |
line-height: 36px; |
| 8936 |
margin: 0; |
| 8937 |
padding: 0 0.875rem; |
| 8938 |
} |
| 8939 |
.wp-adminify .media-modal .media-frame-router .media-router .media-menu-item.active { |
| 8940 |
background-color: var(--adminify-btn-bg); |
| 8941 |
border-color: var(--adminify-btn-bg); |
| 8942 |
color: var(--adminify-text-color); |
| 8943 |
} |
| 8944 |
.wp-adminify .media-modal .media-frame-tab-panel .media-frame-content { |
| 8945 |
top: 85px; |
| 8946 |
} |
| 8947 |
.wp-adminify .media-modal .media-frame-tab-panel .media-frame-content .media-sidebar .details { |
| 8948 |
padding: 12px 0; |
| 8949 |
} |
| 8950 |
.wp-adminify .media-modal .media-frame-tab-panel .media-frame-content .attachment-info { |
| 8951 |
margin-bottom: 12px; |
| 8952 |
padding-bottom: 0; |
| 8953 |
} |
| 8954 |
.wp-adminify .media-modal .media-frame-tab-panel[aria-labelledby=menu-item-gallery-edit] .media-frame-content { |
| 8955 |
top: 55px; |
| 8956 |
} |
| 8957 |
.wp-adminify .media-modal .media-frame-content { |
| 8958 |
border-top: 1px solid #E5E5E5; |
| 8959 |
top: 50px; |
| 8960 |
} |
| 8961 |
.wp-adminify .media-modal .media-frame-content select { |
| 8962 |
background-color: var(--adminify-text-color); |
| 8963 |
border: 1px solid #F1F1F3; |
| 8964 |
-webkit-border-radius: 6px; |
| 8965 |
border-radius: 6px; |
| 8966 |
color: rgba(78, 75, 102, 0.72); |
| 8967 |
min-height: 36px; |
| 8968 |
} |
| 8969 |
.wp-adminify .media-modal .media-frame-content .details-image { |
| 8970 |
-webkit-border-radius: 6px; |
| 8971 |
border-radius: 6px; |
| 8972 |
} |
| 8973 |
.wp-adminify .media-modal .media-frame-content button { |
| 8974 |
min-height: inherit; |
| 8975 |
} |
| 8976 |
.wp-adminify .media-modal .media-frame-content button.button-small { |
| 8977 |
font-size: 13px; |
| 8978 |
padding: 0 10px; |
| 8979 |
} |
| 8980 |
.wp-adminify .media-modal .media-frame-content .attachments li { |
| 8981 |
padding: 12px; |
| 8982 |
} |
| 8983 |
.wp-adminify .media-modal .media-frame-content .attachments li:focus { |
| 8984 |
-webkit-box-shadow: none; |
| 8985 |
box-shadow: none; |
| 8986 |
outline: 0; |
| 8987 |
outline-offset: 0; |
| 8988 |
} |
| 8989 |
.wp-adminify .media-modal .media-frame-content .attachments li button { |
| 8990 |
border: 0; |
| 8991 |
-webkit-border-radius: 3px; |
| 8992 |
border-radius: 3px; |
| 8993 |
-webkit-box-shadow: none; |
| 8994 |
box-shadow: none; |
| 8995 |
} |
| 8996 |
.wp-adminify .media-modal .media-frame-content .attachments li.selected { |
| 8997 |
border: 0; |
| 8998 |
-webkit-box-shadow: inset 0 0 0 3px var(--adminify-text-color), inset 0 0 0 7px var(--adminify-btn-bg); |
| 8999 |
box-shadow: inset 0 0 0 3px var(--adminify-text-color), inset 0 0 0 7px var(--adminify-btn-bg); |
| 9000 |
} |
| 9001 |
.wp-adminify .media-modal .media-frame-content .attachments li.selected button.check { |
| 9002 |
background-color: var(--adminify-btn-bg) !important; |
| 9003 |
-webkit-box-shadow: none !important; |
| 9004 |
box-shadow: none !important; |
| 9005 |
padding: 0 !important; |
| 9006 |
} |
| 9007 |
.wp-adminify .media-modal .media-frame-content .attachments li.selected button.check .media-modal-icon { |
| 9008 |
background-position: -21px 0; |
| 9009 |
} |
| 9010 |
.wp-adminify .media-modal .media-frame-content .attachments li.attachment .attachment-close { |
| 9011 |
background-color: var(--adminify-btn-bg); |
| 9012 |
background-size: 112px 15px; |
| 9013 |
padding: 0; |
| 9014 |
} |
| 9015 |
.wp-adminify .media-modal .media-frame-content .attachments li.attachment .attachment-close:hover { |
| 9016 |
background-color: var(--adminify-notif-bg-color); |
| 9017 |
background-position: -46px 4px; |
| 9018 |
} |
| 9019 |
.wp-adminify .media-modal .media-frame-content .media-sidebar { |
| 9020 |
background-color: var(--adminify-text-color); |
| 9021 |
width: 285px; |
| 9022 |
} |
| 9023 |
.wp-adminify .media-modal .media-frame-content .media-sidebar .setting { |
| 9024 |
padding-left: 0; |
| 9025 |
padding-right: 0; |
| 9026 |
} |
| 9027 |
.wp-adminify .media-modal .media-frame-content .media-sidebar .description { |
| 9028 |
color: rgba(78, 75, 102, 0.72); |
| 9029 |
font-size: 13px; |
| 9030 |
} |
| 9031 |
.wp-adminify .media-modal .media-frame-content .media-sidebar a { |
| 9032 |
color: var(--adminify-btn-bg); |
| 9033 |
} |
| 9034 |
.wp-adminify .media-modal .media-frame-content .media-sidebar label { |
| 9035 |
color: #14142B; |
| 9036 |
font-size: 14px; |
| 9037 |
font-weight: 600; |
| 9038 |
} |
| 9039 |
.wp-adminify .media-modal .media-frame-content .media-sidebar .compat-item label, |
| 9040 |
.wp-adminify .media-modal .media-frame-content .media-sidebar .compat-item .alignleft { |
| 9041 |
text-align: left; |
| 9042 |
} |
| 9043 |
.wp-adminify .media-modal .media-frame-content .media-sidebar input#gallery-settings-random-order { |
| 9044 |
background-color: var(--adminify-text-color); |
| 9045 |
border: 1px solid rgba(78, 75, 102, 0.54); |
| 9046 |
-webkit-border-radius: 4px; |
| 9047 |
border-radius: 4px; |
| 9048 |
height: 14px; |
| 9049 |
width: 14px; |
| 9050 |
position: relative; |
| 9051 |
margin-top: -6px; |
| 9052 |
min-width: inherit; |
| 9053 |
} |
| 9054 |
.wp-adminify .media-modal .media-frame-content .media-sidebar input#gallery-settings-random-order:checked { |
| 9055 |
background-color: var(--adminify-btn-bg); |
| 9056 |
border-color: var(--adminify-btn-bg); |
| 9057 |
color: var(--adminify-text-color); |
| 9058 |
} |
| 9059 |
.wp-adminify .media-modal .media-frame-content .media-sidebar input#gallery-settings-random-order:checked:before { |
| 9060 |
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%233582c4%27%2F%3E%3C%2Fsvg%3E"); |
| 9061 |
background-color: transparent; |
| 9062 |
-webkit-filter: brightness(0) invert(1); |
| 9063 |
filter: brightness(0) invert(1); |
| 9064 |
height: 16px; |
| 9065 |
width: 16px; |
| 9066 |
top: -2px; |
| 9067 |
left: -2px; |
| 9068 |
margin: 0; |
| 9069 |
position: inherit; |
| 9070 |
} |
| 9071 |
.wp-adminify .media-modal .media-frame-content .media-sidebar .collection-settings.gallery-settings .setting { |
| 9072 |
display: -webkit-box; |
| 9073 |
display: -webkit-flex; |
| 9074 |
display: -ms-flexbox; |
| 9075 |
display: flex; |
| 9076 |
-webkit-box-align: center; |
| 9077 |
-webkit-align-items: center; |
| 9078 |
-ms-flex-align: center; |
| 9079 |
align-items: center; |
| 9080 |
} |
| 9081 |
.wp-adminify .media-modal .media-frame-content .media-sidebar .collection-settings.gallery-settings .setting label { |
| 9082 |
height: auto; |
| 9083 |
width: auto; |
| 9084 |
max-width: inherit; |
| 9085 |
padding-top: 0; |
| 9086 |
} |
| 9087 |
.wp-adminify .media-modal .media-frame-content .imgedit-wrap .imgedit-settings { |
| 9088 |
background-color: var(--adminify-text-color); |
| 9089 |
width: 282px; |
| 9090 |
} |
| 9091 |
.wp-adminify .media-modal .media-frame-content .imgedit-wrap .imgedit-settings .imgedit-group h2, .wp-adminify .media-modal .media-frame-content .imgedit-wrap .imgedit-settings .imgedit-group p, .wp-adminify .media-modal .media-frame-content .imgedit-wrap .imgedit-settings .imgedit-group legend, .wp-adminify .media-modal .media-frame-content .imgedit-wrap .imgedit-settings .imgedit-group label { |
| 9092 |
color: #14142B; |
| 9093 |
} |
| 9094 |
.wp-adminify .media-modal .media-frame-content .attachment-info { |
| 9095 |
background-color: var(--adminify-text-color); |
| 9096 |
} |
| 9097 |
.wp-adminify .media-modal .media-frame-content .attachment-info a { |
| 9098 |
color: var(--adminify-btn-bg); |
| 9099 |
display: inline-block; |
| 9100 |
} |
| 9101 |
.wp-adminify .media-modal .media-frame-content .attachment-info .edit-attachment { |
| 9102 |
font-size: 14px; |
| 9103 |
font-weight: 600; |
| 9104 |
line-height: 20px; |
| 9105 |
margin: 8px 0; |
| 9106 |
} |
| 9107 |
.wp-adminify .media-modal .media-frame-content .attachment-info input, |
| 9108 |
.wp-adminify .media-modal .media-frame-content .attachment-info textarea, |
| 9109 |
.wp-adminify .media-modal .media-frame-content .attachment-info .copy-to-clipboard-container { |
| 9110 |
margin-bottom: 15px; |
| 9111 |
} |
| 9112 |
.wp-adminify .media-modal .media-frame-content .attachment-info a { |
| 9113 |
color: var(--adminify-btn-bg); |
| 9114 |
} |
| 9115 |
.wp-adminify .media-modal .media-frame-content .attachment-info label, |
| 9116 |
.wp-adminify .media-modal .media-frame-content .attachment-info .details { |
| 9117 |
color: #14142B; |
| 9118 |
font-size: 13px; |
| 9119 |
line-height: 20px; |
| 9120 |
text-align: left; |
| 9121 |
} |
| 9122 |
.wp-adminify .media-modal .media-frame-content .attachment-info .details div { |
| 9123 |
padding: 3px 0; |
| 9124 |
} |
| 9125 |
.wp-adminify .media-modal .media-frame-content .attachment-info p { |
| 9126 |
color: #14142B; |
| 9127 |
font-size: 13px; |
| 9128 |
} |
| 9129 |
.wp-adminify .media-modal .media-frame-content .attachment-info p.media-types-required-info { |
| 9130 |
margin-left: 35%; |
| 9131 |
} |
| 9132 |
.wp-adminify .media-modal .media-frame-content .attachment-info input, |
| 9133 |
.wp-adminify .media-modal .media-frame-content .attachment-info textarea, |
| 9134 |
.wp-adminify .media-modal .media-frame-content .attachment-info .filename { |
| 9135 |
color: #14142B; |
| 9136 |
} |
| 9137 |
.wp-adminify .media-modal .media-frame-content .attachment-info .alignleft { |
| 9138 |
color: #14142B; |
| 9139 |
text-align: left; |
| 9140 |
} |
| 9141 |
.wp-adminify .media-modal .media-frame-content .settings-save-status { |
| 9142 |
right: 20px; |
| 9143 |
top: 20px; |
| 9144 |
position: absolute; |
| 9145 |
} |
| 9146 |
.wp-adminify .media-modal .media-frame-content .settings, |
| 9147 |
.wp-adminify .media-modal .media-frame-content .setting { |
| 9148 |
border-bottom: 1px solid #E5E5E5; |
| 9149 |
color: #4E4B66; |
| 9150 |
display: block; |
| 9151 |
font-size: 13px; |
| 9152 |
line-height: 20px; |
| 9153 |
margin-bottom: 12px; |
| 9154 |
} |
| 9155 |
.wp-adminify .media-modal .media-frame-content .actions { |
| 9156 |
padding-left: 15px; |
| 9157 |
} |
| 9158 |
.wp-adminify .media-modal .media-frame-content .actions a { |
| 9159 |
background-color: transparent !important; |
| 9160 |
border: 1px solid var(--adminify-btn-bg) !important; |
| 9161 |
-webkit-border-radius: 6px !important; |
| 9162 |
border-radius: 6px !important; |
| 9163 |
color: var(--adminify-btn-bg) !important; |
| 9164 |
font-size: 14px; |
| 9165 |
font-weight: 600; |
| 9166 |
line-height: 34px !important; |
| 9167 |
padding: 0 16px !important; |
| 9168 |
font-size: 12px; |
| 9169 |
padding: 7px 10px; |
| 9170 |
} |
| 9171 |
.wp-adminify .media-modal .media-frame-content .actions span { |
| 9172 |
display: none; |
| 9173 |
} |
| 9174 |
.wp-adminify .media-modal .media-frame-content .media-embed .setting input[type=text], |
| 9175 |
.wp-adminify .media-modal .media-frame-content .media-embed .setting textarea, |
| 9176 |
.wp-adminify .media-modal .media-frame-content .media-embed fieldset { |
| 9177 |
margin-bottom: 15px; |
| 9178 |
max-width: inherit; |
| 9179 |
} |
| 9180 |
.wp-adminify .media-modal .media-frame-toolbar .media-toolbar { |
| 9181 |
border-top: 1px solid #D8D8D8; |
| 9182 |
bottom: -50px; |
| 9183 |
} |
| 9184 |
.wp-adminify .media-modal .media-frame-toolbar .media-toolbar .media-selection .count { |
| 9185 |
font-size: 12px; |
| 9186 |
line-height: 1; |
| 9187 |
padding: 3px 0; |
| 9188 |
} |
| 9189 |
.wp-adminify .media-modal .media-frame .media-frame-menu-heading { |
| 9190 |
color: #14142B; |
| 9191 |
font-size: 16px; |
| 9192 |
} |
| 9193 |
.wp-adminify .media-modal .media-frame .media-frame-menu .media-menu button { |
| 9194 |
color: var(--adminify-btn-bg); |
| 9195 |
font-size: 14px; |
| 9196 |
font-weight: 600; |
| 9197 |
line-height: 20px; |
| 9198 |
} |
| 9199 |
.wp-adminify .media-modal .media-frame .media-frame-menu .media-menu button.active, .wp-adminify .media-modal .media-frame .media-frame-menu .media-menu button:hover { |
| 9200 |
background-color: var(--adminify-btn-bg); |
| 9201 |
color: var(--adminify-text-color); |
| 9202 |
} |
| 9203 |
.wp-adminify .media-modal .media-frame .media-frame-menu .media-menu .separator { |
| 9204 |
border-top: 1px solid #D8D8D8; |
| 9205 |
margin: 10px 0; |
| 9206 |
} |
| 9207 |
.wp-adminify.adminify-ui .media-frame-content .media-toolbar .media-toolbar-secondary .delete-selected-button, |
| 9208 |
.wp-adminify.adminify-ui .media-modal .media-frame-content .actions .delete-attachment { |
| 9209 |
border-color: #c30052 !important; |
| 9210 |
background-color: transparent !important; |
| 9211 |
color: #c30052 !important; |
| 9212 |
font-size: 12px; |
| 9213 |
line-height: 18px !important; |
| 9214 |
padding: 7px 10px !important; |
| 9215 |
} |
| 9216 |
.wp-adminify.adminify-ui .media-frame-content .media-toolbar .media-toolbar-secondary .delete-selected-button:hover, |
| 9217 |
.wp-adminify.adminify-ui .media-modal .media-frame-content .actions .delete-attachment:hover { |
| 9218 |
background-color: #c30052 !important; |
| 9219 |
color: var(--adminify-text-color) !important; |
| 9220 |
} |
| 9221 |
.wp-adminify #wpbody-content #post-body-content .wp_attachment_details.edit-form-section p { |
| 9222 |
color: #14142B; |
| 9223 |
} |
| 9224 |
.wp-adminify #wpbody-content #post-body-content label { |
| 9225 |
display: inline-block; |
| 9226 |
margin-bottom: 4px; |
| 9227 |
} |
| 9228 |
.wp-adminify #wpbody-content #post-body-content textarea#attachment_caption { |
| 9229 |
min-height: 10rem; |
| 9230 |
} |
| 9231 |
.wp-adminify #wpbody-content #post-body-content .attachment-alt-text-description { |
| 9232 |
margin-top: 10px; |
| 9233 |
} |
| 9234 |
.wp-adminify #wpbody-content #post-body-content .wp_attachment_image input[type=button] { |
| 9235 |
background-color: #00BA88; |
| 9236 |
border: 1px solid #00BA88; |
| 9237 |
color: var(--adminify-text-color); |
| 9238 |
} |
| 9239 |
.wp-adminify #wpbody-content #post-body-content .wp_attachment_image input[type=button]:hover { |
| 9240 |
background-color: var(--adminify-text-color); |
| 9241 |
color: #00BA88; |
| 9242 |
} |
| 9243 |
.wp-adminify #wpbody-content #post-body-content .wp-editor-container input.button { |
| 9244 |
background-color: var(--adminify-text-color); |
| 9245 |
line-height: 16px; |
| 9246 |
} |
| 9247 |
.wp-adminify #wpbody-content #post-body-content .wp-editor-container textarea { |
| 9248 |
border-top: 1px solid var(--adminify-text-color); |
| 9249 |
} |
| 9250 |
.wp-adminify #wpbody-content .image-editor .imgedit-submit .imgedit-cancel-btn, |
| 9251 |
.wp-adminify .image-editor .imgedit-submit .imgedit-cancel-btn { |
| 9252 |
background-color: #c30052; |
| 9253 |
border: 1px solid #c30052; |
| 9254 |
-webkit-border-radius: 6px; |
| 9255 |
border-radius: 6px; |
| 9256 |
color: var(--adminify-text-color); |
| 9257 |
} |
| 9258 |
.wp-adminify #wpbody-content .image-editor .imgedit-submit .imgedit-cancel-btn:hover, |
| 9259 |
.wp-adminify .image-editor .imgedit-submit .imgedit-cancel-btn:hover { |
| 9260 |
background-color: var(--adminify-text-color); |
| 9261 |
border-color: #c30052; |
| 9262 |
color: #c30052; |
| 9263 |
} |
| 9264 |
.wp-adminify #wpbody-content .image-editor .imgedit-submit .imgedit-submit-btn, |
| 9265 |
.wp-adminify .image-editor .imgedit-submit .imgedit-submit-btn { |
| 9266 |
background-color: #0cce6b; |
| 9267 |
border: 1px solid #0cce6b; |
| 9268 |
} |
| 9269 |
.wp-adminify #wpbody-content .image-editor .imgedit-submit .imgedit-submit-btn:hover, |
| 9270 |
.wp-adminify .image-editor .imgedit-submit .imgedit-submit-btn:hover { |
| 9271 |
background-color: var(--adminify-text-color); |
| 9272 |
border-color: #0cce6b; |
| 9273 |
color: #0cce6b; |
| 9274 |
} |
| 9275 |
.wp-adminify #wpbody-content .image-editor .imgedit-group .imgedit-help-toggle, |
| 9276 |
.wp-adminify .image-editor .imgedit-group .imgedit-help-toggle { |
| 9277 |
color: var(--adminify-btn-bg); |
| 9278 |
} |
| 9279 |
.wp-adminify #wpbody-content .image-editor .imgedit-group .imgedit-label input, |
| 9280 |
.wp-adminify .image-editor .imgedit-group .imgedit-label input { |
| 9281 |
margin-top: -6px; |
| 9282 |
} |
| 9283 |
.wp-adminify #wpbody-content .image-editor .imgedit-group { |
| 9284 |
padding: 15px; |
| 9285 |
} |
| 9286 |
.wp-adminify .media-new-php .media-item .progress { |
| 9287 |
height: 20px; |
| 9288 |
} |
| 9289 |
.wp-adminify .media-new-php .media-item .progress .bar { |
| 9290 |
background-color: var(--adminify-btn-bg); |
| 9291 |
} |
| 9292 |
.wp-adminify #adminify-pto-media #sortable li { |
| 9293 |
background-color: var(--adminify-text-color); |
| 9294 |
border: 1px solid #E5E5E5; |
| 9295 |
border-left-width: 4px; |
| 9296 |
-webkit-border-radius: 6px; |
| 9297 |
border-radius: 6px; |
| 9298 |
color: #4E4B66; |
| 9299 |
font-size: 14px; |
| 9300 |
font-weight: 400; |
| 9301 |
line-height: 20px; |
| 9302 |
margin-bottom: 10px; |
| 9303 |
padding: 10px 15px; |
| 9304 |
} |
| 9305 |
.wp-adminify #adminify-pto-media #sortable li:nth-child(odd) { |
| 9306 |
background-color: #F1F1F3; |
| 9307 |
} |
| 9308 |
.wp-adminify #adminify-pto-media #sortable li:last-child { |
| 9309 |
margin-bottom: 0; |
| 9310 |
} |
| 9311 |
.wp-adminify .attachments-browser .media-toolbar-secondary { |
| 9312 |
height: auto; |
| 9313 |
max-width: inherit; |
| 9314 |
} |
| 9315 |
.wp-adminify .attachments-browser .media-sidebar .setting { |
| 9316 |
padding-bottom: 12px; |
| 9317 |
} |
| 9318 |
.wp-adminify .attachments-browser .media-sidebar .setting label { |
| 9319 |
color: #000; |
| 9320 |
font-size: 13px; |
| 9321 |
text-align: left; |
| 9322 |
} |
| 9323 |
.wp-adminify .wp-filter .search-form { |
| 9324 |
display: inline; |
| 9325 |
height: auto; |
| 9326 |
max-width: inherit; |
| 9327 |
} |
| 9328 |
.wp-adminify .adminify--items-dragging .media-frame, |
| 9329 |
.wp-adminify .adminify--items-dragging .media-frame-content, |
| 9330 |
.wp-adminify .adminify--items-dragging .attachments-browser { |
| 9331 |
overflow: initial; |
| 9332 |
} |
| 9333 |
.wp-adminify body.wp-adminify { |
| 9334 |
--adminify-text-color: #fff; |
| 9335 |
} |
| 9336 |
.wp-adminify body.wp-adminify { |
| 9337 |
--adminify-text-color: #fff; |
| 9338 |
} |
| 9339 |
@font-face { |
| 9340 |
.wp-adminify { |
| 9341 |
font-family: no-parens; |
| 9342 |
src: url("data:application/x-font-woff;base64,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"); |
| 9343 |
unicode-range: U+0028, U+0029; |
| 9344 |
} |
| 9345 |
} |
| 9346 |
.wp-adminify #wpbody-content .qt-dfw { |
| 9347 |
font-family: dashicons; |
| 9348 |
} |
| 9349 |
.wp-adminify #wpbody-content .adminify-container a[class*=-url], |
| 9350 |
.wp-adminify #wpbody-content .wp-heading-inline a[class*=-url] { |
| 9351 |
border-width: 1px; |
| 9352 |
border-style: solid; |
| 9353 |
-webkit-border-radius: 3px; |
| 9354 |
border-radius: 3px; |
| 9355 |
display: -webkit-inline-box; |
| 9356 |
display: -webkit-inline-flex; |
| 9357 |
display: -ms-inline-flexbox; |
| 9358 |
display: inline-flex; |
| 9359 |
-webkit-box-align: center; |
| 9360 |
-webkit-align-items: center; |
| 9361 |
-ms-flex-align: center; |
| 9362 |
align-items: center; |
| 9363 |
font-size: 12px; |
| 9364 |
font-weight: 600; |
| 9365 |
line-height: 18px; |
| 9366 |
margin-left: 5px; |
| 9367 |
padding: 0 7px; |
| 9368 |
vertical-align: text-top; |
| 9369 |
} |
| 9370 |
.wp-adminify #wpbody-content .adminify-container a[class*=-url] i, |
| 9371 |
.wp-adminify #wpbody-content .wp-heading-inline a[class*=-url] i { |
| 9372 |
margin-right: 5px; |
| 9373 |
} |
| 9374 |
.wp-adminify #wpbody-content .adminify-container a[class*=-url]:hover, |
| 9375 |
.wp-adminify #wpbody-content .wp-heading-inline a[class*=-url]:hover { |
| 9376 |
color: var(--adminify-text-color); |
| 9377 |
} |
| 9378 |
.wp-adminify #wpbody-content .adminify-container a[class*=-url]:hover svg path, |
| 9379 |
.wp-adminify #wpbody-content .wp-heading-inline a[class*=-url]:hover svg path { |
| 9380 |
fill: var(--adminify-text-color); |
| 9381 |
} |
| 9382 |
.wp-adminify #wpbody-content a.adminify-docs-url { |
| 9383 |
border-color: var(--adminify-btn-bg); |
| 9384 |
color: var(--adminify-btn-bg); |
| 9385 |
} |
| 9386 |
.wp-adminify #wpbody-content a.adminify-docs-url:hover { |
| 9387 |
background-color: var(--adminify-btn-bg); |
| 9388 |
} |
| 9389 |
.wp-adminify #wpbody-content a.adminify-video-url { |
| 9390 |
border-color: #c30052; |
| 9391 |
color: #c30052; |
| 9392 |
} |
| 9393 |
.wp-adminify #wpbody-content a.adminify-video-url:hover { |
| 9394 |
background-color: #c30052; |
| 9395 |
color: var(--adminify-text-color); |
| 9396 |
} |
| 9397 |
.wp-adminify #wpbody-content a.adminify-fbgroup-url { |
| 9398 |
border-color: #3b5998; |
| 9399 |
color: #3b5998; |
| 9400 |
} |
| 9401 |
.wp-adminify #wpbody-content a.adminify-fbgroup-url:hover { |
| 9402 |
background-color: #3b5998; |
| 9403 |
} |
| 9404 |
.wp-adminify #wpbody-content a.adminify-support-url { |
| 9405 |
border-color: #4E4B66; |
| 9406 |
color: #4E4B66; |
| 9407 |
} |
| 9408 |
.wp-adminify #wpbody-content a.adminify-support-url:hover { |
| 9409 |
background-color: #4E4B66; |
| 9410 |
} |
| 9411 |
.wp-adminify #wpbody-content .adminify-options.wp-adminify-settings .adminify-reset-section:hover { |
| 9412 |
background-color: var(--adminify-btn-bg); |
| 9413 |
color: var(--adminify-text-color); |
| 9414 |
} |
| 9415 |
.wp-adminify #wpbody-content .adminify-options.wp-adminify-settings .adminify-reset-all { |
| 9416 |
background-color: var(--adminify-text-color); |
| 9417 |
border-color: #c30052; |
| 9418 |
color: #c30052; |
| 9419 |
} |
| 9420 |
.wp-adminify #wpbody-content .adminify-options.wp-adminify-settings .adminify-reset-all:hover { |
| 9421 |
background-color: #c30052; |
| 9422 |
color: var(--adminify-text-color); |
| 9423 |
} |
| 9424 |
.wp-adminify #wpbody-content .adminify-options.wp-adminify-settings .adminify-header .adminify-header-inner { |
| 9425 |
background-color: var(--adminify-text-color); |
| 9426 |
border-bottom: 1px solid #F1F1F3; |
| 9427 |
-webkit-border-top-left-radius: 6px; |
| 9428 |
border-top-left-radius: 6px; |
| 9429 |
-webkit-border-top-right-radius: 6px; |
| 9430 |
border-top-right-radius: 6px; |
| 9431 |
} |
| 9432 |
.wp-adminify #wpbody-content .adminify-options.wp-adminify-settings .adminify-header .adminify-header-inner h1 { |
| 9433 |
color: #000; |
| 9434 |
display: -webkit-box; |
| 9435 |
display: -webkit-flex; |
| 9436 |
display: -ms-flexbox; |
| 9437 |
display: flex; |
| 9438 |
-webkit-box-align: end; |
| 9439 |
-webkit-align-items: flex-end; |
| 9440 |
-ms-flex-align: end; |
| 9441 |
align-items: flex-end; |
| 9442 |
font-size: 24px; |
| 9443 |
font-weight: 600; |
| 9444 |
line-height: 1; |
| 9445 |
} |
| 9446 |
.wp-adminify #wpbody-content .adminify-options.wp-adminify-settings .adminify-header .adminify-header-inner h1 .wp-adminify-settings-logo { |
| 9447 |
margin-right: 10px; |
| 9448 |
max-height: 35px; |
| 9449 |
max-width: 130px; |
| 9450 |
width: 100%; |
| 9451 |
} |
| 9452 |
.wp-adminify #wpbody-content .adminify-options.wp-adminify-settings .adminify-header .adminify-header-inner h1 small { |
| 9453 |
color: #4E4B66; |
| 9454 |
font-size: 10px; |
| 9455 |
font-weight: 600; |
| 9456 |
text-align: left; |
| 9457 |
text-transform: capitalize; |
| 9458 |
width: 100%; |
| 9459 |
} |
| 9460 |
.wp-adminify #wpbody-content .adminify-options.wp-adminify-settings .adminify-header .adminify-header-right .adminify-buttons input { |
| 9461 |
float: left; |
| 9462 |
} |
| 9463 |
.wp-adminify #wpbody-content .adminify-options.wp-adminify-settings .adminify-nav-normal li { |
| 9464 |
margin: 0; |
| 9465 |
} |
| 9466 |
.wp-adminify #wpbody-content .adminify-options.wp-adminify-settings .adminify-nav-normal li a { |
| 9467 |
background-color: var(--adminify-text-color); |
| 9468 |
border: 0; |
| 9469 |
color: rgba(78, 75, 102, 0.72); |
| 9470 |
font-size: 14px; |
| 9471 |
font-weight: 600; |
| 9472 |
line-height: 44px; |
| 9473 |
padding: 0 1rem; |
| 9474 |
position: relative; |
| 9475 |
-webkit-transition: none; |
| 9476 |
-o-transition: none; |
| 9477 |
transition: none; |
| 9478 |
} |
| 9479 |
.wp-adminify #wpbody-content .adminify-options.wp-adminify-settings .adminify-nav-normal li a:before { |
| 9480 |
content: ""; |
| 9481 |
background-color: transparent; |
| 9482 |
-webkit-border-top-right-radius: 6px; |
| 9483 |
border-top-right-radius: 6px; |
| 9484 |
-webkit-border-bottom-right-radius: 6px; |
| 9485 |
border-bottom-right-radius: 6px; |
| 9486 |
height: 22px; |
| 9487 |
width: 2px; |
| 9488 |
top: 50%; |
| 9489 |
left: 0; |
| 9490 |
margin-top: -11px; |
| 9491 |
position: absolute; |
| 9492 |
} |
| 9493 |
.wp-adminify #wpbody-content .adminify-options.wp-adminify-settings .adminify-nav-normal li a.adminify-active, .wp-adminify #wpbody-content .adminify-options.wp-adminify-settings .adminify-nav-normal li a:hover { |
| 9494 |
background-color: var(--adminify-preset-background); |
| 9495 |
color: var(--adminify-btn-bg); |
| 9496 |
} |
| 9497 |
.wp-adminify #wpbody-content .adminify-options.wp-adminify-settings .adminify-nav-normal li a.adminify-active:before, .wp-adminify #wpbody-content .adminify-options.wp-adminify-settings .adminify-nav-normal li a:hover:before { |
| 9498 |
background-color: var(--adminify-btn-bg); |
| 9499 |
} |
| 9500 |
.wp-adminify #wpbody-content .adminify-options.wp-adminify-settings .adminify-nav-normal li a i { |
| 9501 |
height: 20px; |
| 9502 |
width: 20px; |
| 9503 |
line-height: 20px; |
| 9504 |
vertical-align: baseline; |
| 9505 |
} |
| 9506 |
.wp-adminify #wpbody-content .adminify-options.wp-adminify-settings .adminify-nav-normal li ul li a { |
| 9507 |
padding-left: 2.25rem; |
| 9508 |
} |
| 9509 |
.wp-adminify #wpbody-content .adminify-options.wp-adminify-settings .adminify-nav-background { |
| 9510 |
background-color: transparent; |
| 9511 |
} |
| 9512 |
.wp-adminify #wpbody-content .adminify-options.wp-adminify-settings .adminify-content { |
| 9513 |
border-width: 0 0 0 1px; |
| 9514 |
border-style: solid; |
| 9515 |
border-color: #F1F1F3; |
| 9516 |
} |
| 9517 |
.wp-adminify #wpbody-content .adminify-options.wp-adminify-settings .adminify-footer { |
| 9518 |
background-color: var(--adminify-text-color); |
| 9519 |
border-top: 1px solid #F1F1F3; |
| 9520 |
-webkit-border-bottom-left-radius: 6px; |
| 9521 |
border-bottom-left-radius: 6px; |
| 9522 |
-webkit-border-bottom-right-radius: 6px; |
| 9523 |
border-bottom-right-radius: 6px; |
| 9524 |
} |
| 9525 |
.wp-adminify #wpbody-content .adminify-options.wp-adminify-settings .adminify--switcher { |
| 9526 |
background-color: var(--adminify-notif-bg-color); |
| 9527 |
-webkit-border-radius: 6px; |
| 9528 |
border-radius: 6px; |
| 9529 |
} |
| 9530 |
.wp-adminify #wpbody-content .adminify-options.wp-adminify-settings .adminify--switcher .adminify--off, |
| 9531 |
.wp-adminify #wpbody-content .adminify-options.wp-adminify-settings .adminify--switcher .adminify--on { |
| 9532 |
font-size: 12px; |
| 9533 |
font-weight: 600; |
| 9534 |
} |
| 9535 |
.wp-adminify #wpbody-content .adminify-options.wp-adminify-settings .adminify--switcher .adminify--on { |
| 9536 |
background-color: #0cce6b; |
| 9537 |
} |
| 9538 |
.wp-adminify #wpbody-content .adminify-options.wp-adminify-settings .adminify-field-subheading { |
| 9539 |
background-color: #f7f7f7; |
| 9540 |
padding-top: 15px; |
| 9541 |
padding-bottom: 14px; |
| 9542 |
} |
| 9543 |
.wp-adminify #wpbody-content .wp-adminify-redirect-urls .adminify-container { |
| 9544 |
max-width: 70%; |
| 9545 |
margin: 0 auto; |
| 9546 |
} |
| 9547 |
.wp-adminify #wpbody-content .wp-adminify-redirect-urls .adminify-container .adminify-field.new-login-url .adminify-fieldset .adminify-before-text, |
| 9548 |
.wp-adminify #wpbody-content .wp-adminify-redirect-urls .adminify-container .adminify-field.new-login-url .adminify-fieldset input[type=text], |
| 9549 |
.wp-adminify #wpbody-content .wp-adminify-redirect-urls .adminify-container .adminify-field.new-login-url .adminify-fieldset .adminify-after-text { |
| 9550 |
display: inline-block; |
| 9551 |
margin-right: 5px; |
| 9552 |
} |
| 9553 |
.wp-adminify #wpbody-content .wp-adminify-redirect-urls .adminify-container .adminify-header { |
| 9554 |
padding: 0; |
| 9555 |
} |
| 9556 |
.wp-adminify #wpbody-content .wp-adminify-redirect-urls .adminify-container .adminify-header .adminify-header-left { |
| 9557 |
display: none !important; |
| 9558 |
} |
| 9559 |
.wp-adminify #wpbody-content .wp-adminify-dashboard-widgets .adminify-container { |
| 9560 |
max-width: 70%; |
| 9561 |
} |
| 9562 |
.wp-adminify #wpbody-content .wp-adminify-dashboard-widgets .adminify-content { |
| 9563 |
background-color: transparent; |
| 9564 |
} |
| 9565 |
.wp-adminify #wpbody-content .wp-adminify-dashboard-widgets .adminify-content .adminify-field-subheading { |
| 9566 |
background-color: transparent; |
| 9567 |
font-size: 18px; |
| 9568 |
padding-top: 0; |
| 9569 |
} |
| 9570 |
.wp-adminify #wpbody-content .wp-adminify-dashboard-widgets .adminify-content .adminify-field .adminify-cloneable-item { |
| 9571 |
border: 1px solid #E5E5E5; |
| 9572 |
-webkit-border-radius: 6px; |
| 9573 |
border-radius: 6px; |
| 9574 |
} |
| 9575 |
.wp-adminify #wpbody-content .wp-adminify-dashboard-widgets .adminify-content .adminify-field .adminify-cloneable-item .adminify-cloneable-title { |
| 9576 |
background-color: #F1F1F3; |
| 9577 |
border: 0; |
| 9578 |
color: #4E4B66; |
| 9579 |
display: inline-block; |
| 9580 |
font-size: 16px; |
| 9581 |
font-weight: 600; |
| 9582 |
line-height: 20px; |
| 9583 |
padding: 10px 65px 10px 15px; |
| 9584 |
width: 100%; |
| 9585 |
} |
| 9586 |
.wp-adminify #wpbody-content .wp-adminify-dashboard-widgets .adminify-content .adminify-field .adminify-cloneable-item .adminify-cloneable-title:hover { |
| 9587 |
border-color: #E5E5E5; |
| 9588 |
} |
| 9589 |
.wp-adminify #wpbody-content .wp-adminify-dashboard-widgets .adminify-content .adminify-field .adminify-cloneable-item .adminify-cloneable-title .ui-accordion-header-icon { |
| 9590 |
float: left; |
| 9591 |
margin-top: 4px; |
| 9592 |
text-align: left; |
| 9593 |
} |
| 9594 |
.wp-adminify #wpbody-content .wp-adminify-dashboard-widgets .adminify-content .adminify-field .adminify-cloneable-item .adminify-cloneable-helper { |
| 9595 |
top: 9px; |
| 9596 |
} |
| 9597 |
.wp-adminify #wpbody-content .wp-adminify-dashboard-widgets .adminify-content .adminify-field .adminify-cloneable-item:last-child { |
| 9598 |
margin-bottom: 20px; |
| 9599 |
} |
| 9600 |
.wp-adminify #wpbody-content .wp-adminify-dashboard-widgets .adminify-content .adminify-field .adminify-field { |
| 9601 |
border-bottom: 1px solid #E5E5E5; |
| 9602 |
-webkit-border-radius: 0; |
| 9603 |
border-radius: 0; |
| 9604 |
-webkit-box-shadow: none; |
| 9605 |
box-shadow: none; |
| 9606 |
} |
| 9607 |
.wp-adminify #wpbody-content .wp-adminify-dashboard-widgets .adminify-content .adminify-field .adminify-field.adminify-field-code_editor, .wp-adminify #wpbody-content .wp-adminify-dashboard-widgets .adminify-content .adminify-field .adminify-field.adminify-field-fieldset, .wp-adminify #wpbody-content .wp-adminify-dashboard-widgets .adminify-content .adminify-field .adminify-field.adminify-field-wp_editor, .wp-adminify #wpbody-content .wp-adminify-dashboard-widgets .adminify-content .adminify-field .adminify-field.adminify-field-textarea { |
| 9608 |
-webkit-box-align: start; |
| 9609 |
-webkit-align-items: flex-start; |
| 9610 |
-ms-flex-align: start; |
| 9611 |
align-items: flex-start; |
| 9612 |
} |
| 9613 |
.wp-adminify #wpbody-content .wp-adminify-dashboard-widgets .adminify-content .adminify-field .adminify-field:last-child { |
| 9614 |
border-bottom: 0; |
| 9615 |
} |
| 9616 |
.wp-adminify #wpbody-content .wp-adminify-dashboard-widgets .adminify-content .adminify-field .adminify-fieldset { |
| 9617 |
min-height: inherit; |
| 9618 |
} |
| 9619 |
.wp-adminify #wpbody-content .wp-adminify-dashboard-widgets .adminify-content .adminify-field select { |
| 9620 |
border: 1px solid #E5E5E5; |
| 9621 |
} |
| 9622 |
.wp-adminify #wpbody-content .wp-adminify-dashboard-widgets .adminify-content .adminify-field .adminify-field-button_set .adminify--button { |
| 9623 |
-webkit-box-shadow: none; |
| 9624 |
box-shadow: none; |
| 9625 |
font-weight: 600; |
| 9626 |
} |
| 9627 |
.wp-adminify #wpbody-content .wp-adminify-dashboard-widgets .adminify-content .adminify-field .adminify-field-button_set .adminify--button.adminify--active, .wp-adminify #wpbody-content .wp-adminify-dashboard-widgets .adminify-content .adminify-field .adminify-field-button_set .adminify--button:hover { |
| 9628 |
background-color: var(--adminify-btn-bg); |
| 9629 |
border-color: var(--adminify-btn-bg); |
| 9630 |
color: var(--adminify-text-color); |
| 9631 |
} |
| 9632 |
.wp-adminify #wpbody-content .wp-adminify-dashboard-widgets .adminify-content .adminify-field .adminify-fieldset-content { |
| 9633 |
border: 1px solid #E5E5E5; |
| 9634 |
} |
| 9635 |
.wp-adminify #wpbody-content .wp-adminify-dashboard-widgets .adminify-content .chosen-choices { |
| 9636 |
background: #F1F1F3; |
| 9637 |
padding: 4.5px 0; |
| 9638 |
} |
| 9639 |
.wp-adminify #wpbody-content .wp-adminify-dashboard-widgets .adminify-content .chosen-container-active .chosen-choices { |
| 9640 |
-webkit-box-shadow: none; |
| 9641 |
box-shadow: none; |
| 9642 |
} |
| 9643 |
.wp-adminify #wpbody-content .wp-adminify-dashboard-widgets .wp-editor-tools { |
| 9644 |
-webkit-border-radius: 0; |
| 9645 |
border-radius: 0; |
| 9646 |
} |
| 9647 |
.wp-adminify #wpbody-content .wp-adminify-dashboard-widgets .wp-editor-tools .wp-editor-tabs button { |
| 9648 |
background-color: #E5E5E5; |
| 9649 |
border: 1px solid #E5E5E5; |
| 9650 |
color: #4E4B66; |
| 9651 |
font-size: 13px; |
| 9652 |
line-height: 20px; |
| 9653 |
margin: 0 0 0 5px; |
| 9654 |
padding: 5px 10px; |
| 9655 |
} |
| 9656 |
.wp-adminify #wpbody-content .wp-adminify-dashboard-widgets .wp-editor-tools .mce-toolbar-grp { |
| 9657 |
background-color: #F1F1F3; |
| 9658 |
} |
| 9659 |
.wp-adminify #wpbody-content .wp-adminify-dashboard-widgets .wp-editor-tools .wp-editor-container { |
| 9660 |
border: 1px solid #E5E5E5; |
| 9661 |
} |
| 9662 |
.wp-adminify #wpbody-content .wp-adminify-dashboard-widgets .wp-editor-tools .wp-editor-container .mce-container, |
| 9663 |
.wp-adminify #wpbody-content .wp-adminify-dashboard-widgets .wp-editor-tools .wp-editor-container .mce-container *, |
| 9664 |
.wp-adminify #wpbody-content .wp-adminify-dashboard-widgets .wp-editor-tools .wp-editor-container .mce-widget, |
| 9665 |
.wp-adminify #wpbody-content .wp-adminify-dashboard-widgets .wp-editor-tools .wp-editor-container .mce-widget *, |
| 9666 |
.wp-adminify #wpbody-content .wp-adminify-dashboard-widgets .wp-editor-tools .wp-editor-container .mce-reset { |
| 9667 |
-webkit-box-shadow: none; |
| 9668 |
box-shadow: none; |
| 9669 |
color: #4E4B66; |
| 9670 |
} |
| 9671 |
.wp-adminify #wpbody-content .adminify-options .adminify-header-inner { |
| 9672 |
background-color: transparent !important; |
| 9673 |
border: 0; |
| 9674 |
} |
| 9675 |
.wp-adminify #wpbody-content .adminify-options .adminify-field-tabbed .adminify-tabbed-nav a { |
| 9676 |
background-color: transparent; |
| 9677 |
border: 1px solid transparent; |
| 9678 |
color: #4E4B66; |
| 9679 |
font-size: 14px; |
| 9680 |
font-weight: 600; |
| 9681 |
line-height: 20px; |
| 9682 |
margin: 0 0 -1px; |
| 9683 |
padding: 10px 15px; |
| 9684 |
} |
| 9685 |
.wp-adminify #wpbody-content .adminify-options .adminify-field-tabbed .adminify-tabbed-nav a.adminify-tabbed-active { |
| 9686 |
background-color: var(--adminify-btn-bg); |
| 9687 |
border-color: var(--adminify-btn-bg); |
| 9688 |
-webkit-border-top-left-radius: 6px; |
| 9689 |
border-top-left-radius: 6px; |
| 9690 |
-webkit-border-top-right-radius: 6px; |
| 9691 |
border-top-right-radius: 6px; |
| 9692 |
color: var(--adminify-text-color); |
| 9693 |
} |
| 9694 |
.wp-adminify #wpbody-content .adminify-options .adminify-tabbed-contents .adminify-tabbed-content { |
| 9695 |
border: 1px solid #F1F1F3; |
| 9696 |
-webkit-box-shadow: none; |
| 9697 |
box-shadow: none; |
| 9698 |
} |
| 9699 |
.wp-adminify #wpbody-content .adminify-options .adminify-field-slider .ui-slider-handle { |
| 9700 |
margin-left: 0; |
| 9701 |
} |
| 9702 |
.wp-adminify #wpbody-content .adminify-options .adminify-field-slider .adminify--input .adminify--unit { |
| 9703 |
border: 0; |
| 9704 |
font-size: 14px; |
| 9705 |
margin-left: 10px; |
| 9706 |
min-width: 30px; |
| 9707 |
text-align: center; |
| 9708 |
} |
| 9709 |
.wp-adminify #wpbody-content .adminify-theme-dark .adminify-footer { |
| 9710 |
background-color: transparent; |
| 9711 |
} |
| 9712 |
.wp-adminify #wpbody-content .adminify-section .adminify-title h4 { |
| 9713 |
color: #14142B; |
| 9714 |
font-size: 14px; |
| 9715 |
font-weight: 600; |
| 9716 |
} |
| 9717 |
.wp-adminify #wpbody-content .adminify-section .adminify-field-subheading { |
| 9718 |
display: -webkit-box; |
| 9719 |
display: -webkit-flex; |
| 9720 |
display: -ms-flexbox; |
| 9721 |
display: flex; |
| 9722 |
-webkit-box-align: center; |
| 9723 |
-webkit-align-items: center; |
| 9724 |
-ms-flex-align: center; |
| 9725 |
align-items: center; |
| 9726 |
} |
| 9727 |
.wp-adminify #wpbody-content .adminify-section .adminify-section-description { |
| 9728 |
color: #4E4B66; |
| 9729 |
font-size: 14px; |
| 9730 |
font-weight: 400; |
| 9731 |
} |
| 9732 |
.wp-adminify #wpbody-content .adminify-section .adminify-section-description a { |
| 9733 |
color: var(--adminify-btn-bg); |
| 9734 |
} |
| 9735 |
.wp-adminify #wpbody-content .adminify-section .adminify--switcher { |
| 9736 |
float: none; |
| 9737 |
} |
| 9738 |
.wp-adminify #wpbody-content .adminify-section .adminify-subtitle-text, |
| 9739 |
.wp-adminify #wpbody-content .adminify-section .adminify--label, |
| 9740 |
.wp-adminify #wpbody-content .adminify-section label { |
| 9741 |
color: #4E4B66; |
| 9742 |
font-size: 13px; |
| 9743 |
margin-top: 0.5rem; |
| 9744 |
margin-left: 0; |
| 9745 |
word-break: break-word; |
| 9746 |
} |
| 9747 |
.wp-adminify #wpbody-content .adminify-section .adminify-subtitle-text a, |
| 9748 |
.wp-adminify #wpbody-content .adminify-section .adminify--label a, |
| 9749 |
.wp-adminify #wpbody-content .adminify-section label a { |
| 9750 |
color: var(--adminify-btn-bg); |
| 9751 |
} |
| 9752 |
.wp-adminify #wpbody-content .adminify-section .adminify-desc-text { |
| 9753 |
color: #4E4B66; |
| 9754 |
} |
| 9755 |
.wp-adminify #wpbody-content .adminify-section .adminify-field + .adminify-field { |
| 9756 |
border-top: 1px solid #F1F1F3; |
| 9757 |
} |
| 9758 |
.wp-adminify #wpbody-content .adminify-section .adminify-image-preview { |
| 9759 |
min-height: inherit; |
| 9760 |
} |
| 9761 |
.wp-adminify #wpbody-content .adminify-section .adminify-image-preview a { |
| 9762 |
color: var(--adminify-text-color); |
| 9763 |
} |
| 9764 |
.wp-adminify #wpbody-content .adminify-section .adminify-field-notice { |
| 9765 |
background: inherit; |
| 9766 |
} |
| 9767 |
.wp-adminify #wpbody-content .adminify-section .adminify-field-notice .adminify-title { |
| 9768 |
margin-top: 14px; |
| 9769 |
} |
| 9770 |
.wp-adminify #wpbody-content .adminify-section .adminify-field-notice .adminify-title + .adminify-fieldset .adminify-notice { |
| 9771 |
margin: 0; |
| 9772 |
} |
| 9773 |
.wp-adminify #wpbody-content .adminify-section .adminify-field-notice .adminify-notice.adminify-notice-warning { |
| 9774 |
background: inherit; |
| 9775 |
border: 0; |
| 9776 |
-webkit-box-shadow: none; |
| 9777 |
box-shadow: none; |
| 9778 |
display: inline-block; |
| 9779 |
padding: 0; |
| 9780 |
} |
| 9781 |
.wp-adminify #wpbody-content .adminify-section .adminify-field-notice .adminify-notice.adminify-notice-warning p { |
| 9782 |
display: inline-block; |
| 9783 |
} |
| 9784 |
.wp-adminify #wpbody-content .adminify-section .adminify-field-notice .adminify-notice { |
| 9785 |
border: 0; |
| 9786 |
margin-right: 30px; |
| 9787 |
margin-left: -webkit-calc(20% + 20px); |
| 9788 |
margin-left: calc(20% + 20px); |
| 9789 |
padding: 0; |
| 9790 |
} |
| 9791 |
.wp-adminify #wpbody-content .adminify-section .adminify--button-group .adminify--button { |
| 9792 |
background-color: var(--adminify-text-color); |
| 9793 |
border: 1px solid #D8D8D8; |
| 9794 |
-webkit-box-shadow: none; |
| 9795 |
box-shadow: none; |
| 9796 |
color: #14142B; |
| 9797 |
font-size: 14px; |
| 9798 |
font-weight: 600; |
| 9799 |
line-height: 36px; |
| 9800 |
padding: 0 1.5rem; |
| 9801 |
} |
| 9802 |
.wp-adminify #wpbody-content .adminify-section .adminify--button-group .adminify--button.adminify--active { |
| 9803 |
background-color: var(--adminify-btn-bg); |
| 9804 |
border-color: var(--adminify-btn-bg); |
| 9805 |
color: var(--adminify-text-color); |
| 9806 |
} |
| 9807 |
.wp-adminify #wpbody-content .adminify-section .adminify--button-group .adminify--button:first-child { |
| 9808 |
border-right: 0; |
| 9809 |
-webkit-border-top-left-radius: 6px; |
| 9810 |
border-top-left-radius: 6px; |
| 9811 |
-webkit-border-bottom-left-radius: 6px; |
| 9812 |
border-bottom-left-radius: 6px; |
| 9813 |
} |
| 9814 |
.wp-adminify #wpbody-content .adminify-section .adminify--button-group .adminify--button:last-child { |
| 9815 |
border-left: 0; |
| 9816 |
-webkit-border-top-right-radius: 6px; |
| 9817 |
border-top-right-radius: 6px; |
| 9818 |
-webkit-border-bottom-right-radius: 6px; |
| 9819 |
border-bottom-right-radius: 6px; |
| 9820 |
} |
| 9821 |
.wp-adminify #wpbody-content .adminify-section .adminify--button-group .adminify--button:not(:first-child) { |
| 9822 |
margin-left: 0; |
| 9823 |
} |
| 9824 |
.wp-adminify #wpbody-content .adminify-section .button { |
| 9825 |
-webkit-border-radius: 6px; |
| 9826 |
border-radius: 6px; |
| 9827 |
font-size: 14px; |
| 9828 |
font-weight: 600; |
| 9829 |
} |
| 9830 |
.wp-adminify #wpbody-content .adminify-section .button.adminify--edit, .wp-adminify #wpbody-content .adminify-section .button.adminify-icon-edit { |
| 9831 |
background-color: #0cce6b; |
| 9832 |
border: 1px solid #0cce6b; |
| 9833 |
} |
| 9834 |
.wp-adminify #wpbody-content .adminify-section .button.adminify--edit:hover, .wp-adminify #wpbody-content .adminify-section .button.adminify-icon-edit:hover { |
| 9835 |
background-color: var(--adminify-text-color); |
| 9836 |
color: #0cce6b; |
| 9837 |
} |
| 9838 |
.wp-adminify #wpbody-content .adminify-section .button.adminify--reset, .wp-adminify #wpbody-content .adminify-section .button.adminify--remove, .wp-adminify #wpbody-content .adminify-section .button.adminify-icon-remove, .wp-adminify #wpbody-content .adminify-section .button.adminify--warning, .wp-adminify #wpbody-content .adminify-section .button.adminify-icon-warning { |
| 9839 |
background-color: var(--adminify-notif-bg-color); |
| 9840 |
border: 1px solid var(--adminify-notif-bg-color); |
| 9841 |
} |
| 9842 |
.wp-adminify #wpbody-content .adminify-section .button.adminify--reset:hover, .wp-adminify #wpbody-content .adminify-section .button.adminify--remove:hover, .wp-adminify #wpbody-content .adminify-section .button.adminify-icon-remove:hover, .wp-adminify #wpbody-content .adminify-section .button.adminify--warning:hover, .wp-adminify #wpbody-content .adminify-section .button.adminify-icon-warning:hover { |
| 9843 |
background-color: var(--adminify-text-color); |
| 9844 |
color: var(--adminify-notif-bg-color); |
| 9845 |
} |
| 9846 |
.wp-adminify #wpbody-content .adminify-section .button.button-primary:focus { |
| 9847 |
background-color: var(--adminify-btn-bg); |
| 9848 |
color: var(--adminify-text-color); |
| 9849 |
} |
| 9850 |
.wp-adminify #wpbody-content .adminify-section .adminify-fieldset { |
| 9851 |
font-size: 14px; |
| 9852 |
} |
| 9853 |
.wp-adminify #wpbody-content .adminify-section .adminify-fieldset select { |
| 9854 |
border: 1px solid #D8D8D8; |
| 9855 |
color: #14142B; |
| 9856 |
} |
| 9857 |
.wp-adminify #wpbody-content .adminify-section .adminify-fieldset .chosen-single.chosen-default, |
| 9858 |
.wp-adminify #wpbody-content .adminify-section .adminify-fieldset .search-choice { |
| 9859 |
background: var(--adminify-text-color); |
| 9860 |
border: 1px solid #D8D8D8; |
| 9861 |
-webkit-border-radius: 6px; |
| 9862 |
border-radius: 6px; |
| 9863 |
-webkit-box-shadow: none; |
| 9864 |
box-shadow: none; |
| 9865 |
color: #14142B; |
| 9866 |
font-size: 14px; |
| 9867 |
font-weight: 400; |
| 9868 |
height: auto; |
| 9869 |
line-height: 34px; |
| 9870 |
padding-top: 0; |
| 9871 |
padding-bottom: 0; |
| 9872 |
} |
| 9873 |
.wp-adminify #wpbody-content .adminify-section .adminify-fieldset .chosen-single b:before, |
| 9874 |
.wp-adminify #wpbody-content .adminify-section .adminify-fieldset .search-choice-close:before { |
| 9875 |
color: #4E4B66; |
| 9876 |
padding-top: 0; |
| 9877 |
} |
| 9878 |
.wp-adminify #wpbody-content .adminify-section .adminify-fieldset .chosen-choices { |
| 9879 |
background-image: none; |
| 9880 |
border: 0; |
| 9881 |
-webkit-border-radius: 6px; |
| 9882 |
border-radius: 6px; |
| 9883 |
-webkit-box-shadow: none; |
| 9884 |
box-shadow: none; |
| 9885 |
padding: 0; |
| 9886 |
} |
| 9887 |
.wp-adminify #wpbody-content .adminify-section .adminify-fieldset .chosen-choices .search-field { |
| 9888 |
width: 100%; |
| 9889 |
} |
| 9890 |
.wp-adminify #wpbody-content .adminify-section .adminify-fieldset .chosen-choices .chosen-search-input { |
| 9891 |
background-color: #F1F1F3 !important; |
| 9892 |
border: 1px solid #F1F1F3 !important; |
| 9893 |
height: auto; |
| 9894 |
min-height: 36px; |
| 9895 |
width: 100% !important; |
| 9896 |
} |
| 9897 |
.wp-adminify #wpbody-content .adminify-section .adminify-fieldset .chosen-drop li:not(.result-selected) { |
| 9898 |
font-size: 14px; |
| 9899 |
font-weight: 400; |
| 9900 |
line-height: 20px; |
| 9901 |
} |
| 9902 |
.wp-adminify #wpbody-content .adminify-section .adminify-fieldset .chosen-drop li:not(.result-selected):hover, .wp-adminify #wpbody-content .adminify-section .adminify-fieldset .chosen-drop li:not(.result-selected).highlighted { |
| 9903 |
background: var(--adminify-btn-bg); |
| 9904 |
color: var(--adminify-text-color); |
| 9905 |
} |
| 9906 |
.wp-adminify #wpbody-content .adminify-section .adminify-fieldset .chosen-drop li:not(.result-selected) .adminify--text { |
| 9907 |
color: #14142B; |
| 9908 |
font-size: 14px; |
| 9909 |
font-weight: 400; |
| 9910 |
} |
| 9911 |
.wp-adminify #wpbody-content .adminify-section .adminify-fieldset ul:not(.chosen-results) { |
| 9912 |
max-height: inherit; |
| 9913 |
} |
| 9914 |
.wp-adminify #wpbody-content .adminify-section .adminify-fieldset .adminify--inputs .adminify--input .adminify--label.adminify--icon { |
| 9915 |
background-color: var(--adminify-btn-bg); |
| 9916 |
border: 0; |
| 9917 |
-webkit-border-radius: 6px; |
| 9918 |
border-radius: 6px; |
| 9919 |
color: var(--adminify-text-color); |
| 9920 |
margin: 0 5px 0 0; |
| 9921 |
padding: 0 10px; |
| 9922 |
} |
| 9923 |
.wp-adminify #wpbody-content .adminify-section .adminify-fieldset .wp-color-result { |
| 9924 |
background-color: #E5E5E5; |
| 9925 |
border: 1px solid var(--adminify-btn-bg); |
| 9926 |
-webkit-border-radius: 6px; |
| 9927 |
border-radius: 6px; |
| 9928 |
padding: 0; |
| 9929 |
height: auto; |
| 9930 |
margin-right: 0; |
| 9931 |
} |
| 9932 |
.wp-adminify #wpbody-content .adminify-section .adminify-fieldset .wp-color-result .wp-color-result-text { |
| 9933 |
background-color: var(--adminify-text-color); |
| 9934 |
border: 0; |
| 9935 |
border-left: 1px solid var(--adminify-btn-bg); |
| 9936 |
-webkit-border-top-right-radius: 5px; |
| 9937 |
border-top-right-radius: 5px; |
| 9938 |
-webkit-border-bottom-right-radius: 5px; |
| 9939 |
border-bottom-right-radius: 5px; |
| 9940 |
color: var(--adminify-btn-bg); |
| 9941 |
line-height: 34px; |
| 9942 |
margin-left: 2.375rem; |
| 9943 |
padding: 0 13px; |
| 9944 |
} |
| 9945 |
.wp-adminify #wpbody-content .adminify-section .adminify-fieldset .adminify-field-color .adminify--title { |
| 9946 |
color: #14142B; |
| 9947 |
} |
| 9948 |
.wp-adminify #wpbody-content .adminify-section .adminify-fieldset-content { |
| 9949 |
border: 1px solid #F1F1F3; |
| 9950 |
-webkit-border-radius: 6px; |
| 9951 |
border-radius: 6px; |
| 9952 |
-webkit-box-shadow: none; |
| 9953 |
box-shadow: none; |
| 9954 |
} |
| 9955 |
.wp-adminify #wpbody-content .adminify-section .adminify-field-background .adminify-field { |
| 9956 |
margin: 0 10px 10px 0; |
| 9957 |
} |
| 9958 |
.wp-adminify #wpbody-content .adminify-section .adminify-field-background .adminify-image-preview { |
| 9959 |
height: auto; |
| 9960 |
} |
| 9961 |
.wp-adminify #wpbody-content .adminify-section .adminify-field-background .adminify-image-preview .adminify--remove { |
| 9962 |
color: var(--adminify-text-color); |
| 9963 |
opacity: 1; |
| 9964 |
} |
| 9965 |
.wp-adminify #wpbody-content .adminify-section .adminify-data-wrapper .adminify-cloneable-item { |
| 9966 |
margin-bottom: 10px; |
| 9967 |
} |
| 9968 |
.wp-adminify #wpbody-content .adminify-section .adminify-data-wrapper .adminify-cloneable-item .adminify-cloneable-helper { |
| 9969 |
color: #4E4B66; |
| 9970 |
font-size: 12px; |
| 9971 |
top: 13px; |
| 9972 |
} |
| 9973 |
.wp-adminify #wpbody-content .adminify-section .adminify-data-wrapper .adminify-cloneable-item .adminify-cloneable-helper .adminify-cloneable-sort { |
| 9974 |
color: var(--adminify-btn-bg); |
| 9975 |
} |
| 9976 |
.wp-adminify #wpbody-content .adminify-section .adminify-data-wrapper .adminify-cloneable-item .adminify-cloneable-helper .adminify-cloneable-clone { |
| 9977 |
color: #0cce6b; |
| 9978 |
} |
| 9979 |
.wp-adminify #wpbody-content .adminify-section .adminify-data-wrapper .adminify-cloneable-item .adminify-cloneable-helper .adminify-cloneable-remove { |
| 9980 |
color: var(--adminify-notif-bg-color); |
| 9981 |
} |
| 9982 |
.wp-adminify #wpbody-content .adminify-section .adminify-data-wrapper .adminify-cloneable-item .adminify-cloneable-title { |
| 9983 |
background-color: var(--adminify-text-color); |
| 9984 |
border: 1px solid #D8D8D8; |
| 9985 |
-webkit-border-radius: 6px; |
| 9986 |
border-radius: 6px; |
| 9987 |
-webkit-box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 9988 |
box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 9989 |
color: #4E4B66; |
| 9990 |
display: inline-block; |
| 9991 |
font-size: 14px; |
| 9992 |
font-weight: 700; |
| 9993 |
line-height: 20px; |
| 9994 |
min-height: 20px; |
| 9995 |
padding: 13px 4.725rem 13px 1rem; |
| 9996 |
width: 100%; |
| 9997 |
-webkit-transition: none; |
| 9998 |
-o-transition: none; |
| 9999 |
transition: none; |
| 10000 |
} |
| 10001 |
.wp-adminify #wpbody-content .adminify-section .adminify-data-wrapper .adminify-cloneable-item .adminify-cloneable-title.ui-state-active { |
| 10002 |
-webkit-border-bottom-left-radius: 0; |
| 10003 |
border-bottom-left-radius: 0; |
| 10004 |
-webkit-border-bottom-right-radius: 0; |
| 10005 |
border-bottom-right-radius: 0; |
| 10006 |
} |
| 10007 |
.wp-adminify #wpbody-content .adminify-section .adminify-data-wrapper .adminify-cloneable-item .adminify-cloneable-title.ui-state-active .adminify-cloneable-header-icon:before { |
| 10008 |
content: "\e604"; |
| 10009 |
font-family: "simple-line-icons"; |
| 10010 |
} |
| 10011 |
.wp-adminify #wpbody-content .adminify-section .adminify-data-wrapper .adminify-cloneable-item .adminify-cloneable-title .adminify-cloneable-header-icon { |
| 10012 |
font-size: 10px; |
| 10013 |
float: left; |
| 10014 |
margin: 5px 5px 0 -5px; |
| 10015 |
} |
| 10016 |
.wp-adminify #wpbody-content .adminify-section .adminify-data-wrapper .adminify-cloneable-item .adminify-cloneable-title .adminify-cloneable-header-icon:before { |
| 10017 |
content: "\e606"; |
| 10018 |
font-family: "simple-line-icons"; |
| 10019 |
-webkit-transition: none; |
| 10020 |
-o-transition: none; |
| 10021 |
transition: none; |
| 10022 |
} |
| 10023 |
.wp-adminify #wpbody-content .adminify-section .adminify-data-wrapper .adminify-cloneable-item .adminify-cloneable-title .adminify-cloneable-placeholder { |
| 10024 |
background-color: transparent; |
| 10025 |
} |
| 10026 |
.wp-adminify #wpbody-content .adminify-section .adminify-data-wrapper .adminify-cloneable-item .adminify-cloneable-content { |
| 10027 |
border: 1px solid #F1F1F3; |
| 10028 |
border-top: 0; |
| 10029 |
-webkit-border-bottom-left-radius: 6px; |
| 10030 |
border-bottom-left-radius: 6px; |
| 10031 |
-webkit-border-bottom-right-radius: 6px; |
| 10032 |
border-bottom-right-radius: 6px; |
| 10033 |
-webkit-box-shadow: none; |
| 10034 |
box-shadow: none; |
| 10035 |
} |
| 10036 |
.wp-adminify #wpbody-content .adminify-section .adminify-data-wrapper .adminify-cloneable-item .adminify-cloneable-content .adminify-fieldset input[data-depend-id] { |
| 10037 |
width: 100%; |
| 10038 |
} |
| 10039 |
.wp-adminify #wpbody-content .adminify-section .adminify-data-wrapper .adminify-cloneable-item .adminify-cloneable-content .adminify-fieldset .adminify-icon-preview i { |
| 10040 |
background-color: #0cce6b; |
| 10041 |
border: 1px solid #0cce6b; |
| 10042 |
-webkit-border-radius: 6px; |
| 10043 |
border-radius: 6px; |
| 10044 |
-webkit-box-shadow: none; |
| 10045 |
box-shadow: none; |
| 10046 |
color: var(--adminify-text-color); |
| 10047 |
height: 34px; |
| 10048 |
width: 36px; |
| 10049 |
line-height: 34px; |
| 10050 |
} |
| 10051 |
.wp-adminify #wpbody-content .adminify-section .adminify-accordion-item { |
| 10052 |
margin-bottom: 10px; |
| 10053 |
} |
| 10054 |
.wp-adminify #wpbody-content .adminify-section .adminify-accordion-item .adminify-accordion-title { |
| 10055 |
background-color: var(--adminify-text-color); |
| 10056 |
border: 1px solid #D8D8D8; |
| 10057 |
-webkit-border-radius: 6px; |
| 10058 |
border-radius: 6px; |
| 10059 |
-webkit-box-shadow: none; |
| 10060 |
box-shadow: none; |
| 10061 |
color: #4E4B66; |
| 10062 |
font-size: 14px; |
| 10063 |
font-weight: 700; |
| 10064 |
line-height: 20px; |
| 10065 |
min-height: 20px; |
| 10066 |
padding: 13px 1rem; |
| 10067 |
-webkit-transition: none; |
| 10068 |
-o-transition: none; |
| 10069 |
transition: none; |
| 10070 |
} |
| 10071 |
.wp-adminify #wpbody-content .adminify-section .adminify-accordion-item .adminify-accordion-content { |
| 10072 |
-webkit-border-bottom-left-radius: 6px; |
| 10073 |
border-bottom-left-radius: 6px; |
| 10074 |
-webkit-border-bottom-right-radius: 6px; |
| 10075 |
border-bottom-right-radius: 6px; |
| 10076 |
margin-top: -5px; |
| 10077 |
padding-top: 5px; |
| 10078 |
} |
| 10079 |
.wp-adminify #wpbody-content .adminify-section .adminify-wp-editor .wp-switch-editor { |
| 10080 |
background: #f6f7f7; |
| 10081 |
border: 0; |
| 10082 |
-webkit-border-radius: 0; |
| 10083 |
border-radius: 0; |
| 10084 |
color: #50575e; |
| 10085 |
line-height: 28px; |
| 10086 |
padding: 0 10px; |
| 10087 |
} |
| 10088 |
.wp-adminify #wpbody-content .adminify-section .adminify-wp-editor .mce-btn { |
| 10089 |
border: 1px solid #CFCFCF; |
| 10090 |
} |
| 10091 |
.wp-adminify #wpbody-content .adminify-section .adminify-wp-editor .mce-btn button { |
| 10092 |
background-color: #F1F1F3 !important; |
| 10093 |
border: 0; |
| 10094 |
-webkit-border-radius: 0; |
| 10095 |
border-radius: 0; |
| 10096 |
color: #14142B !important; |
| 10097 |
line-height: 24px; |
| 10098 |
padding: 0 6px; |
| 10099 |
} |
| 10100 |
.wp-adminify #wpbody-content .adminify-section .adminify-wp-editor .mce-btn button i { |
| 10101 |
line-height: 24px; |
| 10102 |
} |
| 10103 |
.wp-adminify #wpbody-content .adminify-section .adminify-wp-editor .wp-editor-container .mce-container-body .mce-top-part::before { |
| 10104 |
display: none; |
| 10105 |
} |
| 10106 |
.wp-adminify #wpbody-content .adminify-section .adminify-wp-editor .wp-editor-container .mce-container-body div.mce-toolbar-grp { |
| 10107 |
background-color: #F1F1F3; |
| 10108 |
color: #4E4B66; |
| 10109 |
} |
| 10110 |
.wp-adminify #wpbody-content .adminify-section .adminify-wp-editor .mce-menu .mce-menu-item.mce-active.mce-menu-item-normal, |
| 10111 |
.wp-adminify #wpbody-content .adminify-section .adminify-wp-editor .mce-menu .mce-menu-item.mce-active.mce-menu-item-preview, |
| 10112 |
.wp-adminify #wpbody-content .adminify-section .adminify-wp-editor .mce-menu .mce-menu-item.mce-selected, |
| 10113 |
.wp-adminify #wpbody-content .adminify-section .adminify-wp-editor .mce-menu .mce-menu-item:focus, |
| 10114 |
.wp-adminify #wpbody-content .adminify-section .adminify-wp-editor .mce-menu .mce-menu-item:hover { |
| 10115 |
background-color: var(--adminify-btn-bg); |
| 10116 |
} |
| 10117 |
.wp-adminify #wpbody-content .adminify-section .adminify-wp-editor .mce-edit-area body { |
| 10118 |
background-color: #F1F1F3; |
| 10119 |
} |
| 10120 |
.wp-adminify #wpbody-content .adminify-section .adminify-wp-editor .wp-editor-wrap { |
| 10121 |
clear: both; |
| 10122 |
} |
| 10123 |
.wp-adminify #wpbody-content .adminify-section .adminify-wp-editor .wp-editor-area { |
| 10124 |
border-top: 1px solid var(--adminify-text-color); |
| 10125 |
} |
| 10126 |
.wp-adminify #wpbody-content .adminify-section .wp-picker-input-wrap label { |
| 10127 |
margin-top: 0; |
| 10128 |
} |
| 10129 |
.wp-adminify #wpbody-content .adminify-section .wp-picker-input-wrap label .wp-color-picker { |
| 10130 |
padding: 8px 5px; |
| 10131 |
width: 5.5rem; |
| 10132 |
} |
| 10133 |
.wp-adminify #wpbody-content .adminify-section .wp-picker-input-wrap .wp-picker-clear { |
| 10134 |
border-color: var(--adminify-notif-bg-color); |
| 10135 |
color: var(--adminify-notif-bg-color); |
| 10136 |
} |
| 10137 |
.wp-adminify #wpbody-content .adminify-fieldset .chosen-single.chosen-default, |
| 10138 |
.wp-adminify #wpbody-content .adminify-fieldset .search-choice, |
| 10139 |
.wp-adminify #wpbody-content .adminify-fieldset .chosen-single { |
| 10140 |
background: var(--adminify-text-color); |
| 10141 |
border: 1px solid #D8D8D8; |
| 10142 |
-webkit-border-radius: 6px; |
| 10143 |
border-radius: 6px; |
| 10144 |
-webkit-box-shadow: none; |
| 10145 |
box-shadow: none; |
| 10146 |
color: #14142B; |
| 10147 |
font-size: 14px; |
| 10148 |
font-weight: 400; |
| 10149 |
height: auto; |
| 10150 |
line-height: 34px; |
| 10151 |
padding-top: 0; |
| 10152 |
padding-bottom: 0; |
| 10153 |
} |
| 10154 |
.wp-adminify #wpbody-content .chosen-container-single .chosen-drop { |
| 10155 |
margin-top: 2px; |
| 10156 |
} |
| 10157 |
.wp-adminify #wpbody-content .adminify-section[data-section-id="basic-fields/checkbox"] .adminify-title h4, |
| 10158 |
.wp-adminify #wpbody-content .adminify-section[data-section-id="basic-fields/radio"] .adminify-title h4, |
| 10159 |
.wp-adminify #wpbody-content .adminify-section[data-section-id="tweaks/head"] .adminify-title h4, |
| 10160 |
.wp-adminify #wpbody-content .adminify-section[data-section-id="tweaks/admin-footer"] .adminify-title h4 { |
| 10161 |
margin-top: 0; |
| 10162 |
} |
| 10163 |
.wp-adminify #wpbody-content .adminify-section[data-section-id=others] .adminify-data-wrapper .adminify-cloneable-item .adminify-cloneable-content { |
| 10164 |
margin-top: -6px; |
| 10165 |
} |
| 10166 |
.wp-adminify #wpbody-content .adminify-section[data-section-id=others] .adminify-field + .adminify-field { |
| 10167 |
border-top: 0; |
| 10168 |
} |
| 10169 |
.wp-adminify #wpbody-content .adminify-section[data-section-id=others] .adminify-title h4 { |
| 10170 |
margin-top: 0; |
| 10171 |
} |
| 10172 |
.wp-adminify #wpbody-content .adminify-section[data-section-id="[custom_scripts]"] .adminify-field + .adminify-field { |
| 10173 |
background: transparent; |
| 10174 |
border-top: 0; |
| 10175 |
} |
| 10176 |
.wp-adminify #wpbody-content .adminify-repeater-helper .adminify-repeater-sort { |
| 10177 |
color: var(--adminify-btn-bg); |
| 10178 |
} |
| 10179 |
.wp-adminify #wpbody-content .adminify-repeater-helper .adminify-repeater-clone { |
| 10180 |
color: #0cce6b; |
| 10181 |
} |
| 10182 |
.wp-adminify #wpbody-content .adminify-repeater-helper .adminify-repeater-remove { |
| 10183 |
color: var(--adminify-notif-bg-color); |
| 10184 |
} |
| 10185 |
.wp-adminify .adminify-modal-icon .adminify-modal-close { |
| 10186 |
color: #c30052; |
| 10187 |
} |
| 10188 |
.wp-adminify .adminify-modal-icon .adminify-icon-search { |
| 10189 |
background-color: var(--adminify-text-color); |
| 10190 |
border: 1px solid #F1F1F3; |
| 10191 |
-webkit-border-radius: 6px; |
| 10192 |
border-radius: 6px; |
| 10193 |
color: rgba(78, 75, 102, 0.72); |
| 10194 |
min-height: 36px; |
| 10195 |
} |
| 10196 |
.wp-adminify .adminify-modal-icon i:hover { |
| 10197 |
background-color: var(--adminify-btn-bg); |
| 10198 |
border-color: var(--adminify-btn-bg); |
| 10199 |
} |
| 10200 |
.wp-adminify.modal-open #wp-link-wrap #link-modal-title { |
| 10201 |
border-bottom: 1px solid #F1F1F3; |
| 10202 |
color: #14142B; |
| 10203 |
} |
| 10204 |
.wp-adminify.modal-open #wp-link-wrap #wp-link-close { |
| 10205 |
color: var(--adminify-notif-bg-color); |
| 10206 |
} |
| 10207 |
.wp-adminify.modal-open #wp-link-wrap .howto, |
| 10208 |
.wp-adminify.modal-open #wp-link-wrap label span { |
| 10209 |
color: #4E4B66; |
| 10210 |
font-size: 14px; |
| 10211 |
font-weight: 600; |
| 10212 |
line-height: 20px; |
| 10213 |
} |
| 10214 |
.wp-adminify.modal-open #wp-link-wrap .query-results { |
| 10215 |
border: 1px solid #F1F1F3; |
| 10216 |
position: inherit; |
| 10217 |
} |
| 10218 |
.wp-adminify.modal-open #wp-link-wrap .query-results .query-notice { |
| 10219 |
border: 1px solid #F1F1F3; |
| 10220 |
} |
| 10221 |
.wp-adminify.modal-open #wp-link-wrap .query-results .query-notice-default { |
| 10222 |
border-left: 4px solid #ffa400; |
| 10223 |
-webkit-box-shadow: none; |
| 10224 |
box-shadow: none; |
| 10225 |
} |
| 10226 |
.wp-adminify.modal-open #wp-link-wrap .submitbox { |
| 10227 |
border: 1px solid #F1F1F3; |
| 10228 |
} |
| 10229 |
.wp-adminify.modal-open #wp-link-wrap .submitbox .button { |
| 10230 |
color: var(--adminify-text-color); |
| 10231 |
font-size: 14px; |
| 10232 |
font-weight: 600; |
| 10233 |
line-height: 36px; |
| 10234 |
padding: 0 1rem; |
| 10235 |
} |
| 10236 |
.wp-adminify.modal-open #wp-link-wrap .submitbox .button:hover { |
| 10237 |
background-color: var(--adminify-text-color); |
| 10238 |
} |
| 10239 |
.wp-adminify.modal-open #wp-link-wrap .submitbox #wp-link-cancel .button { |
| 10240 |
background-color: var(--adminify-btn-bg); |
| 10241 |
border: 1px solid var(--adminify-btn-bg); |
| 10242 |
} |
| 10243 |
.wp-adminify.modal-open #wp-link-wrap .submitbox #wp-link-cancel .button:hover { |
| 10244 |
color: var(--adminify-btn-bg); |
| 10245 |
} |
| 10246 |
.wp-adminify.modal-open #wp-link-wrap .submitbox #wp-link-update .button { |
| 10247 |
background-color: #0cce6b; |
| 10248 |
border: 1px solid #0cce6b; |
| 10249 |
} |
| 10250 |
.wp-adminify.modal-open #wp-link-wrap .submitbox #wp-link-update .button:hover { |
| 10251 |
background-color: var(--adminify-text-color); |
| 10252 |
color: #0cce6b; |
| 10253 |
} |
| 10254 |
.wp-adminify .adminify-datepicker-wrapper { |
| 10255 |
-webkit-box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 10256 |
box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 10257 |
} |
| 10258 |
.wp-adminify .adminify-datepicker-wrapper .ui-datepicker-header { |
| 10259 |
background-color: rgba(var(--adminify-btn-bg), 0.9); |
| 10260 |
} |
| 10261 |
.wp-adminify .adminify-datepicker-wrapper .ui-datepicker-header .ui-corner-all { |
| 10262 |
background-color: var(--adminify-btn-bg); |
| 10263 |
} |
| 10264 |
.wp-adminify .adminify-datepicker-wrapper .ui-state-default.ui-state-highlight.ui-state-hover, .wp-adminify .adminify-datepicker-wrapper .ui-state-default:hover { |
| 10265 |
background-color: var(--adminify-btn-bg); |
| 10266 |
color: var(--adminify-text-color); |
| 10267 |
} |
| 10268 |
.wp-adminify.wp-adminify_page_adminify-custom-css-js .adminify-container { |
| 10269 |
max-width: 950px; |
| 10270 |
margin: 0 auto; |
| 10271 |
} |
| 10272 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .wp-adminify--popup-container { |
| 10273 |
padding: 0; |
| 10274 |
} |
| 10275 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .wp-adminify--popup-container .wp-adminify--popup-container_inner { |
| 10276 |
padding: 30px; |
| 10277 |
} |
| 10278 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .wp-adminify--popup-container .wp-adminify--popup-container_inner .add_sidebar_popup, |
| 10279 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .wp-adminify--popup-container .wp-adminify--popup-container_inner .edit_sidebar_popup { |
| 10280 |
position: relative; |
| 10281 |
} |
| 10282 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .wp-adminify--popup-container .wp-adminify--popup-container_inner .add_sidebar_popup .wp-adminify--popup-close, |
| 10283 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .wp-adminify--popup-container .wp-adminify--popup-container_inner .edit_sidebar_popup .wp-adminify--popup-close { |
| 10284 |
color: #c30052; |
| 10285 |
opacity: 1; |
| 10286 |
top: -20px; |
| 10287 |
right: 0; |
| 10288 |
} |
| 10289 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .wp-adminify--popup-container .wp-adminify--popup-container_inner .add_sidebar_popup .wp-adminify--popup-close span, |
| 10290 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .wp-adminify--popup-container .wp-adminify--popup-container_inner .add_sidebar_popup .wp-adminify--popup-close i, |
| 10291 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .wp-adminify--popup-container .wp-adminify--popup-container_inner .add_sidebar_popup .wp-adminify--popup-close .dashicons, |
| 10292 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .wp-adminify--popup-container .wp-adminify--popup-container_inner .edit_sidebar_popup .wp-adminify--popup-close span, |
| 10293 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .wp-adminify--popup-container .wp-adminify--popup-container_inner .edit_sidebar_popup .wp-adminify--popup-close i, |
| 10294 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .wp-adminify--popup-container .wp-adminify--popup-container_inner .edit_sidebar_popup .wp-adminify--popup-close .dashicons { |
| 10295 |
color: #c30052; |
| 10296 |
} |
| 10297 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .wp-adminify--popup-container .wp-adminify--popup-container_inner .add_sidebar_popup .wp-adminify--popup-close span:before, |
| 10298 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .wp-adminify--popup-container .wp-adminify--popup-container_inner .add_sidebar_popup .wp-adminify--popup-close i:before, |
| 10299 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .wp-adminify--popup-container .wp-adminify--popup-container_inner .add_sidebar_popup .wp-adminify--popup-close .dashicons:before, |
| 10300 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .wp-adminify--popup-container .wp-adminify--popup-container_inner .edit_sidebar_popup .wp-adminify--popup-close span:before, |
| 10301 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .wp-adminify--popup-container .wp-adminify--popup-container_inner .edit_sidebar_popup .wp-adminify--popup-close i:before, |
| 10302 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .wp-adminify--popup-container .wp-adminify--popup-container_inner .edit_sidebar_popup .wp-adminify--popup-close .dashicons:before { |
| 10303 |
color: #c30052; |
| 10304 |
height: 20px; |
| 10305 |
width: 20px; |
| 10306 |
} |
| 10307 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .wp-adminify--popup-container .wp-adminify--popup-container_inner .add_sidebar_popup .wp-adminify--popup-close h3, |
| 10308 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .wp-adminify--popup-container .wp-adminify--popup-container_inner .edit_sidebar_popup .wp-adminify--popup-close h3 { |
| 10309 |
color: #4E4B66; |
| 10310 |
font-size: 16px; |
| 10311 |
} |
| 10312 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .wp-adminify--popup-container .wp-adminify--popup-container_inner .add_sidebar_popup form .field, |
| 10313 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .wp-adminify--popup-container .wp-adminify--popup-container_inner .edit_sidebar_popup form .field { |
| 10314 |
-webkit-box-align: start; |
| 10315 |
-webkit-align-items: flex-start; |
| 10316 |
-ms-flex-align: start; |
| 10317 |
align-items: flex-start; |
| 10318 |
-webkit-box-pack: start; |
| 10319 |
-webkit-justify-content: flex-start; |
| 10320 |
-ms-flex-pack: start; |
| 10321 |
justify-content: flex-start; |
| 10322 |
} |
| 10323 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .wp-adminify--popup-container .wp-adminify--popup-container_inner .add_sidebar_popup form .field .field-label, |
| 10324 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .wp-adminify--popup-container .wp-adminify--popup-container_inner .edit_sidebar_popup form .field .field-label { |
| 10325 |
-webkit-box-flex: inherit; |
| 10326 |
-webkit-flex: inherit; |
| 10327 |
-ms-flex: inherit; |
| 10328 |
flex: inherit; |
| 10329 |
min-width: 5rem; |
| 10330 |
text-align: left; |
| 10331 |
} |
| 10332 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .wp-adminify--popup-container .wp-adminify--popup-container_inner .add_sidebar_popup form .field .control, |
| 10333 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .wp-adminify--popup-container .wp-adminify--popup-container_inner .edit_sidebar_popup form .field .control { |
| 10334 |
margin: 0; |
| 10335 |
padding-left: 15px; |
| 10336 |
width: -webkit-calc(100% - 115px); |
| 10337 |
width: calc(100% - 115px); |
| 10338 |
} |
| 10339 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .wp-adminify--popup-container .wp-adminify--popup-container_inner .add_sidebar_popup form .field .control input, |
| 10340 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .wp-adminify--popup-container .wp-adminify--popup-container_inner .add_sidebar_popup form .field .control textarea, |
| 10341 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .wp-adminify--popup-container .wp-adminify--popup-container_inner .edit_sidebar_popup form .field .control input, |
| 10342 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .wp-adminify--popup-container .wp-adminify--popup-container_inner .edit_sidebar_popup form .field .control textarea { |
| 10343 |
width: 100%; |
| 10344 |
} |
| 10345 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .table-container .wp-list-table.widefat tr th { |
| 10346 |
padding: 15px 17px; |
| 10347 |
} |
| 10348 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .table-container .wp-list-table.widefat tr th p, |
| 10349 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .table-container .wp-list-table.widefat tr th strong { |
| 10350 |
color: #4E4B66; |
| 10351 |
} |
| 10352 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .table-container .wp-list-table.widefat tr td .button { |
| 10353 |
color: var(--adminify-text-color); |
| 10354 |
} |
| 10355 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .table-container .wp-list-table.widefat tr td .button.is-success { |
| 10356 |
background-color: #0cce6b; |
| 10357 |
border: 1px solid #0cce6b; |
| 10358 |
} |
| 10359 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .table-container .wp-list-table.widefat tr td .button.is-success:hover { |
| 10360 |
background-color: var(--adminify-text-color); |
| 10361 |
color: #0cce6b; |
| 10362 |
} |
| 10363 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .table-container .wp-list-table.widefat tr td .button.is-danger { |
| 10364 |
background-color: var(--adminify-notif-bg-color); |
| 10365 |
border: 1px solid var(--adminify-notif-bg-color); |
| 10366 |
} |
| 10367 |
.wp-adminify.wp-adminify_page_adminify-sidebar-generator #wpbody-content .table-container .wp-list-table.widefat tr td .button.is-danger:hover { |
| 10368 |
background-color: var(--adminify-text-color); |
| 10369 |
color: var(--adminify-notif-bg-color); |
| 10370 |
} |
| 10371 |
.wp-adminify .wp-adminify--admin-columns--editor--container { |
| 10372 |
max-width: 950px; |
| 10373 |
margin: 0 auto; |
| 10374 |
} |
| 10375 |
.wp-adminify #wpadminify-admin-columns .admin-column--message, |
| 10376 |
.wp-adminify .wp-adminify--menu--editor--container #adminify-data-saved-message { |
| 10377 |
background-color: #46b450; |
| 10378 |
-webkit-border-radius: 3px; |
| 10379 |
border-radius: 3px; |
| 10380 |
color: #fff; |
| 10381 |
padding: 8px 15px; |
| 10382 |
} |
| 10383 |
.wp-adminify .wp-adminify--menu--editor--container #adminify-data-saved-message { |
| 10384 |
border: 0; |
| 10385 |
display: none; |
| 10386 |
line-height: 16px; |
| 10387 |
margin-bottom: 15px; |
| 10388 |
width: auto; |
| 10389 |
} |
| 10390 |
.wp-adminify #wpadminify-admin-columns .admin-column--message { |
| 10391 |
display: inline-block; |
| 10392 |
} |
| 10393 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered { |
| 10394 |
clear: both; |
| 10395 |
} |
| 10396 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered .nav-tabs { |
| 10397 |
border-bottom: 0; |
| 10398 |
} |
| 10399 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered .nav-link { |
| 10400 |
background-color: var(--adminify-text-color); |
| 10401 |
border: 1px solid #D8D8D8; |
| 10402 |
-webkit-border-radius: 0; |
| 10403 |
border-radius: 0; |
| 10404 |
-webkit-box-shadow: none; |
| 10405 |
box-shadow: none; |
| 10406 |
color: #14142B; |
| 10407 |
display: inline-block; |
| 10408 |
font-size: 14px; |
| 10409 |
font-weight: 600; |
| 10410 |
line-height: 36px; |
| 10411 |
padding: 0 1.5rem; |
| 10412 |
} |
| 10413 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered .nav-link.active { |
| 10414 |
background-color: var(--adminify-btn-bg); |
| 10415 |
border-color: var(--adminify-btn-bg); |
| 10416 |
color: var(--adminify-text-color); |
| 10417 |
} |
| 10418 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered .nav-link i:before { |
| 10419 |
line-height: 34px; |
| 10420 |
} |
| 10421 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered li:first-child .nav-link { |
| 10422 |
border-right: 0; |
| 10423 |
-webkit-border-top-left-radius: 6px; |
| 10424 |
border-top-left-radius: 6px; |
| 10425 |
-webkit-border-bottom-left-radius: 6px; |
| 10426 |
border-bottom-left-radius: 6px; |
| 10427 |
} |
| 10428 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered li:last-child .nav-link { |
| 10429 |
border-left: 0; |
| 10430 |
-webkit-border-top-right-radius: 6px; |
| 10431 |
border-top-right-radius: 6px; |
| 10432 |
-webkit-border-bottom-right-radius: 6px; |
| 10433 |
border-bottom-right-radius: 6px; |
| 10434 |
} |
| 10435 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content { |
| 10436 |
padding: 1.875rem; |
| 10437 |
position: relative; |
| 10438 |
} |
| 10439 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .wp-adminify-loader { |
| 10440 |
height: 44px; |
| 10441 |
width: 44px; |
| 10442 |
top: 50%; |
| 10443 |
left: 50%; |
| 10444 |
margin: -22px 0 0 -22px; |
| 10445 |
position: absolute; |
| 10446 |
z-index: 9; |
| 10447 |
} |
| 10448 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .columns { |
| 10449 |
margin: 0; |
| 10450 |
} |
| 10451 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .column { |
| 10452 |
padding: 0; |
| 10453 |
} |
| 10454 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .nav-tabs { |
| 10455 |
border: 0; |
| 10456 |
margin: 0; |
| 10457 |
padding-right: 1.875rem; |
| 10458 |
} |
| 10459 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .nav-tabs li { |
| 10460 |
width: 100%; |
| 10461 |
} |
| 10462 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .nav-tabs .nav-link { |
| 10463 |
-webkit-box-align: center; |
| 10464 |
-webkit-align-items: center; |
| 10465 |
-ms-flex-align: center; |
| 10466 |
align-items: center; |
| 10467 |
-webkit-box-pack: start; |
| 10468 |
-webkit-justify-content: flex-start; |
| 10469 |
-ms-flex-pack: start; |
| 10470 |
justify-content: flex-start; |
| 10471 |
border: 0; |
| 10472 |
-webkit-border-radius: 6px; |
| 10473 |
border-radius: 6px; |
| 10474 |
color: #14142B; |
| 10475 |
display: -webkit-box; |
| 10476 |
display: -webkit-flex; |
| 10477 |
display: -ms-flexbox; |
| 10478 |
display: flex; |
| 10479 |
font-size: 14px; |
| 10480 |
font-weight: 600; |
| 10481 |
line-height: 36px; |
| 10482 |
padding: 0 1rem; |
| 10483 |
} |
| 10484 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .nav-tabs .nav-link:hover, .wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .nav-tabs .nav-link.active { |
| 10485 |
background-color: var(--adminify-btn-bg); |
| 10486 |
border: 0; |
| 10487 |
color: var(--adminify-text-color); |
| 10488 |
} |
| 10489 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .nav-tabs .nav-link .icon { |
| 10490 |
float: left; |
| 10491 |
margin-right: 5px; |
| 10492 |
} |
| 10493 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .nav-tabs .nav-link .icon i { |
| 10494 |
height: auto; |
| 10495 |
} |
| 10496 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .nav-tabs .nav-link i:before { |
| 10497 |
line-height: 34px; |
| 10498 |
margin-right: 5px; |
| 10499 |
} |
| 10500 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content { |
| 10501 |
border-width: 0 0 0 1px; |
| 10502 |
border-style: solid; |
| 10503 |
border-color: #D8D8D8; |
| 10504 |
padding-left: 1.875rem; |
| 10505 |
} |
| 10506 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content .admin-column-accordion { |
| 10507 |
margin-bottom: 10px; |
| 10508 |
position: relative; |
| 10509 |
z-index: 0; |
| 10510 |
} |
| 10511 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content .admin-column-accordion:last-child { |
| 10512 |
margin-bottom: 0; |
| 10513 |
} |
| 10514 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content .admin-column-accordion .accordion-opener { |
| 10515 |
background-color: transparent; |
| 10516 |
cursor: pointer; |
| 10517 |
height: 56px; |
| 10518 |
width: 35px; |
| 10519 |
top: 0; |
| 10520 |
right: 0; |
| 10521 |
position: absolute; |
| 10522 |
z-index: 1; |
| 10523 |
} |
| 10524 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content .admin-column-accordion .accordion-title { |
| 10525 |
color: #14142B; |
| 10526 |
font-size: 14px; |
| 10527 |
font-weight: 700; |
| 10528 |
line-height: 24px; |
| 10529 |
padding: 0; |
| 10530 |
position: relative; |
| 10531 |
} |
| 10532 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content .admin-column-accordion .accordion-title.show .accordion-toggler i:before { |
| 10533 |
content: "\e648"; |
| 10534 |
} |
| 10535 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content .admin-column-accordion .accordion-type-title .accordion-actions { |
| 10536 |
display: inline-block; |
| 10537 |
font-size: 12px; |
| 10538 |
font-weight: 400; |
| 10539 |
margin-left: 15px; |
| 10540 |
opacity: 0; |
| 10541 |
} |
| 10542 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content .admin-column-accordion .accordion-type-title .accordion-actions .edit-button { |
| 10543 |
color: #0cce6b; |
| 10544 |
margin-right: 5px; |
| 10545 |
} |
| 10546 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content .admin-column-accordion .accordion-type-title .accordion-actions .remove-button { |
| 10547 |
color: var(--adminify-notif-bg-color); |
| 10548 |
} |
| 10549 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content .admin-column-accordion .accordion-type-title:hover .accordion-actions { |
| 10550 |
opacity: 1; |
| 10551 |
} |
| 10552 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content .admin-column-accordion .accordion-type-title .accordion-type { |
| 10553 |
color: rgba(78, 75, 102, 0.72); |
| 10554 |
font-size: 12px; |
| 10555 |
font-weight: 400; |
| 10556 |
margin-right: 10px; |
| 10557 |
} |
| 10558 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content .admin-column-accordion .accordion-helper { |
| 10559 |
color: #14142B; |
| 10560 |
font-size: 12px; |
| 10561 |
line-height: 36px; |
| 10562 |
top: 10px; |
| 10563 |
right: -35px; |
| 10564 |
position: absolute; |
| 10565 |
} |
| 10566 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content .admin-column-accordion .accordion-helper button { |
| 10567 |
background-color: transparent; |
| 10568 |
border: 0; |
| 10569 |
-webkit-box-shadow: none; |
| 10570 |
box-shadow: none; |
| 10571 |
cursor: pointer; |
| 10572 |
padding: 0; |
| 10573 |
} |
| 10574 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content .admin-column-accordion .accordion-helper i { |
| 10575 |
display: inline-block; |
| 10576 |
line-height: 36px; |
| 10577 |
padding: 0 5px; |
| 10578 |
} |
| 10579 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content .admin-column-accordion .accordion-helper .accordion-clone { |
| 10580 |
color: #0cce6b; |
| 10581 |
} |
| 10582 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content .admin-column-accordion .accordion-helper .accordion-remove { |
| 10583 |
color: var(--adminify-notif-bg-color); |
| 10584 |
} |
| 10585 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content .admin-column-accordion .accordion-helper .accordion-toggler { |
| 10586 |
color: var(--adminify-btn-bg); |
| 10587 |
} |
| 10588 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content .admin-column-accordion .accordion-body { |
| 10589 |
border-top: 1px solid #F1F1F3; |
| 10590 |
display: none; |
| 10591 |
padding: 1rem; |
| 10592 |
} |
| 10593 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content .admin-column-accordion .accordion-body .inner-content { |
| 10594 |
border-top: 1px solid #F1F1F3; |
| 10595 |
padding: 10px 0; |
| 10596 |
} |
| 10597 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content .admin-column-accordion .accordion-body .inner-content:first-child { |
| 10598 |
border-top: 0; |
| 10599 |
} |
| 10600 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content .admin-column-accordion .accordion-body .column label { |
| 10601 |
color: #14142B; |
| 10602 |
font-size: 14px; |
| 10603 |
font-weight: 600; |
| 10604 |
} |
| 10605 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content .admin-column-accordion .accordion-body .column.is-4 { |
| 10606 |
padding: 0 1rem; |
| 10607 |
} |
| 10608 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content .admin-column-accordion .accordion-body .column [class*=content-] { |
| 10609 |
padding: 0; |
| 10610 |
} |
| 10611 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content .admin-column-accordion .accordion-body select, |
| 10612 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content .admin-column-accordion .accordion-body input:not([type=checkbox], [type=radio], .range-slider-wrapper .range-value) { |
| 10613 |
width: 100%; |
| 10614 |
} |
| 10615 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content .admin-column-accordion .accordion-body .range-slider-wrapper { |
| 10616 |
color: rgba(78, 75, 102, 0.72); |
| 10617 |
display: inline-block; |
| 10618 |
font-size: 14px; |
| 10619 |
font-weight: 400; |
| 10620 |
width: -webkit-calc(100% - 100px); |
| 10621 |
width: calc(100% - 100px); |
| 10622 |
} |
| 10623 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content .admin-column-accordion .accordion-body .range-value { |
| 10624 |
color: rgba(78, 75, 102, 0.72); |
| 10625 |
float: left; |
| 10626 |
margin-right: 10px; |
| 10627 |
padding: 8px; |
| 10628 |
width: 50px; |
| 10629 |
} |
| 10630 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content .admin-column-accordion .accordion-body .range-slider { |
| 10631 |
-webkit-border-radius: 3px; |
| 10632 |
border-radius: 3px; |
| 10633 |
float: right; |
| 10634 |
height: 10px; |
| 10635 |
margin-top: 10px; |
| 10636 |
position: relative; |
| 10637 |
width: -webkit-calc(100% - 75px); |
| 10638 |
width: calc(100% - 75px); |
| 10639 |
} |
| 10640 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content .admin-column-accordion .accordion-body .range-slider .ui-slider-handle { |
| 10641 |
background-color: #D8D8D8; |
| 10642 |
-webkit-border-radius: 3px; |
| 10643 |
border-radius: 3px; |
| 10644 |
height: 14px; |
| 10645 |
width: 14px; |
| 10646 |
top: -2px; |
| 10647 |
position: absolute; |
| 10648 |
} |
| 10649 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content .admin-column-accordion .accordion-body .range-slider .ui-slider-handle:focus-visible { |
| 10650 |
outline: 0; |
| 10651 |
} |
| 10652 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content .admin-column-accordion .accordion-body .unit-labels { |
| 10653 |
float: right; |
| 10654 |
margin-top: 10px; |
| 10655 |
} |
| 10656 |
.wp-adminify #wpadminify-admin-columns .tabs.is-centered + .tab-content .tab-content .admin-column-accordion .accordion-body .unit-labels label { |
| 10657 |
color: rgba(78, 75, 102, 0.72); |
| 10658 |
display: inline-block; |
| 10659 |
} |
| 10660 |
.wp-adminify #wpadminify-admin-columns .columns.is-desktop { |
| 10661 |
padding-top: 0.625rem; |
| 10662 |
} |
| 10663 |
.wp-adminify .wp-adminify_page_adminify-server-info .adminify-content { |
| 10664 |
background-color: inherit; |
| 10665 |
} |
| 10666 |
.wp-adminify .wp-adminify_page_adminify-server-info .adminify-field { |
| 10667 |
padding: 0; |
| 10668 |
} |
| 10669 |
.wp-adminify .wp-adminify_page_adminify-server-info .adminify-tabbed-content { |
| 10670 |
background-color: inherit; |
| 10671 |
border: 0; |
| 10672 |
-webkit-border-bottom-left-radius: 6px; |
| 10673 |
border-bottom-left-radius: 6px; |
| 10674 |
-webkit-border-bottom-right-radius: 6px; |
| 10675 |
border-bottom-right-radius: 6px; |
| 10676 |
-webkit-box-shadow: none; |
| 10677 |
box-shadow: none; |
| 10678 |
} |
| 10679 |
.wp-adminify .wp-adminify_page_adminify-server-info .adminify-tabbed-content .adminify-field { |
| 10680 |
padding: 1.25rem; |
| 10681 |
} |
| 10682 |
.wp-adminify .wp-adminify_page_adminify-server-info .adminify-tabbed-content .adminify-field h1 { |
| 10683 |
line-height: 1; |
| 10684 |
padding: 0; |
| 10685 |
} |
| 10686 |
.wp-adminify .wp-adminify_page_adminify-server-info .adminify-tabbed-content .adminify-field p { |
| 10687 |
margin-bottom: 0; |
| 10688 |
} |
| 10689 |
.wp-adminify .wp-adminify_page_adminify-server-info table th, |
| 10690 |
.wp-adminify .wp-adminify_page_adminify-server-info table td { |
| 10691 |
padding: 17px 1.25rem; |
| 10692 |
} |
| 10693 |
.wp-adminify .wp-adminify_page_adminify-server-info table th:first-child, |
| 10694 |
.wp-adminify .wp-adminify_page_adminify-server-info table td:first-child { |
| 10695 |
width: 15rem; |
| 10696 |
} |
| 10697 |
.wp-adminify .wp-adminify_page_adminify-server-info table + h2 { |
| 10698 |
margin: 1.5rem 0; |
| 10699 |
} |
| 10700 |
.wp-adminify .wp-adminify_page_adminify-server-info .adminify-copy-btn { |
| 10701 |
margin-top: 2.5rem; |
| 10702 |
} |
| 10703 |
.wp-adminify .wp-adminify_page_adminify-server-info .adminify-copy-btn:focus { |
| 10704 |
background-color: var(--adminify-text-color); |
| 10705 |
border-color: var(--adminify-btn-bg); |
| 10706 |
color: var(--adminify-btn-bg); |
| 10707 |
} |
| 10708 |
.wp-adminify .wp-adminify_page_adminify-server-info .adminify-copy-btn .icon { |
| 10709 |
font-size: 0; |
| 10710 |
} |
| 10711 |
.wp-adminify .wp-adminify_page_adminify-server-info .adminify-copy-btn .icon:before { |
| 10712 |
font-size: 16px; |
| 10713 |
} |
| 10714 |
.wp-adminify .wp-adminify_page_adminify-server-info #PHPinfo, |
| 10715 |
.wp-adminify .wp-adminify_page_adminify-server-info #MYSQLinfo { |
| 10716 |
margin: 0; |
| 10717 |
} |
| 10718 |
.wp-adminify .wp-adminify_page_adminify-server-info #PHPinfo table, |
| 10719 |
.wp-adminify .wp-adminify_page_adminify-server-info #MYSQLinfo table { |
| 10720 |
margin: 0; |
| 10721 |
table-layout: fixed; |
| 10722 |
} |
| 10723 |
.wp-adminify .wp-adminify_page_adminify-server-info #PHPinfo table th, |
| 10724 |
.wp-adminify .wp-adminify_page_adminify-server-info #PHPinfo table td, |
| 10725 |
.wp-adminify .wp-adminify_page_adminify-server-info #MYSQLinfo table th, |
| 10726 |
.wp-adminify .wp-adminify_page_adminify-server-info #MYSQLinfo table td { |
| 10727 |
width: 30%; |
| 10728 |
} |
| 10729 |
.wp-adminify .wp-adminify_page_adminify-server-info #PHPinfo hr, |
| 10730 |
.wp-adminify .wp-adminify_page_adminify-server-info #MYSQLinfo hr { |
| 10731 |
display: none; |
| 10732 |
} |
| 10733 |
.wp-adminify .wp-adminify_page_adminify-server-info #PHPinfo table { |
| 10734 |
margin-bottom: 3rem; |
| 10735 |
} |
| 10736 |
.wp-adminify .wp-adminify_page_adminify-server-info .adminify-info-text-area { |
| 10737 |
background-color: #2c2c2c; |
| 10738 |
-webkit-border-radius: 6px; |
| 10739 |
border-radius: 6px; |
| 10740 |
color: #cfcfcf; |
| 10741 |
height: 75vh; |
| 10742 |
margin-top: 1.25rem; |
| 10743 |
padding: 1.25rem; |
| 10744 |
width: 100%; |
| 10745 |
} |
| 10746 |
.wp-adminify .wp-adminify_page_adminify-server-info .wp-adminify-error-logs .field-status { |
| 10747 |
-webkit-border-radius: 3px; |
| 10748 |
border-radius: 3px; |
| 10749 |
} |
| 10750 |
.wp-adminify .fs-modal-license-activation-adminify .fs-modal-header { |
| 10751 |
background-color: var(--adminify-btn-bg); |
| 10752 |
border: 0; |
| 10753 |
} |
| 10754 |
.wp-adminify .fs-modal-license-activation-adminify .fs-modal-header h4 { |
| 10755 |
color: var(--adminify-text-color); |
| 10756 |
text-shadow: none; |
| 10757 |
} |
| 10758 |
.wp-adminify .fs-modal-license-activation-adminify .fs-modal-header .fs-close { |
| 10759 |
color: var(--adminify-text-color); |
| 10760 |
} |
| 10761 |
.wp-adminify .fs-modal-license-activation-adminify .fs-modal-header .fs-close:hover { |
| 10762 |
background: #c30052; |
| 10763 |
} |
| 10764 |
.wp-adminify #fs_affiliation_content_wrapper p:not(.description), |
| 10765 |
.wp-adminify #fs_affiliation_content_wrapper li, |
| 10766 |
.wp-adminify #fs_affiliation_content_wrapper label { |
| 10767 |
font-size: 14px !important; |
| 10768 |
line-height: 20px !important; |
| 10769 |
} |
| 10770 |
.wp-adminify #fs_affiliation_content_wrapper h3 { |
| 10771 |
font-size: initial; |
| 10772 |
} |
| 10773 |
.wp-adminify #fs_affiliation_content_wrapper .button { |
| 10774 |
height: auto; |
| 10775 |
} |
| 10776 |
.wp-adminify .wp-adminify-rollback-button { |
| 10777 |
line-height: 30px; |
| 10778 |
padding: 0 16px 4px; |
| 10779 |
} |
| 10780 |
.wp-adminify .wp-adminify-rollback-button:before { |
| 10781 |
float: left; |
| 10782 |
line-height: 1; |
| 10783 |
margin: 10px 3px 0 0; |
| 10784 |
} |
| 10785 |
.wp-adminify body.wp-adminify { |
| 10786 |
--adminify-text-color: #fff; |
| 10787 |
} |
| 10788 |
.wp-adminify body.wp-adminify { |
| 10789 |
--adminify-text-color: #fff; |
| 10790 |
} |
| 10791 |
@font-face { |
| 10792 |
.wp-adminify { |
| 10793 |
font-family: no-parens; |
| 10794 |
src: url("data:application/x-font-woff;base64,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"); |
| 10795 |
unicode-range: U+0028, U+0029; |
| 10796 |
} |
| 10797 |
} |
| 10798 |
.wp-adminify.themes-php #wpbody-content .search-form, .wp-adminify.theme-install-php #wpbody-content .search-form { |
| 10799 |
float: right; |
| 10800 |
margin-right: 20px; |
| 10801 |
} |
| 10802 |
.wp-adminify.themes-php #wpbody-content .search-form input[type=search], .wp-adminify.theme-install-php #wpbody-content .search-form input[type=search] { |
| 10803 |
position: inherit; |
| 10804 |
} |
| 10805 |
.wp-adminify.themes-php #wpbody-content .button-primary.updating-message:hover:before, .wp-adminify.theme-install-php #wpbody-content .button-primary.updating-message:hover:before { |
| 10806 |
color: var(--adminify-btn-bg); |
| 10807 |
} |
| 10808 |
.wp-adminify.themes-php #wpbody-content .theme-browser .theme:focus .theme-screenshot, |
| 10809 |
.wp-adminify.themes-php #wpbody-content .theme-browser .theme:hover .theme-screenshot, .wp-adminify.theme-install-php #wpbody-content .theme-browser .theme:focus .theme-screenshot, |
| 10810 |
.wp-adminify.theme-install-php #wpbody-content .theme-browser .theme:hover .theme-screenshot { |
| 10811 |
background: inherit; |
| 10812 |
} |
| 10813 |
.wp-adminify.themes-php #wpbody-content .theme-browser .theme:not(.add-new-theme), .wp-adminify.theme-install-php #wpbody-content .theme-browser .theme:not(.add-new-theme) { |
| 10814 |
background-color: var(--adminify-text-color); |
| 10815 |
border: 0; |
| 10816 |
-webkit-border-radius: 8px; |
| 10817 |
border-radius: 8px; |
| 10818 |
-webkit-box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 10819 |
box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 10820 |
} |
| 10821 |
.wp-adminify.themes-php #wpbody-content .theme-browser .theme:not(.add-new-theme) .notice, .wp-adminify.theme-install-php #wpbody-content .theme-browser .theme:not(.add-new-theme) .notice { |
| 10822 |
border: 0; |
| 10823 |
-webkit-border-bottom-left-radius: 0; |
| 10824 |
border-bottom-left-radius: 0; |
| 10825 |
-webkit-border-bottom-right-radius: 0; |
| 10826 |
border-bottom-right-radius: 0; |
| 10827 |
margin: 0; |
| 10828 |
padding: 10px 14px; |
| 10829 |
position: absolute; |
| 10830 |
} |
| 10831 |
.wp-adminify.themes-php #wpbody-content .theme-browser .theme:not(.add-new-theme) .notice p, .wp-adminify.theme-install-php #wpbody-content .theme-browser .theme:not(.add-new-theme) .notice p { |
| 10832 |
color: #000; |
| 10833 |
font-size: 14px; |
| 10834 |
font-weight: 400; |
| 10835 |
} |
| 10836 |
.wp-adminify.themes-php #wpbody-content .theme-browser .theme:not(.add-new-theme) .notice p:before, .wp-adminify.theme-install-php #wpbody-content .theme-browser .theme:not(.add-new-theme) .notice p:before { |
| 10837 |
color: #FF8800; |
| 10838 |
} |
| 10839 |
.wp-adminify.themes-php #wpbody-content .theme-browser .theme:not(.add-new-theme) .notice p .button-link, .wp-adminify.theme-install-php #wpbody-content .theme-browser .theme:not(.add-new-theme) .notice p .button-link { |
| 10840 |
margin: 0; |
| 10841 |
} |
| 10842 |
.wp-adminify.themes-php #wpbody-content .theme-browser .theme:not(.add-new-theme) .notice p:before, .wp-adminify.theme-install-php #wpbody-content .theme-browser .theme:not(.add-new-theme) .notice p:before { |
| 10843 |
content: ""; |
| 10844 |
background: url(../../assets/images/bulb.svg) center no-repeat; |
| 10845 |
background-size: contain; |
| 10846 |
height: 18px; |
| 10847 |
width: 18px; |
| 10848 |
} |
| 10849 |
.wp-adminify.themes-php #wpbody-content .theme-browser .theme:not(.add-new-theme) .notice button, .wp-adminify.theme-install-php #wpbody-content .theme-browser .theme:not(.add-new-theme) .notice button { |
| 10850 |
color: var(--adminify-btn-bg); |
| 10851 |
} |
| 10852 |
.wp-adminify.themes-php #wpbody-content .theme-browser .theme:not(.add-new-theme) .theme-screenshot, .wp-adminify.theme-install-php #wpbody-content .theme-browser .theme:not(.add-new-theme) .theme-screenshot { |
| 10853 |
-webkit-border-top-left-radius: 8px; |
| 10854 |
border-top-left-radius: 8px; |
| 10855 |
-webkit-border-top-right-radius: 8px; |
| 10856 |
border-top-right-radius: 8px; |
| 10857 |
padding: 18px 22px 0; |
| 10858 |
z-index: 0; |
| 10859 |
} |
| 10860 |
.wp-adminify.themes-php #wpbody-content .theme-browser .theme:not(.add-new-theme) .theme-screenshot:after, .wp-adminify.theme-install-php #wpbody-content .theme-browser .theme:not(.add-new-theme) .theme-screenshot:after { |
| 10861 |
border: 1px solid #e3e3e3; |
| 10862 |
height: -webkit-calc(100% - 9px); |
| 10863 |
height: calc(100% - 9px); |
| 10864 |
width: -webkit-calc(100% - 24px); |
| 10865 |
width: calc(100% - 24px); |
| 10866 |
top: 7px; |
| 10867 |
left: 11px; |
| 10868 |
padding-top: 0; |
| 10869 |
position: absolute; |
| 10870 |
z-index: -1; |
| 10871 |
} |
| 10872 |
.wp-adminify.themes-php #wpbody-content .theme-browser .theme:not(.add-new-theme) .theme-screenshot img, .wp-adminify.theme-install-php #wpbody-content .theme-browser .theme:not(.add-new-theme) .theme-screenshot img { |
| 10873 |
-webkit-border-top-left-radius: 8px; |
| 10874 |
border-top-left-radius: 8px; |
| 10875 |
-webkit-border-top-right-radius: 8px; |
| 10876 |
border-top-right-radius: 8px; |
| 10877 |
padding: 10px 10px 0; |
| 10878 |
position: inherit; |
| 10879 |
} |
| 10880 |
.wp-adminify.themes-php #wpbody-content .theme-browser .theme:not(.add-new-theme) .theme-id-container .theme-name, .wp-adminify.theme-install-php #wpbody-content .theme-browser .theme:not(.add-new-theme) .theme-id-container .theme-name { |
| 10881 |
background: var(--adminify-text-color); |
| 10882 |
-webkit-border-bottom-left-radius: 8px; |
| 10883 |
border-bottom-left-radius: 8px; |
| 10884 |
-webkit-border-bottom-right-radius: 8px; |
| 10885 |
border-bottom-right-radius: 8px; |
| 10886 |
-webkit-box-shadow: none; |
| 10887 |
box-shadow: none; |
| 10888 |
color: #14142B; |
| 10889 |
font-size: 14px; |
| 10890 |
height: auto; |
| 10891 |
padding: 20px 15px; |
| 10892 |
} |
| 10893 |
.wp-adminify.themes-php #wpbody-content .theme-browser .theme:not(.add-new-theme) .theme-id-container .theme-name:hover, .wp-adminify.theme-install-php #wpbody-content .theme-browser .theme:not(.add-new-theme) .theme-id-container .theme-name:hover { |
| 10894 |
color: var(--adminify-text-color); |
| 10895 |
} |
| 10896 |
.wp-adminify.themes-php #wpbody-content .theme-browser .theme:not(.add-new-theme) .theme-id-container .button, .wp-adminify.theme-install-php #wpbody-content .theme-browser .theme:not(.add-new-theme) .theme-id-container .button { |
| 10897 |
font-weight: 700; |
| 10898 |
line-height: 30px; |
| 10899 |
} |
| 10900 |
.wp-adminify.themes-php #wpbody-content .theme-browser .theme:not(.add-new-theme).active .theme-screenshot, .wp-adminify.themes-php #wpbody-content .theme-browser .theme:not(.add-new-theme):hover .theme-screenshot, .wp-adminify.theme-install-php #wpbody-content .theme-browser .theme:not(.add-new-theme).active .theme-screenshot, .wp-adminify.theme-install-php #wpbody-content .theme-browser .theme:not(.add-new-theme):hover .theme-screenshot { |
| 10901 |
overflow: hidden; |
| 10902 |
} |
| 10903 |
.wp-adminify.themes-php #wpbody-content .theme-browser .theme:not(.add-new-theme).active .theme-id-container .theme-name, .wp-adminify.themes-php #wpbody-content .theme-browser .theme:not(.add-new-theme):hover .theme-id-container .theme-name, .wp-adminify.theme-install-php #wpbody-content .theme-browser .theme:not(.add-new-theme).active .theme-id-container .theme-name, .wp-adminify.theme-install-php #wpbody-content .theme-browser .theme:not(.add-new-theme):hover .theme-id-container .theme-name { |
| 10904 |
background: rgba(78, 75, 102, 0.72); |
| 10905 |
color: var(--adminify-text-color); |
| 10906 |
} |
| 10907 |
.wp-adminify.themes-php #wpbody-content .theme-browser .theme:not(.add-new-theme).active .theme-id-container .theme-actions, .wp-adminify.themes-php #wpbody-content .theme-browser .theme:not(.add-new-theme):hover .theme-id-container .theme-actions, .wp-adminify.theme-install-php #wpbody-content .theme-browser .theme:not(.add-new-theme).active .theme-id-container .theme-actions, .wp-adminify.theme-install-php #wpbody-content .theme-browser .theme:not(.add-new-theme):hover .theme-id-container .theme-actions { |
| 10908 |
background: transparent; |
| 10909 |
-webkit-box-shadow: none; |
| 10910 |
box-shadow: none; |
| 10911 |
} |
| 10912 |
.wp-adminify.themes-php #wpbody-content .theme-browser .theme:not(.add-new-theme) .more-details, .wp-adminify.theme-install-php #wpbody-content .theme-browser .theme:not(.add-new-theme) .more-details { |
| 10913 |
background: var(--adminify-btn-bg); |
| 10914 |
-webkit-border-radius: 6px; |
| 10915 |
border-radius: 6px; |
| 10916 |
cursor: pointer; |
| 10917 |
right: 25%; |
| 10918 |
left: 25%; |
| 10919 |
padding: 6px 10px; |
| 10920 |
width: 50%; |
| 10921 |
} |
| 10922 |
.wp-adminify.themes-php #wpbody-content .theme-browser .theme:not(.add-new-theme) .theme-actions, .wp-adminify.theme-install-php #wpbody-content .theme-browser .theme:not(.add-new-theme) .theme-actions { |
| 10923 |
-webkit-box-shadow: none; |
| 10924 |
box-shadow: none; |
| 10925 |
padding: 0 7px; |
| 10926 |
} |
| 10927 |
.wp-adminify.themes-php #wpbody-content .theme-browser .theme:not(.add-new-theme) .theme-actions .button.activate, .wp-adminify.theme-install-php #wpbody-content .theme-browser .theme:not(.add-new-theme) .theme-actions .button.activate { |
| 10928 |
background-color: var(--adminify-text-color) !important; |
| 10929 |
color: var(--adminify-btn-bg); |
| 10930 |
} |
| 10931 |
.wp-adminify.themes-php #wpbody-content .theme-browser .theme:not(.add-new-theme) .theme-actions .button.activate:hover, .wp-adminify.theme-install-php #wpbody-content .theme-browser .theme:not(.add-new-theme) .theme-actions .button.activate:hover { |
| 10932 |
background-color: var(--adminify-btn-bg) !important; |
| 10933 |
color: var(--adminify-text-color); |
| 10934 |
} |
| 10935 |
.wp-adminify.themes-php #wpbody-content .theme-browser .theme.add-new-theme a:after, .wp-adminify.theme-install-php #wpbody-content .theme-browser .theme.add-new-theme a:after { |
| 10936 |
border: 3px dashed #E5E5E5; |
| 10937 |
-webkit-border-radius: 8px; |
| 10938 |
border-radius: 8px; |
| 10939 |
} |
| 10940 |
.wp-adminify.themes-php #wpbody-content .theme-browser .theme.add-new-theme a:hover:after, .wp-adminify.theme-install-php #wpbody-content .theme-browser .theme.add-new-theme a:hover:after { |
| 10941 |
background-color: var(--adminify-btn-bg); |
| 10942 |
border-color: var(--adminify-btn-bg); |
| 10943 |
} |
| 10944 |
.wp-adminify.themes-php #wpbody-content .theme-browser .theme.add-new-theme a:hover span:after, .wp-adminify.theme-install-php #wpbody-content .theme-browser .theme.add-new-theme a:hover span:after { |
| 10945 |
background-color: var(--adminify-text-color); |
| 10946 |
color: var(--adminify-btn-bg); |
| 10947 |
} |
| 10948 |
.wp-adminify.themes-php #wpbody-content .theme-browser .theme.add-new-theme a:hover .theme-name, .wp-adminify.theme-install-php #wpbody-content .theme-browser .theme.add-new-theme a:hover .theme-name { |
| 10949 |
color: var(--adminify-text-color); |
| 10950 |
} |
| 10951 |
.wp-adminify.themes-php #wpbody-content .theme-browser .theme.add-new-theme a .theme-name, .wp-adminify.theme-install-php #wpbody-content .theme-browser .theme.add-new-theme a .theme-name { |
| 10952 |
color: #4E4B66; |
| 10953 |
font-size: 14px; |
| 10954 |
font-weight: 600; |
| 10955 |
} |
| 10956 |
.wp-adminify.themes-php #wpbody-content .theme-overlay .theme-header { |
| 10957 |
border-bottom-color: #F1F1F3; |
| 10958 |
} |
| 10959 |
.wp-adminify.themes-php #wpbody-content .theme-overlay .theme-header button:hover { |
| 10960 |
background: inherit; |
| 10961 |
} |
| 10962 |
.wp-adminify.themes-php #wpbody-content .theme-overlay .theme-header .left, |
| 10963 |
.wp-adminify.themes-php #wpbody-content .theme-overlay .theme-header .right { |
| 10964 |
border-right-color: #F1F1F3; |
| 10965 |
color: #2e3a59; |
| 10966 |
} |
| 10967 |
.wp-adminify.themes-php #wpbody-content .theme-overlay .theme-header .close { |
| 10968 |
border-left-color: #F1F1F3; |
| 10969 |
} |
| 10970 |
.wp-adminify.themes-php #wpbody-content .theme-overlay .theme-header .close:before { |
| 10971 |
color: #2e3a59; |
| 10972 |
} |
| 10973 |
.wp-adminify.themes-php #wpbody-content .theme-overlay .theme-about { |
| 10974 |
padding: 30px; |
| 10975 |
} |
| 10976 |
.wp-adminify.themes-php #wpbody-content .theme-overlay .theme-screenshots { |
| 10977 |
padding: 20px 30px; |
| 10978 |
position: relative; |
| 10979 |
z-index: 0; |
| 10980 |
} |
| 10981 |
.wp-adminify.themes-php #wpbody-content .theme-overlay .theme-screenshots:before { |
| 10982 |
content: ""; |
| 10983 |
border: 1px solid #e3e3e3; |
| 10984 |
height: -webkit-calc(100% - 60px); |
| 10985 |
height: calc(100% - 60px); |
| 10986 |
width: 100%; |
| 10987 |
top: 0; |
| 10988 |
left: 0; |
| 10989 |
position: absolute; |
| 10990 |
z-index: -1; |
| 10991 |
} |
| 10992 |
.wp-adminify.themes-php #wpbody-content .theme-overlay .theme-screenshots .screenshot { |
| 10993 |
-webkit-border-radius: 0; |
| 10994 |
border-radius: 0; |
| 10995 |
} |
| 10996 |
.wp-adminify.themes-php #wpbody-content .theme-overlay .current-label { |
| 10997 |
background: #4E4B66; |
| 10998 |
color: var(--adminify-text-color); |
| 10999 |
font-size: 12px; |
| 11000 |
font-weight: 400; |
| 11001 |
line-height: 16px; |
| 11002 |
margin-bottom: 10px; |
| 11003 |
padding: 3px 10px; |
| 11004 |
} |
| 11005 |
.wp-adminify.themes-php #wpbody-content .theme-overlay .theme-name { |
| 11006 |
color: #000; |
| 11007 |
font-size: 38px; |
| 11008 |
font-weight: 300; |
| 11009 |
line-height: 42px; |
| 11010 |
} |
| 11011 |
.wp-adminify.themes-php #wpbody-content .theme-overlay .theme-name:hover { |
| 11012 |
color: #000; |
| 11013 |
} |
| 11014 |
.wp-adminify.themes-php #wpbody-content .theme-overlay .theme-name .theme-version { |
| 11015 |
color: rgba(78, 75, 102, 0.54); |
| 11016 |
font-size: 12px; |
| 11017 |
font-weight: 400; |
| 11018 |
} |
| 11019 |
.wp-adminify.themes-php #wpbody-content .theme-overlay .toggle-auto-update span { |
| 11020 |
color: #0cce6b; |
| 11021 |
font-size: 14px; |
| 11022 |
font-weight: 400; |
| 11023 |
text-decoration: none; |
| 11024 |
} |
| 11025 |
.wp-adminify.themes-php #wpbody-content .theme-overlay .toggle-auto-update[data-wp-action=disable] span { |
| 11026 |
color: var(--adminify-notif-bg-color); |
| 11027 |
} |
| 11028 |
.wp-adminify.themes-php #wpbody-content .theme-overlay .notice .notice-title { |
| 11029 |
margin: 0; |
| 11030 |
} |
| 11031 |
.wp-adminify.themes-php #wpbody-content .theme-overlay .notice p { |
| 11032 |
margin-bottom: 0; |
| 11033 |
padding-bottom: 0; |
| 11034 |
} |
| 11035 |
.wp-adminify.themes-php #wpbody-content .theme-overlay .theme-author { |
| 11036 |
color: #000; |
| 11037 |
font-size: 14px; |
| 11038 |
font-weight: 400; |
| 11039 |
line-height: 16px; |
| 11040 |
} |
| 11041 |
.wp-adminify.themes-php #wpbody-content .theme-overlay .theme-author a { |
| 11042 |
color: var(--adminify-btn-bg); |
| 11043 |
} |
| 11044 |
.wp-adminify.themes-php #wpbody-content .theme-overlay .theme-description { |
| 11045 |
color: #000; |
| 11046 |
font-size: 14px; |
| 11047 |
font-weight: 400; |
| 11048 |
line-height: 20px; |
| 11049 |
} |
| 11050 |
.wp-adminify.themes-php #wpbody-content .theme-overlay .theme-actions { |
| 11051 |
background-color: var(--adminify-preset-background); |
| 11052 |
} |
| 11053 |
.wp-adminify.themes-php #wpbody-content .theme-overlay .theme-actions .button:not(.customize) { |
| 11054 |
background-color: var(--adminify-text-color); |
| 11055 |
border-color: rgba(78, 75, 102, 0.72); |
| 11056 |
color: rgba(78, 75, 102, 0.72); |
| 11057 |
} |
| 11058 |
.wp-adminify.themes-php #wpbody-content .theme-overlay .theme-actions .button:not(.customize):hover { |
| 11059 |
background-color: var(--adminify-btn-bg); |
| 11060 |
border-color: var(--adminify-btn-bg); |
| 11061 |
color: var(--adminify-text-color); |
| 11062 |
} |
| 11063 |
.wp-adminify.themes-php #wpbody-content .favorites-form p.install-help { |
| 11064 |
color: #4E4B66; |
| 11065 |
} |
| 11066 |
.wp-adminify.themes-php #wpbody-content .favorites-form input[type=search] { |
| 11067 |
background-color: var(--adminify-text-color); |
| 11068 |
border: 1px solid #F1F1F3; |
| 11069 |
-webkit-border-radius: 6px; |
| 11070 |
border-radius: 6px; |
| 11071 |
color: rgba(78, 75, 102, 0.72); |
| 11072 |
min-height: 36px; |
| 11073 |
} |
| 11074 |
.wp-adminify.theme-install-php #wpbody-content .wp-filter { |
| 11075 |
border: 0; |
| 11076 |
-webkit-border-radius: 8px; |
| 11077 |
border-radius: 8px; |
| 11078 |
-webkit-box-shadow: none; |
| 11079 |
box-shadow: none; |
| 11080 |
padding: 0 16px; |
| 11081 |
} |
| 11082 |
.wp-adminify.theme-install-php #wpbody-content .wp-filter .count { |
| 11083 |
background: #4E4B66; |
| 11084 |
-webkit-border-radius: 6px; |
| 11085 |
border-radius: 6px; |
| 11086 |
color: var(--adminify-text-color); |
| 11087 |
font-size: 14px; |
| 11088 |
font-weight: 400; |
| 11089 |
line-height: 20px; |
| 11090 |
padding: 8px 12px; |
| 11091 |
top: 0; |
| 11092 |
} |
| 11093 |
.wp-adminify.theme-install-php #wpbody-content .wp-filter .filter-links a { |
| 11094 |
border-bottom: 2px solid transparent; |
| 11095 |
color: rgba(78, 75, 102, 0.72); |
| 11096 |
font-size: 14px; |
| 11097 |
font-weight: 600; |
| 11098 |
line-height: 33px; |
| 11099 |
padding: 11px 0; |
| 11100 |
} |
| 11101 |
.wp-adminify.theme-install-php #wpbody-content .wp-filter .filter-links a.current, .wp-adminify.theme-install-php #wpbody-content .wp-filter .filter-links a:hover { |
| 11102 |
border-bottom-color: var(--adminify-btn-bg); |
| 11103 |
color: var(--adminify-btn-bg); |
| 11104 |
} |
| 11105 |
.wp-adminify.theme-install-php #wpbody-content .wp-filter .button { |
| 11106 |
color: rgba(78, 75, 102, 0.72); |
| 11107 |
line-height: 20px; |
| 11108 |
margin: 0; |
| 11109 |
vertical-align: middle; |
| 11110 |
} |
| 11111 |
.wp-adminify.theme-install-php #wpbody-content .wp-filter .button:hover { |
| 11112 |
color: var(--adminify-btn-bg); |
| 11113 |
} |
| 11114 |
.wp-adminify.theme-install-php #wpbody-content .wp-filter .button:hover:before { |
| 11115 |
color: var(--adminify-btn-bg); |
| 11116 |
} |
| 11117 |
.wp-adminify.theme-install-php #wpbody-content .wp-filter .button:before { |
| 11118 |
font-size: 20px; |
| 11119 |
} |
| 11120 |
.wp-adminify.theme-install-php #wpbody-content .wp-filter .search-form { |
| 11121 |
margin: 10px 0 0; |
| 11122 |
} |
| 11123 |
.wp-adminify.theme-install-php #wpbody-content .theme-install-overlay .wp-full-overlay-header .close-full-overlay:before { |
| 11124 |
color: #c30052; |
| 11125 |
} |
| 11126 |
.wp-adminify.theme-install-php #wpbody-content .theme-install-overlay .wp-full-overlay-header .previous-theme, |
| 11127 |
.wp-adminify.theme-install-php #wpbody-content .theme-install-overlay .wp-full-overlay-header .next-theme { |
| 11128 |
color: var(--adminify-btn-bg); |
| 11129 |
} |
| 11130 |
.wp-adminify.theme-install-php #wpbody-content .theme-install-overlay .wp-full-overlay-header .button { |
| 11131 |
margin-top: 5px; |
| 11132 |
} |
| 11133 |
.wp-adminify.theme-install-php #wpbody-content .theme-install-overlay .collapse-sidebar { |
| 11134 |
color: var(--adminify-btn-bg); |
| 11135 |
} |
| 11136 |
.wp-adminify.theme-install-php #wpbody-content .theme-install-overlay .collapse-sidebar:hover { |
| 11137 |
color: var(--adminify-btn-bg); |
| 11138 |
} |
| 11139 |
.wp-adminify.theme-install-php #wpbody-content .upload-theme .install-help { |
| 11140 |
font-size: 14px; |
| 11141 |
font-weight: 400; |
| 11142 |
} |
| 11143 |
.wp-adminify.theme-install-php .wp-full-overlay-sidebar .wp-full-overlay-header button:before { |
| 11144 |
top: 6px; |
| 11145 |
} |
| 11146 |
.wp-adminify.theme-install-php .wp-full-overlay-sidebar .wp-full-overlay-sidebar-content .theme-description { |
| 11147 |
color: #14142B; |
| 11148 |
font-size: 13px; |
| 11149 |
line-height: 20px; |
| 11150 |
} |
| 11151 |
.wp-adminify #wpbody-content .wp-filter button.button.drawer-toggle, |
| 11152 |
.wp-adminify #wpbody-content .wp-filter button.button.drawer-toggle:hover, |
| 11153 |
.wp-adminify #wpbody-content .wp-filter button.button.drawer-toggle:before, |
| 11154 |
.wp-adminify #wpbody-content .wp-filter button.button.drawer-toggle:focus { |
| 11155 |
background-color: transparent; |
| 11156 |
border: 0; |
| 11157 |
color: var(--adminify-btn-bg); |
| 11158 |
} |
| 11159 |
.wp-adminify #wpbody-content .wp-filter .filter-drawer { |
| 11160 |
background-color: var(--adminify-text-color); |
| 11161 |
border-top: 1px solid #D8D8D8; |
| 11162 |
margin: 0; |
| 11163 |
width: 100%; |
| 11164 |
} |
| 11165 |
.wp-adminify #wpbody-content .wp-filter .filter-drawer .filter-group { |
| 11166 |
padding: 15px; |
| 11167 |
} |
| 11168 |
.wp-adminify #wpbody-content .wp-filter .filter-drawer legend { |
| 11169 |
top: 15px; |
| 11170 |
} |
| 11171 |
.wp-adminify #wpbody-content .wp-filter .filter-drawer .clear-filters { |
| 11172 |
background-color: var(--adminify-notif-bg-color); |
| 11173 |
border: 1px solid var(--adminify-notif-bg-color); |
| 11174 |
color: var(--adminify-text-color); |
| 11175 |
} |
| 11176 |
.wp-adminify #wpbody-content .wp-filter .filter-drawer .filter-group-feature { |
| 11177 |
color: #4E4B66; |
| 11178 |
font-size: 13px; |
| 11179 |
margin-top: 32px; |
| 11180 |
} |
| 11181 |
.wp-adminify #wpbody-content .wp-filter .filter-drawer .filter-group-feature input[type=checkbox] { |
| 11182 |
float: left; |
| 11183 |
} |
| 11184 |
.wp-adminify #wpbody-content .theme-overlay .theme-wrap { |
| 11185 |
top: 15%; |
| 11186 |
} |
| 11187 |
.wp-adminify body.wp-adminify { |
| 11188 |
--adminify-text-color: #fff; |
| 11189 |
} |
| 11190 |
.wp-adminify body.wp-adminify { |
| 11191 |
--adminify-text-color: #fff; |
| 11192 |
} |
| 11193 |
.wp-adminify .wp-customizer .wp-full-overlay-sidebar #customize-save-button-wrapper { |
| 11194 |
margin-top: 8px; |
| 11195 |
} |
| 11196 |
.wp-adminify .wp-customizer .wp-full-overlay-sidebar .customize-controls-close { |
| 11197 |
color: var(--adminify-notif-bg-color); |
| 11198 |
} |
| 11199 |
.wp-adminify .wp-customizer .wp-full-overlay-sidebar .customize-controls-close:hover, .wp-adminify .wp-customizer .wp-full-overlay-sidebar .customize-controls-close:focus { |
| 11200 |
border-top-color: var(--adminify-notif-bg-color); |
| 11201 |
color: var(--adminify-notif-bg-color); |
| 11202 |
} |
| 11203 |
.wp-adminify .wp-customizer .wp-full-overlay-sidebar .customize-save-button-wrapper .button, |
| 11204 |
.wp-adminify .wp-customizer .wp-full-overlay-sidebar .control-panel-themes .button { |
| 11205 |
background-color: var(--adminify-btn-bg); |
| 11206 |
border: 1px solid var(--adminify-btn-bg); |
| 11207 |
-webkit-box-shadow: none; |
| 11208 |
box-shadow: none; |
| 11209 |
color: var(--adminify-text-color); |
| 11210 |
line-height: 28px; |
| 11211 |
} |
| 11212 |
.wp-adminify .wp-customizer .wp-full-overlay-sidebar .customize-save-button-wrapper .button:hover, |
| 11213 |
.wp-adminify .wp-customizer .wp-full-overlay-sidebar .control-panel-themes .button:hover { |
| 11214 |
background-color: var(--adminify-text-color); |
| 11215 |
color: var(--adminify-btn-bg); |
| 11216 |
} |
| 11217 |
.wp-adminify .wp-customizer .wp-full-overlay-sidebar .customize-save-button-wrapper .button { |
| 11218 |
height: auto; |
| 11219 |
} |
| 11220 |
.wp-adminify .wp-customizer .wp-full-overlay-sidebar .customize-save-button-wrapper button.dashicons { |
| 11221 |
font-family: dashicons; |
| 11222 |
} |
| 11223 |
.wp-adminify .wp-customizer .wp-full-overlay-sidebar .customize-panel-back { |
| 11224 |
border-left-color: var(--adminify-btn-bg); |
| 11225 |
color: var(--adminify-btn-bg); |
| 11226 |
} |
| 11227 |
.wp-adminify .wp-customizer .wp-full-overlay-sidebar .customize-panel-back:focus, .wp-adminify .wp-customizer .wp-full-overlay-sidebar .customize-panel-back:hover { |
| 11228 |
border-left-color: var(--adminify-btn-bg); |
| 11229 |
} |
| 11230 |
.wp-adminify .wp-customizer .wp-full-overlay-sidebar #customize-controls .customize-info .customize-help-toggle { |
| 11231 |
color: var(--adminify-btn-bg); |
| 11232 |
} |
| 11233 |
.wp-adminify .wp-customizer .wp-full-overlay-sidebar #customize-controls .customize-info .customize-help-toggle:focus, .wp-adminify .wp-customizer .wp-full-overlay-sidebar #customize-controls .customize-info .customize-help-toggle:hover { |
| 11234 |
color: var(--adminify-btn-bg); |
| 11235 |
} |
| 11236 |
.wp-adminify .wp-customizer .wp-full-overlay-sidebar #customize-outer-theme-controls .accordion-section-title:focus, .wp-adminify .wp-customizer .wp-full-overlay-sidebar #customize-outer-theme-controls .accordion-section-title:hover, |
| 11237 |
.wp-adminify .wp-customizer .wp-full-overlay-sidebar #customize-theme-controls .accordion-section-title:focus, |
| 11238 |
.wp-adminify .wp-customizer .wp-full-overlay-sidebar #customize-theme-controls .accordion-section-title:hover { |
| 11239 |
border-left-color: var(--adminify-btn-bg); |
| 11240 |
color: var(--adminify-btn-bg); |
| 11241 |
} |
| 11242 |
.wp-adminify .wp-customizer .wp-full-overlay-sidebar #customize-outer-theme-controls .accordion-section-title:focus:after, .wp-adminify .wp-customizer .wp-full-overlay-sidebar #customize-outer-theme-controls .accordion-section-title:hover:after, |
| 11243 |
.wp-adminify .wp-customizer .wp-full-overlay-sidebar #customize-theme-controls .accordion-section-title:focus:after, |
| 11244 |
.wp-adminify .wp-customizer .wp-full-overlay-sidebar #customize-theme-controls .accordion-section-title:hover:after { |
| 11245 |
color: var(--adminify-btn-bg); |
| 11246 |
} |
| 11247 |
.wp-adminify .widget-access-link { |
| 11248 |
margin: 22px 25px 0 0; |
| 11249 |
} |
| 11250 |
.wp-adminify .widget-access-link a { |
| 11251 |
color: var(--adminify-btn-bg); |
| 11252 |
font-size: 14px; |
| 11253 |
font-weight: 700; |
| 11254 |
} |
| 11255 |
.wp-adminify .widget-access-link a#access-off { |
| 11256 |
color: #c30052; |
| 11257 |
} |
| 11258 |
.wp-adminify #available-widgets .sidebar-name { |
| 11259 |
color: #4E4B66; |
| 11260 |
font-size: 18px; |
| 11261 |
line-height: 20px; |
| 11262 |
} |
| 11263 |
.wp-adminify #available-widgets .widget .widget-description { |
| 11264 |
color: #4E4B66; |
| 11265 |
font-size: 13px; |
| 11266 |
line-height: 16px; |
| 11267 |
padding: 10px 0; |
| 11268 |
} |
| 11269 |
.wp-adminify .widgets-holder-wrap .description { |
| 11270 |
color: #000; |
| 11271 |
font-size: 14px; |
| 11272 |
font-weight: 400; |
| 11273 |
line-height: 20px; |
| 11274 |
margin: 10px 0; |
| 11275 |
} |
| 11276 |
.wp-adminify #available-widgets .widget .widget-top, |
| 11277 |
.wp-adminify #widgets-right .widget .widget-top, |
| 11278 |
.wp-adminify .widget-holder.inactive .widget .widget-top { |
| 11279 |
background-color: var(--adminify-text-color); |
| 11280 |
border: 1px solid #CFCFCF; |
| 11281 |
-webkit-box-shadow: none; |
| 11282 |
box-shadow: none; |
| 11283 |
} |
| 11284 |
.wp-adminify #available-widgets .widget .widget-top:hover, |
| 11285 |
.wp-adminify #widgets-right .widget .widget-top:hover, |
| 11286 |
.wp-adminify .widget-holder.inactive .widget .widget-top:hover { |
| 11287 |
border-color: #CFCFCF; |
| 11288 |
-webkit-box-shadow: none; |
| 11289 |
box-shadow: none; |
| 11290 |
} |
| 11291 |
.wp-adminify #available-widgets .widget .widget-top .widget-title-action .toggle-indicator, |
| 11292 |
.wp-adminify #widgets-right .widget .widget-top .widget-title-action .toggle-indicator, |
| 11293 |
.wp-adminify .widget-holder.inactive .widget .widget-top .widget-title-action .toggle-indicator { |
| 11294 |
color: rgba(78, 75, 102, 0.54); |
| 11295 |
} |
| 11296 |
.wp-adminify #available-widgets .widget .widget-top .widget-title h3, |
| 11297 |
.wp-adminify #widgets-right .widget .widget-top .widget-title h3, |
| 11298 |
.wp-adminify .widget-holder.inactive .widget .widget-top .widget-title h3 { |
| 11299 |
color: #000; |
| 11300 |
font-size: 14px; |
| 11301 |
font-weight: 700; |
| 11302 |
line-height: 20px; |
| 11303 |
padding: 12.5px 15px; |
| 11304 |
} |
| 11305 |
.wp-adminify #available-widgets .widget .widget-top .widget-action, |
| 11306 |
.wp-adminify #widgets-right .widget .widget-top .widget-action, |
| 11307 |
.wp-adminify .widget-holder.inactive .widget .widget-top .widget-action { |
| 11308 |
color: #000; |
| 11309 |
padding: 14px 10px; |
| 11310 |
} |
| 11311 |
.wp-adminify.widgets-php .wrap { |
| 11312 |
margin-top: 45px; |
| 11313 |
} |
| 11314 |
.wp-adminify.widgets-php .page-title-action { |
| 11315 |
float: right; |
| 11316 |
margin-top: 3px; |
| 11317 |
} |
| 11318 |
.wp-adminify.widgets-php #wpbody-content button.handlediv, .wp-adminify.widgets-php #wpbody-content button.widget-action { |
| 11319 |
background-color: transparent; |
| 11320 |
border: 0; |
| 11321 |
line-height: 1; |
| 11322 |
padding: 0; |
| 11323 |
} |
| 11324 |
.wp-adminify.widgets-php #wpbody-content #widgets-left { |
| 11325 |
padding-top: 0; |
| 11326 |
} |
| 11327 |
.wp-adminify.widgets-php #wpbody-content #widgets-left .handlediv { |
| 11328 |
margin-top: 12px; |
| 11329 |
} |
| 11330 |
.wp-adminify.widgets-php #wpbody-content .widget-control-actions button, |
| 11331 |
.wp-adminify.widgets-php #wpbody-content .widget-control-actions button.widget-control-close { |
| 11332 |
font-size: 12px; |
| 11333 |
font-weight: 400; |
| 11334 |
line-height: 16px; |
| 11335 |
} |
| 11336 |
.wp-adminify.widgets-php #wpbody-content .widget-control-actions button.button-link-delete { |
| 11337 |
color: var(--adminify-notif-bg-color); |
| 11338 |
} |
| 11339 |
.wp-adminify.widgets-php #wpbody-content .widget-control-actions button.widget-control-close { |
| 11340 |
background-color: transparent; |
| 11341 |
color: var(--adminify-btn-bg); |
| 11342 |
} |
| 11343 |
.wp-adminify.widgets-php #wpbody-content .widget-control-actions button.widget-control-close:hover { |
| 11344 |
color: var(--adminify-btn-bg); |
| 11345 |
} |
| 11346 |
.wp-adminify.widgets-php #widgets-left .widgets-holder-wrap .handlediv .toggle-indicator, |
| 11347 |
.wp-adminify.widgets-php #widgets-right .widgets-holder-wrap .handlediv .toggle-indicator { |
| 11348 |
display: block; |
| 11349 |
} |
| 11350 |
.wp-adminify.widgets-php #widgets-left .widgets-holder-wrap .handlediv .toggle-indicator:before, |
| 11351 |
.wp-adminify.widgets-php #widgets-right .widgets-holder-wrap .handlediv .toggle-indicator:before { |
| 11352 |
content: "\f347"; |
| 11353 |
-webkit-box-shadow: none; |
| 11354 |
box-shadow: none; |
| 11355 |
color: #4E4B66; |
| 11356 |
font-size: 16px; |
| 11357 |
} |
| 11358 |
.wp-adminify.widgets-php #widgets-left .widgets-holder-wrap .handlediv .toggle-indicator:before:focus, |
| 11359 |
.wp-adminify.widgets-php #widgets-right .widgets-holder-wrap .handlediv .toggle-indicator:before:focus { |
| 11360 |
-webkit-box-shadow: none; |
| 11361 |
box-shadow: none; |
| 11362 |
outline: 0; |
| 11363 |
} |
| 11364 |
.wp-adminify.widgets-php #widgets-left .widgets-holder-wrap.closed .handlediv .toggle-indicator:before, |
| 11365 |
.wp-adminify.widgets-php #widgets-right .widgets-holder-wrap.closed .handlediv .toggle-indicator:before { |
| 11366 |
content: "\f343"; |
| 11367 |
} |
| 11368 |
.wp-adminify.widgets-php .widget.open { |
| 11369 |
z-index: 1; |
| 11370 |
} |
| 11371 |
.wp-adminify.widgets-php .widget-top .widget-action .toggle-indicator:before { |
| 11372 |
content: "\f347"; |
| 11373 |
-webkit-box-shadow: none; |
| 11374 |
box-shadow: none; |
| 11375 |
color: #4E4B66; |
| 11376 |
font-size: 16px; |
| 11377 |
} |
| 11378 |
.wp-adminify.widgets-php .widget-top .widget-action .toggle-indicator:before:focus { |
| 11379 |
-webkit-box-shadow: none; |
| 11380 |
box-shadow: none; |
| 11381 |
outline: 0; |
| 11382 |
} |
| 11383 |
.wp-adminify.widgets-php .chooser .widget-top .widget-action .toggle-indicator:before, |
| 11384 |
.wp-adminify.widgets-php .open .widget-top .widget-action .toggle-indicator:before { |
| 11385 |
content: "\f343"; |
| 11386 |
} |
| 11387 |
.wp-adminify #widgets-left .widget { |
| 11388 |
margin-bottom: 1rem; |
| 11389 |
} |
| 11390 |
.wp-adminify #widgets-left .sidebar-name h2, |
| 11391 |
.wp-adminify #widgets-left .widget-holder .widget-description { |
| 11392 |
color: #000; |
| 11393 |
} |
| 11394 |
.wp-adminify #widgets-left .widgets-chooser .widgets-chooser-sidebars { |
| 11395 |
border: 0; |
| 11396 |
} |
| 11397 |
.wp-adminify #widgets-left .widgets-chooser .widgets-chooser-sidebars li:before { |
| 11398 |
top: 5px; |
| 11399 |
} |
| 11400 |
.wp-adminify #widgets-left .widgets-chooser .widgets-chooser-sidebars li:hover:before { |
| 11401 |
color: var(--adminify-btn-bg); |
| 11402 |
} |
| 11403 |
.wp-adminify #widgets-left .widgets-chooser .widgets-chooser-sidebars li .widgets-chooser-button { |
| 11404 |
padding-left: 2rem; |
| 11405 |
} |
| 11406 |
.wp-adminify #widgets-left .widgets-chooser .widgets-chooser-sidebars li .widgets-chooser-button:hover { |
| 11407 |
text-decoration: none; |
| 11408 |
} |
| 11409 |
.wp-adminify #widgets-left .widgets-chooser .widgets-chooser-actions button { |
| 11410 |
-webkit-border-radius: 6px; |
| 11411 |
border-radius: 6px; |
| 11412 |
-webkit-box-shadow: none; |
| 11413 |
box-shadow: none; |
| 11414 |
color: var(--adminify-text-color); |
| 11415 |
font-size: 14px; |
| 11416 |
font-weight: 600; |
| 11417 |
letter-spacing: 0.25px; |
| 11418 |
line-height: 32px; |
| 11419 |
} |
| 11420 |
.wp-adminify #widgets-left .widgets-chooser .widgets-chooser-actions button.widgets-chooser-cancel { |
| 11421 |
background-color: #c30052; |
| 11422 |
border: 1px solid #c30052; |
| 11423 |
} |
| 11424 |
.wp-adminify #widgets-left .widgets-chooser .widgets-chooser-actions button.widgets-chooser-cancel:hover { |
| 11425 |
background-color: var(--adminify-text-color); |
| 11426 |
color: #c30052; |
| 11427 |
} |
| 11428 |
.wp-adminify #widgets-left .widgets-chooser .widgets-chooser-actions button.widgets-chooser-add { |
| 11429 |
background-color: #00BA88; |
| 11430 |
border: 1px solid #00BA88; |
| 11431 |
} |
| 11432 |
.wp-adminify #widgets-left .widgets-chooser .widgets-chooser-actions button.widgets-chooser-add:hover { |
| 11433 |
background-color: var(--adminify-text-color); |
| 11434 |
color: #00BA88; |
| 11435 |
} |
| 11436 |
.wp-adminify #widgets-left .widgets-chooser .widgets-chooser-actions button:hover { |
| 11437 |
color: var(--adminify-text-color); |
| 11438 |
} |
| 11439 |
.wp-adminify #widgets-left .widget-holder.inactive .widget .widget-top { |
| 11440 |
background-color: #F1F1F3; |
| 11441 |
} |
| 11442 |
.wp-adminify #widgets-left .widget-holder.inactive .widget .widget-top:hover { |
| 11443 |
border-color: #CFCFCF; |
| 11444 |
-webkit-box-shadow: none; |
| 11445 |
box-shadow: none; |
| 11446 |
} |
| 11447 |
.wp-adminify #widgets-left .widget-holder.inactive .widget .widget-top .widget-title-action button { |
| 11448 |
padding: 14px 10px; |
| 11449 |
} |
| 11450 |
.wp-adminify #widgets-right { |
| 11451 |
margin-top: 15px; |
| 11452 |
} |
| 11453 |
.wp-adminify #widgets-right .widgets-holder-wrap { |
| 11454 |
background-color: var(--adminify-text-color); |
| 11455 |
border: 0; |
| 11456 |
-webkit-border-radius: 8px; |
| 11457 |
border-radius: 8px; |
| 11458 |
-webkit-box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 11459 |
box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 11460 |
padding: 1.24rem; |
| 11461 |
} |
| 11462 |
.wp-adminify #widgets-right .widgets-holder-wrap .widgets-sortables { |
| 11463 |
min-height: inherit; |
| 11464 |
padding: 0; |
| 11465 |
} |
| 11466 |
.wp-adminify #widgets-right .widgets-holder-wrap .widgets-sortables .sidebar-name h2 { |
| 11467 |
color: #000; |
| 11468 |
font-size: 18px; |
| 11469 |
line-height: 20px; |
| 11470 |
padding: 0; |
| 11471 |
} |
| 11472 |
.wp-adminify #widgets-right .widgets-holder-wrap .widgets-sortables .sidebar-name .handlediv { |
| 11473 |
height: auto; |
| 11474 |
margin: 0; |
| 11475 |
padding: 0; |
| 11476 |
} |
| 11477 |
.wp-adminify #widgets-right .widgets-holder-wrap .widgets-sortables .sidebar-name + .widget { |
| 11478 |
margin-top: 15px; |
| 11479 |
} |
| 11480 |
.wp-adminify .widget-inside label { |
| 11481 |
color: #14142B; |
| 11482 |
} |
| 11483 |
.wp-adminify .widget-inside input { |
| 11484 |
background-color: #F1F1F3; |
| 11485 |
border: 0; |
| 11486 |
-webkit-border-radius: 6px; |
| 11487 |
border-radius: 6px; |
| 11488 |
-webkit-box-shadow: none; |
| 11489 |
box-shadow: none; |
| 11490 |
color: rgba(78, 75, 102, 0.54); |
| 11491 |
font-size: 14px; |
| 11492 |
font-weight: 400; |
| 11493 |
height: auto; |
| 11494 |
line-height: 16px; |
| 11495 |
min-height: 36px; |
| 11496 |
padding: 4px 15px; |
| 11497 |
} |
| 11498 |
.wp-adminify .widget-inside input[type=checkbox], .wp-adminify .widget-inside input[type=radio] { |
| 11499 |
-webkit-border-radius: 3px; |
| 11500 |
border-radius: 3px; |
| 11501 |
height: 14px; |
| 11502 |
width: 14px; |
| 11503 |
min-height: inherit; |
| 11504 |
min-width: inherit; |
| 11505 |
} |
| 11506 |
.wp-adminify .widget-inside input[type=checkbox]:before, .wp-adminify .widget-inside input[type=radio]:before { |
| 11507 |
height: inherit; |
| 11508 |
width: inherit; |
| 11509 |
margin: 0; |
| 11510 |
} |
| 11511 |
.wp-adminify .widget-inside input[type=number].tiny-text { |
| 11512 |
width: auto; |
| 11513 |
} |
| 11514 |
.wp-adminify.widgets_access #wpbody-content .widgets-holder-wrap .widget-control-edit { |
| 11515 |
background-color: #F1F1F3; |
| 11516 |
font-weight: 700; |
| 11517 |
line-height: 45px; |
| 11518 |
text-transform: uppercase; |
| 11519 |
} |
| 11520 |
.wp-adminify.widgets_access #wpbody-content .widgets-holder-wrap .widget-control-edit:hover { |
| 11521 |
background-color: var(--adminify-btn-bg); |
| 11522 |
color: #F1F1F3; |
| 11523 |
} |
| 11524 |
.wp-adminify.widgets_access #wpbody-content .editwidget .widget-inside { |
| 11525 |
padding: 5px 20px; |
| 11526 |
} |
| 11527 |
.wp-adminify.widgets_access #wpbody-content .widget-position tr td, |
| 11528 |
.wp-adminify.widgets_access #wpbody-content .widget-position tr th { |
| 11529 |
border-bottom: 1px solid var(--adminify-preset-background); |
| 11530 |
padding: 15px; |
| 11531 |
} |
| 11532 |
.wp-adminify.widgets_access #wpbody-content .widget-control-actions .widget-control-close-wrapper { |
| 11533 |
font-size: 0; |
| 11534 |
} |
| 11535 |
.wp-adminify.widgets_access #wpbody-content .widget-control-actions .button-link { |
| 11536 |
color: var(--adminify-notif-bg-color); |
| 11537 |
font-size: 14px; |
| 11538 |
font-weight: 600; |
| 11539 |
text-decoration: none; |
| 11540 |
} |
| 11541 |
.wp-adminify.widgets_access #wpbody-content .widget-control-actions .button-link.button-link-delete { |
| 11542 |
background-color: var(--adminify-notif-bg-color); |
| 11543 |
border-color: var(--adminify-notif-bg-color); |
| 11544 |
color: var(--adminify-text-color); |
| 11545 |
} |
| 11546 |
.wp-adminify.widgets_access #wpbody-content .widget-control-actions .button-link.button-link-delete:hover { |
| 11547 |
background-color: var(--adminify-text-color); |
| 11548 |
border-color: var(--adminify-notif-bg-color); |
| 11549 |
color: var(--adminify-notif-bg-color); |
| 11550 |
} |
| 11551 |
.wp-adminify.widgets_access #wpbody-content .widget-control-actions .button-link.widget-control-close { |
| 11552 |
border: 1px solid #c30052; |
| 11553 |
color: var(--adminify-text-color); |
| 11554 |
display: inline-block; |
| 11555 |
line-height: 34px; |
| 11556 |
padding: 0 1rem; |
| 11557 |
} |
| 11558 |
.wp-adminify.widgets_access #wpbody-content .widget-control-actions .button-link.widget-control-close:hover { |
| 11559 |
border-color: #c30052; |
| 11560 |
color: #c30052; |
| 11561 |
} |
| 11562 |
.wp-adminify #custom-background #upload { |
| 11563 |
margin: 10px 0 5px; |
| 11564 |
} |
| 11565 |
.wp-adminify #wpbody-content .blocks-widgets-container { |
| 11566 |
margin-top: 2.5rem; |
| 11567 |
padding-bottom: 2rem; |
| 11568 |
position: static; |
| 11569 |
} |
| 11570 |
.wp-adminify #wpbody-content .blocks-widgets-container .interface-interface-skeleton { |
| 11571 |
position: static; |
| 11572 |
width: 100%; |
| 11573 |
} |
| 11574 |
.wp-adminify #wpbody-content .blocks-widgets-container .block-editor-block-navigation-leaf .block-editor-block-navigation-block-contents { |
| 11575 |
line-height: 28px; |
| 11576 |
} |
| 11577 |
.wp-adminify #wpbody-content .blocks-widgets-container .components-popover .components-popover__content .block-editor-block-contextual-toolbar { |
| 11578 |
border: 0; |
| 11579 |
} |
| 11580 |
.wp-adminify #wpbody-content .blocks-widgets-container .components-popover .components-popover__content .block-editor-block-toolbar .components-button { |
| 11581 |
border: 1px solid #D8D8D8; |
| 11582 |
} |
| 11583 |
.wp-adminify #wpbody-content .blocks-widgets-container .components-popover .components-popover__content .block-editor-block-toolbar .components-button button { |
| 11584 |
border: 1px solid #D8D8D8; |
| 11585 |
} |
| 11586 |
.wp-adminify #wpbody-content .blocks-widgets-container .components-popover .components-popover__content .block-editor-block-toolbar .components-button.is-up-button svg { |
| 11587 |
top: 0; |
| 11588 |
} |
| 11589 |
.wp-adminify #wpbody-content .blocks-widgets-container .components-popover .components-popover__content .block-editor-block-toolbar .components-button.is-down-button svg { |
| 11590 |
bottom: 0; |
| 11591 |
} |
| 11592 |
.wp-adminify #wpbody-content .blocks-widgets-container .wp-block-widget-area { |
| 11593 |
border: 0; |
| 11594 |
} |
| 11595 |
.wp-adminify #wpbody-content .blocks-widgets-container .wp-block-widget-area .components-panel__body { |
| 11596 |
border: 0; |
| 11597 |
margin-top: 0; |
| 11598 |
} |
| 11599 |
.wp-adminify #wpbody-content .blocks-widgets-container .wp-block-widget-area .components-panel__body .components-panel__body-title { |
| 11600 |
background-color: transparent; |
| 11601 |
height: auto; |
| 11602 |
} |
| 11603 |
.wp-adminify #wpbody-content .blocks-widgets-container .wp-block-widget-area .components-panel__body .components-panel__body-title button.components-panel__body-toggle { |
| 11604 |
color: #14142B; |
| 11605 |
} |
| 11606 |
.wp-adminify #wpbody-content .blocks-widgets-container .wp-block-widget-area .wp-block-widget-area__panel-body-content .wp-block-widget-area__highlight-drop-zone { |
| 11607 |
outline: 0; |
| 11608 |
} |
| 11609 |
.wp-adminify #wpbody-content .blocks-widgets-container .wp-block-widget-area .wp-block-widget-area__panel-body-content .block-editor-block-list__layout { |
| 11610 |
margin: 0; |
| 11611 |
padding: 1.25rem; |
| 11612 |
} |
| 11613 |
.wp-adminify #wpbody-content .blocks-widgets-container .wp-block-widget-area .wp-block-widget-area__panel-body-content .block-editor-block-list__layout figure.wp-block { |
| 11614 |
border: 1px solid #D8D8D8; |
| 11615 |
margin: 0; |
| 11616 |
padding: 1.25rem; |
| 11617 |
} |
| 11618 |
.wp-adminify #wpbody-content .blocks-widgets-container .wp-block-widget-area .wp-block-widget-area__panel-body-content .block-editor-block-list__layout figure.wp-block:focus, .wp-adminify #wpbody-content .blocks-widgets-container .wp-block-widget-area .wp-block-widget-area__panel-body-content .block-editor-block-list__layout figure.wp-block:visited, .wp-adminify #wpbody-content .blocks-widgets-container .wp-block-widget-area .wp-block-widget-area__panel-body-content .block-editor-block-list__layout figure.wp-block:focus-within, .wp-adminify #wpbody-content .blocks-widgets-container .wp-block-widget-area .wp-block-widget-area__panel-body-content .block-editor-block-list__layout figure.wp-block:focus-visible { |
| 11619 |
border: 1px solid #D8D8D8; |
| 11620 |
outline: 0; |
| 11621 |
} |
| 11622 |
.wp-adminify #wpbody-content .blocks-widgets-container .wp-block-widget-area .wp-block-widget-area__panel-body-content .block-editor-block-list__layout .components-placeholder { |
| 11623 |
background-color: transparent; |
| 11624 |
-webkit-box-shadow: none; |
| 11625 |
box-shadow: none; |
| 11626 |
outline: 0; |
| 11627 |
padding: 0; |
| 11628 |
} |
| 11629 |
.wp-adminify #wpbody-content .blocks-widgets-container .wp-block-widget-area .wp-block-widget-area__panel-body-content .components-placeholder__fieldset .components-button { |
| 11630 |
-webkit-border-radius: 6px; |
| 11631 |
border-radius: 6px; |
| 11632 |
color: var(--adminify-text-color); |
| 11633 |
padding: 0 12px; |
| 11634 |
} |
| 11635 |
.wp-adminify #wpbody-content .blocks-widgets-container .wp-block-widget-area .wp-block-widget-area__panel-body-content .block-editor-inserter { |
| 11636 |
margin-top: 1.5rem; |
| 11637 |
text-align: center; |
| 11638 |
} |
| 11639 |
.wp-adminify #wpbody-content .blocks-widgets-container .wp-block-widget-area .wp-block-widget-area__panel-body-content .block-editor-inserter button { |
| 11640 |
display: inline-block; |
| 11641 |
height: 36px; |
| 11642 |
width: auto; |
| 11643 |
} |
| 11644 |
.wp-adminify #wpbody-content .blocks-widgets-container .wp-block-widget-area .wp-block-widget-area__panel-body-content .block-editor-inserter button .components-visually-hidden { |
| 11645 |
float: left; |
| 11646 |
} |
| 11647 |
.wp-adminify #wpbody-content .blocks-widgets-container .wp-block-widget-area .wp-block-widget-area__panel-body-content .block-editor-inserter button svg { |
| 11648 |
float: left; |
| 11649 |
height: 36px; |
| 11650 |
} |
| 11651 |
.wp-adminify #wpbody-content .blocks-widgets-container .wp-block-widget-area .wp-block-widget-area__panel-body-content .block-editor-inserter button svg path { |
| 11652 |
fill: var(--adminify-text-color); |
| 11653 |
} |
| 11654 |
.wp-adminify #wpbody-content .blocks-widgets-container .wp-block-widget-area .wp-block-widget-area__panel-body-content .block-editor-inserter button:hover svg path { |
| 11655 |
fill: var(--adminify-btn-bg); |
| 11656 |
} |
| 11657 |
.wp-adminify #wpbody-content .blocks-widgets-container button.is-pressed:hover, .wp-adminify #wpbody-content .blocks-widgets-container button.edit-widgets-header-toolbar__inserter-toggle, .wp-adminify #wpbody-content .blocks-widgets-container button.edit-widgets-header-toolbar__inserter-toggle:hover { |
| 11658 |
background-color: var(--adminify-btn-bg); |
| 11659 |
} |
| 11660 |
.wp-adminify #wpbody-content .blocks-widgets-container .edit-widgets-block-editor { |
| 11661 |
padding: 0 15px; |
| 11662 |
} |
| 11663 |
.wp-adminify #wpbody-content .blocks-widgets-container .components-button-group button.components-button { |
| 11664 |
-webkit-border-radius: 3px; |
| 11665 |
border-radius: 3px; |
| 11666 |
-webkit-box-shadow: none; |
| 11667 |
box-shadow: none; |
| 11668 |
color: var(--adminify-text-color); |
| 11669 |
line-height: 20px; |
| 11670 |
padding: 0 3px; |
| 11671 |
} |
| 11672 |
.wp-adminify #wpbody-content .blocks-widgets-container .components-button-group button.components-button:hover { |
| 11673 |
background-color: var(--adminify-btn-bg); |
| 11674 |
} |
| 11675 |
.wp-adminify #wpbody-content .blocks-widgets-container .block-editor-block-styles__item:focus { |
| 11676 |
-webkit-box-shadow: none; |
| 11677 |
box-shadow: none; |
| 11678 |
outline: 0; |
| 11679 |
} |
| 11680 |
.wp-adminify #wpbody-content .blocks-widgets-container .edit-widgets-notices__snackbar { |
| 11681 |
left: auto; |
| 11682 |
} |
| 11683 |
.wp-adminify #wpbody-content .blocks-widgets-container .interface-interface-skeleton__footer { |
| 11684 |
padding: 15px 0; |
| 11685 |
} |
| 11686 |
.wp-adminify body.wp-adminify { |
| 11687 |
--adminify-text-color: #fff; |
| 11688 |
} |
| 11689 |
.wp-adminify body.wp-adminify { |
| 11690 |
--adminify-text-color: #fff; |
| 11691 |
} |
| 11692 |
@font-face { |
| 11693 |
.wp-adminify { |
| 11694 |
font-family: no-parens; |
| 11695 |
src: url("data:application/x-font-woff;base64,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"); |
| 11696 |
unicode-range: U+0028, U+0029; |
| 11697 |
} |
| 11698 |
} |
| 11699 |
.wp-adminify.nav-menus-php .nav-tab-wrapper { |
| 11700 |
border-bottom: 1px solid #D8D8D8; |
| 11701 |
} |
| 11702 |
.wp-adminify.nav-menus-php .nav-tab-wrapper .nav-tab { |
| 11703 |
background-color: transparent; |
| 11704 |
border: 0; |
| 11705 |
border-bottom: 2px solid transparent; |
| 11706 |
-webkit-border-top-left-radius: 2px; |
| 11707 |
border-top-left-radius: 2px; |
| 11708 |
-webkit-border-top-right-radius: 2px; |
| 11709 |
border-top-right-radius: 2px; |
| 11710 |
color: rgba(78, 75, 102, 0.54); |
| 11711 |
font-size: 14px; |
| 11712 |
font-weight: 600; |
| 11713 |
line-height: 20px; |
| 11714 |
margin-left: 0; |
| 11715 |
padding: 10px 15px; |
| 11716 |
} |
| 11717 |
.wp-adminify.nav-menus-php .nav-tab-wrapper .nav-tab.nav-tab-active { |
| 11718 |
border-bottom-color: var(--adminify-btn-bg); |
| 11719 |
color: var(--adminify-btn-bg); |
| 11720 |
} |
| 11721 |
.wp-adminify.nav-menus-php p { |
| 11722 |
color: #4E4B66; |
| 11723 |
} |
| 11724 |
.wp-adminify.nav-menus-php .manage-menus { |
| 11725 |
background-color: transparent; |
| 11726 |
border: 0; |
| 11727 |
-webkit-box-shadow: none; |
| 11728 |
box-shadow: none; |
| 11729 |
color: #000; |
| 11730 |
font-size: 14px; |
| 11731 |
font-weight: 400; |
| 11732 |
line-height: 20px; |
| 11733 |
} |
| 11734 |
.wp-adminify.nav-menus-php .manage-menus a { |
| 11735 |
color: var(--adminify-btn-bg); |
| 11736 |
} |
| 11737 |
.wp-adminify.nav-menus-php #nav-menus-frame .accordion-container { |
| 11738 |
background-color: var(--adminify-text-color); |
| 11739 |
border: 0; |
| 11740 |
-webkit-border-radius: 8px; |
| 11741 |
border-radius: 8px; |
| 11742 |
-webkit-box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 11743 |
box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 11744 |
} |
| 11745 |
.wp-adminify.nav-menus-php #nav-menus-frame .accordion-container .outer-border { |
| 11746 |
border: 0; |
| 11747 |
-webkit-border-radius: 8px; |
| 11748 |
border-radius: 8px; |
| 11749 |
-webkit-box-shadow: inset 0px -1px 0px rgba(0, 0, 0, 0.1); |
| 11750 |
box-shadow: inset 0px -1px 0px rgba(0, 0, 0, 0.1); |
| 11751 |
} |
| 11752 |
.wp-adminify.nav-menus-php #nav-menus-frame .accordion-container .outer-border li { |
| 11753 |
border: 0; |
| 11754 |
border-top: 1px solid #D8D8D8; |
| 11755 |
} |
| 11756 |
.wp-adminify.nav-menus-php #nav-menus-frame .accordion-container .outer-border li.open .accordion-section-title:after { |
| 11757 |
content: "\f343"; |
| 11758 |
} |
| 11759 |
.wp-adminify.nav-menus-php #nav-menus-frame .accordion-container .outer-border li:first-child { |
| 11760 |
border-top: 0; |
| 11761 |
} |
| 11762 |
.wp-adminify.nav-menus-php #nav-menus-frame .accordion-container .outer-border .accordion-section-title { |
| 11763 |
background-color: transparent; |
| 11764 |
border: 0; |
| 11765 |
-webkit-box-shadow: none; |
| 11766 |
box-shadow: none; |
| 11767 |
color: #000; |
| 11768 |
font-size: 14px; |
| 11769 |
font-weight: 700; |
| 11770 |
line-height: 20px; |
| 11771 |
opacity: 1; |
| 11772 |
padding: 24px 10px 22px 14px; |
| 11773 |
} |
| 11774 |
.wp-adminify.nav-menus-php #nav-menus-frame .accordion-container .outer-border .accordion-section-title:after { |
| 11775 |
content: "\f347"; |
| 11776 |
color: #000; |
| 11777 |
font-size: 14px; |
| 11778 |
top: -webkit-calc(50% - 6px); |
| 11779 |
top: calc(50% - 6px); |
| 11780 |
} |
| 11781 |
.wp-adminify.nav-menus-php #nav-menus-frame .accordion-container .accordion-section-content { |
| 11782 |
opacity: 1; |
| 11783 |
padding: 0 15px 15px; |
| 11784 |
} |
| 11785 |
.wp-adminify.nav-menus-php #nav-menus-frame .accordion-container .accordion-section-content .inside { |
| 11786 |
margin-top: 0; |
| 11787 |
} |
| 11788 |
.wp-adminify.nav-menus-php #nav-menus-frame .accordion-container .accordion-section-content ul.add-menu-item-tabs { |
| 11789 |
border-bottom: 1px solid #D8D8D8; |
| 11790 |
display: -webkit-box; |
| 11791 |
display: -webkit-flex; |
| 11792 |
display: -ms-flexbox; |
| 11793 |
display: flex; |
| 11794 |
margin: 0 0 15px; |
| 11795 |
} |
| 11796 |
.wp-adminify.nav-menus-php #nav-menus-frame .accordion-container .accordion-section-content ul.add-menu-item-tabs li { |
| 11797 |
border: 0; |
| 11798 |
-webkit-box-shadow: none; |
| 11799 |
box-shadow: none; |
| 11800 |
display: block; |
| 11801 |
float: left; |
| 11802 |
margin: 0 0 -1px; |
| 11803 |
padding: 0; |
| 11804 |
} |
| 11805 |
.wp-adminify.nav-menus-php #nav-menus-frame .accordion-container .accordion-section-content ul.add-menu-item-tabs li a { |
| 11806 |
border-bottom: 2px solid transparent; |
| 11807 |
-webkit-border-top-left-radius: 2px; |
| 11808 |
border-top-left-radius: 2px; |
| 11809 |
-webkit-border-top-right-radius: 2px; |
| 11810 |
border-top-right-radius: 2px; |
| 11811 |
color: #4E4B66; |
| 11812 |
display: inline-block; |
| 11813 |
font-size: 13px; |
| 11814 |
font-weight: 400; |
| 11815 |
line-height: 20px; |
| 11816 |
margin: 0 0 -1px; |
| 11817 |
padding: 5px 10px; |
| 11818 |
} |
| 11819 |
.wp-adminify.nav-menus-php #nav-menus-frame .accordion-container .accordion-section-content ul.add-menu-item-tabs li.tabs a { |
| 11820 |
border-bottom-color: var(--adminify-btn-bg); |
| 11821 |
color: var(--adminify-btn-bg); |
| 11822 |
} |
| 11823 |
.wp-adminify.nav-menus-php #nav-menus-frame .accordion-container .accordion-section-content .tabs-panel { |
| 11824 |
border: 0; |
| 11825 |
clear: both; |
| 11826 |
min-height: inherit; |
| 11827 |
max-height: inherit; |
| 11828 |
padding: 0; |
| 11829 |
} |
| 11830 |
.wp-adminify.nav-menus-php #nav-menus-frame .accordion-container .accordion-section-content .tabs-panel.tabs-panel-active:focus { |
| 11831 |
-webkit-box-shadow: none; |
| 11832 |
box-shadow: none; |
| 11833 |
} |
| 11834 |
.wp-adminify.nav-menus-php #nav-menus-frame .accordion-container .accordion-section-content .tabs-panel ul { |
| 11835 |
margin: 6px 0; |
| 11836 |
} |
| 11837 |
.wp-adminify.nav-menus-php #nav-menus-frame .accordion-container .accordion-section-content .tabs-panel ul li { |
| 11838 |
border: 0; |
| 11839 |
-webkit-box-shadow: none; |
| 11840 |
box-shadow: none; |
| 11841 |
padding: 6px 0; |
| 11842 |
} |
| 11843 |
.wp-adminify.nav-menus-php #nav-menus-frame .accordion-container .accordion-section-content .tabs-panel ul li ul { |
| 11844 |
margin-left: 15px; |
| 11845 |
} |
| 11846 |
.wp-adminify.nav-menus-php #nav-menus-frame .accordion-container .accordion-section-content .tabs-panel input[type=search] { |
| 11847 |
margin: 0; |
| 11848 |
width: 100%; |
| 11849 |
} |
| 11850 |
.wp-adminify.nav-menus-php #nav-menus-frame .accordion-container .accordion-section-content .tabs-panel input[type=text] { |
| 11851 |
background-color: var(--adminify-text-color); |
| 11852 |
border: 1px solid #F1F1F3; |
| 11853 |
-webkit-border-radius: 6px; |
| 11854 |
border-radius: 6px; |
| 11855 |
color: rgba(78, 75, 102, 0.72); |
| 11856 |
min-height: 36px; |
| 11857 |
} |
| 11858 |
.wp-adminify.nav-menus-php #nav-menus-frame .accordion-container .accordion-section-content .tabs-panel .spinner { |
| 11859 |
display: none; |
| 11860 |
} |
| 11861 |
.wp-adminify.nav-menus-php #nav-menus-frame label, |
| 11862 |
.wp-adminify.nav-menus-php #nav-menus-frame p, |
| 11863 |
.wp-adminify.nav-menus-php #nav-menus-frame legend { |
| 11864 |
color: #000; |
| 11865 |
font-size: 13px; |
| 11866 |
font-weight: 400; |
| 11867 |
line-height: 16px; |
| 11868 |
margin: 0; |
| 11869 |
} |
| 11870 |
.wp-adminify.nav-menus-php #nav-menus-frame .customlinkdiv p { |
| 11871 |
margin: 5px 0; |
| 11872 |
} |
| 11873 |
.wp-adminify.nav-menus-php #nav-menus-frame .menu-edit { |
| 11874 |
background-color: var(--adminify-text-color); |
| 11875 |
border: 1px solid #F1F1F3; |
| 11876 |
-webkit-border-radius: 8px; |
| 11877 |
border-radius: 8px; |
| 11878 |
-webkit-box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 11879 |
box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 11880 |
} |
| 11881 |
.wp-adminify.nav-menus-php #nav-menus-frame #nav-menu-header { |
| 11882 |
background-color: var(--adminify-text-color); |
| 11883 |
border-bottom-color: #F1F1F3; |
| 11884 |
-webkit-border-top-left-radius: 8px; |
| 11885 |
border-top-left-radius: 8px; |
| 11886 |
-webkit-border-top-right-radius: 8px; |
| 11887 |
border-top-right-radius: 8px; |
| 11888 |
padding: 1.125rem 1.5rem; |
| 11889 |
} |
| 11890 |
.wp-adminify.nav-menus-php #nav-menus-frame .menu-settings { |
| 11891 |
border-top-color: #F1F1F3; |
| 11892 |
} |
| 11893 |
.wp-adminify.nav-menus-php #nav-menus-frame #nav-menu-footer { |
| 11894 |
background-color: var(--adminify-text-color); |
| 11895 |
border-top: 1px solid #F1F1F3; |
| 11896 |
-webkit-border-bottom-left-radius: 8px; |
| 11897 |
border-bottom-left-radius: 8px; |
| 11898 |
-webkit-border-bottom-right-radius: 8px; |
| 11899 |
border-bottom-right-radius: 8px; |
| 11900 |
-webkit-box-shadow: none; |
| 11901 |
box-shadow: none; |
| 11902 |
padding: 1.125rem 1.5rem; |
| 11903 |
} |
| 11904 |
.wp-adminify.nav-menus-php #nav-menus-frame #nav-menu-footer .major-publishing-actions { |
| 11905 |
line-height: 1; |
| 11906 |
padding: 0; |
| 11907 |
} |
| 11908 |
.wp-adminify.nav-menus-php .menu-edit #post-body { |
| 11909 |
border: 0; |
| 11910 |
padding: 1.125rem 1.5rem; |
| 11911 |
} |
| 11912 |
.wp-adminify.nav-menus-php .menu-edit #post-body #menu-to-edit .menu-item-bar .menu-item-handle { |
| 11913 |
background-color: var(--adminify-text-color); |
| 11914 |
border: 1px solid #F1F1F3; |
| 11915 |
-webkit-border-radius: 6px; |
| 11916 |
border-radius: 6px; |
| 11917 |
-webkit-box-shadow: none; |
| 11918 |
box-shadow: none; |
| 11919 |
color: #000; |
| 11920 |
font-size: 14px; |
| 11921 |
font-weight: 600; |
| 11922 |
line-height: 20px; |
| 11923 |
} |
| 11924 |
.wp-adminify.nav-menus-php .menu-edit #post-body #menu-to-edit .menu-item-settings { |
| 11925 |
border: 1px solid #F1F1F3; |
| 11926 |
-webkit-border-radius: 6px; |
| 11927 |
border-radius: 6px; |
| 11928 |
-webkit-box-shadow: none; |
| 11929 |
box-shadow: none; |
| 11930 |
max-width: 382px; |
| 11931 |
padding: 20px 15px 15px; |
| 11932 |
} |
| 11933 |
.wp-adminify.nav-menus-php .menu-edit #post-body #menu-to-edit .description-thin { |
| 11934 |
margin-right: 10px; |
| 11935 |
width: -webkit-calc(50% - 10px); |
| 11936 |
width: calc(50% - 10px); |
| 11937 |
} |
| 11938 |
.wp-adminify.nav-menus-php .menu-edit #post-body #menu-to-edit label .widefat { |
| 11939 |
margin: 10px 0; |
| 11940 |
} |
| 11941 |
.wp-adminify.nav-menus-php .menu-edit #post-body #menu-to-edit .field-link-target { |
| 11942 |
margin-bottom: 5px; |
| 11943 |
} |
| 11944 |
.wp-adminify.nav-menus-php .menu-edit #post-body #menu-to-edit .link-to-original { |
| 11945 |
border: 0; |
| 11946 |
margin-bottom: 10px; |
| 11947 |
padding: 0; |
| 11948 |
} |
| 11949 |
.wp-adminify.nav-menus-php .menu-edit #post-body #menu-to-edit .menu-item-actions { |
| 11950 |
font-size: 13px; |
| 11951 |
} |
| 11952 |
.wp-adminify.nav-menus-php .menu-edit #post-body #menu-to-edit .menu-item-actions a { |
| 11953 |
color: var(--adminify-btn-bg); |
| 11954 |
} |
| 11955 |
.wp-adminify.nav-menus-php .menu-edit #post-body #menu-to-edit .menu-item-actions a.item-delete { |
| 11956 |
color: #c30052; |
| 11957 |
} |
| 11958 |
.wp-adminify.nav-menus-php .menu-edit #post-body #menu-to-edit .menu-item-actions a.item-cancel { |
| 11959 |
color: var(--adminify-notif-bg-color); |
| 11960 |
} |
| 11961 |
.wp-adminify.nav-menus-php .menu-edit #post-body #menu-to-edit .menu-item-actions a.item-duplicate { |
| 11962 |
color: #0cce6b; |
| 11963 |
} |
| 11964 |
.wp-adminify.nav-menus-php .menu-edit #post-body #menu-to-edit .menu-item-actions span { |
| 11965 |
color: #F1F1F3; |
| 11966 |
} |
| 11967 |
.wp-adminify.nav-menus-php .menu-edit #post-body .menu-settings legend { |
| 11968 |
margin: 0 0 0 -25%; |
| 11969 |
} |
| 11970 |
.wp-adminify.nav-menus-php .appearance_page_custom-background #wpbody-content .form-table .wp-upload-form p { |
| 11971 |
margin: 0 0 10px; |
| 11972 |
} |
| 11973 |
.wp-adminify.nav-menus-php .appearance_page_custom-background #wpbody-content .form-table .wp-upload-form label { |
| 11974 |
display: inline-block; |
| 11975 |
margin: 10px 0; |
| 11976 |
} |
| 11977 |
.wp-adminify.nav-menus-php #menu-locations-wrap table.widefat td, |
| 11978 |
.wp-adminify.nav-menus-php #menu-locations-wrap table.widefat th { |
| 11979 |
border-bottom: 1px solid #F1F1F3; |
| 11980 |
color: #14142B; |
| 11981 |
} |
| 11982 |
.wp-adminify.nav-menus-php #menu-locations-wrap table.widefat td a, |
| 11983 |
.wp-adminify.nav-menus-php #menu-locations-wrap table.widefat th a { |
| 11984 |
color: var(--adminify-btn-bg); |
| 11985 |
} |
| 11986 |
.wp-adminify.plugins-php .wp-list-table.plugins { |
| 11987 |
border: 0; |
| 11988 |
} |
| 11989 |
.wp-adminify.plugins-php .wp-list-table.plugins thead td { |
| 11990 |
-webkit-border-top-left-radius: 8px; |
| 11991 |
border-top-left-radius: 8px; |
| 11992 |
} |
| 11993 |
.wp-adminify.plugins-php .wp-list-table.plugins thead th:last-child { |
| 11994 |
-webkit-border-top-right-radius: 8px; |
| 11995 |
border-top-right-radius: 8px; |
| 11996 |
} |
| 11997 |
.wp-adminify.plugins-php .wp-list-table.plugins tfoot td { |
| 11998 |
-webkit-border-bottom-left-radius: 8px; |
| 11999 |
border-bottom-left-radius: 8px; |
| 12000 |
} |
| 12001 |
.wp-adminify.plugins-php .wp-list-table.plugins tfoot th:last-child { |
| 12002 |
-webkit-border-bottom-right-radius: 8px; |
| 12003 |
border-bottom-right-radius: 8px; |
| 12004 |
} |
| 12005 |
.wp-adminify.plugins-php .wp-list-table.plugins tbody#the-list tr.active th { |
| 12006 |
border-left: 0; |
| 12007 |
} |
| 12008 |
.wp-adminify.plugins-php .wp-list-table.plugins tbody#the-list tr.active strong:before { |
| 12009 |
background-color: #00BA88; |
| 12010 |
} |
| 12011 |
.wp-adminify.plugins-php .wp-list-table.plugins tbody#the-list tr.inactive strong:before { |
| 12012 |
background-color: #F4B740; |
| 12013 |
} |
| 12014 |
.wp-adminify.plugins-php .wp-list-table.plugins tbody#the-list tr th { |
| 12015 |
padding: 15px; |
| 12016 |
} |
| 12017 |
.wp-adminify.plugins-php .wp-list-table.plugins tbody#the-list tr th, |
| 12018 |
.wp-adminify.plugins-php .wp-list-table.plugins tbody#the-list tr td { |
| 12019 |
background-color: var(--adminify-text-color); |
| 12020 |
-webkit-box-shadow: none; |
| 12021 |
box-shadow: none; |
| 12022 |
color: #4E4B66; |
| 12023 |
vertical-align: text-top; |
| 12024 |
} |
| 12025 |
.wp-adminify.plugins-php .wp-list-table.plugins tbody#the-list tr th input[type=checkbox], |
| 12026 |
.wp-adminify.plugins-php .wp-list-table.plugins tbody#the-list tr td input[type=checkbox] { |
| 12027 |
margin-top: 0; |
| 12028 |
position: inherit; |
| 12029 |
} |
| 12030 |
.wp-adminify.plugins-php .wp-list-table.plugins tbody#the-list tr th a, |
| 12031 |
.wp-adminify.plugins-php .wp-list-table.plugins tbody#the-list tr th span, |
| 12032 |
.wp-adminify.plugins-php .wp-list-table.plugins tbody#the-list tr td a, |
| 12033 |
.wp-adminify.plugins-php .wp-list-table.plugins tbody#the-list tr td span { |
| 12034 |
font-size: 13px; |
| 12035 |
font-weight: 400; |
| 12036 |
line-height: 18px; |
| 12037 |
text-decoration: none; |
| 12038 |
} |
| 12039 |
.wp-adminify.plugins-php .wp-list-table.plugins tbody#the-list tr th p, |
| 12040 |
.wp-adminify.plugins-php .wp-list-table.plugins tbody#the-list tr td p { |
| 12041 |
color: #4E4B66; |
| 12042 |
font-size: 13px; |
| 12043 |
line-height: 20px; |
| 12044 |
} |
| 12045 |
.wp-adminify.plugins-php .wp-list-table.plugins tbody#the-list tr th strong, |
| 12046 |
.wp-adminify.plugins-php .wp-list-table.plugins tbody#the-list tr td strong { |
| 12047 |
padding-left: 15px; |
| 12048 |
position: relative; |
| 12049 |
} |
| 12050 |
.wp-adminify.plugins-php .wp-list-table.plugins tbody#the-list tr th strong:before, |
| 12051 |
.wp-adminify.plugins-php .wp-list-table.plugins tbody#the-list tr td strong:before { |
| 12052 |
content: ""; |
| 12053 |
-webkit-border-radius: 50%; |
| 12054 |
border-radius: 50%; |
| 12055 |
height: 8px; |
| 12056 |
width: 8px; |
| 12057 |
left: 0; |
| 12058 |
top: 5px; |
| 12059 |
position: absolute; |
| 12060 |
} |
| 12061 |
.wp-adminify.plugins-php .wp-list-table.plugins tbody#the-list tr th.plugin-update, |
| 12062 |
.wp-adminify.plugins-php .wp-list-table.plugins tbody#the-list tr td.plugin-update { |
| 12063 |
border-left: 0; |
| 12064 |
padding: 17px 15px; |
| 12065 |
} |
| 12066 |
.wp-adminify.plugins-php .wp-list-table.plugins tbody#the-list tr th .notice, |
| 12067 |
.wp-adminify.plugins-php .wp-list-table.plugins tbody#the-list tr td .notice { |
| 12068 |
margin: 0; |
| 12069 |
} |
| 12070 |
.wp-adminify.plugins-php .wp-list-table.plugins tbody#the-list tr th .notice p, |
| 12071 |
.wp-adminify.plugins-php .wp-list-table.plugins tbody#the-list tr td .notice p { |
| 12072 |
color: #000; |
| 12073 |
font-weight: 600; |
| 12074 |
margin: 0; |
| 12075 |
} |
| 12076 |
.wp-adminify.plugins-php .wp-list-table.plugins tbody#the-list tr th .notice a, |
| 12077 |
.wp-adminify.plugins-php .wp-list-table.plugins tbody#the-list tr td .notice a { |
| 12078 |
font-weight: 600; |
| 12079 |
} |
| 12080 |
.wp-adminify.plugins-php .wp-list-table.plugins tbody#the-list .row-actions { |
| 12081 |
margin: 0; |
| 12082 |
} |
| 12083 |
.wp-adminify.plugins-php .wp-list-table.plugins tbody#the-list .row-actions span { |
| 12084 |
color: #F1F1F3; |
| 12085 |
font-size: 13px; |
| 12086 |
margin-right: 0; |
| 12087 |
margin-left: 4px; |
| 12088 |
} |
| 12089 |
.wp-adminify.plugins-php .wp-list-table.plugins tbody#the-list .row-actions span a { |
| 12090 |
font-size: 13px; |
| 12091 |
} |
| 12092 |
.wp-adminify.plugins-php .wp-list-table.plugins tbody#the-list .row-actions span:first-child { |
| 12093 |
margin-left: 0; |
| 12094 |
} |
| 12095 |
.wp-adminify.plugins-php .wp-list-table.plugins tbody#the-list .row-actions .network_only, |
| 12096 |
.wp-adminify.plugins-php .wp-list-table.plugins tbody#the-list .row-actions .network_active { |
| 12097 |
color: #14142B; |
| 12098 |
margin-top: 2px; |
| 12099 |
} |
| 12100 |
.wp-adminify #wpbody-content .plugin-install-tab-featured .wp-filter, |
| 12101 |
.wp-adminify #wpbody-content .plugin-install-tab-popular .wp-filter, |
| 12102 |
.wp-adminify #wpbody-content .plugin-install-tab-recommended .wp-filter, |
| 12103 |
.wp-adminify #wpbody-content .plugin-install-tab-favorites .wp-filter, |
| 12104 |
.wp-adminify #wpbody-content .plugin-install-tab-search .wp-filter { |
| 12105 |
border: 0; |
| 12106 |
-webkit-border-radius: 8px; |
| 12107 |
border-radius: 8px; |
| 12108 |
-webkit-box-shadow: none; |
| 12109 |
box-shadow: none; |
| 12110 |
padding: 0 16px; |
| 12111 |
} |
| 12112 |
.wp-adminify #wpbody-content .plugin-install-tab-featured .wp-filter .count, |
| 12113 |
.wp-adminify #wpbody-content .plugin-install-tab-popular .wp-filter .count, |
| 12114 |
.wp-adminify #wpbody-content .plugin-install-tab-recommended .wp-filter .count, |
| 12115 |
.wp-adminify #wpbody-content .plugin-install-tab-favorites .wp-filter .count, |
| 12116 |
.wp-adminify #wpbody-content .plugin-install-tab-search .wp-filter .count { |
| 12117 |
background: #4E4B66; |
| 12118 |
-webkit-border-radius: 6px; |
| 12119 |
border-radius: 6px; |
| 12120 |
color: var(--adminify-text-color); |
| 12121 |
font-size: 14px; |
| 12122 |
font-weight: 400; |
| 12123 |
line-height: 20px; |
| 12124 |
padding: 8px 12px; |
| 12125 |
top: 1px; |
| 12126 |
} |
| 12127 |
.wp-adminify #wpbody-content .plugin-install-tab-featured .wp-filter .filter-links a, |
| 12128 |
.wp-adminify #wpbody-content .plugin-install-tab-popular .wp-filter .filter-links a, |
| 12129 |
.wp-adminify #wpbody-content .plugin-install-tab-recommended .wp-filter .filter-links a, |
| 12130 |
.wp-adminify #wpbody-content .plugin-install-tab-favorites .wp-filter .filter-links a, |
| 12131 |
.wp-adminify #wpbody-content .plugin-install-tab-search .wp-filter .filter-links a { |
| 12132 |
border-bottom: 2px solid transparent; |
| 12133 |
color: rgba(78, 75, 102, 0.72); |
| 12134 |
font-size: 14px; |
| 12135 |
font-weight: 600; |
| 12136 |
line-height: 33px; |
| 12137 |
} |
| 12138 |
.wp-adminify #wpbody-content .plugin-install-tab-featured .wp-filter .filter-links a.current, .wp-adminify #wpbody-content .plugin-install-tab-featured .wp-filter .filter-links a:hover, |
| 12139 |
.wp-adminify #wpbody-content .plugin-install-tab-popular .wp-filter .filter-links a.current, |
| 12140 |
.wp-adminify #wpbody-content .plugin-install-tab-popular .wp-filter .filter-links a:hover, |
| 12141 |
.wp-adminify #wpbody-content .plugin-install-tab-recommended .wp-filter .filter-links a.current, |
| 12142 |
.wp-adminify #wpbody-content .plugin-install-tab-recommended .wp-filter .filter-links a:hover, |
| 12143 |
.wp-adminify #wpbody-content .plugin-install-tab-favorites .wp-filter .filter-links a.current, |
| 12144 |
.wp-adminify #wpbody-content .plugin-install-tab-favorites .wp-filter .filter-links a:hover, |
| 12145 |
.wp-adminify #wpbody-content .plugin-install-tab-search .wp-filter .filter-links a.current, |
| 12146 |
.wp-adminify #wpbody-content .plugin-install-tab-search .wp-filter .filter-links a:hover { |
| 12147 |
border-bottom-color: var(--adminify-btn-bg); |
| 12148 |
color: var(--adminify-btn-bg); |
| 12149 |
} |
| 12150 |
.wp-adminify #wpbody-content .plugin-install-tab-featured .wp-filter .button, |
| 12151 |
.wp-adminify #wpbody-content .plugin-install-tab-popular .wp-filter .button, |
| 12152 |
.wp-adminify #wpbody-content .plugin-install-tab-recommended .wp-filter .button, |
| 12153 |
.wp-adminify #wpbody-content .plugin-install-tab-favorites .wp-filter .button, |
| 12154 |
.wp-adminify #wpbody-content .plugin-install-tab-search .wp-filter .button { |
| 12155 |
color: rgba(78, 75, 102, 0.72); |
| 12156 |
font-size: 14px; |
| 12157 |
font-weight: 600; |
| 12158 |
line-height: 20px; |
| 12159 |
} |
| 12160 |
.wp-adminify #wpbody-content .plugin-install-tab-featured .wp-filter .button:hover, |
| 12161 |
.wp-adminify #wpbody-content .plugin-install-tab-popular .wp-filter .button:hover, |
| 12162 |
.wp-adminify #wpbody-content .plugin-install-tab-recommended .wp-filter .button:hover, |
| 12163 |
.wp-adminify #wpbody-content .plugin-install-tab-favorites .wp-filter .button:hover, |
| 12164 |
.wp-adminify #wpbody-content .plugin-install-tab-search .wp-filter .button:hover { |
| 12165 |
color: var(--adminify-btn-bg); |
| 12166 |
} |
| 12167 |
.wp-adminify #wpbody-content .plugin-install-tab-featured .wp-filter .button:hover:before, |
| 12168 |
.wp-adminify #wpbody-content .plugin-install-tab-popular .wp-filter .button:hover:before, |
| 12169 |
.wp-adminify #wpbody-content .plugin-install-tab-recommended .wp-filter .button:hover:before, |
| 12170 |
.wp-adminify #wpbody-content .plugin-install-tab-favorites .wp-filter .button:hover:before, |
| 12171 |
.wp-adminify #wpbody-content .plugin-install-tab-search .wp-filter .button:hover:before { |
| 12172 |
color: var(--adminify-btn-bg); |
| 12173 |
} |
| 12174 |
.wp-adminify #wpbody-content .plugin-install-tab-featured .wp-filter .button:before, |
| 12175 |
.wp-adminify #wpbody-content .plugin-install-tab-popular .wp-filter .button:before, |
| 12176 |
.wp-adminify #wpbody-content .plugin-install-tab-recommended .wp-filter .button:before, |
| 12177 |
.wp-adminify #wpbody-content .plugin-install-tab-favorites .wp-filter .button:before, |
| 12178 |
.wp-adminify #wpbody-content .plugin-install-tab-search .wp-filter .button:before { |
| 12179 |
font-size: 20px; |
| 12180 |
} |
| 12181 |
.wp-adminify #wpbody-content .plugin-install-tab-featured .wp-filter select, |
| 12182 |
.wp-adminify #wpbody-content .plugin-install-tab-popular .wp-filter select, |
| 12183 |
.wp-adminify #wpbody-content .plugin-install-tab-recommended .wp-filter select, |
| 12184 |
.wp-adminify #wpbody-content .plugin-install-tab-favorites .wp-filter select, |
| 12185 |
.wp-adminify #wpbody-content .plugin-install-tab-search .wp-filter select { |
| 12186 |
color: var(--adminify-text-color); |
| 12187 |
background-color: var(--adminify-text-color); |
| 12188 |
border: 1px solid #F1F1F3; |
| 12189 |
-webkit-border-radius: 6px; |
| 12190 |
border-radius: 6px; |
| 12191 |
color: rgba(78, 75, 102, 0.72); |
| 12192 |
min-height: 36px; |
| 12193 |
margin-top: 0; |
| 12194 |
padding-top: 3px; |
| 12195 |
padding-bottom: 3px; |
| 12196 |
padding-right: 1.5rem; |
| 12197 |
} |
| 12198 |
.wp-adminify #wpbody-content .plugin-install-tab-featured p, |
| 12199 |
.wp-adminify #wpbody-content .plugin-install-tab-popular p, |
| 12200 |
.wp-adminify #wpbody-content .plugin-install-tab-recommended p, |
| 12201 |
.wp-adminify #wpbody-content .plugin-install-tab-favorites p, |
| 12202 |
.wp-adminify #wpbody-content .plugin-install-tab-search p { |
| 12203 |
color: #4E4B66; |
| 12204 |
font-size: 14px; |
| 12205 |
font-weight: 400; |
| 12206 |
} |
| 12207 |
.wp-adminify #wpbody-content .plugin-install-tab-featured .plugin-card, |
| 12208 |
.wp-adminify #wpbody-content .plugin-install-tab-popular .plugin-card, |
| 12209 |
.wp-adminify #wpbody-content .plugin-install-tab-recommended .plugin-card, |
| 12210 |
.wp-adminify #wpbody-content .plugin-install-tab-favorites .plugin-card, |
| 12211 |
.wp-adminify #wpbody-content .plugin-install-tab-search .plugin-card { |
| 12212 |
border: 0; |
| 12213 |
-webkit-border-radius: 8px; |
| 12214 |
border-radius: 8px; |
| 12215 |
-webkit-box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 12216 |
box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 12217 |
position: relative; |
| 12218 |
} |
| 12219 |
.wp-adminify #wpbody-content .plugin-install-tab-featured .plugin-card .notice-error, |
| 12220 |
.wp-adminify #wpbody-content .plugin-install-tab-popular .plugin-card .notice-error, |
| 12221 |
.wp-adminify #wpbody-content .plugin-install-tab-recommended .plugin-card .notice-error, |
| 12222 |
.wp-adminify #wpbody-content .plugin-install-tab-favorites .plugin-card .notice-error, |
| 12223 |
.wp-adminify #wpbody-content .plugin-install-tab-search .plugin-card .notice-error { |
| 12224 |
background-color: var(--adminify-notif-bg-color); |
| 12225 |
border: 0; |
| 12226 |
-webkit-border-radius: 0; |
| 12227 |
border-radius: 0; |
| 12228 |
-webkit-border-top-left-radius: 3rem; |
| 12229 |
border-top-left-radius: 3rem; |
| 12230 |
-webkit-border-bottom-left-radius: 3rem; |
| 12231 |
border-bottom-left-radius: 3rem; |
| 12232 |
margin: 0; |
| 12233 |
bottom: 2.125rem; |
| 12234 |
right: 0; |
| 12235 |
padding: 7px 1.25rem; |
| 12236 |
position: absolute; |
| 12237 |
} |
| 12238 |
.wp-adminify #wpbody-content .plugin-install-tab-featured .plugin-card .notice-error:before, |
| 12239 |
.wp-adminify #wpbody-content .plugin-install-tab-popular .plugin-card .notice-error:before, |
| 12240 |
.wp-adminify #wpbody-content .plugin-install-tab-recommended .plugin-card .notice-error:before, |
| 12241 |
.wp-adminify #wpbody-content .plugin-install-tab-favorites .plugin-card .notice-error:before, |
| 12242 |
.wp-adminify #wpbody-content .plugin-install-tab-search .plugin-card .notice-error:before { |
| 12243 |
content: "Imcompatible"; |
| 12244 |
color: var(--adminify-text-color); |
| 12245 |
font-size: 14px; |
| 12246 |
font-weight: 700; |
| 12247 |
line-height: 20px; |
| 12248 |
} |
| 12249 |
.wp-adminify #wpbody-content .plugin-install-tab-featured .plugin-card .notice-error p, |
| 12250 |
.wp-adminify #wpbody-content .plugin-install-tab-popular .plugin-card .notice-error p, |
| 12251 |
.wp-adminify #wpbody-content .plugin-install-tab-recommended .plugin-card .notice-error p, |
| 12252 |
.wp-adminify #wpbody-content .plugin-install-tab-favorites .plugin-card .notice-error p, |
| 12253 |
.wp-adminify #wpbody-content .plugin-install-tab-search .plugin-card .notice-error p { |
| 12254 |
display: none; |
| 12255 |
} |
| 12256 |
.wp-adminify #wpbody-content .plugin-install-tab-featured .plugin-card .plugin-card-top, |
| 12257 |
.wp-adminify #wpbody-content .plugin-install-tab-popular .plugin-card .plugin-card-top, |
| 12258 |
.wp-adminify #wpbody-content .plugin-install-tab-recommended .plugin-card .plugin-card-top, |
| 12259 |
.wp-adminify #wpbody-content .plugin-install-tab-favorites .plugin-card .plugin-card-top, |
| 12260 |
.wp-adminify #wpbody-content .plugin-install-tab-search .plugin-card .plugin-card-top { |
| 12261 |
background-color: var(--adminify-text-color); |
| 12262 |
-webkit-border-top-left-radius: 6px; |
| 12263 |
border-top-left-radius: 6px; |
| 12264 |
-webkit-border-top-right-radius: 6px; |
| 12265 |
border-top-right-radius: 6px; |
| 12266 |
} |
| 12267 |
.wp-adminify #wpbody-content .plugin-install-tab-featured .plugin-card .plugin-card-top .name a, |
| 12268 |
.wp-adminify #wpbody-content .plugin-install-tab-popular .plugin-card .plugin-card-top .name a, |
| 12269 |
.wp-adminify #wpbody-content .plugin-install-tab-recommended .plugin-card .plugin-card-top .name a, |
| 12270 |
.wp-adminify #wpbody-content .plugin-install-tab-favorites .plugin-card .plugin-card-top .name a, |
| 12271 |
.wp-adminify #wpbody-content .plugin-install-tab-search .plugin-card .plugin-card-top .name a { |
| 12272 |
font-size: 18px; |
| 12273 |
font-weight: 600; |
| 12274 |
} |
| 12275 |
.wp-adminify #wpbody-content .plugin-install-tab-featured .plugin-card .plugin-card-top .desc, |
| 12276 |
.wp-adminify #wpbody-content .plugin-install-tab-popular .plugin-card .plugin-card-top .desc, |
| 12277 |
.wp-adminify #wpbody-content .plugin-install-tab-recommended .plugin-card .plugin-card-top .desc, |
| 12278 |
.wp-adminify #wpbody-content .plugin-install-tab-favorites .plugin-card .plugin-card-top .desc, |
| 12279 |
.wp-adminify #wpbody-content .plugin-install-tab-search .plugin-card .plugin-card-top .desc { |
| 12280 |
padding-top: 1rem; |
| 12281 |
position: relative; |
| 12282 |
} |
| 12283 |
.wp-adminify #wpbody-content .plugin-install-tab-featured .plugin-card .plugin-card-top .authors, |
| 12284 |
.wp-adminify #wpbody-content .plugin-install-tab-popular .plugin-card .plugin-card-top .authors, |
| 12285 |
.wp-adminify #wpbody-content .plugin-install-tab-recommended .plugin-card .plugin-card-top .authors, |
| 12286 |
.wp-adminify #wpbody-content .plugin-install-tab-favorites .plugin-card .plugin-card-top .authors, |
| 12287 |
.wp-adminify #wpbody-content .plugin-install-tab-search .plugin-card .plugin-card-top .authors { |
| 12288 |
color: #000; |
| 12289 |
font-size: 12px; |
| 12290 |
font-weight: 400; |
| 12291 |
line-height: 16px; |
| 12292 |
margin: 0; |
| 12293 |
left: 0; |
| 12294 |
top: 0; |
| 12295 |
position: absolute; |
| 12296 |
} |
| 12297 |
.wp-adminify #wpbody-content .plugin-install-tab-featured .plugin-card .plugin-card-top .authors cite, |
| 12298 |
.wp-adminify #wpbody-content .plugin-install-tab-popular .plugin-card .plugin-card-top .authors cite, |
| 12299 |
.wp-adminify #wpbody-content .plugin-install-tab-recommended .plugin-card .plugin-card-top .authors cite, |
| 12300 |
.wp-adminify #wpbody-content .plugin-install-tab-favorites .plugin-card .plugin-card-top .authors cite, |
| 12301 |
.wp-adminify #wpbody-content .plugin-install-tab-search .plugin-card .plugin-card-top .authors cite { |
| 12302 |
font-style: normal; |
| 12303 |
} |
| 12304 |
.wp-adminify #wpbody-content .plugin-install-tab-featured .plugin-card .plugin-card-top .authors a, |
| 12305 |
.wp-adminify #wpbody-content .plugin-install-tab-popular .plugin-card .plugin-card-top .authors a, |
| 12306 |
.wp-adminify #wpbody-content .plugin-install-tab-recommended .plugin-card .plugin-card-top .authors a, |
| 12307 |
.wp-adminify #wpbody-content .plugin-install-tab-favorites .plugin-card .plugin-card-top .authors a, |
| 12308 |
.wp-adminify #wpbody-content .plugin-install-tab-search .plugin-card .plugin-card-top .authors a { |
| 12309 |
font-size: 13px; |
| 12310 |
font-weight: 400; |
| 12311 |
} |
| 12312 |
.wp-adminify #wpbody-content .plugin-install-tab-featured .plugin-card .plugin-card-top .open-plugin-details-modal, |
| 12313 |
.wp-adminify #wpbody-content .plugin-install-tab-popular .plugin-card .plugin-card-top .open-plugin-details-modal, |
| 12314 |
.wp-adminify #wpbody-content .plugin-install-tab-recommended .plugin-card .plugin-card-top .open-plugin-details-modal, |
| 12315 |
.wp-adminify #wpbody-content .plugin-install-tab-favorites .plugin-card .plugin-card-top .open-plugin-details-modal, |
| 12316 |
.wp-adminify #wpbody-content .plugin-install-tab-search .plugin-card .plugin-card-top .open-plugin-details-modal { |
| 12317 |
font-weight: 700; |
| 12318 |
} |
| 12319 |
.wp-adminify #wpbody-content .plugin-install-tab-featured .plugin-card .plugin-card-top .button-disabled, |
| 12320 |
.wp-adminify #wpbody-content .plugin-install-tab-popular .plugin-card .plugin-card-top .button-disabled, |
| 12321 |
.wp-adminify #wpbody-content .plugin-install-tab-recommended .plugin-card .plugin-card-top .button-disabled, |
| 12322 |
.wp-adminify #wpbody-content .plugin-install-tab-favorites .plugin-card .plugin-card-top .button-disabled, |
| 12323 |
.wp-adminify #wpbody-content .plugin-install-tab-search .plugin-card .plugin-card-top .button-disabled { |
| 12324 |
background-color: transparent !important; |
| 12325 |
border: 1px solid rgba(78, 75, 102, 0.72) !important; |
| 12326 |
-webkit-border-radius: 6px !important; |
| 12327 |
border-radius: 6px !important; |
| 12328 |
color: rgba(78, 75, 102, 0.72) !important; |
| 12329 |
font-size: 14px; |
| 12330 |
font-weight: 600; |
| 12331 |
line-height: 34px !important; |
| 12332 |
padding: 0 16px !important; |
| 12333 |
} |
| 12334 |
.wp-adminify #wpbody-content .plugin-install-tab-featured .plugin-card .plugin-card-bottom, |
| 12335 |
.wp-adminify #wpbody-content .plugin-install-tab-popular .plugin-card .plugin-card-bottom, |
| 12336 |
.wp-adminify #wpbody-content .plugin-install-tab-recommended .plugin-card .plugin-card-bottom, |
| 12337 |
.wp-adminify #wpbody-content .plugin-install-tab-favorites .plugin-card .plugin-card-bottom, |
| 12338 |
.wp-adminify #wpbody-content .plugin-install-tab-search .plugin-card .plugin-card-bottom { |
| 12339 |
background-color: var(--adminify-preset-background); |
| 12340 |
border: none; |
| 12341 |
-webkit-border-bottom-left-radius: 6px; |
| 12342 |
border-bottom-left-radius: 6px; |
| 12343 |
-webkit-border-bottom-right-radius: 6px; |
| 12344 |
border-bottom-right-radius: 6px; |
| 12345 |
color: #14142B; |
| 12346 |
font-size: 13px; |
| 12347 |
font-weight: 400; |
| 12348 |
} |
| 12349 |
.wp-adminify #wpbody-content .plugin-install-tab-featured .plugin-card .plugin-card-bottom .star-rating .star, |
| 12350 |
.wp-adminify #wpbody-content .plugin-install-tab-popular .plugin-card .plugin-card-bottom .star-rating .star, |
| 12351 |
.wp-adminify #wpbody-content .plugin-install-tab-recommended .plugin-card .plugin-card-bottom .star-rating .star, |
| 12352 |
.wp-adminify #wpbody-content .plugin-install-tab-favorites .plugin-card .plugin-card-bottom .star-rating .star, |
| 12353 |
.wp-adminify #wpbody-content .plugin-install-tab-search .plugin-card .plugin-card-bottom .star-rating .star { |
| 12354 |
color: #FFC804; |
| 12355 |
} |
| 12356 |
.wp-adminify #wpbody-content .plugin-install-tab-featured .plugin-card .plugin-card-bottom .compatibility-compatible:before, |
| 12357 |
.wp-adminify #wpbody-content .plugin-install-tab-popular .plugin-card .plugin-card-bottom .compatibility-compatible:before, |
| 12358 |
.wp-adminify #wpbody-content .plugin-install-tab-recommended .plugin-card .plugin-card-bottom .compatibility-compatible:before, |
| 12359 |
.wp-adminify #wpbody-content .plugin-install-tab-favorites .plugin-card .plugin-card-bottom .compatibility-compatible:before, |
| 12360 |
.wp-adminify #wpbody-content .plugin-install-tab-search .plugin-card .plugin-card-bottom .compatibility-compatible:before { |
| 12361 |
color: #00BA88; |
| 12362 |
} |
| 12363 |
.wp-adminify #wpbody-content .plugin-install-tab-featured .plugin-card .plugin-card-bottom .compatibility-untested, |
| 12364 |
.wp-adminify #wpbody-content .plugin-install-tab-popular .plugin-card .plugin-card-bottom .compatibility-untested, |
| 12365 |
.wp-adminify #wpbody-content .plugin-install-tab-recommended .plugin-card .plugin-card-bottom .compatibility-untested, |
| 12366 |
.wp-adminify #wpbody-content .plugin-install-tab-favorites .plugin-card .plugin-card-bottom .compatibility-untested, |
| 12367 |
.wp-adminify #wpbody-content .plugin-install-tab-search .plugin-card .plugin-card-bottom .compatibility-untested { |
| 12368 |
position: relative; |
| 12369 |
} |
| 12370 |
.wp-adminify #wpbody-content .plugin-install-tab-featured .plugin-card .plugin-card-bottom .compatibility-untested:before, |
| 12371 |
.wp-adminify #wpbody-content .plugin-install-tab-popular .plugin-card .plugin-card-bottom .compatibility-untested:before, |
| 12372 |
.wp-adminify #wpbody-content .plugin-install-tab-recommended .plugin-card .plugin-card-bottom .compatibility-untested:before, |
| 12373 |
.wp-adminify #wpbody-content .plugin-install-tab-favorites .plugin-card .plugin-card-bottom .compatibility-untested:before, |
| 12374 |
.wp-adminify #wpbody-content .plugin-install-tab-search .plugin-card .plugin-card-bottom .compatibility-untested:before { |
| 12375 |
content: "\f335"; |
| 12376 |
color: #c30052; |
| 12377 |
font-size: 24px; |
| 12378 |
} |
| 12379 |
.wp-adminify #wpbody-content .fileedit-sub h2, |
| 12380 |
.wp-adminify #wpbody-content #documentation h2 { |
| 12381 |
color: #14142B; |
| 12382 |
font-size: 18px; |
| 12383 |
line-height: 20px; |
| 12384 |
} |
| 12385 |
.wp-adminify #wpbody-content .fileedit-sub label, |
| 12386 |
.wp-adminify #wpbody-content #documentation label { |
| 12387 |
color: rgba(78, 75, 102, 0.72); |
| 12388 |
} |
| 12389 |
.wp-adminify #wpbody-content .fileedit-sub select, |
| 12390 |
.wp-adminify #wpbody-content #documentation select { |
| 12391 |
background-color: var(--adminify-text-color); |
| 12392 |
border: 1px solid #F1F1F3; |
| 12393 |
-webkit-border-radius: 6px; |
| 12394 |
border-radius: 6px; |
| 12395 |
color: rgba(78, 75, 102, 0.72); |
| 12396 |
min-height: 36px; |
| 12397 |
} |
| 12398 |
.wp-adminify #wpbody-content #documentation #docs-lookup[disabled] { |
| 12399 |
background-color: transparent !important; |
| 12400 |
border: 1px solid rgba(78, 75, 102, 0.72) !important; |
| 12401 |
-webkit-border-radius: 6px !important; |
| 12402 |
border-radius: 6px !important; |
| 12403 |
color: rgba(78, 75, 102, 0.72) !important; |
| 12404 |
font-size: 14px; |
| 12405 |
font-weight: 600; |
| 12406 |
line-height: 34px !important; |
| 12407 |
padding: 0 16px !important; |
| 12408 |
} |
| 12409 |
.wp-adminify #plugin-filter .pagination-links .button.disabled { |
| 12410 |
background-color: transparent; |
| 12411 |
border: 1px solid rgba(78, 75, 102, 0.72); |
| 12412 |
-webkit-border-radius: 6px; |
| 12413 |
border-radius: 6px; |
| 12414 |
color: rgba(78, 75, 102, 0.72); |
| 12415 |
} |
| 12416 |
.wp-adminify #plugin-filter .pagination-links .current-page, |
| 12417 |
.wp-adminify #plugin-filter .pagination-links a.button { |
| 12418 |
background-color: transparent; |
| 12419 |
border: 1px solid var(--adminify-btn-bg); |
| 12420 |
-webkit-border-radius: 6px; |
| 12421 |
border-radius: 6px; |
| 12422 |
color: var(--adminify-btn-bg); |
| 12423 |
} |
| 12424 |
.wp-adminify.plugin-install-php #wpbody-content .wp-filter + p { |
| 12425 |
color: #000; |
| 12426 |
margin: 1.5rem 0; |
| 12427 |
} |
| 12428 |
.wp-adminify.plugin-install-php #wpbody-content #search-plugins { |
| 12429 |
margin: 0; |
| 12430 |
} |
| 12431 |
.wp-adminify.plugin-install-php #wpbody-content .wp-list-table.widefat { |
| 12432 |
background-color: transparent; |
| 12433 |
-webkit-box-shadow: none; |
| 12434 |
box-shadow: none; |
| 12435 |
} |
| 12436 |
.wp-adminify.plugin-install-php #wpbody-content .wp-list-table.widefat .button { |
| 12437 |
color: var(--adminify-text-color); |
| 12438 |
} |
| 12439 |
.wp-adminify.plugin-install-php #wpbody-content .wp-list-table.widefat .button:hover { |
| 12440 |
color: var(--adminify-btn-bg); |
| 12441 |
} |
| 12442 |
.wp-adminify.plugin-install-php #wpbody-content .plugin-card .plugin-card-top { |
| 12443 |
display: inline-block; |
| 12444 |
padding: 1.875rem 1.875rem 3.875rem; |
| 12445 |
width: 100%; |
| 12446 |
} |
| 12447 |
.wp-adminify.plugin-install-php #wpbody-content .plugin-card .plugin-card-top .name { |
| 12448 |
margin-right: 0; |
| 12449 |
} |
| 12450 |
.wp-adminify.plugin-install-php #wpbody-content .plugin-card .plugin-card-top .name h3 { |
| 12451 |
margin-bottom: 7px; |
| 12452 |
} |
| 12453 |
.wp-adminify.plugin-install-php #wpbody-content .plugin-card .plugin-card-top .name a { |
| 12454 |
font-weight: 700; |
| 12455 |
} |
| 12456 |
.wp-adminify.plugin-install-php #wpbody-content .plugin-card .plugin-card-top .name .plugin-icon { |
| 12457 |
max-width: 128px; |
| 12458 |
top: 1.875rem; |
| 12459 |
left: 1.875rem; |
| 12460 |
} |
| 12461 |
.wp-adminify.plugin-install-php #wpbody-content .plugin-card .plugin-card-top .desc { |
| 12462 |
margin-right: 0; |
| 12463 |
margin-bottom: 1.625rem; |
| 12464 |
} |
| 12465 |
.wp-adminify.plugin-install-php #wpbody-content .plugin-card .plugin-card-top .desc p { |
| 12466 |
color: #000; |
| 12467 |
padding-top: 10px; |
| 12468 |
} |
| 12469 |
.wp-adminify.plugin-install-php #wpbody-content .plugin-card .plugin-card-top .desc p.authors { |
| 12470 |
top: -10px; |
| 12471 |
} |
| 12472 |
.wp-adminify.plugin-install-php #wpbody-content .plugin-card .plugin-card-top .action-links { |
| 12473 |
top: inherit; |
| 12474 |
right: inherit; |
| 12475 |
bottom: 1.875rem; |
| 12476 |
left: 178px; |
| 12477 |
width: auto; |
| 12478 |
} |
| 12479 |
.wp-adminify.plugin-install-php #wpbody-content .plugin-card .plugin-card-top .action-links .plugin-action-buttons { |
| 12480 |
display: -webkit-box; |
| 12481 |
display: -webkit-flex; |
| 12482 |
display: -ms-flexbox; |
| 12483 |
display: flex; |
| 12484 |
-webkit-box-align: center; |
| 12485 |
-webkit-align-items: center; |
| 12486 |
-ms-flex-align: center; |
| 12487 |
align-items: center; |
| 12488 |
-webkit-box-pack: start; |
| 12489 |
-webkit-justify-content: flex-start; |
| 12490 |
-ms-flex-pack: start; |
| 12491 |
justify-content: flex-start; |
| 12492 |
float: none; |
| 12493 |
margin: 0; |
| 12494 |
} |
| 12495 |
.wp-adminify.plugin-install-php #wpbody-content .plugin-card .plugin-card-top .action-links .plugin-action-buttons li { |
| 12496 |
margin: 0; |
| 12497 |
} |
| 12498 |
.wp-adminify.plugin-install-php #wpbody-content .plugin-card .plugin-card-top .action-links .plugin-action-buttons .button { |
| 12499 |
color: var(--adminify-btn-bg); |
| 12500 |
font-weight: 700; |
| 12501 |
margin-right: 15px; |
| 12502 |
} |
| 12503 |
.wp-adminify.plugin-install-php #wpbody-content .plugin-card .plugin-card-top .action-links .plugin-action-buttons .button:hover { |
| 12504 |
color: var(--adminify-text-color); |
| 12505 |
} |
| 12506 |
.wp-adminify.plugin-install-php #wpbody-content .plugin-card .plugin-card-top .action-links .plugin-action-buttons .button.activate-now { |
| 12507 |
background-color: var(--adminify-btn-bg) !important; |
| 12508 |
color: var(--adminify-text-color) !important; |
| 12509 |
} |
| 12510 |
.wp-adminify.plugin-install-php #wpbody-content .plugin-card .plugin-card-top .action-links .plugin-action-buttons .button.activate-now:hover, .wp-adminify.plugin-install-php #wpbody-content .plugin-card .plugin-card-top .action-links .plugin-action-buttons .button.activate-now:focus { |
| 12511 |
background-color: var(--adminify-text-color) !important; |
| 12512 |
color: var(--adminify-btn-bg) !important; |
| 12513 |
} |
| 12514 |
.wp-adminify.plugin-install-php #wpbody-content .plugin-card .plugin-card-top .action-links .plugin-action-buttons .button.install-now::before { |
| 12515 |
line-height: 34px; |
| 12516 |
margin: 0 7px 0 0; |
| 12517 |
} |
| 12518 |
.wp-adminify.plugin-install-php #wpbody-content .plugin-card .plugin-card-bottom { |
| 12519 |
padding: 1.625rem 1.875rem; |
| 12520 |
} |
| 12521 |
.wp-adminify.plugin-install-php #wpbody-content .plugin-card .plugin-card-bottom .column-updated, |
| 12522 |
.wp-adminify.plugin-install-php #wpbody-content .plugin-card .plugin-card-bottom .column-rating { |
| 12523 |
margin-bottom: 0; |
| 12524 |
} |
| 12525 |
.wp-adminify.plugin-install-php #wpbody-content .plugin-install-tab-favorites input[type=search] { |
| 12526 |
background-color: var(--adminify-text-color); |
| 12527 |
border: 1px solid #F1F1F3; |
| 12528 |
} |
| 12529 |
.wp-adminify.modal-open .plugin-details-modal #TB_closeWindowButton { |
| 12530 |
color: var(--adminify-notif-bg-color); |
| 12531 |
top: 10px; |
| 12532 |
right: 15px; |
| 12533 |
text-shadow: 0 0 5px var(--adminify-text-color); |
| 12534 |
} |
| 12535 |
.wp-adminify.modal-open .plugin-details-modal #TB_closeWindowButton:hover, .wp-adminify.modal-open .plugin-details-modal #TB_closeWindowButton:focus { |
| 12536 |
color: var(--adminify-notif-bg-color); |
| 12537 |
} |
| 12538 |
.wp-adminify body.wp-adminify { |
| 12539 |
--adminify-text-color: #fff; |
| 12540 |
} |
| 12541 |
.wp-adminify body.wp-adminify { |
| 12542 |
--adminify-text-color: #fff; |
| 12543 |
} |
| 12544 |
@font-face { |
| 12545 |
.wp-adminify { |
| 12546 |
font-family: no-parens; |
| 12547 |
src: url("data:application/x-font-woff;base64,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"); |
| 12548 |
unicode-range: U+0028, U+0029; |
| 12549 |
} |
| 12550 |
} |
| 12551 |
.wp-adminify.appearance_page_custom-background #custom-background #message { |
| 12552 |
border: 1px solid #F1F1F3; |
| 12553 |
} |
| 12554 |
.wp-adminify.appearance_page_custom-background #custom-background #message.updated { |
| 12555 |
border-left-color: #0cce6b; |
| 12556 |
} |
| 12557 |
.wp-adminify.appearance_page_custom-background #custom-background .form-table #remove-background { |
| 12558 |
margin-bottom: 10px; |
| 12559 |
} |
| 12560 |
.wp-adminify.appearance_page_custom-background #custom-background .form-table #choose-from-library-link { |
| 12561 |
margin-top: 10px; |
| 12562 |
} |
| 12563 |
.wp-adminify.appearance_page_custom-background #custom-background .form-table .wp-picker-container .wp-color-result { |
| 12564 |
background-color: #E5E5E5; |
| 12565 |
border: 1px solid var(--adminify-btn-bg); |
| 12566 |
-webkit-border-radius: 6px; |
| 12567 |
border-radius: 6px; |
| 12568 |
padding: 0; |
| 12569 |
height: auto; |
| 12570 |
} |
| 12571 |
.wp-adminify.appearance_page_custom-background #custom-background .form-table .wp-picker-container .wp-color-result .wp-color-result-text { |
| 12572 |
background-color: var(--adminify-text-color); |
| 12573 |
border: 0; |
| 12574 |
border-left: 1px solid var(--adminify-btn-bg); |
| 12575 |
-webkit-border-top-right-radius: 6px; |
| 12576 |
border-top-right-radius: 6px; |
| 12577 |
-webkit-border-bottom-right-radius: 6px; |
| 12578 |
border-bottom-right-radius: 6px; |
| 12579 |
color: var(--adminify-btn-bg); |
| 12580 |
font-size: 14px; |
| 12581 |
line-height: 34px; |
| 12582 |
margin-left: 2.375rem; |
| 12583 |
padding: 0 13px; |
| 12584 |
} |
| 12585 |
.wp-adminify.appearance_page_custom-background #custom-background .form-table .background-position-control .button-group .button { |
| 12586 |
background-color: var(--adminify-text-color); |
| 12587 |
border: 1px solid #F1F1F3; |
| 12588 |
-webkit-box-shadow: none; |
| 12589 |
box-shadow: none; |
| 12590 |
color: var(--adminify-btn-bg); |
| 12591 |
} |
| 12592 |
.wp-adminify.appearance_page_custom-background #custom-background .form-table .background-position-control .button-group .dashicons { |
| 12593 |
margin-top: 10px; |
| 12594 |
} |
| 12595 |
.wp-adminify.appearance_page_custom-background #custom-background .form-table .background-position-control input[type=radio]:checked ~ .button { |
| 12596 |
background-color: var(--adminify-btn-bg); |
| 12597 |
border-color: var(--adminify-btn-bg); |
| 12598 |
color: var(--adminify-text-color); |
| 12599 |
} |
| 12600 |
.wp-adminify.appearance_page_custom-background #custom-background .form-table .background-position-control input[type=radio]:checked ~ .button .background-position-center-icon:before { |
| 12601 |
background-color: var(--adminify-text-color); |
| 12602 |
} |
| 12603 |
.wp-adminify.appearance_page_custom-background #custom-background .form-table .background-position-control .background-position-center-icon { |
| 12604 |
margin-top: 13px; |
| 12605 |
} |
| 12606 |
.wp-adminify #wpbody-content #createuser, |
| 12607 |
.wp-adminify #wpbody-content #your-profile { |
| 12608 |
padding: 1rem 2rem; |
| 12609 |
} |
| 12610 |
.wp-adminify #wpbody-content #createuser .wp-hide-pw .dashicons, |
| 12611 |
.wp-adminify #wpbody-content #your-profile .wp-hide-pw .dashicons { |
| 12612 |
float: left; |
| 12613 |
line-height: 34px; |
| 12614 |
top: 0; |
| 12615 |
height: auto; |
| 12616 |
width: auto; |
| 12617 |
margin-right: 5px; |
| 12618 |
} |
| 12619 |
.wp-adminify #wpbody-content #createuser .wp-cancel-pw, |
| 12620 |
.wp-adminify #wpbody-content #your-profile .wp-cancel-pw { |
| 12621 |
background-color: var(--adminify-notif-bg-color); |
| 12622 |
border: 1px solid var(--adminify-notif-bg-color); |
| 12623 |
-webkit-border-radius: 6px; |
| 12624 |
border-radius: 6px; |
| 12625 |
color: #fff; |
| 12626 |
border: 1px solid var(--adminify-notif-bg-color); |
| 12627 |
font-size: 14px; |
| 12628 |
font-weight: 600; |
| 12629 |
line-height: 34px; |
| 12630 |
padding: 0 16px; |
| 12631 |
} |
| 12632 |
.wp-adminify #wpbody-content #createuser .wp-cancel-pw:hover, |
| 12633 |
.wp-adminify #wpbody-content #your-profile .wp-cancel-pw:hover { |
| 12634 |
background-color: var(--adminify-text-color); |
| 12635 |
color: var(--adminify-notif-bg-color); |
| 12636 |
} |
| 12637 |
.wp-adminify #wpbody-content #createuser #pass-strength-result.strong, |
| 12638 |
.wp-adminify #wpbody-content #your-profile #pass-strength-result.strong { |
| 12639 |
-webkit-border-radius: 6px; |
| 12640 |
border-radius: 6px; |
| 12641 |
} |
| 12642 |
.wp-adminify #wpbody-content #createuser .wp-pwd [type=password], |
| 12643 |
.wp-adminify #wpbody-content #createuser .wp-pwd [type=text], |
| 12644 |
.wp-adminify #wpbody-content #your-profile .wp-pwd [type=password], |
| 12645 |
.wp-adminify #wpbody-content #your-profile .wp-pwd [type=text] { |
| 12646 |
min-height: 40px; |
| 12647 |
margin-bottom: 10px; |
| 12648 |
} |
| 12649 |
.wp-adminify #wpbody-content #copy_billing { |
| 12650 |
background-color: var(--adminify-btn-bg); |
| 12651 |
-webkit-border-radius: 6px; |
| 12652 |
border-radius: 6px; |
| 12653 |
color: var(--adminify-text-color); |
| 12654 |
border: 1px solid var(--adminify-btn-bg); |
| 12655 |
font-size: 14px; |
| 12656 |
font-weight: 600; |
| 12657 |
line-height: 34px !important; |
| 12658 |
padding: 0 16px !important; |
| 12659 |
} |
| 12660 |
.wp-adminify #wpbody-content #profile-page #your-profile h2 { |
| 12661 |
color: #000; |
| 12662 |
font-size: 18px; |
| 12663 |
font-weight: 700; |
| 12664 |
} |
| 12665 |
.wp-adminify #wpbody-content #profile-page .form-table { |
| 12666 |
line-height: 20px; |
| 12667 |
} |
| 12668 |
.wp-adminify #wpbody-content #profile-page .form-table th { |
| 12669 |
color: #14142B; |
| 12670 |
font-size: 14px; |
| 12671 |
font-weight: 600; |
| 12672 |
} |
| 12673 |
.wp-adminify #wpbody-content #profile-page .form-table label { |
| 12674 |
color: #000; |
| 12675 |
font-size: 14px; |
| 12676 |
font-weight: 400; |
| 12677 |
} |
| 12678 |
.wp-adminify #wpbody-content #profile-page .form-table input[type=radio] { |
| 12679 |
background-color: var(--adminify-text-color); |
| 12680 |
} |
| 12681 |
.wp-adminify #wpbody-content #profile-page .form-table .color-option.selected, |
| 12682 |
.wp-adminify #wpbody-content #profile-page .form-table .color-option:hover { |
| 12683 |
background-color: transparent; |
| 12684 |
} |
| 12685 |
.wp-adminify #wpbody-content #profile-page .form-table .description { |
| 12686 |
color: #000; |
| 12687 |
font-size: 12px; |
| 12688 |
font-weight: 400; |
| 12689 |
line-height: 16px; |
| 12690 |
} |
| 12691 |
.wp-adminify #wpbody-content #profile-page .form-table .description a { |
| 12692 |
font-size: 14px; |
| 12693 |
} |
| 12694 |
.wp-adminify #wpbody-content #profile-page .form-table .user-profile-picture img.avatar { |
| 12695 |
-webkit-border-radius: 50%; |
| 12696 |
border-radius: 50%; |
| 12697 |
height: 80px; |
| 12698 |
width: 80px; |
| 12699 |
} |
| 12700 |
.wp-adminify #wpbody-content #profile-page .form-table .destroy-sessions button { |
| 12701 |
background-color: transparent !important; |
| 12702 |
border: 1px solid rgba(78, 75, 102, 0.72) !important; |
| 12703 |
-webkit-border-radius: 6px !important; |
| 12704 |
border-radius: 6px !important; |
| 12705 |
color: rgba(78, 75, 102, 0.72) !important; |
| 12706 |
font-size: 14px; |
| 12707 |
font-weight: 600; |
| 12708 |
line-height: 34px !important; |
| 12709 |
padding: 0 16px !important; |
| 12710 |
} |
| 12711 |
.wp-adminify.users-php #wpbody-content .wp-list-table.widefat input[type=checkbox] { |
| 12712 |
margin: 0; |
| 12713 |
position: inherit; |
| 12714 |
} |
| 12715 |
.wp-adminify.users-php #wpbody-content .wp-list-table.widefat tbody th { |
| 12716 |
padding: 15px 17px; |
| 12717 |
} |
| 12718 |
.wp-adminify.users-php #wpbody-content .wp-list-table.widefat td { |
| 12719 |
color: #14142B; |
| 12720 |
font-size: 14px; |
| 12721 |
} |
| 12722 |
.wp-adminify.users-php #wpbody-content .wp-list-table.widefat .username img { |
| 12723 |
height: 46px; |
| 12724 |
width: 46px; |
| 12725 |
} |
| 12726 |
.wp-adminify.users-php #wpbody-content .wp-list-table.widefat .row-actions { |
| 12727 |
margin: 0; |
| 12728 |
} |
| 12729 |
.wp-adminify.users-php #wpbody-content .wp-list-table.widefat .row-actions span { |
| 12730 |
color: #F1F1F3; |
| 12731 |
font-size: 13px; |
| 12732 |
margin-right: 0; |
| 12733 |
} |
| 12734 |
.wp-adminify.users-php #wpbody-content .wp-list-table.widefat .row-actions span a { |
| 12735 |
color: var(--adminify-btn-bg); |
| 12736 |
} |
| 12737 |
.wp-adminify.tools-php #wpbody-content .card { |
| 12738 |
background-color: var(--adminify-text-color); |
| 12739 |
border: 0; |
| 12740 |
-webkit-box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 12741 |
box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 12742 |
-webkit-border-radius: 8px; |
| 12743 |
border-radius: 8px; |
| 12744 |
} |
| 12745 |
.wp-adminify.tools-php #wpbody-content .card .title { |
| 12746 |
color: #000; |
| 12747 |
font-size: 18px; |
| 12748 |
font-weight: 700; |
| 12749 |
margin-bottom: 0; |
| 12750 |
} |
| 12751 |
.wp-adminify.tools-php #wpbody-content .card p { |
| 12752 |
color: #000; |
| 12753 |
} |
| 12754 |
.wp-adminify #wpbody-content .widefat.importers { |
| 12755 |
background: transparent; |
| 12756 |
border: 0; |
| 12757 |
-webkit-box-shadow: none; |
| 12758 |
box-shadow: none; |
| 12759 |
width: 100%; |
| 12760 |
} |
| 12761 |
.wp-adminify #wpbody-content .widefat.importers tbody { |
| 12762 |
display: -webkit-box; |
| 12763 |
display: -webkit-flex; |
| 12764 |
display: -ms-flexbox; |
| 12765 |
display: flex; |
| 12766 |
-webkit-box-align: start; |
| 12767 |
-webkit-align-items: flex-start; |
| 12768 |
-ms-flex-align: start; |
| 12769 |
align-items: flex-start; |
| 12770 |
-webkit-flex-wrap: wrap; |
| 12771 |
-ms-flex-wrap: wrap; |
| 12772 |
flex-wrap: wrap; |
| 12773 |
-webkit-box-orient: horizontal; |
| 12774 |
-webkit-box-direction: normal; |
| 12775 |
-webkit-flex-direction: row; |
| 12776 |
-ms-flex-direction: row; |
| 12777 |
flex-direction: row; |
| 12778 |
-webkit-box-pack: justify; |
| 12779 |
-webkit-justify-content: space-between; |
| 12780 |
-ms-flex-pack: justify; |
| 12781 |
justify-content: space-between; |
| 12782 |
} |
| 12783 |
.wp-adminify #wpbody-content .widefat.importers .importer-item { |
| 12784 |
background-color: var(--adminify-text-color); |
| 12785 |
border: 0; |
| 12786 |
-webkit-box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 12787 |
box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 12788 |
-webkit-border-radius: 8px; |
| 12789 |
border-radius: 8px; |
| 12790 |
display: block; |
| 12791 |
-webkit-box-flex: 0; |
| 12792 |
-webkit-flex: 0 0 46%; |
| 12793 |
-ms-flex: 0 0 46%; |
| 12794 |
flex: 0 0 46%; |
| 12795 |
width: 46%; |
| 12796 |
margin-bottom: 1.875rem; |
| 12797 |
padding: 1.125rem; |
| 12798 |
position: relative; |
| 12799 |
} |
| 12800 |
.wp-adminify #wpbody-content .widefat.importers .importer-item td { |
| 12801 |
display: block; |
| 12802 |
max-width: inherit; |
| 12803 |
padding: 0; |
| 12804 |
} |
| 12805 |
.wp-adminify #wpbody-content .widefat.importers .importer-item td.desc { |
| 12806 |
margin: 0 0 1.75rem; |
| 12807 |
} |
| 12808 |
.wp-adminify #wpbody-content .widefat.importers .importer-item td .importer-desc { |
| 12809 |
font-size: 14px; |
| 12810 |
} |
| 12811 |
.wp-adminify #wpbody-content .widefat.importers .importer-item .importer-title { |
| 12812 |
color: #000; |
| 12813 |
font-size: 18px; |
| 12814 |
font-weight: 700; |
| 12815 |
line-height: 20px; |
| 12816 |
margin-bottom: 0.65rem; |
| 12817 |
} |
| 12818 |
.wp-adminify #wpbody-content .widefat.importers .importer-item .importer-action { |
| 12819 |
color: #F1F1F3; |
| 12820 |
left: 1.125rem; |
| 12821 |
bottom: 1.125rem; |
| 12822 |
margin: 0; |
| 12823 |
position: absolute; |
| 12824 |
} |
| 12825 |
.wp-adminify #wpbody-content .widefat.importers .importer-item .importer-action a { |
| 12826 |
color: var(--adminify-btn-bg); |
| 12827 |
font-size: 14px; |
| 12828 |
font-weight: 400; |
| 12829 |
line-height: 20px; |
| 12830 |
} |
| 12831 |
.wp-adminify #wpbody-content #export-filters { |
| 12832 |
background-color: var(--adminify-text-color); |
| 12833 |
border: 0; |
| 12834 |
-webkit-box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 12835 |
box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 12836 |
-webkit-border-radius: 8px; |
| 12837 |
border-radius: 8px; |
| 12838 |
padding: 0 1.5rem 11px; |
| 12839 |
padding-top: 1.5rem; |
| 12840 |
max-width: 685px; |
| 12841 |
} |
| 12842 |
.wp-adminify #wpbody-content #export-filters p.description { |
| 12843 |
color: rgba(78, 75, 102, 0.72); |
| 12844 |
font-size: 12px; |
| 12845 |
font-weight: 400; |
| 12846 |
} |
| 12847 |
.wp-adminify #wpbody-content #export-filters .export-filters { |
| 12848 |
max-width: 550px; |
| 12849 |
} |
| 12850 |
.wp-adminify #wpbody-content #export-filters .export-filters li { |
| 12851 |
margin-bottom: 1.25rem; |
| 12852 |
} |
| 12853 |
.wp-adminify #wpbody-content #export-filters .export-filters li > label, |
| 12854 |
.wp-adminify #wpbody-content #export-filters .export-filters li fieldset { |
| 12855 |
display: -webkit-box; |
| 12856 |
display: -webkit-flex; |
| 12857 |
display: -ms-flexbox; |
| 12858 |
display: flex; |
| 12859 |
-webkit-flex-wrap: wrap; |
| 12860 |
-ms-flex-wrap: wrap; |
| 12861 |
flex-wrap: wrap; |
| 12862 |
-webkit-box-align: center; |
| 12863 |
-webkit-align-items: center; |
| 12864 |
-ms-flex-align: center; |
| 12865 |
align-items: center; |
| 12866 |
} |
| 12867 |
.wp-adminify #wpbody-content #export-filters .export-filters li label[for=post-status], |
| 12868 |
.wp-adminify #wpbody-content #export-filters .export-filters li label[for=page-status] { |
| 12869 |
display: -webkit-inline-box; |
| 12870 |
display: -webkit-inline-flex; |
| 12871 |
display: -ms-inline-flexbox; |
| 12872 |
display: inline-flex; |
| 12873 |
width: 14.5%; |
| 12874 |
} |
| 12875 |
.wp-adminify #wpbody-content #export-filters .export-filters li select#post-status, .wp-adminify #wpbody-content #export-filters .export-filters li select#page-status, .wp-adminify #wpbody-content #export-filters .export-filters li select#attachment-status { |
| 12876 |
width: 73%; |
| 12877 |
} |
| 12878 |
.wp-adminify #wpbody-content #export-filters .export-filters li > label .label-responsive { |
| 12879 |
-webkit-flex-basis: 15%; |
| 12880 |
-ms-flex-preferred-size: 15%; |
| 12881 |
flex-basis: 15%; |
| 12882 |
} |
| 12883 |
.wp-adminify #wpbody-content #export-filters .export-filters li > label select { |
| 12884 |
-webkit-flex-basis: 85%; |
| 12885 |
-ms-flex-preferred-size: 85%; |
| 12886 |
flex-basis: 85%; |
| 12887 |
} |
| 12888 |
.wp-adminify #wpbody-content #export-filters .export-filters .label-responsive { |
| 12889 |
color: #14142B; |
| 12890 |
font-size: 14px; |
| 12891 |
font-weight: 600; |
| 12892 |
line-height: 20px; |
| 12893 |
} |
| 12894 |
.wp-adminify #wpbody-content #export-filters .export-filters select { |
| 12895 |
background-color: var(--adminify-admin-bar-input-bg); |
| 12896 |
border: none; |
| 12897 |
-webkit-border-radius: 6px; |
| 12898 |
border-radius: 6px; |
| 12899 |
color: var(--adminify-admin-bar-input-text); |
| 12900 |
font-size: 14px; |
| 12901 |
line-height: 20px; |
| 12902 |
padding: 8px 16px; |
| 12903 |
margin: 0; |
| 12904 |
} |
| 12905 |
.wp-adminify #wpbody-content #export-filters .export-filters fieldset .label-responsive { |
| 12906 |
-webkit-flex-basis: 15%; |
| 12907 |
-ms-flex-preferred-size: 15%; |
| 12908 |
flex-basis: 15%; |
| 12909 |
} |
| 12910 |
.wp-adminify #wpbody-content #export-filters .export-filters fieldset select { |
| 12911 |
-webkit-flex-basis: 25%; |
| 12912 |
-ms-flex-preferred-size: 25%; |
| 12913 |
flex-basis: 25%; |
| 12914 |
} |
| 12915 |
.wp-adminify #wpbody-content #export-filters .export-filters fieldset select#post-start-date, .wp-adminify #wpbody-content #export-filters .export-filters fieldset select#page-start-date, .wp-adminify #wpbody-content #export-filters .export-filters fieldset select#attachment-start-date { |
| 12916 |
margin-right: 2.75rem; |
| 12917 |
} |
| 12918 |
.wp-adminify #wpbody-content .health-check-header { |
| 12919 |
border: 0; |
| 12920 |
} |
| 12921 |
.wp-adminify #wpbody-content .health-check-header .health-check-title-section { |
| 12922 |
margin-top: 7px; |
| 12923 |
} |
| 12924 |
.wp-adminify #wpbody-content .health-check-header .health-check-title-section .site-health-progress { |
| 12925 |
height: 44px; |
| 12926 |
width: 44px; |
| 12927 |
} |
| 12928 |
.wp-adminify #wpbody-content .health-check-header .health-check-title-section .site-health-progress svg circle { |
| 12929 |
stroke: #F1F1F3; |
| 12930 |
} |
| 12931 |
.wp-adminify #wpbody-content .health-check-header .health-check-title-section .site-health-progress-label { |
| 12932 |
color: #00BA88; |
| 12933 |
font-size: 14px; |
| 12934 |
font-weight: 400; |
| 12935 |
margin-left: 12px; |
| 12936 |
} |
| 12937 |
.wp-adminify #wpbody-content .health-check-header .health-check-title-section #bar { |
| 12938 |
stroke: #00BA88; |
| 12939 |
} |
| 12940 |
.wp-adminify #wpbody-content .health-check-header .health-check-title-section #bar.orange { |
| 12941 |
stroke: #F4B740; |
| 12942 |
} |
| 12943 |
.wp-adminify #wpbody-content .health-check-header .health-check-title-section.orange #bar { |
| 12944 |
stroke: #F4B740; |
| 12945 |
} |
| 12946 |
.wp-adminify #wpbody-content .health-check-header .health-check-title-section.orange .site-health-progress-label { |
| 12947 |
color: #F4B740; |
| 12948 |
} |
| 12949 |
.wp-adminify #wpbody-content .health-check-header .health-check-tabs-wrapper .health-check-tab { |
| 12950 |
color: #000; |
| 12951 |
font-size: 14px; |
| 12952 |
font-weight: 600; |
| 12953 |
line-height: 20px; |
| 12954 |
} |
| 12955 |
.wp-adminify #wpbody-content .health-check-header .health-check-tabs-wrapper .health-check-tab.active { |
| 12956 |
-webkit-box-shadow: inset 0 -3px var(--adminify-btn-bg); |
| 12957 |
box-shadow: inset 0 -3px var(--adminify-btn-bg); |
| 12958 |
color: var(--adminify-btn-bg); |
| 12959 |
} |
| 12960 |
.wp-adminify #wpbody-content .health-check-header .health-check-tabs-wrapper .health-check-tab:focus { |
| 12961 |
border: 0; |
| 12962 |
outline: 0; |
| 12963 |
} |
| 12964 |
.wp-adminify #wpbody-content .site-health .site-health-issues-wrapper { |
| 12965 |
margin: 1.5rem 0; |
| 12966 |
} |
| 12967 |
.wp-adminify #wpbody-content .health-check-body p { |
| 12968 |
color: #000; |
| 12969 |
} |
| 12970 |
.wp-adminify #wpbody-content .health-check-body .health-check-accordion { |
| 12971 |
border: 0; |
| 12972 |
} |
| 12973 |
.wp-adminify #wpbody-content .health-check-body .health-check-accordion .health-check-accordion-heading { |
| 12974 |
margin-bottom: 1rem; |
| 12975 |
} |
| 12976 |
.wp-adminify #wpbody-content .health-check-body .health-check-accordion .health-check-accordion-heading button { |
| 12977 |
background-color: transparent; |
| 12978 |
border: 0; |
| 12979 |
-webkit-box-shadow: none; |
| 12980 |
box-shadow: none; |
| 12981 |
color: #4E4B66; |
| 12982 |
font-size: 14px; |
| 12983 |
font-weight: 600; |
| 12984 |
line-height: 20px; |
| 12985 |
padding: 15px 2.5rem 15px 15px; |
| 12986 |
} |
| 12987 |
.wp-adminify #wpbody-content .health-check-body .health-check-accordion .health-check-accordion-heading button:hover, .wp-adminify #wpbody-content .health-check-body .health-check-accordion .health-check-accordion-heading button:focus { |
| 12988 |
background-color: transparent; |
| 12989 |
border: 0; |
| 12990 |
outline: 0; |
| 12991 |
} |
| 12992 |
.wp-adminify #wpbody-content .health-check-body .health-check-accordion .health-check-accordion-heading button .title { |
| 12993 |
color: #4E4B66; |
| 12994 |
font-size: 15px; |
| 12995 |
font-weight: 600; |
| 12996 |
margin-bottom: 0; |
| 12997 |
} |
| 12998 |
.wp-adminify #wpbody-content .health-check-body .health-check-accordion .health-check-accordion-heading button .badge { |
| 12999 |
border: 0; |
| 13000 |
color: var(--adminify-text-color); |
| 13001 |
font-size: 13px; |
| 13002 |
font-weight: 600; |
| 13003 |
line-height: 20px; |
| 13004 |
padding: 3px 10px; |
| 13005 |
} |
| 13006 |
.wp-adminify #wpbody-content .health-check-body .health-check-accordion .health-check-accordion-heading button .badge.blue { |
| 13007 |
background-color: var(--adminify-btn-bg); |
| 13008 |
} |
| 13009 |
.wp-adminify #wpbody-content .health-check-body .health-check-accordion .health-check-accordion-heading button .icon { |
| 13010 |
height: 6px; |
| 13011 |
width: 6px; |
| 13012 |
} |
| 13013 |
.wp-adminify #wpbody-content .health-check-body .health-check-accordion .health-check-accordion-panel { |
| 13014 |
margin: -1rem 0 1rem; |
| 13015 |
} |
| 13016 |
.wp-adminify #wpbody-content .health-check-body .health-check-accordion .health-check-accordion-panel p .dashicons { |
| 13017 |
font-size: 16px; |
| 13018 |
} |
| 13019 |
.wp-adminify #wpbody-content .health-check-body .health-check-accordion .health-check-accordion-panel .health-check-table { |
| 13020 |
border: 1px solid #F1F1F3; |
| 13021 |
-webkit-border-radius: 6px; |
| 13022 |
border-radius: 6px; |
| 13023 |
-webkit-box-shadow: none; |
| 13024 |
box-shadow: none; |
| 13025 |
} |
| 13026 |
.wp-adminify #wpbody-content .health-check-body .health-check-accordion .health-check-accordion-panel .health-check-table tbody tr:first-child td:first-child { |
| 13027 |
-webkit-border-top-left-radius: 6px; |
| 13028 |
border-top-left-radius: 6px; |
| 13029 |
} |
| 13030 |
.wp-adminify #wpbody-content .health-check-body .health-check-accordion .health-check-accordion-panel .health-check-table tbody tr:first-child td:last-child { |
| 13031 |
-webkit-border-top-right-radius: 6px; |
| 13032 |
border-top-right-radius: 6px; |
| 13033 |
} |
| 13034 |
.wp-adminify #wpbody-content .health-check-body .health-check-accordion .health-check-accordion-panel .health-check-table tbody tr:last-child td:first-child { |
| 13035 |
-webkit-border-bottom-left-radius: 6px; |
| 13036 |
border-bottom-left-radius: 6px; |
| 13037 |
} |
| 13038 |
.wp-adminify #wpbody-content .health-check-body .health-check-accordion .health-check-accordion-panel .health-check-table tbody tr:last-child td:last-child { |
| 13039 |
-webkit-border-bottom-right-radius: 6px; |
| 13040 |
border-bottom-right-radius: 6px; |
| 13041 |
} |
| 13042 |
.wp-adminify #wpbody-content .health-check-body .health-check-accordion .health-check-table { |
| 13043 |
border: 1px solid #D8D8D8; |
| 13044 |
-webkit-box-shadow: none; |
| 13045 |
box-shadow: none; |
| 13046 |
} |
| 13047 |
.wp-adminify #wpbody-content .health-check-body .health-check-accordion .health-check-table td, |
| 13048 |
.wp-adminify #wpbody-content .health-check-body .health-check-accordion .health-check-table th { |
| 13049 |
color: #000; |
| 13050 |
font-size: 12px; |
| 13051 |
font-weight: 400; |
| 13052 |
line-height: 16px; |
| 13053 |
} |
| 13054 |
.wp-adminify #wpbody-content .health-check-body .health-check-accordion .health-check-table tbody > :nth-child(odd) { |
| 13055 |
background-color: #FFFDF1; |
| 13056 |
} |
| 13057 |
.wp-adminify #wpbody-content .health-check-body code, |
| 13058 |
.wp-adminify #wpbody-content .health-check-body kbd { |
| 13059 |
background-color: var(--adminify-preset-background); |
| 13060 |
font-size: 12px; |
| 13061 |
font-weight: 400; |
| 13062 |
} |
| 13063 |
.wp-adminify #wpbody-content .health-check-body .site-health-view-passed:hover .icon { |
| 13064 |
border-color: var(--adminify-btn-bg); |
| 13065 |
} |
| 13066 |
.wp-adminify #wpbody-content .health-check-body .site-health-view-passed .icon { |
| 13067 |
border-color: var(--adminify-text-color); |
| 13068 |
height: 6px; |
| 13069 |
width: 6px; |
| 13070 |
right: 14px; |
| 13071 |
} |
| 13072 |
.wp-adminify #wpbody-content .health-check-body .site-health-view-more button.site-health-view-passed { |
| 13073 |
padding-right: 1.75rem !important; |
| 13074 |
} |
| 13075 |
.wp-adminify #wpbody-content .wp-privacy-request-form-field .form-table th, |
| 13076 |
.wp-adminify #wpbody-content .wp-privacy-request-form-field .form-table td { |
| 13077 |
color: #14142B; |
| 13078 |
font-size: 14px; |
| 13079 |
font-weight: 400; |
| 13080 |
line-height: 20px; |
| 13081 |
} |
| 13082 |
.wp-adminify.import-php #wpbody-content p, |
| 13083 |
.wp-adminify.import-php #wpbody-content .importer-desc, .wp-adminify.export-personal-data-php #wpbody-content p, |
| 13084 |
.wp-adminify.export-personal-data-php #wpbody-content .importer-desc { |
| 13085 |
color: #000; |
| 13086 |
} |
| 13087 |
.wp-adminify.export-personal-data-php #wpbody-content h2, .wp-adminify.erase-personal-data-php #wpbody-content h2 { |
| 13088 |
color: #000; |
| 13089 |
} |
| 13090 |
.wp-adminify.export-personal-data-php #wpbody-content input[type=text], .wp-adminify.erase-personal-data-php #wpbody-content input[type=text] { |
| 13091 |
background-color: var(--adminify-text-color); |
| 13092 |
border: 1px solid #F1F1F3; |
| 13093 |
} |
| 13094 |
.wp-adminify.export-php #wpbody-content p { |
| 13095 |
color: #000; |
| 13096 |
} |
| 13097 |
.wp-adminify.export-php #wpbody-content #export-filters input[type=radio] { |
| 13098 |
background-color: var(--adminify-text-color); |
| 13099 |
margin-top: -3px; |
| 13100 |
} |
| 13101 |
.wp-adminify #wpbody-content .form-table th { |
| 13102 |
color: #14142B; |
| 13103 |
font-size: 14px; |
| 13104 |
font-weight: 600; |
| 13105 |
line-height: 20px; |
| 13106 |
} |
| 13107 |
.wp-adminify #wpbody-content .form-table select { |
| 13108 |
color: #14142B; |
| 13109 |
padding-right: 25px; |
| 13110 |
} |
| 13111 |
.wp-adminify #wpbody-content .form-table td .description { |
| 13112 |
color: #4E4B66; |
| 13113 |
font-size: 13px; |
| 13114 |
font-weight: 400; |
| 13115 |
line-height: 16px; |
| 13116 |
margin-top: 10px; |
| 13117 |
} |
| 13118 |
.wp-adminify #wpbody-content .form-table td label { |
| 13119 |
color: #000; |
| 13120 |
font-size: 14px; |
| 13121 |
font-weight: 400; |
| 13122 |
line-height: 20px; |
| 13123 |
} |
| 13124 |
.wp-adminify #wpbody-content .form-table td label .avatar { |
| 13125 |
height: 36px; |
| 13126 |
width: 36px; |
| 13127 |
margin-right: 10px; |
| 13128 |
} |
| 13129 |
.wp-adminify #wpbody-content .form-table td code { |
| 13130 |
background-color: var(--adminify-preset-background); |
| 13131 |
color: var(--adminify-notif-bg-color); |
| 13132 |
font-size: 12px; |
| 13133 |
font-weight: 400; |
| 13134 |
line-height: 16px; |
| 13135 |
} |
| 13136 |
.wp-adminify #wpbody-content .form-table td p { |
| 13137 |
font-size: 14px; |
| 13138 |
font-weight: 400; |
| 13139 |
} |
| 13140 |
.wp-adminify #wpbody-content .form-table td p #utc-time { |
| 13141 |
font-size: 12px; |
| 13142 |
} |
| 13143 |
.wp-adminify #wpbody-content .form-table td p strong { |
| 13144 |
font-weight: 400; |
| 13145 |
} |
| 13146 |
.wp-adminify #wpbody-content .form-table td p .example { |
| 13147 |
color: rgba(78, 75, 102, 0.72); |
| 13148 |
} |
| 13149 |
.wp-adminify #wpbody-content .form-table.permalink-structure td code { |
| 13150 |
background-color: var(--adminify-preset-background); |
| 13151 |
color: #14142B; |
| 13152 |
font-size: 12px; |
| 13153 |
font-weight: 400; |
| 13154 |
line-height: 16px; |
| 13155 |
padding: 3px; |
| 13156 |
} |
| 13157 |
.wp-adminify #wpbody-content .form-table.permalink-structure td input.code { |
| 13158 |
background-color: #F1F1F3; |
| 13159 |
color: #14142B; |
| 13160 |
} |
| 13161 |
.wp-adminify #wpbody-content .form-table.permalink-structure .available-structure-tags button { |
| 13162 |
background-color: var(--adminify-text-color); |
| 13163 |
border-color: rgba(78, 75, 102, 0.72); |
| 13164 |
-webkit-box-shadow: none; |
| 13165 |
box-shadow: none; |
| 13166 |
color: rgba(78, 75, 102, 0.72); |
| 13167 |
} |
| 13168 |
.wp-adminify #wpbody-content .form-table.permalink-structure .available-structure-tags button.active { |
| 13169 |
background-color: var(--adminify-text-color); |
| 13170 |
border: 1px solid var(--adminify-btn-bg); |
| 13171 |
color: var(--adminify-btn-bg); |
| 13172 |
} |
| 13173 |
.wp-adminify #wpbody-content .small-text { |
| 13174 |
min-width: inherit; |
| 13175 |
width: auto; |
| 13176 |
} |
| 13177 |
.wp-adminify #wpbody-content .privacy-settings-header { |
| 13178 |
background-color: inherit; |
| 13179 |
border-bottom-color: var(--adminify-preset-background); |
| 13180 |
margin: 0; |
| 13181 |
} |
| 13182 |
.wp-adminify #wpbody-content .privacy-settings-header .privacy-settings-tab { |
| 13183 |
border: 0; |
| 13184 |
color: #4E4B66; |
| 13185 |
font-size: 14px; |
| 13186 |
font-weight: 600; |
| 13187 |
line-height: 20px; |
| 13188 |
} |
| 13189 |
.wp-adminify #wpbody-content .privacy-settings-header .privacy-settings-tab.active { |
| 13190 |
-webkit-box-shadow: inset 0 -3px var(--adminify-btn-bg); |
| 13191 |
box-shadow: inset 0 -3px var(--adminify-btn-bg); |
| 13192 |
} |
| 13193 |
.wp-adminify #wpbody-content .privacy-settings-header .privacy-settings-tab:focus { |
| 13194 |
border: 0; |
| 13195 |
outline: 0; |
| 13196 |
} |
| 13197 |
.wp-adminify #wpbody-content .privacy-settings-body { |
| 13198 |
background-color: var(--adminify-text-color); |
| 13199 |
border: 0; |
| 13200 |
-webkit-box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 13201 |
box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 13202 |
-webkit-border-radius: 8px; |
| 13203 |
border-radius: 8px; |
| 13204 |
padding: 0 1.5rem 11px; |
| 13205 |
margin-top: 1.5rem; |
| 13206 |
max-width: inherit; |
| 13207 |
width: -webkit-calc(100% - 8%); |
| 13208 |
width: calc(100% - 8%); |
| 13209 |
} |
| 13210 |
.wp-adminify #wpbody-content .privacy-settings-body h2 { |
| 13211 |
color: #000; |
| 13212 |
display: inline-block; |
| 13213 |
width: 100%; |
| 13214 |
} |
| 13215 |
.wp-adminify #wpbody-content .privacy-settings-body p { |
| 13216 |
color: #000; |
| 13217 |
font-size: 14px; |
| 13218 |
line-height: 20px; |
| 13219 |
} |
| 13220 |
.wp-adminify #wpbody-content .privacy-settings-body select { |
| 13221 |
background-color: #F1F1F3; |
| 13222 |
} |
| 13223 |
.wp-adminify #wpbody-content .privacy-settings-body .privacy-settings-accordion { |
| 13224 |
border: 0; |
| 13225 |
} |
| 13226 |
.wp-adminify #wpbody-content .privacy-settings-body .privacy-settings-accordion .privacy-settings-accordion-heading { |
| 13227 |
margin-bottom: 1rem; |
| 13228 |
} |
| 13229 |
.wp-adminify #wpbody-content .privacy-settings-body .privacy-settings-accordion .privacy-settings-accordion-heading button { |
| 13230 |
background-color: transparent; |
| 13231 |
border: 0; |
| 13232 |
-webkit-box-shadow: none; |
| 13233 |
box-shadow: none; |
| 13234 |
color: #4E4B66; |
| 13235 |
font-size: 14px; |
| 13236 |
font-weight: 600; |
| 13237 |
line-height: 20px; |
| 13238 |
padding: 14px 1rem; |
| 13239 |
} |
| 13240 |
.wp-adminify #wpbody-content .privacy-settings-body .privacy-settings-accordion .privacy-settings-accordion-heading button:hover, .wp-adminify #wpbody-content .privacy-settings-body .privacy-settings-accordion .privacy-settings-accordion-heading button:focus { |
| 13241 |
background-color: transparent; |
| 13242 |
border: 0; |
| 13243 |
outline: 0; |
| 13244 |
} |
| 13245 |
.wp-adminify #wpbody-content .privacy-settings-body .privacy-settings-accordion .privacy-settings-accordion-heading button .title { |
| 13246 |
color: #4E4B66; |
| 13247 |
font-size: 16px; |
| 13248 |
font-weight: 700; |
| 13249 |
margin-bottom: 0; |
| 13250 |
} |
| 13251 |
.wp-adminify #wpbody-content .privacy-settings-body .privacy-settings-accordion .privacy-settings-accordion-heading button .badge { |
| 13252 |
border: 0; |
| 13253 |
color: var(--adminify-text-color); |
| 13254 |
font-size: 13px; |
| 13255 |
font-weight: 600; |
| 13256 |
line-height: 20px; |
| 13257 |
padding: 3px 10px; |
| 13258 |
} |
| 13259 |
.wp-adminify #wpbody-content .privacy-settings-body .privacy-settings-accordion .privacy-settings-accordion-heading button .badge.blue { |
| 13260 |
background-color: var(--adminify-btn-bg); |
| 13261 |
} |
| 13262 |
.wp-adminify #wpbody-content .privacy-settings-body .privacy-settings-accordion .privacy-settings-accordion-heading button .icon { |
| 13263 |
height: 7px; |
| 13264 |
width: 7px; |
| 13265 |
} |
| 13266 |
.wp-adminify #wpbody-content .privacy-settings-body .privacy-settings-accordion .privacy-settings-accordion-panel { |
| 13267 |
-webkit-border-top-left-radius: 0; |
| 13268 |
border-top-left-radius: 0; |
| 13269 |
-webkit-border-top-right-radius: 0; |
| 13270 |
border-top-right-radius: 0; |
| 13271 |
margin: -15px 0 1rem; |
| 13272 |
} |
| 13273 |
.wp-adminify #wpbody-content .privacy-settings-body .privacy-settings-accordion .privacy-settings-accordion-panel p { |
| 13274 |
color: #4E4B66; |
| 13275 |
} |
| 13276 |
.wp-adminify #wpbody-content .privacy-settings-body .privacy-settings-accordion .privacy-settings-accordion-panel p .dashicons { |
| 13277 |
font-size: 16px; |
| 13278 |
} |
| 13279 |
.wp-adminify #wpbody-content .privacy-settings-body .privacy-settings-accordion .health-check-table { |
| 13280 |
border: 1px solid #D8D8D8; |
| 13281 |
-webkit-box-shadow: none; |
| 13282 |
box-shadow: none; |
| 13283 |
} |
| 13284 |
.wp-adminify #wpbody-content .privacy-settings-body .privacy-settings-accordion .health-check-table td, |
| 13285 |
.wp-adminify #wpbody-content .privacy-settings-body .privacy-settings-accordion .health-check-table th { |
| 13286 |
color: #000; |
| 13287 |
font-size: 12px; |
| 13288 |
font-weight: 400; |
| 13289 |
line-height: 16px; |
| 13290 |
} |
| 13291 |
.wp-adminify #wpbody-content .privacy-settings-body .privacy-settings-accordion .health-check-table tbody > :nth-child(odd) { |
| 13292 |
background-color: #FFFDF1; |
| 13293 |
} |
| 13294 |
.wp-adminify #wpbody-content .tools-privacy-policy-page td { |
| 13295 |
padding: 0; |
| 13296 |
} |
| 13297 |
.wp-adminify #wpbody-content .tools-privacy-policy-page form { |
| 13298 |
background-color: transparent; |
| 13299 |
-webkit-box-shadow: none; |
| 13300 |
box-shadow: none; |
| 13301 |
margin-bottom: 0; |
| 13302 |
} |
| 13303 |
.wp-adminify.options-privacy-php #wpbody-content .notice { |
| 13304 |
margin: 0 30px 20px; |
| 13305 |
} |
| 13306 |
.wp-adminify.options-general-php #wpbody-content form, .wp-adminify.options-writing-php #wpbody-content form, .wp-adminify.options-reading-php #wpbody-content form, .wp-adminify.options-discussion-php #wpbody-content form, .wp-adminify.options-media-php #wpbody-content form, .wp-adminify.options-permalink-php #wpbody-content form { |
| 13307 |
padding: 0 1.5rem 11px; |
| 13308 |
padding-top: 1rem; |
| 13309 |
} |
| 13310 |
.wp-adminify.options-general-php #wpbody-content form p, .wp-adminify.options-writing-php #wpbody-content form p, .wp-adminify.options-reading-php #wpbody-content form p, .wp-adminify.options-discussion-php #wpbody-content form p, .wp-adminify.options-media-php #wpbody-content form p, .wp-adminify.options-permalink-php #wpbody-content form p { |
| 13311 |
color: #000; |
| 13312 |
} |
| 13313 |
.wp-adminify.options-general-php #wpbody-content form table, .wp-adminify.options-writing-php #wpbody-content form table, .wp-adminify.options-reading-php #wpbody-content form table, .wp-adminify.options-discussion-php #wpbody-content form table, .wp-adminify.options-media-php #wpbody-content form table, .wp-adminify.options-permalink-php #wpbody-content form table { |
| 13314 |
margin-top: 0; |
| 13315 |
} |
| 13316 |
.wp-adminify.options-general-php #wpbody-content form table p, .wp-adminify.options-writing-php #wpbody-content form table p, .wp-adminify.options-reading-php #wpbody-content form table p, .wp-adminify.options-discussion-php #wpbody-content form table p, .wp-adminify.options-media-php #wpbody-content form table p, .wp-adminify.options-permalink-php #wpbody-content form table p { |
| 13317 |
color: rgba(78, 75, 102, 0.72); |
| 13318 |
} |
| 13319 |
.wp-adminify.options-general-php #wpbody-content form table p strong, .wp-adminify.options-writing-php #wpbody-content form table p strong, .wp-adminify.options-reading-php #wpbody-content form table p strong, .wp-adminify.options-discussion-php #wpbody-content form table p strong, .wp-adminify.options-media-php #wpbody-content form table p strong, .wp-adminify.options-permalink-php #wpbody-content form table p strong { |
| 13320 |
color: #000; |
| 13321 |
} |
| 13322 |
.wp-adminify.options-general-php #wpbody-content form table #utc-time, .wp-adminify.options-writing-php #wpbody-content form table #utc-time, .wp-adminify.options-reading-php #wpbody-content form table #utc-time, .wp-adminify.options-discussion-php #wpbody-content form table #utc-time, .wp-adminify.options-media-php #wpbody-content form table #utc-time, .wp-adminify.options-permalink-php #wpbody-content form table #utc-time { |
| 13323 |
color: #000; |
| 13324 |
} |
| 13325 |
.wp-adminify.options-general-php #wpbody-content form table input, |
| 13326 |
.wp-adminify.options-general-php #wpbody-content form table textarea, |
| 13327 |
.wp-adminify.options-general-php #wpbody-content form table select, .wp-adminify.options-writing-php #wpbody-content form table input, |
| 13328 |
.wp-adminify.options-writing-php #wpbody-content form table textarea, |
| 13329 |
.wp-adminify.options-writing-php #wpbody-content form table select, .wp-adminify.options-reading-php #wpbody-content form table input, |
| 13330 |
.wp-adminify.options-reading-php #wpbody-content form table textarea, |
| 13331 |
.wp-adminify.options-reading-php #wpbody-content form table select, .wp-adminify.options-discussion-php #wpbody-content form table input, |
| 13332 |
.wp-adminify.options-discussion-php #wpbody-content form table textarea, |
| 13333 |
.wp-adminify.options-discussion-php #wpbody-content form table select, .wp-adminify.options-media-php #wpbody-content form table input, |
| 13334 |
.wp-adminify.options-media-php #wpbody-content form table textarea, |
| 13335 |
.wp-adminify.options-media-php #wpbody-content form table select, .wp-adminify.options-permalink-php #wpbody-content form table input, |
| 13336 |
.wp-adminify.options-permalink-php #wpbody-content form table textarea, |
| 13337 |
.wp-adminify.options-permalink-php #wpbody-content form table select { |
| 13338 |
background-color: #F1F1F3; |
| 13339 |
} |
| 13340 |
.wp-adminify.options-general-php #wpbody-content form table input[type=radio], |
| 13341 |
.wp-adminify.options-general-php #wpbody-content form table input[type=checkbox], .wp-adminify.options-writing-php #wpbody-content form table input[type=radio], |
| 13342 |
.wp-adminify.options-writing-php #wpbody-content form table input[type=checkbox], .wp-adminify.options-reading-php #wpbody-content form table input[type=radio], |
| 13343 |
.wp-adminify.options-reading-php #wpbody-content form table input[type=checkbox], .wp-adminify.options-discussion-php #wpbody-content form table input[type=radio], |
| 13344 |
.wp-adminify.options-discussion-php #wpbody-content form table input[type=checkbox], .wp-adminify.options-media-php #wpbody-content form table input[type=radio], |
| 13345 |
.wp-adminify.options-media-php #wpbody-content form table input[type=checkbox], .wp-adminify.options-permalink-php #wpbody-content form table input[type=radio], |
| 13346 |
.wp-adminify.options-permalink-php #wpbody-content form table input[type=checkbox] { |
| 13347 |
background-color: var(--adminify-text-color); |
| 13348 |
} |
| 13349 |
.wp-adminify.options-discussion-php #wpbody-content .form-table input[type=checkbox], .wp-adminify.options-media-php #wpbody-content .form-table input[type=checkbox] { |
| 13350 |
background-color: var(--adminify-text-color); |
| 13351 |
border: 1px solid rgba(78, 75, 102, 0.54); |
| 13352 |
-webkit-border-radius: 4px; |
| 13353 |
border-radius: 4px; |
| 13354 |
height: 14px; |
| 13355 |
width: 14px; |
| 13356 |
position: relative; |
| 13357 |
} |
| 13358 |
.wp-adminify.options-discussion-php #wpbody-content .form-table input[type=checkbox]:checked, .wp-adminify.options-media-php #wpbody-content .form-table input[type=checkbox]:checked { |
| 13359 |
background-color: var(--adminify-btn-bg); |
| 13360 |
border-color: var(--adminify-btn-bg); |
| 13361 |
color: var(--adminify-text-color); |
| 13362 |
} |
| 13363 |
.wp-adminify.options-discussion-php #wpbody-content .form-table input[type=checkbox]:checked:before, .wp-adminify.options-media-php #wpbody-content .form-table input[type=checkbox]:checked:before { |
| 13364 |
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%233582c4%27%2F%3E%3C%2Fsvg%3E"); |
| 13365 |
background-color: transparent; |
| 13366 |
-webkit-filter: brightness(0) invert(1); |
| 13367 |
filter: brightness(0) invert(1); |
| 13368 |
height: 16px; |
| 13369 |
width: 16px; |
| 13370 |
top: -2px; |
| 13371 |
left: -2px; |
| 13372 |
margin: 0; |
| 13373 |
position: inherit; |
| 13374 |
} |
| 13375 |
.wp-adminify body.wp-adminify { |
| 13376 |
--adminify-text-color: #fff; |
| 13377 |
} |
| 13378 |
.wp-adminify body.wp-adminify { |
| 13379 |
--adminify-text-color: #fff; |
| 13380 |
} |
| 13381 |
.wp-adminify #adminmenu, |
| 13382 |
.wp-adminify #adminmenuback, |
| 13383 |
.wp-adminify #adminmenuwrap { |
| 13384 |
background-color: var(--adminify-menu-bg); |
| 13385 |
top: 0; |
| 13386 |
bottom: 0; |
| 13387 |
width: 15.25rem; |
| 13388 |
} |
| 13389 |
.wp-adminify #adminmenu { |
| 13390 |
margin-top: 66px; |
| 13391 |
} |
| 13392 |
.wp-adminify #adminmenuback { |
| 13393 |
-webkit-box-shadow: 0 0 24px rgba(0, 0, 0, 0.05); |
| 13394 |
box-shadow: 0 0 24px rgba(0, 0, 0, 0.05); |
| 13395 |
position: absolute; |
| 13396 |
} |
| 13397 |
.wp-adminify #adminmenumain #adminmenuwrap { |
| 13398 |
top: 0 !important; |
| 13399 |
bottom: inherit; |
| 13400 |
position: relative !important; |
| 13401 |
} |
| 13402 |
.wp-adminify #adminmenu #collapse-menu { |
| 13403 |
display: none; |
| 13404 |
} |
| 13405 |
.wp-adminify #adminmenu .wp_adminify_admin-menu-top .wp_adminify_user .wp_adminify_user-avatar img { |
| 13406 |
height: 81px; |
| 13407 |
width: 81px; |
| 13408 |
margin: 0 auto 0.625rem; |
| 13409 |
} |
| 13410 |
.wp-adminify #adminmenu .wp_adminify_admin-menu-top .wp_adminify_user .wp_adminify_user-details .wp_adminify_user-name { |
| 13411 |
color: var(--adminify-text-color); |
| 13412 |
font-size: 18px; |
| 13413 |
font-weight: 700; |
| 13414 |
line-height: 20px; |
| 13415 |
margin: 0; |
| 13416 |
} |
| 13417 |
.wp-adminify #adminmenu .wp_adminify_admin-menu-top .wp_adminify_user .wp_adminify_user-details .wp_adminify_user-name a { |
| 13418 |
color: var(--adminify-text-color); |
| 13419 |
font-size: 18px; |
| 13420 |
line-height: 20px; |
| 13421 |
padding: 0; |
| 13422 |
} |
| 13423 |
.wp-adminify #adminmenu .wp_adminify_admin-menu-top .wp_adminify_user .wp_adminify_user-details .wp_adminify_user-url { |
| 13424 |
color: var(--adminify-text-color); |
| 13425 |
font-size: 14px; |
| 13426 |
font-weight: 400; |
| 13427 |
line-height: 16px; |
| 13428 |
} |
| 13429 |
.wp-adminify #adminmenu .wp_adminify_admin-menu-top .wp_adminify_user .wp_adminify_user-details .wp_adminify_user-url a { |
| 13430 |
color: var(--adminify-text-color); |
| 13431 |
font-size: 14px; |
| 13432 |
font-weight: 400; |
| 13433 |
line-height: 20px; |
| 13434 |
padding: 0; |
| 13435 |
} |
| 13436 |
.wp-adminify #adminmenu .wp_adminify_admin-menu-top .wp_adminify_user .wp_adminify_user-details + .wp_adminify_user-actions { |
| 13437 |
margin-top: 1rem; |
| 13438 |
} |
| 13439 |
.wp-adminify #adminmenu .wp_adminify_admin-menu-top .wp_adminify_user .wp_adminify_user-details .logout { |
| 13440 |
background-color: var(--adminify-notif-bg-color); |
| 13441 |
-webkit-border-radius: 3px; |
| 13442 |
border-radius: 3px; |
| 13443 |
color: var(--adminify-text-color); |
| 13444 |
display: inline-block; |
| 13445 |
font-size: 12px; |
| 13446 |
line-height: 20px; |
| 13447 |
padding: 0 0.625rem; |
| 13448 |
} |
| 13449 |
.wp-adminify #adminmenu .wp_adminify_admin-menu-top .wp_adminify_user .wp_adminify_user-actions a { |
| 13450 |
color: var(--adminify-btn-bg); |
| 13451 |
display: inline-block; |
| 13452 |
font-size: 16px; |
| 13453 |
padding: 0 5px; |
| 13454 |
width: auto; |
| 13455 |
} |
| 13456 |
.wp-adminify #adminmenu ul:hover, .wp-adminify #adminmenu ul:focus, .wp-adminify #adminmenu ul:focus-visible, .wp-adminify #adminmenu ul:focus-within, |
| 13457 |
.wp-adminify #adminmenu ul li:hover, |
| 13458 |
.wp-adminify #adminmenu ul li:focus, |
| 13459 |
.wp-adminify #adminmenu ul li:focus-visible, |
| 13460 |
.wp-adminify #adminmenu ul li:focus-within, |
| 13461 |
.wp-adminify #adminmenu ol:hover, |
| 13462 |
.wp-adminify #adminmenu ol:focus, |
| 13463 |
.wp-adminify #adminmenu ol:focus-visible, |
| 13464 |
.wp-adminify #adminmenu ol:focus-within, |
| 13465 |
.wp-adminify #adminmenu ol li:hover, |
| 13466 |
.wp-adminify #adminmenu ol li:focus, |
| 13467 |
.wp-adminify #adminmenu ol li:focus-visible, |
| 13468 |
.wp-adminify #adminmenu ol li:focus-within { |
| 13469 |
outline: 0; |
| 13470 |
} |
| 13471 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li { |
| 13472 |
min-height: inherit; |
| 13473 |
} |
| 13474 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top:hover, .wp-adminify #adminmenu .wp_adminify_admin-menu li.opensub > a.menu-top, |
| 13475 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li > a.menu-top:focus { |
| 13476 |
background-color: transparent; |
| 13477 |
color: var(--adminify-btn-bg); |
| 13478 |
} |
| 13479 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.wp-has-current-submenu .wp-submenu, .wp-adminify #adminmenu .wp_adminify_admin-menu li.wp-has-current-submenu .wp-submenu.sub-open, .wp-adminify #adminmenu .wp_adminify_admin-menu li.wp-has-current-submenu.opensub .wp-submenu, |
| 13480 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li a.wp-has-current-submenu:focus + .wp-submenu, .wp-adminify #adminmenu .wp_adminify_admin-menu li.wp-has-current-submenu:hover .wp-submenu { |
| 13481 |
background-color: var(--adminify-menu-bg); |
| 13482 |
color: rgba(78, 75, 102, 0.72); |
| 13483 |
} |
| 13484 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li a { |
| 13485 |
font-size: 14px; |
| 13486 |
-webkit-transition: none; |
| 13487 |
-o-transition: none; |
| 13488 |
transition: none; |
| 13489 |
} |
| 13490 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li a:hover { |
| 13491 |
background-color: transparent; |
| 13492 |
} |
| 13493 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.wp-adminify-parent a { |
| 13494 |
position: relative; |
| 13495 |
} |
| 13496 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.wp-adminify-parent a:after { |
| 13497 |
content: "\e605"; |
| 13498 |
border: 0; |
| 13499 |
font-family: "simple-line-icons"; |
| 13500 |
font-size: 8px; |
| 13501 |
height: 10px; |
| 13502 |
width: 10px; |
| 13503 |
line-height: 10px; |
| 13504 |
right: 20px; |
| 13505 |
top: 50%; |
| 13506 |
margin-top: -5px; |
| 13507 |
position: absolute; |
| 13508 |
text-align: right; |
| 13509 |
} |
| 13510 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top { |
| 13511 |
padding: 5px 0; |
| 13512 |
} |
| 13513 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top > a.menu-top { |
| 13514 |
font-weight: 600; |
| 13515 |
padding: 0 22px 0 1.125rem; |
| 13516 |
} |
| 13517 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top > a.menu-top:hover { |
| 13518 |
color: var(--adminify-btn-bg); |
| 13519 |
} |
| 13520 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top > a.menu-top:hover .wp-adminify-icon-button:before { |
| 13521 |
color: var(--adminify-btn-bg); |
| 13522 |
} |
| 13523 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top > a.menu-top .wp-adminify-icon-button { |
| 13524 |
background-repeat: no-repeat; |
| 13525 |
background-size: 18px; |
| 13526 |
float: left; |
| 13527 |
font-size: 18px; |
| 13528 |
height: 18px; |
| 13529 |
width: 18px; |
| 13530 |
margin: 9px 12px 0 0; |
| 13531 |
} |
| 13532 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top > a.menu-top .wp-adminify-icon-button svg { |
| 13533 |
width: 18px; |
| 13534 |
height: 18px; |
| 13535 |
position: absolute; |
| 13536 |
} |
| 13537 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top > a.menu-top .wp-adminify-icon-button svg path { |
| 13538 |
fill: var(--adminify-admin-bar-icon); |
| 13539 |
} |
| 13540 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top > a.menu-top .wp-adminify-icon-button:before { |
| 13541 |
color: var(--adminify-admin-bar-icon); |
| 13542 |
font-size: 18px; |
| 13543 |
margin: 0; |
| 13544 |
padding: 0; |
| 13545 |
} |
| 13546 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top > a.menu-top .wp-adminify-icon-button.fa:before, .wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top > a.menu-top .wp-adminify-icon-button.far:before, .wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top > a.menu-top .wp-adminify-icon-button.fas:before { |
| 13547 |
font-family: "Font Awesome 5 Free"; |
| 13548 |
font-weight: 900; |
| 13549 |
font-size: 16px; |
| 13550 |
} |
| 13551 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top > a.menu-top .wp-adminify-icon-button.far:before { |
| 13552 |
font-family: "Font Awesome 5 Free"; |
| 13553 |
font-weight: 400; |
| 13554 |
} |
| 13555 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top > a.menu-top .wp-adminify-icon-button.fab:before { |
| 13556 |
font-family: "Font Awesome 5 Brands"; |
| 13557 |
font-weight: 400; |
| 13558 |
font-size: 16px; |
| 13559 |
} |
| 13560 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top > a.menu-top.current { |
| 13561 |
background-color: transparent; |
| 13562 |
color: var(--adminify-btn-bg); |
| 13563 |
} |
| 13564 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top.wp-adminify-active { |
| 13565 |
background-color: rgba(var(--adminify-menu-bg), 0.05) !important; |
| 13566 |
} |
| 13567 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top.wp-adminify-active > a .wp-adminify-icon-button svg path { |
| 13568 |
fill: var(--adminify-btn-bg); |
| 13569 |
} |
| 13570 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top.wp-adminify-active > a .wp-adminify-icon-button:before { |
| 13571 |
color: var(--adminify-btn-bg); |
| 13572 |
} |
| 13573 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top.wp-adminify-active > a:before { |
| 13574 |
content: ""; |
| 13575 |
background-color: var(--adminify-btn-bg); |
| 13576 |
-webkit-border-top-right-radius: 2px; |
| 13577 |
border-top-right-radius: 2px; |
| 13578 |
-webkit-border-bottom-right-radius: 2px; |
| 13579 |
border-bottom-right-radius: 2px; |
| 13580 |
height: 18px; |
| 13581 |
width: 2px; |
| 13582 |
left: 0; |
| 13583 |
top: 50%; |
| 13584 |
margin-top: -9px; |
| 13585 |
position: absolute; |
| 13586 |
} |
| 13587 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top.wp-adminify-active > a .wp-adminify-icon-image:not(.wp-menu-image) { |
| 13588 |
-webkit-filter: none; |
| 13589 |
filter: none; |
| 13590 |
} |
| 13591 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top.wp-adminify-active.wp-adminify-parent > a:after { |
| 13592 |
content: "\e604"; |
| 13593 |
} |
| 13594 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top.wp-adminify-active .wp-submenu { |
| 13595 |
display: block; |
| 13596 |
opacity: 1; |
| 13597 |
} |
| 13598 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top .wp-submenu { |
| 13599 |
background-color: var(--adminify-menu-bg); |
| 13600 |
-webkit-box-shadow: none; |
| 13601 |
box-shadow: none; |
| 13602 |
display: none; |
| 13603 |
top: 100%; |
| 13604 |
left: 0; |
| 13605 |
opacity: 0; |
| 13606 |
padding: 0 0 7px 2.4rem; |
| 13607 |
position: relative; |
| 13608 |
width: 100%; |
| 13609 |
-webkit-transition: opacity 0.4s; |
| 13610 |
-o-transition: opacity 0.4s; |
| 13611 |
transition: opacity 0.4s; |
| 13612 |
} |
| 13613 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top .wp-submenu li { |
| 13614 |
padding: 1px 0; |
| 13615 |
} |
| 13616 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top .wp-submenu li a { |
| 13617 |
color: var(--adminify-menu-text-color); |
| 13618 |
font-weight: 600; |
| 13619 |
line-height: 30px; |
| 13620 |
padding: 0 10px; |
| 13621 |
} |
| 13622 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top .wp-submenu li a.current, .wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top .wp-submenu li a:hover, .wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top .wp-submenu li a.wp-adminify-active { |
| 13623 |
background-color: var(--adminify-btn-bg); |
| 13624 |
-webkit-border-radius: 5px; |
| 13625 |
border-radius: 5px; |
| 13626 |
color: var(--adminify-text-color); |
| 13627 |
} |
| 13628 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top .wp-submenu li a.wp-adminify-active:before { |
| 13629 |
display: none; |
| 13630 |
} |
| 13631 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top .wp-submenu li a:after { |
| 13632 |
display: none; |
| 13633 |
} |
| 13634 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top .wp-submenu li a .awaiting-mod, |
| 13635 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top .wp-submenu li a .update-plugins { |
| 13636 |
right: -5px; |
| 13637 |
} |
| 13638 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top:hover > a.menu-top .wp-adminify-icon-button svg path { |
| 13639 |
fill: var(--adminify-btn-bg); |
| 13640 |
} |
| 13641 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top:hover > a.menu-top .wp-adminify-icon-button:before { |
| 13642 |
color: var(--adminify-btn-bg); |
| 13643 |
} |
| 13644 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top:hover .wp-submenu { |
| 13645 |
background-color: transparent; |
| 13646 |
} |
| 13647 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top:hover .awaiting-mod, |
| 13648 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.menu-top:hover .update-plugins { |
| 13649 |
background-color: var(--adminify-notif-bg-color); |
| 13650 |
color: var(--adminify-text-color); |
| 13651 |
} |
| 13652 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.wp-adminify-nav-divider { |
| 13653 |
background-color: #F1F1F3; |
| 13654 |
height: 1px; |
| 13655 |
margin: 0; |
| 13656 |
padding: 0; |
| 13657 |
} |
| 13658 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li .awaiting-mod, |
| 13659 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li .update-plugins { |
| 13660 |
background-color: var(--adminify-notif-bg-color); |
| 13661 |
font-size: 11px; |
| 13662 |
float: right; |
| 13663 |
height: 13px; |
| 13664 |
line-height: 12px; |
| 13665 |
margin: -6.5px 15px 0 0; |
| 13666 |
min-width: inherit; |
| 13667 |
padding: 1px 3px; |
| 13668 |
position: absolute; |
| 13669 |
top: 50%; |
| 13670 |
right: 1.25rem; |
| 13671 |
} |
| 13672 |
.wp-adminify #adminmenu .wp_adminify_admin-menu .wp-has-current-submenu .wp-submenu .wp-submenu-head, |
| 13673 |
.wp-adminify #adminmenu .wp_adminify_admin-menu .wp-menu-arrow, |
| 13674 |
.wp-adminify #adminmenu .wp_adminify_admin-menu .wp-menu-arrow div, |
| 13675 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.current a.menu-top, |
| 13676 |
.wp-adminify #adminmenu .wp_adminify_admin-menu li.wp-has-current-submenu a.wp-has-current-submenu { |
| 13677 |
background-color: transparent; |
| 13678 |
} |
| 13679 |
.wp-adminify #adminmenu .wp_adminify_admin-menu .wp-submenu-head, |
| 13680 |
.wp-adminify #adminmenu .wp_adminify_admin-menu a.menu-top { |
| 13681 |
color: var(--adminify-menu-text-color); |
| 13682 |
line-height: 36px; |
| 13683 |
} |
| 13684 |
.wp-adminify #adminmenu li.opensub:after { |
| 13685 |
display: none; |
| 13686 |
} |
| 13687 |
.wp-adminify:not(.adminify-dark-mode) #adminmenu .wp_adminify_admin-menu-top .wp_adminify_user-details .wp_adminify_user-name, |
| 13688 |
.wp-adminify:not(.adminify-dark-mode) #adminmenu .wp_adminify_admin-menu-top .wp_adminify_user-details .wp_adminify_user-url { |
| 13689 |
color: #4E4B66; |
| 13690 |
} |
| 13691 |
.wp-adminify:not(.adminify-dark-mode) #adminmenu .wp_adminify_admin-menu-top .wp_adminify_user-details .wp_adminify_user-name a, |
| 13692 |
.wp-adminify:not(.adminify-dark-mode) #adminmenu .wp_adminify_admin-menu-top .wp_adminify_user-details .wp_adminify_user-url a { |
| 13693 |
color: #4E4B66; |
| 13694 |
} |
| 13695 |
.wp-adminify.adminify-default-v-menu #adminmenu .wp_adminify_admin-menu li.wp-not-current-submenu .wp-submenu { |
| 13696 |
background-color: var(--adminify-menu-bg); |
| 13697 |
-webkit-border-radius: 4px; |
| 13698 |
border-radius: 4px; |
| 13699 |
display: block; |
| 13700 |
top: -1000em; |
| 13701 |
left: 100%; |
| 13702 |
max-width: 160px; |
| 13703 |
padding: 5px 0; |
| 13704 |
position: absolute; |
| 13705 |
width: 100%; |
| 13706 |
-webkit-transition: none; |
| 13707 |
-o-transition: none; |
| 13708 |
transition: none; |
| 13709 |
} |
| 13710 |
.wp-adminify.adminify-default-v-menu #adminmenu .wp_adminify_admin-menu li.wp-not-current-submenu .wp-submenu a { |
| 13711 |
color: var(--adminify-menu-text-color); |
| 13712 |
padding: 0 15px; |
| 13713 |
} |
| 13714 |
.wp-adminify.adminify-default-v-menu #adminmenu .wp_adminify_admin-menu li.wp-not-current-submenu .wp-submenu a:hover { |
| 13715 |
background-color: transparent; |
| 13716 |
color: var(--adminify-btn-bg); |
| 13717 |
} |
| 13718 |
.wp-adminify.adminify-default-v-menu #adminmenu .wp_adminify_admin-menu li.wp-not-current-submenu.opensub .wp-submenu { |
| 13719 |
top: 0px; |
| 13720 |
opacity: 1; |
| 13721 |
} |
| 13722 |
.wp-adminify.adminify-default-v-menu #adminmenu .wp_adminify_admin-menu .wp-has-current-submenu .wp-submenu { |
| 13723 |
display: block; |
| 13724 |
opacity: 1; |
| 13725 |
} |
| 13726 |
.wp-adminify #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after, |
| 13727 |
.wp-adminify #adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after { |
| 13728 |
display: none; |
| 13729 |
} |
| 13730 |
.wp-adminify.adminify-rounded-v-menu #adminmenu .wp_adminify_admin-menu li.menu-top:hover > a.menu-top, .wp-adminify.adminify-rounded-v-menu #adminmenu .wp_adminify_admin-menu li.wp-adminify-active > a.menu-top { |
| 13731 |
background-color: var(--adminify-btn-bg); |
| 13732 |
-webkit-border-radius: 5px; |
| 13733 |
border-radius: 5px; |
| 13734 |
color: var(--adminify-text-color); |
| 13735 |
} |
| 13736 |
.wp-adminify.adminify-rounded-v-menu #adminmenu .wp_adminify_admin-menu li.menu-top:hover > a.menu-top .wp-adminify-icon-button, .wp-adminify.adminify-rounded-v-menu #adminmenu .wp_adminify_admin-menu li.wp-adminify-active > a.menu-top .wp-adminify-icon-button { |
| 13737 |
-webkit-border-radius: 2px; |
| 13738 |
border-radius: 2px; |
| 13739 |
color: var(--adminify-btn-bg); |
| 13740 |
} |
| 13741 |
.wp-adminify.adminify-rounded-v-menu #adminmenu .wp_adminify_admin-menu li.menu-top:hover > a.menu-top .wp-adminify-icon-button svg path, .wp-adminify.adminify-rounded-v-menu #adminmenu .wp_adminify_admin-menu li.wp-adminify-active > a.menu-top .wp-adminify-icon-button svg path { |
| 13742 |
fill: var(--adminify-text-color); |
| 13743 |
} |
| 13744 |
.wp-adminify.adminify-rounded-v-menu #adminmenu .wp_adminify_admin-menu li.menu-top:hover > a.menu-top .wp-adminify-icon-button:before, .wp-adminify.adminify-rounded-v-menu #adminmenu .wp_adminify_admin-menu li.wp-adminify-active > a.menu-top .wp-adminify-icon-button:before { |
| 13745 |
color: var(--adminify-text-color); |
| 13746 |
} |
| 13747 |
.wp-adminify.adminify-rounded-v-menu #adminmenu .wp_adminify_admin-menu li.menu-top:hover > a.menu-top.toplevel_page_wp-adminify-settings .wp-adminify-icon-button, .wp-adminify.adminify-rounded-v-menu #adminmenu .wp_adminify_admin-menu li.wp-adminify-active > a.menu-top.toplevel_page_wp-adminify-settings .wp-adminify-icon-button { |
| 13748 |
-webkit-filter: brightness(200); |
| 13749 |
filter: brightness(200); |
| 13750 |
} |
| 13751 |
.wp-adminify.adminify-rounded-v-menu #adminmenu .wp_adminify_admin-menu li.menu-top:hover .wp-submenu, .wp-adminify.adminify-rounded-v-menu #adminmenu .wp_adminify_admin-menu li.wp-adminify-active .wp-submenu { |
| 13752 |
padding-top: 10px; |
| 13753 |
} |
| 13754 |
.wp-adminify.adminify-rounded-v-menu #adminmenu .wp_adminify_admin-menu li.wp-adminify-active { |
| 13755 |
background-color: var(--adminify-menu-bg); |
| 13756 |
} |
| 13757 |
.wp-adminify.adminify-rounded-v-menu #adminmenu .wp_adminify_admin-menu li.wp-adminify-active > a { |
| 13758 |
color: var(--adminify-btn-bg); |
| 13759 |
} |
| 13760 |
.wp-adminify.adminify-rounded-v-menu #adminmenu .wp_adminify_admin-menu li.wp-adminify-active > a:before { |
| 13761 |
display: none; |
| 13762 |
} |
| 13763 |
.wp-adminify.adminify-rounded-v-menu #adminmenu .wp_adminify_admin-menu li .wp-submenu, |
| 13764 |
.wp-adminify.adminify-rounded-v-menu #adminmenu .wp_adminify_admin-menu li .wp-submenu:hover { |
| 13765 |
background-color: #fff; |
| 13766 |
} |
| 13767 |
.wp-adminify.adminify-toggle-v-menu #adminmenu .wp_adminify_admin-menu li.wp-adminify-active > .wp-submenu { |
| 13768 |
display: block !important; |
| 13769 |
} |
| 13770 |
.wp-adminify.folded #adminmenu, |
| 13771 |
.wp-adminify.folded #adminmenuback, |
| 13772 |
.wp-adminify.folded #adminmenuwrap { |
| 13773 |
width: 4.0625rem; |
| 13774 |
} |
| 13775 |
.wp-adminify.folded #wpcontent, |
| 13776 |
.wp-adminify.folded #wpfooter { |
| 13777 |
margin-left: 4.0625rem; |
| 13778 |
} |
| 13779 |
.wp-adminify.folded #adminmenu .wp_adminify_admin-menu-top { |
| 13780 |
display: none; |
| 13781 |
} |
| 13782 |
.wp-adminify.folded #adminmenu .wp_adminify_admin-menu { |
| 13783 |
padding-top: 5px; |
| 13784 |
} |
| 13785 |
.wp-adminify.folded #adminmenu .wp_adminify_admin-menu li { |
| 13786 |
margin: 5px 0; |
| 13787 |
} |
| 13788 |
.wp-adminify.folded #adminmenu .wp_adminify_admin-menu li.menu-top { |
| 13789 |
-webkit-box-sizing: border-box; |
| 13790 |
box-sizing: border-box; |
| 13791 |
padding: 0 13px; |
| 13792 |
width: 100%; |
| 13793 |
} |
| 13794 |
.wp-adminify.folded #adminmenu .wp_adminify_admin-menu li.menu-top > a { |
| 13795 |
position: relative; |
| 13796 |
-webkit-border-radius: 6px; |
| 13797 |
border-radius: 6px; |
| 13798 |
display: -webkit-box; |
| 13799 |
display: -webkit-flex; |
| 13800 |
display: -ms-flexbox; |
| 13801 |
display: flex; |
| 13802 |
-webkit-box-align: center; |
| 13803 |
-webkit-align-items: center; |
| 13804 |
-ms-flex-align: center; |
| 13805 |
align-items: center; |
| 13806 |
-webkit-box-pack: center; |
| 13807 |
-webkit-justify-content: center; |
| 13808 |
-ms-flex-pack: center; |
| 13809 |
justify-content: center; |
| 13810 |
font-size: 0; |
| 13811 |
height: 39px; |
| 13812 |
width: 39px; |
| 13813 |
padding: 0; |
| 13814 |
} |
| 13815 |
.wp-adminify.folded #adminmenu .wp_adminify_admin-menu li.menu-top > a:after { |
| 13816 |
display: none; |
| 13817 |
} |
| 13818 |
.wp-adminify.folded #adminmenu .wp_adminify_admin-menu li.menu-top > a.menu-top .wp-adminify-icon-button { |
| 13819 |
-webkit-border-radius: 3px; |
| 13820 |
border-radius: 3px; |
| 13821 |
display: inline-block; |
| 13822 |
float: none; |
| 13823 |
height: 20px; |
| 13824 |
width: 20px; |
| 13825 |
line-height: 20px; |
| 13826 |
margin: 0; |
| 13827 |
} |
| 13828 |
.wp-adminify.folded #adminmenu .wp_adminify_admin-menu li.menu-top > a.menu-top .wp-adminify-icon-image { |
| 13829 |
-webkit-filter: none; |
| 13830 |
filter: none; |
| 13831 |
} |
| 13832 |
.wp-adminify.folded #adminmenu .wp_adminify_admin-menu li.menu-top:hover a.menu-top .wp-adminify-icon-button { |
| 13833 |
color: var(--adminify-btn-bg); |
| 13834 |
-webkit-filter: brightness(1); |
| 13835 |
filter: brightness(1); |
| 13836 |
} |
| 13837 |
.wp-adminify.folded #adminmenu .wp_adminify_admin-menu li.menu-top:hover a.menu-top .wp-adminify-icon-image { |
| 13838 |
-webkit-filter: brightness(1) !important; |
| 13839 |
filter: brightness(1) !important; |
| 13840 |
} |
| 13841 |
.wp-adminify.folded #adminmenu .wp_adminify_admin-menu li.menu-top:hover a.menu-top:before { |
| 13842 |
content: ""; |
| 13843 |
background-color: var(--adminify-btn-bg); |
| 13844 |
-webkit-border-top-right-radius: 2px; |
| 13845 |
border-top-right-radius: 2px; |
| 13846 |
-webkit-border-bottom-right-radius: 2px; |
| 13847 |
border-bottom-right-radius: 2px; |
| 13848 |
height: 18px; |
| 13849 |
width: 2px; |
| 13850 |
left: 0; |
| 13851 |
top: 50%; |
| 13852 |
margin-top: -9px; |
| 13853 |
position: absolute; |
| 13854 |
} |
| 13855 |
.wp-adminify.folded #adminmenu .wp_adminify_admin-menu li.menu-top .wp-adminify-icon-image { |
| 13856 |
background-color: transparent !important; |
| 13857 |
} |
| 13858 |
.wp-adminify.folded #adminmenu .wp_adminify_admin-menu li.menu-top .wp-submenu { |
| 13859 |
background-color: var(--adminify-text-color); |
| 13860 |
-webkit-border-radius: 4px; |
| 13861 |
border-radius: 4px; |
| 13862 |
display: block; |
| 13863 |
top: -1000em; |
| 13864 |
left: 100%; |
| 13865 |
max-width: 160px; |
| 13866 |
padding: 10px 0; |
| 13867 |
position: absolute; |
| 13868 |
width: 100%; |
| 13869 |
-webkit-transition: none; |
| 13870 |
-o-transition: none; |
| 13871 |
transition: none; |
| 13872 |
} |
| 13873 |
.wp-adminify.folded #adminmenu .wp_adminify_admin-menu li.menu-top .wp-submenu li { |
| 13874 |
margin: 0; |
| 13875 |
padding: 0; |
| 13876 |
} |
| 13877 |
.wp-adminify.folded #adminmenu .wp_adminify_admin-menu li.menu-top .wp-submenu a { |
| 13878 |
color: rgba(78, 75, 102, 0.72); |
| 13879 |
padding: 0 15px; |
| 13880 |
} |
| 13881 |
.wp-adminify.folded #adminmenu .wp_adminify_admin-menu li.menu-top .wp-submenu a:hover { |
| 13882 |
background-color: transparent; |
| 13883 |
color: var(--adminify-btn-bg); |
| 13884 |
} |
| 13885 |
.wp-adminify.folded #adminmenu .wp_adminify_admin-menu li.menu-top .wp-submenu .wp-adminify-active a { |
| 13886 |
background-color: transparent; |
| 13887 |
color: var(--adminify-btn-bg); |
| 13888 |
} |
| 13889 |
.wp-adminify.folded #adminmenu .wp_adminify_admin-menu li.menu-top .wp-submenu .wp-adminify-active:hover a { |
| 13890 |
color: var(--adminify-btn-bg); |
| 13891 |
} |
| 13892 |
.wp-adminify.folded #adminmenu .wp_adminify_admin-menu li.menu-top:hover .wp-submenu { |
| 13893 |
background-color: var(--adminify-text-color); |
| 13894 |
top: 0; |
| 13895 |
opacity: 1; |
| 13896 |
} |
| 13897 |
.wp-adminify.folded #adminmenu .wp_adminify_admin-menu li.wp-menu-open:hover > a.menu-top .wp-adminify-icon-button, .wp-adminify.folded #adminmenu .wp_adminify_admin-menu li.wp-adminify-active:hover > a.menu-top .wp-adminify-icon-button { |
| 13898 |
color: var(--adminify-btn-bg); |
| 13899 |
} |
| 13900 |
.wp-adminify.folded #adminmenu .wp_adminify_admin-menu li.wp-adminify-nav-divider, |
| 13901 |
.wp-adminify.folded #adminmenu .wp_adminify_admin-menu li .awaiting-mod, |
| 13902 |
.wp-adminify.folded #adminmenu .wp_adminify_admin-menu li .update-plugins { |
| 13903 |
display: none; |
| 13904 |
} |
| 13905 |
.wp-adminify.folded.adminify-rounded-v-menu #adminmenu .wp_adminify_admin-menu li.menu-top:before, .wp-adminify.folded.adminify-rounded-v-menu #adminmenu .wp_adminify_admin-menu li.menu-top:after { |
| 13906 |
display: none !important; |
| 13907 |
} |
| 13908 |
.wp-adminify.folded.adminify-rounded-v-menu #adminmenu .wp_adminify_admin-menu li.menu-top a.menu-top { |
| 13909 |
-webkit-border-top-left-radius: 3rem !important; |
| 13910 |
border-top-left-radius: 3rem !important; |
| 13911 |
-webkit-border-bottom-left-radius: 3rem !important; |
| 13912 |
border-bottom-left-radius: 3rem !important; |
| 13913 |
} |
| 13914 |
.wp-adminify.folded.adminify-rounded-v-menu #adminmenu .wp_adminify_admin-menu li.menu-top.wp-adminify-active a.toplevel_page_wp-adminify-settings .wp-adminify-icon-image, .wp-adminify.folded.adminify-rounded-v-menu #adminmenu .wp_adminify_admin-menu li.menu-top:hover a.toplevel_page_wp-adminify-settings .wp-adminify-icon-image { |
| 13915 |
-webkit-filter: brightness(200) !important; |
| 13916 |
filter: brightness(200) !important; |
| 13917 |
} |
| 13918 |
.wp-adminify.folded.adminify-rounded-v-menu #adminmenu .wp_adminify_admin-menu li.menu-top.wp-adminify-active a.menu-top .wp-adminify-icon-button, .wp-adminify.folded.adminify-rounded-v-menu #adminmenu .wp_adminify_admin-menu li.menu-top:hover a.menu-top .wp-adminify-icon-button { |
| 13919 |
background-color: transparent !important; |
| 13920 |
} |
| 13921 |
.wp-adminify.folded.adminify-rounded-v-menu #adminmenu .wp_adminify_admin-menu li.menu-top.wp-adminify-active a.menu-top .wp-adminify-icon-button:before, .wp-adminify.folded.adminify-rounded-v-menu #adminmenu .wp_adminify_admin-menu li.menu-top:hover a.menu-top .wp-adminify-icon-button:before { |
| 13922 |
color: var(--adminify-text-color) !important; |
| 13923 |
} |
| 13924 |
.wp-adminify.folded.adminify-rounded-v-menu #adminmenu .wp_adminify_admin-menu li.menu-top.wp-adminify-active a.menu-top:before, .wp-adminify.folded.adminify-rounded-v-menu #adminmenu .wp_adminify_admin-menu li.menu-top:hover a.menu-top:before { |
| 13925 |
display: none !important; |
| 13926 |
} |
| 13927 |
.wp-adminify.color-preset-adminify-icon-white #adminmenu .wp_adminify_admin-menu li a.menu-top.toplevel_page_wp-adminify-settings .wp-adminify-icon-button { |
| 13928 |
-webkit-filter: brightness(200); |
| 13929 |
filter: brightness(200); |
| 13930 |
} |
| 13931 |
.wp-adminify body.wp-adminify { |
| 13932 |
--adminify-text-color: #fff; |
| 13933 |
} |
| 13934 |
.wp-adminify body.wp-adminify { |
| 13935 |
--adminify-text-color: #fff; |
| 13936 |
} |
| 13937 |
.wp-adminify #wp-adminify--circle--menu { |
| 13938 |
right: 1.5rem; |
| 13939 |
bottom: 9rem; |
| 13940 |
position: fixed; |
| 13941 |
z-index: 9999; |
| 13942 |
} |
| 13943 |
.wp-adminify #wp-adminify--circle--menu .circle-menu li:first-child a, |
| 13944 |
.wp-adminify #wp-adminify--circle--menu .circle-menu li:first-child .wp-core-ui .wp-ui-notification { |
| 13945 |
background: var(--adminify-notif-bg-color); |
| 13946 |
height: 44px; |
| 13947 |
width: 44px; |
| 13948 |
position: relative; |
| 13949 |
} |
| 13950 |
.wp-adminify #wp-adminify--circle--menu .circle-menu li:first-child a svg, |
| 13951 |
.wp-adminify #wp-adminify--circle--menu .circle-menu li:first-child .wp-core-ui .wp-ui-notification svg { |
| 13952 |
height: 24px; |
| 13953 |
width: 24px; |
| 13954 |
left: 50%; |
| 13955 |
top: 50%; |
| 13956 |
position: absolute; |
| 13957 |
-webkit-transform: translate(-50%, -50%); |
| 13958 |
-ms-transform: translate(-50%, -50%); |
| 13959 |
transform: translate(-50%, -50%); |
| 13960 |
} |
| 13961 |
.wp-adminify #wp-adminify--circle--menu .circle-menu li:first-child a svg path, |
| 13962 |
.wp-adminify #wp-adminify--circle--menu .circle-menu li:first-child .wp-core-ui .wp-ui-notification svg path { |
| 13963 |
fill: var(--adminify-text-color); |
| 13964 |
-webkit-transition: all 3s ease; |
| 13965 |
-o-transition: all 3s ease; |
| 13966 |
transition: all 3s ease; |
| 13967 |
} |
| 13968 |
.wp-adminify #wp-adminify--circle--menu .circle-menu li:first-child a svg.circle-menu-close, |
| 13969 |
.wp-adminify #wp-adminify--circle--menu .circle-menu li:first-child .wp-core-ui .wp-ui-notification svg.circle-menu-close { |
| 13970 |
height: 16px; |
| 13971 |
opacity: 0; |
| 13972 |
z-index: -1; |
| 13973 |
} |
| 13974 |
.wp-adminify #wp-adminify--circle--menu .circle-menu li a { |
| 13975 |
background-color: var(--adminify-notif-bg-color); |
| 13976 |
-webkit-border-radius: 50%; |
| 13977 |
border-radius: 50%; |
| 13978 |
color: var(--adminify-text-color); |
| 13979 |
display: -webkit-box; |
| 13980 |
display: -webkit-flex; |
| 13981 |
display: -ms-flexbox; |
| 13982 |
display: flex; |
| 13983 |
-webkit-box-align: center; |
| 13984 |
-webkit-align-items: center; |
| 13985 |
-ms-flex-align: center; |
| 13986 |
align-items: center; |
| 13987 |
-webkit-box-pack: center; |
| 13988 |
-webkit-justify-content: center; |
| 13989 |
-ms-flex-pack: center; |
| 13990 |
justify-content: center; |
| 13991 |
font-size: 14px; |
| 13992 |
font-weight: 600; |
| 13993 |
height: 40px; |
| 13994 |
width: 40px; |
| 13995 |
line-height: 40px; |
| 13996 |
} |
| 13997 |
.wp-adminify #wp-adminify--circle--menu .circle-menu li a i { |
| 13998 |
height: initial; |
| 13999 |
width: initial; |
| 14000 |
} |
| 14001 |
.wp-adminify #wp-adminify--circle--menu .circle-menu.circleMenu-open li:first-child a svg.circle-menu-trigger { |
| 14002 |
opacity: 0; |
| 14003 |
z-index: -1; |
| 14004 |
} |
| 14005 |
.wp-adminify #wp-adminify--circle--menu .circle-menu.circleMenu-open li:first-child a svg.circle-menu-close { |
| 14006 |
opacity: 1; |
| 14007 |
z-index: 1; |
| 14008 |
} |
| 14009 |
.wp-adminify body.wp-adminify { |
| 14010 |
--adminify-text-color: #fff; |
| 14011 |
} |
| 14012 |
.wp-adminify body.wp-adminify { |
| 14013 |
--adminify-text-color: #fff; |
| 14014 |
} |
| 14015 |
.wp-adminify .wp-adminify-page-speed-wrapper .adminify-ps-pass, |
| 14016 |
.wp-adminify .wp-adminify-page-speed-wrapper .adminify-ps-pass b { |
| 14017 |
color: #0cce6b; |
| 14018 |
} |
| 14019 |
.wp-adminify .wp-adminify-page-speed-wrapper .adminify-ps-average, |
| 14020 |
.wp-adminify .wp-adminify-page-speed-wrapper .adminify-ps-average b { |
| 14021 |
color: #d04900; |
| 14022 |
} |
| 14023 |
.wp-adminify .wp-adminify-page-speed-wrapper .adminify-ps-fail, |
| 14024 |
.wp-adminify .wp-adminify-page-speed-wrapper .adminify-ps-fail b { |
| 14025 |
color: var(--adminify-notif-bg-color); |
| 14026 |
} |
| 14027 |
.wp-adminify .wp-adminify-page-speed-wrapper a[href="https://web.dev/vitals/"] { |
| 14028 |
padding-left: 14px; |
| 14029 |
position: relative; |
| 14030 |
} |
| 14031 |
.wp-adminify .wp-adminify-page-speed-wrapper a[href="https://web.dev/vitals/"]:before { |
| 14032 |
content: ""; |
| 14033 |
background-color: var(--adminify-btn-bg); |
| 14034 |
-webkit-mask: url("../images/icons/bookmark.svg") no-repeat 50% 50%; |
| 14035 |
mask: url("../images/icons/bookmark.svg") no-repeat 50% 50%; |
| 14036 |
height: 12px; |
| 14037 |
width: 12px; |
| 14038 |
top: 3px; |
| 14039 |
left: 0; |
| 14040 |
position: absolute; |
| 14041 |
} |
| 14042 |
.wp-adminify .wp-adminify-page-speed-wrapper .speed-wrapper-tabs { |
| 14043 |
clear: both; |
| 14044 |
} |
| 14045 |
.wp-adminify .wp-adminify-page-speed-wrapper .speed-wrapper-tabs > li { |
| 14046 |
float: left; |
| 14047 |
margin-bottom: 0; |
| 14048 |
} |
| 14049 |
.wp-adminify .wp-adminify-page-speed-wrapper .speed-wrapper-tabs > li .nav-link { |
| 14050 |
background-color: #E7E7E8; |
| 14051 |
border: 0; |
| 14052 |
border-top: 2px solid transparent; |
| 14053 |
-webkit-box-shadow: none; |
| 14054 |
box-shadow: none; |
| 14055 |
color: #9391A0; |
| 14056 |
display: inline-block; |
| 14057 |
font-size: 18px; |
| 14058 |
font-weight: 700; |
| 14059 |
line-height: 56px; |
| 14060 |
padding: 0 2.25rem; |
| 14061 |
} |
| 14062 |
.wp-adminify .wp-adminify-page-speed-wrapper .speed-wrapper-tabs > li .nav-link .tab-icon { |
| 14063 |
color: #9391A0; |
| 14064 |
font-size: 16px; |
| 14065 |
height: 16px; |
| 14066 |
width: 16px; |
| 14067 |
line-height: 51px; |
| 14068 |
margin: 2px 5px 0 0; |
| 14069 |
} |
| 14070 |
.wp-adminify .wp-adminify-page-speed-wrapper .speed-wrapper-tabs > li .nav-link .tab-icon path { |
| 14071 |
fill: #9391A0; |
| 14072 |
} |
| 14073 |
.wp-adminify .wp-adminify-page-speed-wrapper .speed-wrapper-tabs > li.router-link-active .nav-link { |
| 14074 |
background-color: var(--adminify-text-color); |
| 14075 |
border-top: 2px solid var(--adminify-btn-bg); |
| 14076 |
color: var(--adminify-btn-bg); |
| 14077 |
} |
| 14078 |
.wp-adminify .wp-adminify-page-speed-wrapper .speed-wrapper-tabs > li.router-link-active .nav-link .tab-icon { |
| 14079 |
color: var(--adminify-btn-bg); |
| 14080 |
} |
| 14081 |
.wp-adminify .wp-adminify-page-speed-wrapper .speed-wrapper-tabs > li.router-link-active .nav-link .tab-icon path { |
| 14082 |
fill: var(--adminify-btn-bg); |
| 14083 |
} |
| 14084 |
.wp-adminify .wp-adminify-page-speed-wrapper .tab-content { |
| 14085 |
clear: both; |
| 14086 |
-webkit-border-top-left-radius: 0; |
| 14087 |
border-top-left-radius: 0; |
| 14088 |
min-height: 50vh; |
| 14089 |
padding: 3rem; |
| 14090 |
} |
| 14091 |
.wp-adminify .wp-adminify-page-speed-wrapper .tab-content #analyze .wp-adminify-form-container { |
| 14092 |
height: 80vh; |
| 14093 |
} |
| 14094 |
.wp-adminify .wp-adminify-page-speed-wrapper .wp-adminify-analyze-button { |
| 14095 |
line-height: 46px; |
| 14096 |
padding: 0 2.25rem; |
| 14097 |
} |
| 14098 |
.wp-adminify .wp-adminify-page-speed-wrapper .hr-progress { |
| 14099 |
background: rgba(var(--adminify-btn-bg), 0.1); |
| 14100 |
-webkit-border-radius: 6px; |
| 14101 |
border-radius: 6px; |
| 14102 |
overflow: hidden; |
| 14103 |
width: 100%; |
| 14104 |
margin: 20px auto 0; |
| 14105 |
} |
| 14106 |
.wp-adminify .wp-adminify-page-speed-wrapper .hr-progress .hr-progress-bar { |
| 14107 |
height: 28px; |
| 14108 |
-webkit-border-radius: 4px; |
| 14109 |
border-radius: 4px; |
| 14110 |
-webkit-transition: 0.4s linear; |
| 14111 |
-o-transition: 0.4s linear; |
| 14112 |
transition: 0.4s linear; |
| 14113 |
-webkit-transition-property: width; |
| 14114 |
-o-transition-property: width; |
| 14115 |
transition-property: width; |
| 14116 |
width: 0%; |
| 14117 |
min-width: 50px; |
| 14118 |
background-color: var(--adminify-btn-bg); |
| 14119 |
line-height: 28px; |
| 14120 |
color: #fff; |
| 14121 |
} |
| 14122 |
.wp-adminify .wp-adminify-page-speed-wrapper .progress-hint { |
| 14123 |
font-size: 14px; |
| 14124 |
font-style: italic; |
| 14125 |
margin-top: 10px; |
| 14126 |
} |
| 14127 |
.wp-adminify .wp-adminify-page-speed-wrapper .wp-adminify-speed-analyze-form .bottom-wrapper { |
| 14128 |
position: absolute; |
| 14129 |
left: 0; |
| 14130 |
top: 100%; |
| 14131 |
width: 100%; |
| 14132 |
margin-top: 20px; |
| 14133 |
text-align: center; |
| 14134 |
font-size: 14px; |
| 14135 |
} |
| 14136 |
.wp-adminify .wp-adminify-page-speed-wrapper .wp-adminify-speed-analyze-form .bottom-wrapper .error { |
| 14137 |
color: #f06285; |
| 14138 |
} |
| 14139 |
.wp-adminify .wp-adminify-page-speed-wrapper .wp-adminify-speed-analyze-form .bottom-wrapper .message { |
| 14140 |
background: none; |
| 14141 |
} |
| 14142 |
.wp-adminify #wpbody-content #analyze .wp-adminify-speed-analyze-form { |
| 14143 |
-webkit-box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 14144 |
box-shadow: 0px 0px 54px 0px rgba(20, 20, 42, 0.07); |
| 14145 |
-webkit-border-radius: 6px; |
| 14146 |
border-radius: 6px; |
| 14147 |
max-width: 740px; |
| 14148 |
margin: 0 auto; |
| 14149 |
position: relative; |
| 14150 |
z-index: 0; |
| 14151 |
width: 100%; |
| 14152 |
} |
| 14153 |
.wp-adminify #wpbody-content #analyze .wp-adminify-speed-analyze-form input { |
| 14154 |
border: 0; |
| 14155 |
-webkit-border-radius: 6px; |
| 14156 |
border-radius: 6px; |
| 14157 |
color: #9391A0; |
| 14158 |
font-size: 18px; |
| 14159 |
font-weight: 700; |
| 14160 |
line-height: 20px; |
| 14161 |
margin: 0; |
| 14162 |
min-height: 60px; |
| 14163 |
padding: 1rem 3.75rem 1rem 2rem; |
| 14164 |
width: 100%; |
| 14165 |
} |
| 14166 |
.wp-adminify #wpbody-content #analyze .wp-adminify-speed-analyze-form input[type=submit] { |
| 14167 |
background-color: transparent !important; |
| 14168 |
border: 0 !important; |
| 14169 |
font-size: 0; |
| 14170 |
height: 60px; |
| 14171 |
max-width: 60px; |
| 14172 |
top: 0; |
| 14173 |
right: 0; |
| 14174 |
padding: 1rem; |
| 14175 |
position: absolute; |
| 14176 |
z-index: 1; |
| 14177 |
} |
| 14178 |
.wp-adminify #wpbody-content #analyze .wp-adminify-speed-analyze-form .search-icon { |
| 14179 |
color: #9391A0; |
| 14180 |
height: 20px; |
| 14181 |
width: 20px; |
| 14182 |
top: 50%; |
| 14183 |
right: 22px; |
| 14184 |
line-height: 60px; |
| 14185 |
position: absolute; |
| 14186 |
-webkit-transform: translateY(-50%); |
| 14187 |
-ms-transform: translateY(-50%); |
| 14188 |
transform: translateY(-50%); |
| 14189 |
z-index: 0; |
| 14190 |
} |
| 14191 |
.wp-adminify #wpbody-content #analyze .wp-adminify-speed-analyze-form .search-icon path { |
| 14192 |
fill: #9391A0; |
| 14193 |
} |
| 14194 |
.wp-adminify .wp-adminify-speed-analyze-result { |
| 14195 |
padding: 0 1rem; |
| 14196 |
} |
| 14197 |
.wp-adminify .wp-adminify-speed-analyze-result .analyze-result-tab .device-tabs .nav { |
| 14198 |
background-color: #F1F1F3; |
| 14199 |
-webkit-border-radius: 24px; |
| 14200 |
border-radius: 24px; |
| 14201 |
margin: 0; |
| 14202 |
padding: 4px; |
| 14203 |
} |
| 14204 |
.wp-adminify .wp-adminify-speed-analyze-result .analyze-result-tab .device-tabs li { |
| 14205 |
margin-bottom: 0; |
| 14206 |
} |
| 14207 |
.wp-adminify .wp-adminify-speed-analyze-result .analyze-result-tab .device-tabs li.active .nav-link { |
| 14208 |
background-color: var(--adminify-btn-bg); |
| 14209 |
color: var(--adminify-text-color); |
| 14210 |
} |
| 14211 |
.wp-adminify .wp-adminify-speed-analyze-result .analyze-result-tab .device-tabs li.active .nav-link i { |
| 14212 |
color: var(--adminify-text-color); |
| 14213 |
} |
| 14214 |
.wp-adminify .wp-adminify-speed-analyze-result .analyze-result-tab .device-tabs .nav-link { |
| 14215 |
background-color: transparent; |
| 14216 |
border: 0; |
| 14217 |
-webkit-border-radius: 24px; |
| 14218 |
border-radius: 24px; |
| 14219 |
-webkit-box-shadow: none; |
| 14220 |
box-shadow: none; |
| 14221 |
color: #9391A0; |
| 14222 |
display: inline-block; |
| 14223 |
font-size: 14px; |
| 14224 |
font-weight: 700; |
| 14225 |
line-height: 20px; |
| 14226 |
padding: 10px 1.104rem; |
| 14227 |
} |
| 14228 |
.wp-adminify .wp-adminify-speed-analyze-result .analyze-result-tab .device-tabs .nav-link i { |
| 14229 |
color: #9391A0; |
| 14230 |
font-size: 18px; |
| 14231 |
} |
| 14232 |
.wp-adminify .wp-adminify-speed-analyze-result .analyze-result-tab .tab-content { |
| 14233 |
-webkit-box-shadow: none; |
| 14234 |
box-shadow: none; |
| 14235 |
} |
| 14236 |
.wp-adminify .wp-adminify-speed-analyze-result .desktop-result { |
| 14237 |
-webkit-box-align: center; |
| 14238 |
-webkit-align-items: center; |
| 14239 |
-ms-flex-align: center; |
| 14240 |
align-items: center; |
| 14241 |
max-width: 70%; |
| 14242 |
margin: 0 auto; |
| 14243 |
} |
| 14244 |
.wp-adminify .wp-adminify-speed-analyze-result .desktop-result .url-screenshot { |
| 14245 |
max-height: 330px; |
| 14246 |
overflow: hidden; |
| 14247 |
padding: 15px; |
| 14248 |
} |
| 14249 |
.wp-adminify .wp-adminify-speed-analyze-result .desktop-result .url-screenshot img { |
| 14250 |
-webkit-box-shadow: 0px 0px 15px 0px #14142A1A; |
| 14251 |
box-shadow: 0px 0px 15px 0px #14142A1A; |
| 14252 |
max-height: 300px; |
| 14253 |
} |
| 14254 |
.wp-adminify .wp-adminify-speed-analyze-result .desktop-result img { |
| 14255 |
-webkit-border-radius: 6px; |
| 14256 |
border-radius: 6px; |
| 14257 |
} |
| 14258 |
.wp-adminify .wp-adminify-speed-analyze-result .health-progress .progress-bar { |
| 14259 |
border: 4px solid #00BA88; |
| 14260 |
-webkit-border-radius: 50%; |
| 14261 |
border-radius: 50%; |
| 14262 |
height: 150px; |
| 14263 |
width: 150px; |
| 14264 |
margin: 0 auto; |
| 14265 |
position: relative; |
| 14266 |
} |
| 14267 |
.wp-adminify .wp-adminify-speed-analyze-result .health-progress .progress-bar .progress-percentage { |
| 14268 |
color: #4E4B66; |
| 14269 |
font-size: 37.94px; |
| 14270 |
font-weight: 700; |
| 14271 |
line-height: 40px; |
| 14272 |
left: 50%; |
| 14273 |
top: 50%; |
| 14274 |
position: absolute; |
| 14275 |
-webkit-transform: translate(-50%, -50%); |
| 14276 |
-ms-transform: translate(-50%, -50%); |
| 14277 |
transform: translate(-50%, -50%); |
| 14278 |
} |
| 14279 |
.wp-adminify .wp-adminify-speed-analyze-result .health-progress .progress-bar .progress-status { |
| 14280 |
-webkit-border-radius: 3px; |
| 14281 |
border-radius: 3px; |
| 14282 |
color: var(--adminify-text-color); |
| 14283 |
display: inline-block; |
| 14284 |
font-size: 12px; |
| 14285 |
line-height: 16px; |
| 14286 |
bottom: -4px; |
| 14287 |
left: 50%; |
| 14288 |
margin-left: -30px; |
| 14289 |
position: absolute; |
| 14290 |
z-index: 0; |
| 14291 |
width: 60px; |
| 14292 |
} |
| 14293 |
.wp-adminify .wp-adminify-speed-analyze-result .health-progress .progress-bar.pass { |
| 14294 |
border-color: #00BA88; |
| 14295 |
} |
| 14296 |
.wp-adminify .wp-adminify-speed-analyze-result .health-progress .progress-bar.pass .progress-status { |
| 14297 |
background-color: #00BA88; |
| 14298 |
} |
| 14299 |
.wp-adminify .wp-adminify-speed-analyze-result .health-progress .progress-bar.average { |
| 14300 |
border-color: #F4B740; |
| 14301 |
} |
| 14302 |
.wp-adminify .wp-adminify-speed-analyze-result .health-progress .progress-bar.average .progress-status { |
| 14303 |
background-color: #F4B740; |
| 14304 |
} |
| 14305 |
.wp-adminify .wp-adminify-speed-analyze-result .health-progress .progress-bar.fail { |
| 14306 |
border-color: #c30052; |
| 14307 |
} |
| 14308 |
.wp-adminify .wp-adminify-speed-analyze-result .health-progress .progress-bar.fail .progress-status { |
| 14309 |
background-color: #c30052; |
| 14310 |
} |
| 14311 |
.wp-adminify .wp-adminify-speed-analyze-result .health-progress .title { |
| 14312 |
color: #4E4B66; |
| 14313 |
display: inline-block; |
| 14314 |
font-size: 14px; |
| 14315 |
font-weight: 700; |
| 14316 |
line-height: 20px; |
| 14317 |
margin: 1rem 0 8px; |
| 14318 |
} |
| 14319 |
.wp-adminify .wp-adminify-speed-analyze-result .progress-scale { |
| 14320 |
border-top: 1px solid #CFCFCF; |
| 14321 |
border-bottom: 1px solid #CFCFCF; |
| 14322 |
display: inline-block; |
| 14323 |
} |
| 14324 |
.wp-adminify .wp-adminify-speed-analyze-result .progress-scale span { |
| 14325 |
color: #4E4B66; |
| 14326 |
font-size: 12px; |
| 14327 |
font-weight: 600; |
| 14328 |
line-height: 16px; |
| 14329 |
margin-right: 5px; |
| 14330 |
position: relative; |
| 14331 |
} |
| 14332 |
.wp-adminify .wp-adminify-speed-analyze-result .progress-scale span:before { |
| 14333 |
content: ""; |
| 14334 |
height: 9px; |
| 14335 |
width: 9px; |
| 14336 |
left: -1rem; |
| 14337 |
top: 3px; |
| 14338 |
position: absolute; |
| 14339 |
} |
| 14340 |
.wp-adminify .wp-adminify-speed-analyze-result .progress-scale span.range-pass:before { |
| 14341 |
background-color: #00BA88; |
| 14342 |
} |
| 14343 |
.wp-adminify .wp-adminify-speed-analyze-result .progress-scale span.range-average:before { |
| 14344 |
background-color: #F4B740; |
| 14345 |
} |
| 14346 |
.wp-adminify .wp-adminify-speed-analyze-result .progress-scale span.range-fail:before { |
| 14347 |
background-color: #c30052; |
| 14348 |
} |
| 14349 |
.wp-adminify .wp-adminify-speed-analyze-result .progress-scale span:last-child { |
| 14350 |
margin-right: 0; |
| 14351 |
} |
| 14352 |
.wp-adminify .analyze-result-tab { |
| 14353 |
border-top: 1px solid #F1F1F3; |
| 14354 |
padding-top: 2rem; |
| 14355 |
} |
| 14356 |
.wp-adminify .analyze-result-tab .result-header { |
| 14357 |
color: #4E4B66; |
| 14358 |
font-size: 15px; |
| 14359 |
font-weight: 600; |
| 14360 |
line-height: 24px; |
| 14361 |
} |
| 14362 |
.wp-adminify .analyze-result-tab .result-header a { |
| 14363 |
color: var(--adminify-btn-bg); |
| 14364 |
} |
| 14365 |
.wp-adminify .analyze-result-tab .result-header b { |
| 14366 |
color: #c30052; |
| 14367 |
} |
| 14368 |
.wp-adminify .analyze-result-tab .result-header .result-title { |
| 14369 |
color: #14142B; |
| 14370 |
font-size: 16px; |
| 14371 |
font-weight: 700; |
| 14372 |
} |
| 14373 |
.wp-adminify .analyze-result-tab .summary-chart { |
| 14374 |
padding-left: 12px; |
| 14375 |
} |
| 14376 |
.wp-adminify .analyze-result-tab .summary-chart .bar { |
| 14377 |
color: var(--adminify-text-color); |
| 14378 |
font-size: 14px; |
| 14379 |
height: 24px; |
| 14380 |
line-height: 24px; |
| 14381 |
position: relative; |
| 14382 |
} |
| 14383 |
.wp-adminify .analyze-result-tab .summary-chart .bar:before { |
| 14384 |
content: ""; |
| 14385 |
-webkit-border-top-left-radius: 3rem; |
| 14386 |
border-top-left-radius: 3rem; |
| 14387 |
-webkit-border-bottom-left-radius: 3rem; |
| 14388 |
border-bottom-left-radius: 3rem; |
| 14389 |
height: 100%; |
| 14390 |
width: 12px; |
| 14391 |
top: 0; |
| 14392 |
left: -12px; |
| 14393 |
position: absolute; |
| 14394 |
} |
| 14395 |
.wp-adminify .analyze-result-tab .summary-chart .bar.fast, .wp-adminify .analyze-result-tab .summary-chart .bar.fast:before { |
| 14396 |
background-color: #0cce6b; |
| 14397 |
} |
| 14398 |
.wp-adminify .analyze-result-tab .summary-chart .bar.average, .wp-adminify .analyze-result-tab .summary-chart .bar.average:before { |
| 14399 |
background-color: #ffa400; |
| 14400 |
color: #000; |
| 14401 |
} |
| 14402 |
.wp-adminify .analyze-result-tab .summary-chart .bar.slow { |
| 14403 |
background-color: var(--adminify-notif-bg-color); |
| 14404 |
-webkit-border-top-right-radius: 3rem; |
| 14405 |
border-top-right-radius: 3rem; |
| 14406 |
-webkit-border-bottom-right-radius: 3rem; |
| 14407 |
border-bottom-right-radius: 3rem; |
| 14408 |
} |
| 14409 |
.wp-adminify .analyze-result-tab .summary-chart .bar.slow:before { |
| 14410 |
background-color: var(--adminify-notif-bg-color); |
| 14411 |
} |
| 14412 |
.wp-adminify .origin-summary-trigger button { |
| 14413 |
background-color: transparent; |
| 14414 |
border: 0; |
| 14415 |
-webkit-box-shadow: none; |
| 14416 |
box-shadow: none; |
| 14417 |
color: var(--adminify-btn-bg); |
| 14418 |
font-size: 14px; |
| 14419 |
font-weight: 600; |
| 14420 |
line-height: 20px; |
| 14421 |
padding-left: 23px; |
| 14422 |
position: relative; |
| 14423 |
} |
| 14424 |
.wp-adminify .origin-summary-trigger button:before { |
| 14425 |
content: ""; |
| 14426 |
border: 1px solid var(--adminify-btn-bg); |
| 14427 |
height: 14px; |
| 14428 |
width: 14px; |
| 14429 |
top: 0; |
| 14430 |
left: 0; |
| 14431 |
margin: 2px 6px 0 0; |
| 14432 |
position: absolute; |
| 14433 |
} |
| 14434 |
.wp-adminify .origin-summary-trigger button input { |
| 14435 |
background: none !important; |
| 14436 |
border: 0 !important; |
| 14437 |
height: 100% !important; |
| 14438 |
width: 100% !important; |
| 14439 |
top: 0 !important; |
| 14440 |
left: 0 !important; |
| 14441 |
position: absolute !important; |
| 14442 |
} |
| 14443 |
.wp-adminify .origin-summary-trigger button input:checked:before { |
| 14444 |
border: 1px solid var(--adminify-btn-bg); |
| 14445 |
-webkit-border-radius: 0 !important; |
| 14446 |
border-radius: 0 !important; |
| 14447 |
-webkit-filter: none !important; |
| 14448 |
filter: none !important; |
| 14449 |
height: 14px !important; |
| 14450 |
width: 14px !important; |
| 14451 |
top: 4px !important; |
| 14452 |
left: 0 !important; |
| 14453 |
margin: 2px 6px 0 0 !important; |
| 14454 |
min-width: inherit !important; |
| 14455 |
} |
| 14456 |
.wp-adminify .analyze-result-tab .data-expandable-details { |
| 14457 |
border: 1px solid #F1F1F3; |
| 14458 |
} |
| 14459 |
.wp-adminify .analyze-result-tab .summary-wrapper { |
| 14460 |
padding-left: 35px; |
| 14461 |
} |
| 14462 |
.wp-adminify .analyze-result-tab .summary-top { |
| 14463 |
color: #4E4B66; |
| 14464 |
display: inline-block; |
| 14465 |
font-size: 16px; |
| 14466 |
font-weight: 700; |
| 14467 |
line-height: 20px; |
| 14468 |
padding: 12px 0 5px; |
| 14469 |
position: relative; |
| 14470 |
width: 100%; |
| 14471 |
} |
| 14472 |
.wp-adminify .analyze-result-tab .summary-top:before { |
| 14473 |
content: ""; |
| 14474 |
background-color: #bdbdbd; |
| 14475 |
-webkit-border-radius: 3rem; |
| 14476 |
border-radius: 3rem; |
| 14477 |
height: 12px; |
| 14478 |
width: 12px; |
| 14479 |
left: -20px; |
| 14480 |
top: 15px; |
| 14481 |
position: absolute; |
| 14482 |
} |
| 14483 |
.wp-adminify .analyze-result-tab .adminify-icon-cwv { |
| 14484 |
padding-left: 1rem; |
| 14485 |
} |
| 14486 |
.wp-adminify .analyze-result-tab .adminify-icon-cwv:before { |
| 14487 |
height: 14px; |
| 14488 |
width: 14px; |
| 14489 |
top: 4px; |
| 14490 |
left: 1px; |
| 14491 |
} |
| 14492 |
.wp-adminify .analyze-result-tab .data-metric--pass .summary-top:before { |
| 14493 |
background-color: #0cce6b; |
| 14494 |
-webkit-border-radius: 50%; |
| 14495 |
border-radius: 50%; |
| 14496 |
} |
| 14497 |
.wp-adminify .data-metric--average .summary-top:before { |
| 14498 |
background-color: #ffa400; |
| 14499 |
} |
| 14500 |
.wp-adminify .data-metric--fail .summary-top:before { |
| 14501 |
background-color: transparent; |
| 14502 |
-webkit-border-radius: 0; |
| 14503 |
border-radius: 0; |
| 14504 |
width: 0; |
| 14505 |
height: 0; |
| 14506 |
border-left: 6px solid transparent; |
| 14507 |
border-right: 6px solid transparent; |
| 14508 |
border-bottom: 12px solid var(--adminify-notif-bg-color); |
| 14509 |
} |
| 14510 |
.wp-adminify .origin-result-summary { |
| 14511 |
-webkit-transition: all 0.25s ease; |
| 14512 |
-o-transition: all 0.25s ease; |
| 14513 |
transition: all 0.25s ease; |
| 14514 |
} |
| 14515 |
.wp-adminify .result-summary .summary-wrapper { |
| 14516 |
border-top: 1px solid #F1F1F3; |
| 14517 |
border-bottom: 1px solid #F1F1F3; |
| 14518 |
padding: 0 0 12px 20px; |
| 14519 |
} |
| 14520 |
.wp-adminify .data-metrics-container .data-metric { |
| 14521 |
border-top: 1px solid #F1F1F3; |
| 14522 |
border-bottom: 1px solid #F1F1F3; |
| 14523 |
} |
| 14524 |
.wp-adminify .data-metrics-container .data-metric .summary-wrapper { |
| 14525 |
padding-left: 20px; |
| 14526 |
} |
| 14527 |
.wp-adminify .result-body.show-origin .origin-summary-trigger button:before { |
| 14528 |
content: ""; |
| 14529 |
background: var(--adminify-btn-bg); |
| 14530 |
-webkit-border-radius: 50%; |
| 14531 |
border-radius: 50%; |
| 14532 |
height: 8px; |
| 14533 |
width: 8px; |
| 14534 |
position: absolute; |
| 14535 |
left: 9px; |
| 14536 |
top: 6px; |
| 14537 |
margin: 0; |
| 14538 |
} |
| 14539 |
.wp-adminify .result-body.show-origin .result-summary.origin-result-summary { |
| 14540 |
height: auto; |
| 14541 |
opacity: 1; |
| 14542 |
z-index: 0; |
| 14543 |
} |
| 14544 |
.wp-adminify .wp-adminify-speed-analyze-history .history-table { |
| 14545 |
letter-spacing: 0.25px; |
| 14546 |
width: 100%; |
| 14547 |
} |
| 14548 |
.wp-adminify .wp-adminify-speed-analyze-history .history-table tr { |
| 14549 |
color: #14142B; |
| 14550 |
font-size: 14px; |
| 14551 |
font-weight: 600; |
| 14552 |
line-height: 20px; |
| 14553 |
text-transform: capitalize; |
| 14554 |
} |
| 14555 |
.wp-adminify .wp-adminify-speed-analyze-history .history-table tr th:first-child { |
| 14556 |
color: var(--adminify-btn-bg); |
| 14557 |
} |
| 14558 |
.wp-adminify .wp-adminify-speed-analyze-history .history-table tr th, |
| 14559 |
.wp-adminify .wp-adminify-speed-analyze-history .history-table tr td { |
| 14560 |
border-bottom: 1px solid #F1F1F3; |
| 14561 |
padding: 12px 0; |
| 14562 |
} |
| 14563 |
.wp-adminify .wp-adminify-speed-analyze-history .history-table .log-date-time:before { |
| 14564 |
content: "#"; |
| 14565 |
left: 0; |
| 14566 |
top: 0; |
| 14567 |
position: absolute; |
| 14568 |
} |
| 14569 |
.wp-adminify .wp-adminify-speed-analyze-history .history-table .log-date-time div { |
| 14570 |
display: inline-block; |
| 14571 |
} |
| 14572 |
.wp-adminify .wp-adminify-speed-analyze-history .history-table .log-date-time .time:before { |
| 14573 |
content: "-"; |
| 14574 |
height: 1px; |
| 14575 |
line-height: 0; |
| 14576 |
left: 3px; |
| 14577 |
top: 50%; |
| 14578 |
position: absolute; |
| 14579 |
} |
| 14580 |
.wp-adminify .wp-adminify-speed-analyze-history .history-table .progress-chart { |
| 14581 |
-webkit-border-radius: 50%; |
| 14582 |
border-radius: 50%; |
| 14583 |
display: -webkit-box; |
| 14584 |
display: -webkit-flex; |
| 14585 |
display: -ms-flexbox; |
| 14586 |
display: flex; |
| 14587 |
-webkit-box-align: center; |
| 14588 |
-webkit-align-items: center; |
| 14589 |
-ms-flex-align: center; |
| 14590 |
align-items: center; |
| 14591 |
-webkit-box-pack: center; |
| 14592 |
-webkit-justify-content: center; |
| 14593 |
-ms-flex-pack: center; |
| 14594 |
justify-content: center; |
| 14595 |
height: 48px; |
| 14596 |
width: 48px; |
| 14597 |
margin: 0 auto; |
| 14598 |
position: relative; |
| 14599 |
} |
| 14600 |
.wp-adminify .wp-adminify-speed-analyze-history .history-table .progress-chart.desktop { |
| 14601 |
border: 6px solid #00BA88; |
| 14602 |
} |
| 14603 |
.wp-adminify .wp-adminify-speed-analyze-history .history-table .progress-chart.desktop .progress-percentagte { |
| 14604 |
color: var(--adminify-btn-bg); |
| 14605 |
} |
| 14606 |
.wp-adminify .wp-adminify-speed-analyze-history .history-table .progress-chart.mobile { |
| 14607 |
border: 6px solid #c30052; |
| 14608 |
} |
| 14609 |
.wp-adminify .wp-adminify-speed-analyze-history .history-table .progress-chart.mobile .progress-percentagte { |
| 14610 |
color: #c30052; |
| 14611 |
} |
| 14612 |
.wp-adminify .wp-adminify-speed-analyze-history .history-table .progress-chart .progress-percentagte { |
| 14613 |
font-size: 14px; |
| 14614 |
font-weight: 600; |
| 14615 |
line-height: 20px; |
| 14616 |
} |
| 14617 |
.wp-adminify .wp-adminify-speed-analyze-history .history-table button { |
| 14618 |
background-color: var(--adminify-text-color); |
| 14619 |
-webkit-border-radius: 6px; |
| 14620 |
border-radius: 6px; |
| 14621 |
-webkit-box-shadow: none; |
| 14622 |
box-shadow: none; |
| 14623 |
cursor: pointer; |
| 14624 |
font-size: 14px; |
| 14625 |
font-weight: 700; |
| 14626 |
line-height: 32px; |
| 14627 |
padding: 0 1rem; |
| 14628 |
} |
| 14629 |
.wp-adminify .wp-adminify-speed-analyze-history .history-table button.report-button { |
| 14630 |
border: 1px solid var(--adminify-btn-bg); |
| 14631 |
color: var(--adminify-btn-bg); |
| 14632 |
} |
| 14633 |
.wp-adminify .wp-adminify-speed-analyze-history .history-table button.remove-button { |
| 14634 |
border: 1px solid var(--adminify-notif-bg-color); |
| 14635 |
color: var(--adminify-notif-bg-color); |
| 14636 |
} |
| 14637 |
.wp-adminify .wp-adminify-speed-analyze-history .wp-adminify-pagination { |
| 14638 |
margin: 0; |
| 14639 |
} |
| 14640 |
.wp-adminify .wp-adminify-speed-analyze-history .wp-adminify-pagination .pagination-list { |
| 14641 |
-webkit-box-pack: center; |
| 14642 |
-webkit-justify-content: center; |
| 14643 |
-ms-flex-pack: center; |
| 14644 |
justify-content: center; |
| 14645 |
} |
| 14646 |
.wp-adminify .wp-adminify-speed-analyze-history .wp-adminify-pagination a { |
| 14647 |
background-color: var(--adminify-text-color); |
| 14648 |
border: 1px solid var(--adminify-btn-bg); |
| 14649 |
-webkit-border-radius: 6px; |
| 14650 |
border-radius: 6px; |
| 14651 |
color: var(--adminify-btn-bg); |
| 14652 |
cursor: pointer; |
| 14653 |
display: inline-block; |
| 14654 |
font-size: 14px; |
| 14655 |
font-weight: 700; |
| 14656 |
line-height: 34px; |
| 14657 |
padding: 0; |
| 14658 |
} |
| 14659 |
.wp-adminify .wp-adminify-speed-analyze-history .wp-adminify-pagination a.is-current, .wp-adminify .wp-adminify-speed-analyze-history .wp-adminify-pagination a:hover { |
| 14660 |
background-color: var(--adminify-btn-bg); |
| 14661 |
color: var(--adminify-text-color); |
| 14662 |
} |
| 14663 |
.wp-adminify .wp-adminify-speed-analyze-history .wp-adminify-pagination a.is-current i, .wp-adminify .wp-adminify-speed-analyze-history .wp-adminify-pagination a:hover i { |
| 14664 |
color: var(--adminify-text-color); |
| 14665 |
} |
| 14666 |
.wp-adminify .wp-adminify-speed-analyze-history .wp-adminify-pagination a i { |
| 14667 |
line-height: 36px; |
| 14668 |
} |
| 14669 |
.wp-adminify .data-audit__adorn { |
| 14670 |
border: 1px solid #CFCFCF; |
| 14671 |
-webkit-border-radius: 3px; |
| 14672 |
border-radius: 3px; |
| 14673 |
padding: 0 3px; |
| 14674 |
} |
| 14675 |
.wp-adminify #wpbody-content #resultContent .summary-top { |
| 14676 |
width: 100%; |
| 14677 |
} |
| 14678 |
.wp-adminify #wpbody-content #resultContent .summary-top:after { |
| 14679 |
display: none; |
| 14680 |
} |
| 14681 |
.wp-adminify #wpbody-content #resultContent .data-audit-group__header { |
| 14682 |
color: #14142B; |
| 14683 |
font-size: 16px; |
| 14684 |
font-weight: 700; |
| 14685 |
line-height: 20px; |
| 14686 |
margin-top: 4px; |
| 14687 |
} |
| 14688 |
.wp-adminify #wpbody-content #resultContent .data-audit-group__header .data-audit-group__description { |
| 14689 |
font-weight: 400; |
| 14690 |
} |
| 14691 |
.wp-adminify #wpbody-content #resultContent .data-text { |
| 14692 |
color: #757575; |
| 14693 |
} |
| 14694 |
.wp-adminify #wpbody-content #resultContent .data-audit__description { |
| 14695 |
color: #000; |
| 14696 |
font-size: 15px; |
| 14697 |
line-height: 22px; |
| 14698 |
padding: 0 20px 12px; |
| 14699 |
} |
| 14700 |
.wp-adminify #wpbody-content #resultContent .chain-host { |
| 14701 |
opacity: 0.6; |
| 14702 |
} |
| 14703 |
.wp-adminify #wpbody-content #resultContent .node-snippet { |
| 14704 |
font-size: 14px; |
| 14705 |
line-height: 20px; |
| 14706 |
} |
| 14707 |
.wp-adminify #wpbody-content #resultContent .data-audit-tab { |
| 14708 |
position: relative; |
| 14709 |
} |
| 14710 |
.wp-adminify #wpbody-content #resultContent .data-metrics-toggle__input { |
| 14711 |
border: 0; |
| 14712 |
cursor: pointer; |
| 14713 |
opacity: 0; |
| 14714 |
position: relative; |
| 14715 |
right: 0; |
| 14716 |
width: 74px; |
| 14717 |
height: 28px; |
| 14718 |
top: -3px; |
| 14719 |
} |
| 14720 |
.wp-adminify #wpbody-content #resultContent .data-metrics-toggle__input:focus { |
| 14721 |
border: 0; |
| 14722 |
outline: 0; |
| 14723 |
} |
| 14724 |
.wp-adminify #wpbody-content #resultContent .data-metrics-toggle__label { |
| 14725 |
background-color: var(--adminify-preset-background); |
| 14726 |
-webkit-border-radius: 20px; |
| 14727 |
border-radius: 20px; |
| 14728 |
top: 0; |
| 14729 |
right: 0; |
| 14730 |
position: absolute; |
| 14731 |
} |
| 14732 |
.wp-adminify #wpbody-content #resultContent .data-metrics-toggle__icon { |
| 14733 |
border: 1px solid #F1F1F3; |
| 14734 |
} |
| 14735 |
.wp-adminify #wpbody-content #resultContent .data-metrics-toggle__icon--less { |
| 14736 |
-webkit-border-top-left-radius: 20px; |
| 14737 |
border-top-left-radius: 20px; |
| 14738 |
-webkit-border-bottom-left-radius: 20px; |
| 14739 |
border-bottom-left-radius: 20px; |
| 14740 |
} |
| 14741 |
.wp-adminify #wpbody-content #resultContent .data-metrics-toggle__icon--more { |
| 14742 |
-webkit-border-top-right-radius: 20px; |
| 14743 |
border-top-right-radius: 20px; |
| 14744 |
-webkit-border-bottom-right-radius: 20px; |
| 14745 |
border-bottom-right-radius: 20px; |
| 14746 |
} |
| 14747 |
.wp-adminify #wpbody-content #resultContent .data-metrics-toggle__input:not(:checked) + label .data-metrics-toggle__icon--less, |
| 14748 |
.wp-adminify #wpbody-content #resultContent .data-metrics-toggle__input:checked + label .data-metrics-toggle__icon--more { |
| 14749 |
background-color: var(--adminify-btn-bg); |
| 14750 |
border-color: var(--adminify-btn-bg); |
| 14751 |
} |
| 14752 |
.wp-adminify #wpbody-content #resultContent .data-metrics-toggle__input:not(:checked) + label .data-metrics-toggle__icon--less svg path, |
| 14753 |
.wp-adminify #wpbody-content #resultContent .data-metrics-toggle__input:checked + label .data-metrics-toggle__icon--more svg path { |
| 14754 |
fill: var(--adminify-text-color); |
| 14755 |
} |
| 14756 |
.wp-adminify #wpbody-content #resultContent .data-metrics-toggle__icon { |
| 14757 |
height: 28px; |
| 14758 |
width: 50%; |
| 14759 |
padding: 2px 5px; |
| 14760 |
} |
| 14761 |
.wp-adminify #wpbody-content #resultContent .data-metrics-container { |
| 14762 |
clear: both; |
| 14763 |
} |
| 14764 |
.wp-adminify #wpbody-content #resultContent .result-description { |
| 14765 |
color: #4E4B66; |
| 14766 |
font-size: 15px; |
| 14767 |
line-height: 23px; |
| 14768 |
text-align: left; |
| 14769 |
padding-bottom: 10px; |
| 14770 |
} |
| 14771 |
.wp-adminify #wpbody-content #resultContent .data-metrics__disclaimer { |
| 14772 |
border-top: 1px solid #F1F1F3; |
| 14773 |
} |
| 14774 |
.wp-adminify #wpbody-content #resultContent .report-icon--treemap { |
| 14775 |
background-color: var(--adminify-text-color); |
| 14776 |
border: 1px solid #F1F1F3; |
| 14777 |
-webkit-border-radius: 4px; |
| 14778 |
border-radius: 4px; |
| 14779 |
color: #1a73e8; |
| 14780 |
font-size: 16px; |
| 14781 |
font-weight: bold; |
| 14782 |
line-height: 20px; |
| 14783 |
padding: 8px 12px 5px; |
| 14784 |
position: relative; |
| 14785 |
text-transform: uppercase; |
| 14786 |
} |
| 14787 |
.wp-adminify #wpbody-content #resultContent .report-icon--treemap:before { |
| 14788 |
content: "\f116"; |
| 14789 |
color: #4E4B66; |
| 14790 |
font-family: dashicons; |
| 14791 |
font-size: 16px; |
| 14792 |
float: left; |
| 14793 |
margin-right: 5px; |
| 14794 |
opacity: 0.7; |
| 14795 |
} |
| 14796 |
.wp-adminify #wpbody-content #resultContent #screenshot-thumbnails .data-filmstrip__frame { |
| 14797 |
border: 1px solid #F1F1F3; |
| 14798 |
max-height: 100px; |
| 14799 |
max-width: 60px; |
| 14800 |
overflow: hidden; |
| 14801 |
} |
| 14802 |
.wp-adminify #wpbody-content #resultContent summary { |
| 14803 |
list-style: none; |
| 14804 |
} |
| 14805 |
.wp-adminify #wpbody-content #resultContent .summary-top.data-audit__title-and-text { |
| 14806 |
padding-bottom: 8px; |
| 14807 |
position: relative; |
| 14808 |
} |
| 14809 |
.wp-adminify #wpbody-content #resultContent .summary-top.data-audit__title-and-text::after { |
| 14810 |
content: "\f347"; |
| 14811 |
color: rgba(78, 75, 102, 0.54); |
| 14812 |
display: block; |
| 14813 |
font-family: dashicons; |
| 14814 |
font-size: 14px; |
| 14815 |
top: 50%; |
| 14816 |
right: 15px; |
| 14817 |
margin-top: -10px; |
| 14818 |
position: absolute; |
| 14819 |
} |
| 14820 |
.wp-adminify #wpbody-content #resultContent .data-audit__header { |
| 14821 |
cursor: pointer; |
| 14822 |
} |
| 14823 |
.wp-adminify #wpbody-content #resultContent .data-audit__header:hover, |
| 14824 |
.wp-adminify #wpbody-content #resultContent [open] .data-audit__header { |
| 14825 |
background-color: #fafafa; |
| 14826 |
} |
| 14827 |
.wp-adminify #wpbody-content #resultContent [open] .summary-top.data-audit__title-and-text:after { |
| 14828 |
content: "\f343"; |
| 14829 |
} |
| 14830 |
.wp-adminify #wpbody-content #resultContent .data-audit__stackpack__img { |
| 14831 |
float: left; |
| 14832 |
max-width: 80px; |
| 14833 |
} |
| 14834 |
.wp-adminify #wpbody-content #resultContent .data-table { |
| 14835 |
margin: 15px 0; |
| 14836 |
} |
| 14837 |
.wp-adminify #wpbody-content #resultContent .data-table th, |
| 14838 |
.wp-adminify #wpbody-content #resultContent .data-table td { |
| 14839 |
color: #14142B; |
| 14840 |
padding: 10px 5px; |
| 14841 |
vertical-align: middle; |
| 14842 |
} |
| 14843 |
.wp-adminify #wpbody-content #resultContent .data-table th { |
| 14844 |
color: rgba(78, 75, 102, 0.54); |
| 14845 |
font-weight: 400; |
| 14846 |
} |
| 14847 |
.wp-adminify #wpbody-content #resultContent .data-table td { |
| 14848 |
color: #14142B; |
| 14849 |
} |
| 14850 |
.wp-adminify #wpbody-content #resultContent .data-table a { |
| 14851 |
color: #14142B; |
| 14852 |
} |
| 14853 |
.wp-adminify #wpbody-content #resultContent .data-table .data-text__url-host { |
| 14854 |
color: rgba(78, 75, 102, 0.54); |
| 14855 |
} |
| 14856 |
.wp-adminify #wpbody-content #resultContent .data-table-column--bytes { |
| 14857 |
text-align: right; |
| 14858 |
} |
| 14859 |
.wp-adminify #wpbody-content #resultContent #network-requests table.data-table.data-details { |
| 14860 |
table-layout: fixed; |
| 14861 |
word-break: break-all; |
| 14862 |
} |
| 14863 |
.wp-adminify #wpbody-content #resultContent .node-level { |
| 14864 |
float: left; |
| 14865 |
margin: 0 20px 10px 0; |
| 14866 |
} |
| 14867 |
.wp-adminify #wpbody-content #resultContent .chain-list { |
| 14868 |
font-size: 15px; |
| 14869 |
} |
| 14870 |
.wp-adminify #wpbody-content #resultContent .chain-list a { |
| 14871 |
color: #000; |
| 14872 |
} |
| 14873 |
.wp-adminify #wpbody-content #resultContent .chain-list .has-child { |
| 14874 |
padding-left: 20px; |
| 14875 |
} |
| 14876 |
.wp-adminify #wpbody-content #resultContent .chain-list li { |
| 14877 |
position: relative; |
| 14878 |
} |
| 14879 |
.wp-adminify #wpbody-content #resultContent .chain-list li .chain-child:before, |
| 14880 |
.wp-adminify #wpbody-content #resultContent .chain-list li .chain-child li:before { |
| 14881 |
content: ""; |
| 14882 |
background-color: #c1c1c7; |
| 14883 |
left: 0; |
| 14884 |
position: absolute; |
| 14885 |
} |
| 14886 |
.wp-adminify #wpbody-content #resultContent .chain-list li .chain-child { |
| 14887 |
position: relative; |
| 14888 |
} |
| 14889 |
.wp-adminify #wpbody-content #resultContent .chain-list li .chain-child:before { |
| 14890 |
height: 100%; |
| 14891 |
width: 2px; |
| 14892 |
top: 0; |
| 14893 |
} |
| 14894 |
.wp-adminify #wpbody-content #resultContent .chain-list li .chain-child li:before { |
| 14895 |
height: 2px; |
| 14896 |
width: 20px; |
| 14897 |
top: 50%; |
| 14898 |
left: -29px; |
| 14899 |
margin-top: -1px; |
| 14900 |
} |
| 14901 |
.wp-adminify #wpbody-content #resultContent .chain-list li .chain-child li.has-child:before { |
| 14902 |
top: 10px; |
| 14903 |
width: 45px; |
| 14904 |
} |
| 14905 |
.wp-adminify #wpbody-content #resultContent .data-table .data-row--even:nth-child(even) { |
| 14906 |
background-color: #f1f0f0; |
| 14907 |
} |
| 14908 |
.wp-adminify body.wp-adminify { |
| 14909 |
--adminify-text-color: #fff; |
| 14910 |
} |
| 14911 |
.wp-adminify body.wp-adminify { |
| 14912 |
--adminify-text-color: #fff; |
| 14913 |
} |
| 14914 |
.wp-adminify .components-panel a { |
| 14915 |
color: var(--adminify-btn-bg); |
| 14916 |
} |
| 14917 |
.wp-adminify .block-editor-color-gradient-control__panel .components-dropdown .components-color-palette__custom-color { |
| 14918 |
-webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2) !important; |
| 14919 |
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2) !important; |
| 14920 |
} |
| 14921 |
.wp-adminify.network-admin.themes-php #wpbody-content .wp-list-table .column-primary .row-actions a { |
| 14922 |
color: var(--adminify-text-color); |
| 14923 |
line-height: 1.2rem; |
| 14924 |
padding: 0 5px; |
| 14925 |
} |
| 14926 |
.wp-adminify.network-admin.themes-php #wpbody-content .wp-list-table.widefat td { |
| 14927 |
max-width: 800px; |
| 14928 |
} |
| 14929 |
.wp-adminify.network-admin .wp-clone-sites-options { |
| 14930 |
margin: 0 auto; |
| 14931 |
} |
| 14932 |
.wp-adminify.network-admin.adminify-dark-mode #wpbody-content .wp-clone-sites-options form { |
| 14933 |
-webkit-box-shadow: 0 0 24px #000; |
| 14934 |
box-shadow: 0 0 24px #000; |
| 14935 |
} |
| 14936 |
.wp-adminify.network-admin.adminify-dark-mode #wpbody-content .wp-clone-sites-options form, |
| 14937 |
.wp-adminify.network-admin.adminify-dark-mode #wpbody-content .line-single--wrapper { |
| 14938 |
background-color: rgba(255, 255, 255, 0.05); |
| 14939 |
color: #cfcfcf; |
| 14940 |
} |
| 14941 |
.wp-adminify.network-admin.adminify-dark-mode #wpbody-content .wp-clone-sites-options form h1, |
| 14942 |
.wp-adminify.network-admin.adminify-dark-mode #wpbody-content .line-single--wrapper h1 { |
| 14943 |
color: #cfcfcf; |
| 14944 |
} |
| 14945 |
.wp-adminify.network-admin.adminify-dark-mode #wpbody-content button#option_modules_toggle { |
| 14946 |
color: #cfcfcf; |
| 14947 |
background: #111; |
| 14948 |
-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3); |
| 14949 |
box-shadow: 0 0 4px rgba(0, 0, 0, 0.3); |
| 14950 |
} |
| 14951 |
.wp-adminify.network-admin.adminify-dark-mode .select2-dropdown { |
| 14952 |
background-color: #111; |
| 14953 |
color: #cfcfcf; |
| 14954 |
} |
| 14955 |
.wp-adminify.network-admin.adminify-dark-mode .select2-container--default .select2-selection--single, |
| 14956 |
.wp-adminify.network-admin.adminify-dark-mode .select2-container--default .select2-results__option--selected { |
| 14957 |
background-color: #020407; |
| 14958 |
} |
| 14959 |
.wp-adminify.network-admin.adminify-dark-mode .select2-container--default .select2-selection--single, |
| 14960 |
.wp-adminify.network-admin.adminify-dark-mode .select2-dropdown, |
| 14961 |
.wp-adminify.network-admin.adminify-dark-mode .select2-container--default .select2-search--dropdown .select2-search__field { |
| 14962 |
border: 1px solid #2b2b2b; |
| 14963 |
} |
| 14964 |
|
| 14965 |
body.wp-adminify { |
| 14966 |
--adminify-text-color: #fff; |
| 14967 |
} |
| 14968 |
|
| 14969 |
body.wp-adminify { |
| 14970 |
--adminify-text-color: #fff; |
| 14971 |
} |
| 14972 |
|
| 14973 |
.wp-customizer .wp-full-overlay-sidebar #customize-save-button-wrapper { |
| 14974 |
margin-top: 8px; |
| 14975 |
} |
| 14976 |
.wp-customizer .wp-full-overlay-sidebar .customize-controls-close { |
| 14977 |
color: var(--adminify-notif-bg-color); |
| 14978 |
} |
| 14979 |
.wp-customizer .wp-full-overlay-sidebar .customize-controls-close:hover, .wp-customizer .wp-full-overlay-sidebar .customize-controls-close:focus { |
| 14980 |
border-top-color: var(--adminify-notif-bg-color); |
| 14981 |
color: var(--adminify-notif-bg-color); |
| 14982 |
} |
| 14983 |
.wp-customizer .wp-full-overlay-sidebar .customize-save-button-wrapper .button, |
| 14984 |
.wp-customizer .wp-full-overlay-sidebar .control-panel-themes .button { |
| 14985 |
background-color: var(--adminify-btn-bg); |
| 14986 |
border: 1px solid var(--adminify-btn-bg); |
| 14987 |
-webkit-box-shadow: none; |
| 14988 |
box-shadow: none; |
| 14989 |
color: var(--adminify-text-color); |
| 14990 |
line-height: 28px; |
| 14991 |
} |
| 14992 |
.wp-customizer .wp-full-overlay-sidebar .customize-save-button-wrapper .button:hover, |
| 14993 |
.wp-customizer .wp-full-overlay-sidebar .control-panel-themes .button:hover { |
| 14994 |
background-color: var(--adminify-text-color); |
| 14995 |
color: var(--adminify-btn-bg); |
| 14996 |
} |
| 14997 |
.wp-customizer .wp-full-overlay-sidebar .customize-save-button-wrapper .button { |
| 14998 |
height: auto; |
| 14999 |
} |
| 15000 |
.wp-customizer .wp-full-overlay-sidebar .customize-save-button-wrapper button.dashicons { |
| 15001 |
font-family: dashicons; |
| 15002 |
} |
| 15003 |
.wp-customizer .wp-full-overlay-sidebar .customize-panel-back { |
| 15004 |
border-left-color: var(--adminify-btn-bg); |
| 15005 |
color: var(--adminify-btn-bg); |
| 15006 |
} |
| 15007 |
.wp-customizer .wp-full-overlay-sidebar .customize-panel-back:focus, .wp-customizer .wp-full-overlay-sidebar .customize-panel-back:hover { |
| 15008 |
border-left-color: var(--adminify-btn-bg); |
| 15009 |
} |
| 15010 |
.wp-customizer .wp-full-overlay-sidebar #customize-controls .customize-info .customize-help-toggle { |
| 15011 |
color: var(--adminify-btn-bg); |
| 15012 |
} |
| 15013 |
.wp-customizer .wp-full-overlay-sidebar #customize-controls .customize-info .customize-help-toggle:focus, .wp-customizer .wp-full-overlay-sidebar #customize-controls .customize-info .customize-help-toggle:hover { |
| 15014 |
color: var(--adminify-btn-bg); |
| 15015 |
} |
| 15016 |
.wp-customizer .wp-full-overlay-sidebar #customize-outer-theme-controls .accordion-section-title:focus, .wp-customizer .wp-full-overlay-sidebar #customize-outer-theme-controls .accordion-section-title:hover, |
| 15017 |
.wp-customizer .wp-full-overlay-sidebar #customize-theme-controls .accordion-section-title:focus, |
| 15018 |
.wp-customizer .wp-full-overlay-sidebar #customize-theme-controls .accordion-section-title:hover { |
| 15019 |
border-left-color: var(--adminify-btn-bg); |
| 15020 |
color: var(--adminify-btn-bg); |
| 15021 |
} |
| 15022 |
.wp-customizer .wp-full-overlay-sidebar #customize-outer-theme-controls .accordion-section-title:focus:after, .wp-customizer .wp-full-overlay-sidebar #customize-outer-theme-controls .accordion-section-title:hover:after, |
| 15023 |
.wp-customizer .wp-full-overlay-sidebar #customize-theme-controls .accordion-section-title:focus:after, |
| 15024 |
.wp-customizer .wp-full-overlay-sidebar #customize-theme-controls .accordion-section-title:hover:after { |
| 15025 |
color: var(--adminify-btn-bg); |
| 15026 |
} |
| 15027 |
|
| 15028 |
/*# sourceMappingURL=wp-adminify.css.map*/ |