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