You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

default.rtl.css 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /**
  2. * alertifyjs 1.13.1 http://alertifyjs.com
  3. * AlertifyJS is a javascript framework for developing pretty browser dialogs and notifications.
  4. * Copyright 2019 Mohammad Younes <Mohammad@alertifyjs.com> (http://alertifyjs.com)
  5. * Licensed under GPL 3 <https://opensource.org/licenses/gpl-3.0>*/
  6. .alertify .ajs-dialog {
  7. background-color: white;
  8. -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.25);
  9. box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.25);
  10. border-radius: 2px;
  11. }
  12. .alertify .ajs-header {
  13. color: black;
  14. font-weight: bold;
  15. background: #fafafa;
  16. border-bottom: #eee 1px solid;
  17. border-radius: 2px 2px 0 0;
  18. }
  19. .alertify .ajs-body {
  20. color: black;
  21. }
  22. .alertify .ajs-body .ajs-content .ajs-input {
  23. display: block;
  24. width: 100%;
  25. padding: 8px;
  26. margin: 4px;
  27. border-radius: 2px;
  28. border: 1px solid #CCC;
  29. }
  30. .alertify .ajs-body .ajs-content p {
  31. margin: 0;
  32. }
  33. .alertify .ajs-footer {
  34. background: #fbfbfb;
  35. border-top: #eee 1px solid;
  36. border-radius: 0 0 2px 2px;
  37. }
  38. .alertify .ajs-footer .ajs-buttons .ajs-button {
  39. background-color: transparent;
  40. color: #000;
  41. border: 0;
  42. font-size: 14px;
  43. font-weight: bold;
  44. text-transform: uppercase;
  45. }
  46. .alertify .ajs-footer .ajs-buttons .ajs-button.ajs-ok {
  47. color: #3593D2;
  48. }
  49. .alertify-notifier .ajs-message {
  50. background: rgba(255, 255, 255, 0.95);
  51. color: #000;
  52. text-align: center;
  53. border: solid 1px #ddd;
  54. border-radius: 2px;
  55. }
  56. .alertify-notifier .ajs-message.ajs-success {
  57. color: #fff;
  58. background: rgba(91, 189, 114, 0.95);
  59. text-shadow: 1px -1px 0 rgba(0, 0, 0, 0.5);
  60. }
  61. .alertify-notifier .ajs-message.ajs-error {
  62. color: #fff;
  63. background: rgba(217, 92, 92, 0.95);
  64. text-shadow: 1px -1px 0 rgba(0, 0, 0, 0.5);
  65. }
  66. .alertify-notifier .ajs-message.ajs-warning {
  67. background: rgba(252, 248, 215, 0.95);
  68. border-color: #999;
  69. }