noty_theme_twitter.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /* CORE STYLES*/
  2. /* custom container */
  3. .noty_custom_container.noty_theme_twitter.noty_layout_inline {
  4. position: relative;
  5. }
  6. /* custom growl container */
  7. .noty_custom_container.noty_theme_twitter.noty_layout_inline .noty_cont.noty_layout_inline {
  8. position: static;
  9. }
  10. /* custom noty bar */
  11. .noty_custom_container.noty_theme_twitter.noty_layout_inline .noty_bar {
  12. position: static;
  13. }
  14. .noty_custom_container.noty_theme_twitter.noty_layout_inline .noty_bar .noty_message {
  15. font-size: 13px;
  16. padding: 4px;
  17. }
  18. .noty_custom_container.noty_theme_twitter.noty_layout_inline .noty_bar .noty_message .noty_buttons {
  19. margin-top: -1px;
  20. }
  21. /* noty_message */
  22. .noty_bar.noty_theme_twitter .noty_message {
  23. padding: 8px 14px;
  24. }
  25. /* noty_has_close_button */
  26. .noty_bar.noty_theme_twitter.noty_closable .noty_message {
  27. padding: 8px 35px 8px 14px;
  28. }
  29. /* noty_buttons */
  30. .noty_bar.noty_theme_twitter .noty_message .noty_buttons {
  31. float: right;
  32. margin-top: -5px;
  33. margin-left: 4px;
  34. }
  35. /* noty_button */
  36. .noty_bar.noty_theme_twitter .noty_message .noty_buttons button {
  37. margin-left: 5px;
  38. }
  39. /* noty close button */
  40. .noty_bar.noty_theme_twitter .noty_close {
  41. position: absolute;
  42. top: 7px;
  43. right: 16px;
  44. font-size: 18px;
  45. line-height: 18px;
  46. font-weight: bold;
  47. color: #000;
  48. opacity: 0.2;
  49. text-shadow: 0 1px 0 #fff;
  50. }
  51. /* noty close button hover */
  52. .noty_bar.noty_theme_twitter .noty_close:hover {
  53. opacity: 0.4;
  54. }
  55. .noty_bar.noty_theme_twitter .noty_close:after {
  56. content: "x";
  57. }
  58. /* noty modal */
  59. .noty_modal.noty_theme_twitter {
  60. opacity: 0.7;
  61. }
  62. /* LAYOUTS */
  63. /* noty_layout_topLeft & noty_layout_topRight */
  64. .noty_bar.noty_theme_twitter.noty_layout_center,
  65. .noty_bar.noty_theme_twitter.noty_layout_topCenter,
  66. .noty_bar.noty_theme_twitter.noty_layout_topLeft,
  67. .noty_bar.noty_theme_twitter.noty_layout_topRight,
  68. .noty_bar.noty_theme_twitter.noty_layout_bottomLeft,
  69. .noty_bar.noty_theme_twitter.noty_layout_bottomRight {
  70. -webkit-border-radius: 4px;
  71. -moz-border-radius: 4px;
  72. border-radius: 4px;
  73. }
  74. .noty_bar.noty_theme_twitter.noty_layout_topLeft .noty_message .noty_buttons,
  75. .noty_bar.noty_theme_twitter.noty_layout_topRight .noty_message .noty_buttons,
  76. .noty_bar.noty_theme_twitter.noty_layout_bottomLeft .noty_message .noty_buttons,
  77. .noty_bar.noty_theme_twitter.noty_layout_bottomRight .noty_message .noty_buttons {
  78. float: none;
  79. border-top: 1px solid #FBEED5;
  80. margin-left: 0;
  81. margin-top: 10px;
  82. padding-top: 10px;
  83. text-align: right;
  84. }
  85. .noty_bar.noty_theme_twitter.noty_layout_center .noty_message .noty_buttons,
  86. .noty_bar.noty_theme_twitter.noty_layout_topCenter .noty_message .noty_buttons {
  87. margin-left: 15px;
  88. margin-top: -2px
  89. }
  90. /* NOTIFICATION TYPES */
  91. /* noty_alert */
  92. .noty_bar.noty_theme_twitter.noty_alert {
  93. background-color: #FCF8E3;
  94. border: 1px solid #FBEED5;
  95. color: #C09853;
  96. }
  97. /* noty_error */
  98. .noty_bar.noty_theme_twitter.noty_error {
  99. background-color: #F2DEDE;
  100. border: 1px solid #EED3D7;
  101. color: #B94A48;
  102. }
  103. /* noty_success */
  104. .noty_bar.noty_theme_twitter.noty_success {
  105. background-color: #DFF0D8;
  106. border: 1px solid #D6E9C6;
  107. color: #468847;
  108. }
  109. /* noty_information */
  110. .noty_bar.noty_theme_twitter.noty_information {
  111. background-color: #D9EDF7;
  112. border: 1px solid #BCE8F1;
  113. color: #3A87AD;
  114. }