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