style.css
972 lines
| 1 | /** |
| 2 | * 0.0 リセットcss |
| 3 | * |
| 4 | * デフォルトのスタイル削除 |
| 5 | */ |
| 6 | |
| 7 | #cloudsecure-wp-security *, |
| 8 | #cloudsecure-wp-security ::before, |
| 9 | #cloudsecure-wp-security ::after { |
| 10 | box-sizing: border-box; |
| 11 | } |
| 12 | |
| 13 | #cloudsecure-wp-security button, |
| 14 | [type="button"], |
| 15 | [type="reset"], |
| 16 | [type="submit"], |
| 17 | [role="button"] { |
| 18 | cursor: pointer; |
| 19 | } |
| 20 | |
| 21 | /** |
| 22 | * 1.0 � |
| 23 | �通パーツ |
| 24 | * |
| 25 | * 各ページて用いるパーツ |
| 26 | */ |
| 27 | |
| 28 | /* display:flexの標準セット */ |
| 29 | #cloudsecure-wp-security .flex { |
| 30 | display: flex; |
| 31 | align-items: center; |
| 32 | flex-wrap: wrap; |
| 33 | row-gap: 10px; |
| 34 | } |
| 35 | |
| 36 | /* ヘッダー */ |
| 37 | #cloudsecure-wp-security .header { |
| 38 | margin-bottom: 20px; |
| 39 | padding-top: 20px; |
| 40 | width: 100%; |
| 41 | } |
| 42 | |
| 43 | /* ヘッダーのロゴ */ |
| 44 | #cloudsecure-wp-security .header-logo { |
| 45 | width: min(100%, 380px); |
| 46 | aspect-ratio: 380/42; |
| 47 | background-image: url("../images/logo.png"); |
| 48 | background-size: contain; |
| 49 | } |
| 50 | |
| 51 | /* コンテンツの� |
| 52 | �体を囲む */ |
| 53 | #cloudsecure-wp-security { |
| 54 | padding-right: 20px; |
| 55 | padding-left: 20px; |
| 56 | color: #1d2327; |
| 57 | font-family: "Meiryo", "メイリオ", sans-serif; |
| 58 | } |
| 59 | |
| 60 | /* ページのタイトルとその説明+エラー、完了メッセージのエリア */ |
| 61 | #cloudsecure-wp-security .top-area { |
| 62 | display: flex; |
| 63 | flex-wrap: wrap; |
| 64 | margin-bottom: 20px; |
| 65 | width: 100%; |
| 66 | } |
| 67 | |
| 68 | /* ページのタイトルとマニュアルページへのテキスト*/ |
| 69 | .title-block { |
| 70 | display: flex; |
| 71 | justify-content: space-between; |
| 72 | align-items: center; |
| 73 | flex-wrap: wrap; |
| 74 | order: 1; |
| 75 | margin-bottom: 12px; |
| 76 | width: 100%; |
| 77 | } |
| 78 | |
| 79 | /* ページのタイトル */ |
| 80 | .title-block-title { |
| 81 | padding: 0 !important; |
| 82 | width: -moz-fit-content; |
| 83 | width: fit-content; |
| 84 | font-size: 23px !important; |
| 85 | font-weight: 700 !important; |
| 86 | } |
| 87 | |
| 88 | /* マニュアルページへのテキスト */ |
| 89 | .title-block-small-text { |
| 90 | margin: 0 !important; |
| 91 | padding-right: 8px; |
| 92 | width: -moz-fit-content; |
| 93 | width: fit-content; |
| 94 | font-size: 13px; |
| 95 | } |
| 96 | |
| 97 | /* マニュアルページへのリンク */ |
| 98 | .title-block-link { |
| 99 | position: relative; |
| 100 | color: #2170b0; |
| 101 | text-decoration: underline !important; |
| 102 | font-size: 13px; |
| 103 | outline: 1; |
| 104 | } |
| 105 | |
| 106 | .title-block-link::after { |
| 107 | position: absolute; |
| 108 | top: 50%; |
| 109 | right: -4px; |
| 110 | width: 8px; |
| 111 | height: 8px; |
| 112 | background-image: url("../images/link.png"); |
| 113 | background-size: cover; |
| 114 | transform: translateY(-50%) translateX(100%); |
| 115 | content: ""; |
| 116 | } |
| 117 | |
| 118 | /* タイトル下のテキスト */ |
| 119 | .title-bottom-text { |
| 120 | order: 3; |
| 121 | font-size: 13px; |
| 122 | } |
| 123 | |
| 124 | .title-bottom-text strong { |
| 125 | font-weight: 700; |
| 126 | } |
| 127 | |
| 128 | /* エラーメッセージと完了メッセージを囲む */ |
| 129 | .error-success-area { |
| 130 | order: 2; |
| 131 | width: 100%; |
| 132 | } |
| 133 | |
| 134 | /* エラーメッセージと完了メッセージ */ |
| 135 | #cloudsecure-wp-security .error-box, |
| 136 | #cloudsecure-wp-security .success-box { |
| 137 | position: relative; |
| 138 | margin-bottom: 12px; |
| 139 | border: 1px solid #f0f0f1; |
| 140 | padding: 12px 12px 12px 17px; |
| 141 | width: 100%; |
| 142 | background-color: #fff; |
| 143 | font-size: 14px; |
| 144 | line-height: 1.5; |
| 145 | } |
| 146 | |
| 147 | #cloudsecure-wp-security .error-box:last-child, |
| 148 | #cloudsecure-wp-security .success-box:last-child { |
| 149 | margin-bottom: 24px; |
| 150 | } |
| 151 | |
| 152 | #cloudsecure-wp-security .error-box::after, |
| 153 | #cloudsecure-wp-security .success-box::after { |
| 154 | position: absolute; |
| 155 | top: 0; |
| 156 | left: 0; |
| 157 | width: 4px; |
| 158 | height: 100%; |
| 159 | content: ""; |
| 160 | } |
| 161 | |
| 162 | #cloudsecure-wp-security .error-box::after { |
| 163 | background-color: #d63638; |
| 164 | } |
| 165 | |
| 166 | #cloudsecure-wp-security .success-box::after { |
| 167 | background-color: #00a32a; |
| 168 | } |
| 169 | |
| 170 | #cloudsecure-wp-security .error-box.red { |
| 171 | background-color: #fbefef; |
| 172 | } |
| 173 | |
| 174 | #cloudsecure-wp-security .success-box.green { |
| 175 | background-color: #ebf8ee; |
| 176 | } |
| 177 | |
| 178 | #cloudsecure-wp-security .success-box a{ |
| 179 | display: inline-block; |
| 180 | position: relative; |
| 181 | padding-right: 12px; |
| 182 | word-break: break-all; |
| 183 | } |
| 184 | |
| 185 | #cloudsecure-wp-security .success-box a::after{ |
| 186 | position: absolute; |
| 187 | top: 6px; |
| 188 | right: 2px; |
| 189 | width: 8px; |
| 190 | height: 8px; |
| 191 | background-image: url("../images/link.png"); |
| 192 | background-size: cover; |
| 193 | content: ""; |
| 194 | } |
| 195 | |
| 196 | /* 各ページの� |
| 197 | 容を囲む */ |
| 198 | #cloudsecure-wp-security .box { |
| 199 | margin-bottom: 20px; |
| 200 | border: 1px solid #dbdcdd; |
| 201 | padding-bottom: 12px; |
| 202 | width: 100%; |
| 203 | background-color: #fff; |
| 204 | } |
| 205 | |
| 206 | #cloudsecure-wp-security .box.mt-20 { |
| 207 | margin-top: 20px; |
| 208 | } |
| 209 | |
| 210 | #cloudsecure-wp-security .box:last-child { |
| 211 | margin-bottom: 0; |
| 212 | } |
| 213 | |
| 214 | /* boxの上部 */ |
| 215 | #cloudsecure-wp-security .box-top { |
| 216 | border-bottom: 1px solid #dbdcdd; |
| 217 | padding: 12px; |
| 218 | font-size: 16px; |
| 219 | font-weight: 700; |
| 220 | } |
| 221 | |
| 222 | /* boxの下部 */ |
| 223 | #cloudsecure-wp-security .box-bottom { |
| 224 | padding: 12px 24px 0px 24px; |
| 225 | } |
| 226 | |
| 227 | #cloudsecure-wp-security .box-bottom.pt-0 { |
| 228 | padding-top: 0; |
| 229 | } |
| 230 | |
| 231 | /* box� |
| 232 | の各行 */ |
| 233 | #cloudsecure-wp-security .box-row { |
| 234 | display: flex; |
| 235 | align-items: center; |
| 236 | flex-wrap: wrap; |
| 237 | row-gap: 20px; |
| 238 | border-bottom: 1px solid #dbdcdd; |
| 239 | padding: 12px 0px 12px 0px; |
| 240 | } |
| 241 | |
| 242 | #cloudsecure-wp-security .box-row.pb-0 { |
| 243 | padding-bottom: 0; |
| 244 | } |
| 245 | |
| 246 | #cloudsecure-wp-security .box-row.flex-start { |
| 247 | align-items: flex-start; |
| 248 | } |
| 249 | |
| 250 | #cloudsecure-wp-security .box-row:last-child { |
| 251 | border: none; |
| 252 | } |
| 253 | |
| 254 | /* boxの各行のタイトル */ |
| 255 | .box-row-title { |
| 256 | margin-right: 22.5px; |
| 257 | width: 227px; |
| 258 | color: #1d2327; |
| 259 | font-size: 14px; |
| 260 | font-weight: 700; |
| 261 | line-height: 1; |
| 262 | } |
| 263 | |
| 264 | .box-row-title.pt-12 { |
| 265 | padding-top: 12px; |
| 266 | } |
| 267 | |
| 268 | .box-row-title a { |
| 269 | color: #1d2327; |
| 270 | font-size: 14px; |
| 271 | font-weight: 700; |
| 272 | } |
| 273 | |
| 274 | .box-row-title.not-label { |
| 275 | width: 275px; |
| 276 | } |
| 277 | |
| 278 | /* boxの行の� |
| 279 | 容 */ |
| 280 | .box-row-content { |
| 281 | width: calc(100% - 297.5px); |
| 282 | font-size: 14px; |
| 283 | font-weight: 400; |
| 284 | } |
| 285 | |
| 286 | .box-row-content.radio-btns { |
| 287 | min-width: 100px; |
| 288 | } |
| 289 | |
| 290 | #cloudsecure-wp-security input[type="radio"] { |
| 291 | display: none; |
| 292 | } |
| 293 | |
| 294 | #cloudsecure-wp-security input[type="checkbox"] { |
| 295 | display: none; |
| 296 | } |
| 297 | |
| 298 | #cloudsecure-wp-security input[type="text"] { |
| 299 | border: 1px solid #dbdcdd; |
| 300 | border-radius: 4px; |
| 301 | padding: 4px 7px; |
| 302 | } |
| 303 | |
| 304 | /* 有効、無効のボタンを囲む */ |
| 305 | .enabled-or-disabled { |
| 306 | display: flex; |
| 307 | margin-bottom: 20px; |
| 308 | border-radius: 4px; |
| 309 | width: -moz-fit-content; |
| 310 | width: fit-content; |
| 311 | overflow: hidden; |
| 312 | } |
| 313 | |
| 314 | .enabled-or-disabled__btn+label { |
| 315 | padding: 0px 18px; |
| 316 | height: 32px; |
| 317 | background-color: #dbdcdd; |
| 318 | color: #fff; |
| 319 | font-size: 14px; |
| 320 | font-weight: 700; |
| 321 | line-height: 32px; |
| 322 | } |
| 323 | |
| 324 | .enabled-or-disabled__btn:checked+label { |
| 325 | background-color: #329ff1; |
| 326 | } |
| 327 | |
| 328 | /* 丸型のラジオボタン */ |
| 329 | .circle-radio+label { |
| 330 | display: inline-block; |
| 331 | position: relative; |
| 332 | padding-left: 24px; |
| 333 | font-size: 14px; |
| 334 | font-weight: 400; |
| 335 | line-height: 1.5; |
| 336 | } |
| 337 | |
| 338 | .circle-radio+label::after { |
| 339 | position: absolute; |
| 340 | top: 2px; |
| 341 | left: 0; |
| 342 | border: 1px solid #dbdcdd; |
| 343 | border-radius: 50%; |
| 344 | width: 16px; |
| 345 | height: 16px; |
| 346 | content: ""; |
| 347 | } |
| 348 | |
| 349 | .circle-radio+label::before { |
| 350 | display: none; |
| 351 | position: absolute; |
| 352 | top: 6px; |
| 353 | left: 4px; |
| 354 | border-radius: 50%; |
| 355 | width: 8px; |
| 356 | height: 8px; |
| 357 | background-color: #329ff1; |
| 358 | content: ""; |
| 359 | } |
| 360 | |
| 361 | .circle-radio:checked+label::before { |
| 362 | display: block; |
| 363 | } |
| 364 | |
| 365 | /* 変更を保存のボタン */ |
| 366 | #submit-btn-area .button { |
| 367 | border: none; |
| 368 | border-radius: 3px; |
| 369 | height: 32px; |
| 370 | background-color: #0f8fef; |
| 371 | color: #fff; |
| 372 | font-size: 14px; |
| 373 | font-weight: 400; |
| 374 | line-height: 32px; |
| 375 | } |
| 376 | |
| 377 | #submit-btn-area .button:hover{ |
| 378 | background-color: #0A68AE; |
| 379 | } |
| 380 | |
| 381 | /* 注釈のような色が薄いテキスト */ |
| 382 | #cloudsecure-wp-security .pale-text { |
| 383 | color: #646970; |
| 384 | font-size: 13px; |
| 385 | font-weight: 400; |
| 386 | line-height: 1.5384615385; |
| 387 | } |
| 388 | |
| 389 | /*チェックボックスのラベル */ |
| 390 | #cloudsecure-wp-security .checkbox+label { |
| 391 | display: block; |
| 392 | position: relative; |
| 393 | padding-left: 24.5px; |
| 394 | } |
| 395 | |
| 396 | #cloudsecure-wp-security .checkbox+label::before { |
| 397 | position: absolute; |
| 398 | top: 9px; |
| 399 | left: 0; |
| 400 | z-index: 1; |
| 401 | transform: translateY(-50%); |
| 402 | border: 1px solid #dbdcdd; |
| 403 | width: 16px; |
| 404 | height: 16px; |
| 405 | background-color: #fff; |
| 406 | content: ""; |
| 407 | } |
| 408 | |
| 409 | #cloudsecure-wp-security .checkbox+label::after { |
| 410 | position: absolute; |
| 411 | top: 5px; |
| 412 | left: 3px; |
| 413 | z-index: 2; |
| 414 | width: 11px; |
| 415 | height: 8px; |
| 416 | background-image: url("../images/check.png"); |
| 417 | background-size: cover; |
| 418 | content: ""; |
| 419 | } |
| 420 | |
| 421 | #cloudsecure-wp-security .checkbox:checked+label::before { |
| 422 | border: none; |
| 423 | background-color: #0f8fef; |
| 424 | } |
| 425 | |
| 426 | |
| 427 | /** |
| 428 | * 2.0 ダッシュボード |
| 429 | * |
| 430 | * ダッシュボードて使われるパーツ |
| 431 | */ |
| 432 | |
| 433 | /* 有効のラベル */ |
| 434 | #cloudsecure-wp-security .flag { |
| 435 | border-radius: 200px; |
| 436 | width: 34px; |
| 437 | height: 20px; |
| 438 | color: #fff; |
| 439 | line-height: 20px; |
| 440 | text-align: center; |
| 441 | } |
| 442 | |
| 443 | /* 有効のラベル(有効) */ |
| 444 | #cloudsecure-wp-security .val-t { |
| 445 | position: relative; |
| 446 | margin-right: 14px; |
| 447 | background-color: #329ff1; |
| 448 | font-size: 0; |
| 449 | content: "有効"; |
| 450 | } |
| 451 | |
| 452 | #cloudsecure-wp-security .val-t:after { |
| 453 | position: absolute; |
| 454 | top: 0; |
| 455 | left: 0; |
| 456 | width: 100%; |
| 457 | height: 100%; |
| 458 | color: #fff; |
| 459 | font-size: 11px; |
| 460 | text-align: center; |
| 461 | content: "有効"; |
| 462 | } |
| 463 | |
| 464 | /* 有効のラベル(無効) */ |
| 465 | #cloudsecure-wp-security .val-f { |
| 466 | opacity: 0; |
| 467 | margin-right: 14px; |
| 468 | background-color: #dd0000; |
| 469 | font-size: 0; |
| 470 | content: ""; |
| 471 | } |
| 472 | |
| 473 | /* ダッシュボードのbox */ |
| 474 | #cloudsecure-wp-security .box.dash-box { |
| 475 | margin-top: -16px; |
| 476 | } |
| 477 | |
| 478 | |
| 479 | /** |
| 480 | * 3.0 ログインURL変更ページ |
| 481 | * |
| 482 | * ログインURL変更ページのパーツ |
| 483 | */ |
| 484 | |
| 485 | /* input前のテキスト */ |
| 486 | #cloudsecure-wp-security .before-input { |
| 487 | margin-right: 20px; |
| 488 | width: -moz-fit-content; |
| 489 | width: fit-content; |
| 490 | white-space: nowrap; |
| 491 | } |
| 492 | |
| 493 | /* 変更後のログインurlの� |
| 494 | �力欄 */ |
| 495 | .rename-login-page-name-input { |
| 496 | flex-grow: 1; |
| 497 | } |
| 498 | |
| 499 | |
| 500 | /** |
| 501 | * 4.0 管理画面アクセス制限ページ |
| 502 | * |
| 503 | * 管理画面アクセス制限ページのパーツ |
| 504 | */ |
| 505 | |
| 506 | /* 除外パスのテキストエリア*/ |
| 507 | .restrict-textarea { |
| 508 | margin-bottom: 8px; |
| 509 | border: 1px solid #b7b9bc; |
| 510 | padding: 12px; |
| 511 | width: 100%; |
| 512 | height: 224px; |
| 513 | font-size: 13px; |
| 514 | font-weight: 400; |
| 515 | line-height: 1.5384615385; |
| 516 | } |
| 517 | |
| 518 | |
| 519 | /** |
| 520 | * 5.0 REST API無効化ページ |
| 521 | * |
| 522 | * REST API無効化ページのパーツ |
| 523 | */ |
| 524 | |
| 525 | /* 除外プラグインのエリア */ |
| 526 | .remove-plugin-area { |
| 527 | display: flex; |
| 528 | justify-content: space-between; |
| 529 | flex-wrap: wrap; |
| 530 | -moz-column-gap: 20px; |
| 531 | column-gap: 20px; |
| 532 | row-gap: 12px; |
| 533 | padding: 12px 0px; |
| 534 | } |
| 535 | |
| 536 | /* 除外プラグインのエリアのテキスト */ |
| 537 | .remove-plugin-area-text { |
| 538 | width: calc(50% - 10px); |
| 539 | font-size: 13px; |
| 540 | font-weight: 400; |
| 541 | line-height: 1.5384615385; |
| 542 | } |
| 543 | |
| 544 | /* 除外プラグインのテキストエリアを囲む */ |
| 545 | .remove-plugin-area-textarea-wrapper { |
| 546 | position: relative; |
| 547 | width: calc(50% - 10px); |
| 548 | } |
| 549 | |
| 550 | /* 除外プラグインのテキストエリア */ |
| 551 | .remove-plugin-area-textarea { |
| 552 | position: relative; |
| 553 | border: 1px solid #b7b9bc; |
| 554 | padding: 8px 10px; |
| 555 | width: 100%; |
| 556 | height: 216px; |
| 557 | } |
| 558 | |
| 559 | /* 除外プラグインのテキストエリアのようなdivを囲む */ |
| 560 | .remove-plugin-area-like-textarea-wrapper { |
| 561 | position: relative; |
| 562 | width: calc(50% - 10px); |
| 563 | } |
| 564 | |
| 565 | .remove-plugin-area-like-textarea-wrapper::after { |
| 566 | position: absolute; |
| 567 | top: 50%; |
| 568 | left: -5.5px; |
| 569 | transform: translateY(-50%) translateX(-100%); |
| 570 | z-index: 2; |
| 571 | border-style: solid; |
| 572 | border-top: 15px solid transparent; |
| 573 | border-right: 10px solid #b7b9bc; |
| 574 | border-bottom: 15px solid transparent; |
| 575 | border-left: 0; |
| 576 | width: 0; |
| 577 | height: 0; |
| 578 | content: ""; |
| 579 | } |
| 580 | |
| 581 | /* 除外プラグインのテキストエリアのようなdiv */ |
| 582 | .remove-plugin-area-like-textarea { |
| 583 | border: 1px solid #b7b9bc; |
| 584 | border-radius: 3px; |
| 585 | padding: 8px 10px; |
| 586 | width: 100%; |
| 587 | height: 216px; |
| 588 | overflow: auto; |
| 589 | } |
| 590 | |
| 591 | .remove-plugin-area-like-textarea ul{ |
| 592 | margin: 0; |
| 593 | } |
| 594 | |
| 595 | /* 有効なプラグインのリスト */ |
| 596 | #active-plugins li { |
| 597 | display: flex; |
| 598 | align-items: center; |
| 599 | -moz-column-gap: 2px; |
| 600 | column-gap: 2px; |
| 601 | } |
| 602 | |
| 603 | /* 有効なプラグインのリスト横のボタン */ |
| 604 | .btn-exclude { |
| 605 | display: block; |
| 606 | width: 13px; |
| 607 | height: 13px; |
| 608 | background-image: url("../images/add.png"); |
| 609 | background-size: cover; |
| 610 | font-size: 0; |
| 611 | } |
| 612 | |
| 613 | .btn-exclude:hover { |
| 614 | cursor: pointer; |
| 615 | } |
| 616 | |
| 617 | |
| 618 | /** |
| 619 | * 6.0 ログイン通知ページ |
| 620 | * |
| 621 | * ログイン通知ページのパーツ |
| 622 | */ |
| 623 | |
| 624 | /* ログイン通知ページのテキストエリア */ |
| 625 | .login-notification-textarea { |
| 626 | border: 1px solid #dbdcdd; |
| 627 | border-radius: 4px; |
| 628 | padding: 4px 10px; |
| 629 | width: 100%; |
| 630 | height: 148px; |
| 631 | font-size: 13px; |
| 632 | font-weight: 400; |
| 633 | line-height: 1.5384615385; |
| 634 | } |
| 635 | |
| 636 | |
| 637 | /** |
| 638 | * 7.0 ログイン履歴ページ |
| 639 | * |
| 640 | * ログイン履歴ページのパーツ |
| 641 | */ |
| 642 | |
| 643 | /* テーブルトップ */ |
| 644 | #cloudsecure-wp-security #login-log th.sortable a, |
| 645 | #cloudsecure-wp-security #login-log th.sorted a { |
| 646 | color: #2170b0; |
| 647 | } |
| 648 | |
| 649 | /* テーブルトップのアイコン */ |
| 650 | #cloudsecure-wp-security #login-log .sorting-indicator::before { |
| 651 | color: #2170b0; |
| 652 | text-decoration-color: #2170b0; |
| 653 | } |
| 654 | |
| 655 | /* 絞り込みのセレクトボックス */ |
| 656 | #cloudsecure-wp-security #login-log .tablenav .login-log-row select { |
| 657 | margin-right: 24px; |
| 658 | border: 1px solid #dbdcdd; |
| 659 | padding: 6px 22.6px 5px 12px; |
| 660 | width: 172px; |
| 661 | height: 31px; |
| 662 | font-size: 13px; |
| 663 | line-height: 1; |
| 664 | } |
| 665 | |
| 666 | /* テーブルの各セル */ |
| 667 | #cloudsecure-wp-security #login-log .widefat td, |
| 668 | #cloudsecure-wp-security #login-log .widefat th { |
| 669 | color: #1d2327; |
| 670 | } |
| 671 | |
| 672 | /* ページネーション横のテキスト */ |
| 673 | #cloudsecure-wp-security #login-log .displaying-num { |
| 674 | color: #646970; |
| 675 | font-size: 11px; |
| 676 | } |
| 677 | |
| 678 | /* ページネーションのボタン */ |
| 679 | #cloudsecure-wp-security #login-log .button, |
| 680 | #cloudsecure-wp-security #login-log .button.disabled { |
| 681 | border-color: #b7b9bc !important; |
| 682 | color: #b7b9bc !important; |
| 683 | } |
| 684 | |
| 685 | /* 現在のページの表示部分 */ |
| 686 | #cloudsecure-wp-security #login-log .current-page { |
| 687 | border-color: #b7b9bc; |
| 688 | padding: 0; |
| 689 | width: 30px; |
| 690 | height: 30px; |
| 691 | } |
| 692 | |
| 693 | /* 現在のページの表示部分横のテキスト */ |
| 694 | #cloudsecure-wp-security #login-log .tablenav-paging-text { |
| 695 | padding-top: 0; |
| 696 | } |
| 697 | |
| 698 | /* � |
| 699 | �力欄の� |
| 700 | �通 */ |
| 701 | #cloudsecure-wp-security #login-log input[type="text"] { |
| 702 | color: #1d2327; |
| 703 | } |
| 704 | |
| 705 | #cloudsecure-wp-security #login-log input[type="text"]::-moz-placeholder { |
| 706 | color: #d1d1d1; |
| 707 | } |
| 708 | |
| 709 | #cloudsecure-wp-security #login-log input[type="text"]::placeholder { |
| 710 | color: #d1d1d1; |
| 711 | } |
| 712 | |
| 713 | /* テーブル下にあるtfootを非表示 */ |
| 714 | #cloudsecure-wp-security .custom-table-class tfoot { |
| 715 | display: none; |
| 716 | } |
| 717 | |
| 718 | /* ログイン履歴ぺージ上部の絞り込み部分 */ |
| 719 | #cloudsecure-wp-security .login-log { |
| 720 | display: flex; |
| 721 | align-items: flex-end; |
| 722 | flex-wrap: wrap; |
| 723 | -moz-column-gap: 60.5px; |
| 724 | column-gap: 60.5px; |
| 725 | row-gap: 13px; |
| 726 | margin-bottom: 13px; |
| 727 | } |
| 728 | |
| 729 | /* 絞り込み部分の各行 */ |
| 730 | #cloudsecure-wp-security .login-log-row { |
| 731 | display: flex; |
| 732 | align-items: center; |
| 733 | flex-wrap: wrap; |
| 734 | row-gap: 13px; |
| 735 | margin-bottom: 13px; |
| 736 | } |
| 737 | |
| 738 | #cloudsecure-wp-security .login-log-row:last-child { |
| 739 | margin-bottom: 0; |
| 740 | } |
| 741 | |
| 742 | #cloudsecure-wp-security .login-log-row span { |
| 743 | margin-right: 12px; |
| 744 | } |
| 745 | |
| 746 | /* 絞り込みの� |
| 747 | �力欄 */ |
| 748 | #cloudsecure-wp-security .login-log-row input[type="text"] { |
| 749 | margin-right: 12px; |
| 750 | border: 1px solid #dbdcdd; |
| 751 | padding: 6px 22.6px 5px 12px; |
| 752 | width: 172px; |
| 753 | height: 31px; |
| 754 | font-size: 13px; |
| 755 | } |
| 756 | |
| 757 | /* 絞り込み行の� |
| 758 | �力欄、チェックボックス部分(ラベルも含む) */ |
| 759 | #cloudsecure-wp-security .login-log-row-right { |
| 760 | display: flex; |
| 761 | align-items: center; |
| 762 | flex-wrap: wrap; |
| 763 | row-gap: 13px; |
| 764 | } |
| 765 | |
| 766 | /* 絞り込み部分のボタンを囲む */ |
| 767 | #cloudsecure-wp-security .login-log-btns { |
| 768 | display: flex; |
| 769 | -moz-column-gap: 15px; |
| 770 | column-gap: 15px; |
| 771 | } |
| 772 | |
| 773 | /* 絞り込みボタンとクリアボタンの� |
| 774 | �通スタイル */ |
| 775 | #cloudsecure-wp-security .login-log-reset-btn, |
| 776 | #cloudsecure-wp-security .login-log-done-btn { |
| 777 | border-style: none; |
| 778 | border-radius: 3px; |
| 779 | padding: 6px 12px 5px; |
| 780 | color: #fff; |
| 781 | font-size: 13px; |
| 782 | } |
| 783 | |
| 784 | /* 絞り込みボタン */ |
| 785 | #cloudsecure-wp-security .login-log-done-btn { |
| 786 | background-color: #329ff1; |
| 787 | } |
| 788 | |
| 789 | #cloudsecure-wp-security .login-log-done-btn:hover { |
| 790 | background-color: #0A68AE; |
| 791 | } |
| 792 | |
| 793 | /* クリアボタン */ |
| 794 | #cloudsecure-wp-security .login-log-reset-btn { |
| 795 | background-color: #b7b9bc; |
| 796 | } |
| 797 | |
| 798 | #cloudsecure-wp-security .login-log-reset-btn:hover { |
| 799 | background-color: #868A92; |
| 800 | } |
| 801 | |
| 802 | |
| 803 | /** |
| 804 | * 8.0 メディアクエリ 768px |
| 805 | * |
| 806 | * 768px以下の時のスタイル |
| 807 | */ |
| 808 | @media screen and (max-width: 768px) { |
| 809 | |
| 810 | /* boxの各行のタイトル */ |
| 811 | .box-row-title { |
| 812 | width: 100%; |
| 813 | } |
| 814 | |
| 815 | /* boxの行の� |
| 816 | 容 */ |
| 817 | .box-row-content { |
| 818 | width: 100%; |
| 819 | } |
| 820 | |
| 821 | /* input前にあるテキスト */ |
| 822 | .before-input { |
| 823 | white-space: pre-wrap; |
| 824 | } |
| 825 | |
| 826 | /* 除外プラグインのエリアのテキスト */ |
| 827 | .remove-plugin-area-text { |
| 828 | width: 100%; |
| 829 | } |
| 830 | |
| 831 | .remove-plugin-area-text.order-1 { |
| 832 | order: 1; |
| 833 | } |
| 834 | |
| 835 | .remove-plugin-area-text.order-3 { |
| 836 | order: 3; |
| 837 | } |
| 838 | |
| 839 | /* 除外プラグインのテキストエリアを囲む */ |
| 840 | .remove-plugin-area-textarea-wrapper { |
| 841 | order: 2; |
| 842 | margin-bottom: 30px; |
| 843 | width: 100%; |
| 844 | } |
| 845 | |
| 846 | /* 除外プラグインのテキストエリア横の矢印 */ |
| 847 | .remove-plugin-area-textarea-wrapper::after { |
| 848 | position: absolute; |
| 849 | bottom: -25px; |
| 850 | left: 50%; |
| 851 | transform: translateX(-50%); |
| 852 | border-style: solid; |
| 853 | border-width: 0 15px 10px 15px; |
| 854 | border-color: transparent transparent #b7b9bc transparent; |
| 855 | width: 0; |
| 856 | height: 0; |
| 857 | content: ""; |
| 858 | } |
| 859 | |
| 860 | /* 除外プラグインのテキストエリアのようなdivを囲む */ |
| 861 | .remove-plugin-area-like-textarea-wrapper { |
| 862 | order: 4; |
| 863 | width: 100%; |
| 864 | } |
| 865 | |
| 866 | .remove-plugin-area-like-textarea-wrapper::after { |
| 867 | display: none; |
| 868 | } |
| 869 | } |
| 870 | |
| 871 | |
| 872 | /** |
| 873 | * 9.0 メディアクエリ 1100px |
| 874 | * |
| 875 | * 1100px以下の時のスタイル |
| 876 | */ |
| 877 | @media screen and (max-width: 1100px) { |
| 878 | |
| 879 | /* 変更後のログインurlの� |
| 880 | �力欄 */ |
| 881 | .rename-login-page-name-input { |
| 882 | flex-grow: 0; |
| 883 | width: 100%; |
| 884 | } |
| 885 | } |
| 886 | |
| 887 | |
| 888 | /** |
| 889 | * 10.0 メディアクエリ 330px |
| 890 | * |
| 891 | * 330px以下の時のスタイル |
| 892 | */ |
| 893 | @media screen and (max-width: 330px) { |
| 894 | |
| 895 | /* ページネーションのボタン */ |
| 896 | #cloudsecure-wp-security #login-log .button, |
| 897 | #cloudsecure-wp-security #login-log .button.disabled { |
| 898 | min-width: 30px; |
| 899 | min-height: 30px; |
| 900 | } |
| 901 | |
| 902 | /* 現在のページの表示部分 */ |
| 903 | #cloudsecure-wp-security #login-log .current-page { |
| 904 | height: 30px; |
| 905 | } |
| 906 | |
| 907 | /* ページネーションの戻るボタン */ |
| 908 | #cloudsecure-wp-security #login-log .tablenav .tablenav-pages .tablenav-pages-navspan { |
| 909 | min-width: 30px; |
| 910 | min-height: 30px; |
| 911 | font-size: 16px; |
| 912 | } |
| 913 | } |
| 914 | |
| 915 | |
| 916 | /** |
| 917 | * 11.0 メディアクエリ 782px |
| 918 | * |
| 919 | * 782px以下の時のスタイル |
| 920 | */ |
| 921 | @media screen and (max-width: 782px) { |
| 922 | |
| 923 | /* 現在のページの表示部分 */ |
| 924 | #cloudsecure-wp-security #login-log .current-page { |
| 925 | height: 44px; |
| 926 | } |
| 927 | |
| 928 | /* ページネーションを囲むspan */ |
| 929 | #cloudsecure-wp-security #login-log .pagination-links { |
| 930 | display: flex; |
| 931 | justify-content: center; |
| 932 | -moz-column-gap: 4px; |
| 933 | column-gap: 4px; |
| 934 | margin: 0 auto; |
| 935 | width: 100%; |
| 936 | white-space: nowrap; |
| 937 | } |
| 938 | |
| 939 | /* ページネーションの� |
| 940 | �力欄と最大ページ数を囲むspan */ |
| 941 | #cloudsecure-wp-security #login-log .paging-input { |
| 942 | display: flex; |
| 943 | align-items: center; |
| 944 | -moz-column-gap: 5px; |
| 945 | column-gap: 5px; |
| 946 | white-space: nowrap; |
| 947 | } |
| 948 | } |
| 949 | |
| 950 | |
| 951 | /** |
| 952 | * 12.0 メディアクエリ 783px |
| 953 | * |
| 954 | * 782px以上の時のスタイル |
| 955 | */ |
| 956 | @media screen and (min-width: 783px) { |
| 957 | |
| 958 | /* テーブルのトップの各セル */ |
| 959 | #cloudsecure-wp-security #login-log th.sortable a, |
| 960 | #cloudsecure-wp-security #login-log th.sorted a { |
| 961 | padding: 12px 23px; |
| 962 | padding-right: 8px; |
| 963 | font-size: 13px; |
| 964 | } |
| 965 | |
| 966 | /*テーブルのbodyの各セル */ |
| 967 | #cloudsecure-wp-security .widefat td { |
| 968 | padding: 12px 23px; |
| 969 | padding-right: 8px; |
| 970 | } |
| 971 | } |
| 972 |