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.

_jquery-impromptu.scss 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /*
  2. ------------------------------
  3. Impromptu
  4. ------------------------------
  5. */
  6. .jqifade{
  7. position: absolute;
  8. background-color: #000;
  9. }
  10. div.jqi{
  11. width: 400px;
  12. position: absolute;
  13. color: #3a3a3a;
  14. background-color: #ffffff;
  15. font-size: 11px;
  16. text-align: left;
  17. border: solid 1px #eeeeee;
  18. border-radius: 6px;
  19. -moz-border-radius: 6px;
  20. -webkit-border-radius: 6px;
  21. padding: 7px;
  22. }
  23. div.jqi .jqicontainer{
  24. }
  25. div.jqi .jqiclose{
  26. position: absolute;
  27. top: 4px; right: -2px;
  28. width: 18px;
  29. cursor: default;
  30. color: #bbbbbb;
  31. font-weight: bold;
  32. }
  33. div.jqi .jqistate{
  34. background-color: #fff;
  35. }
  36. div.jqi .jqititle{
  37. padding: 5px 10px;
  38. font-size: 16px;
  39. line-height: 20px;
  40. border-bottom: solid 1px #eeeeee;
  41. }
  42. div.jqi .jqimessage{
  43. padding: 10px;
  44. line-height: 20px;
  45. color: #444444;
  46. }
  47. div.jqi .jqibuttons{
  48. text-align: right;
  49. margin: 0 -7px -7px -7px;
  50. border-top: solid 1px #e4e4e4;
  51. background-color: #f4f4f4;
  52. border-radius: 0 0 6px 6px;
  53. -moz-border-radius: 0 0 6px 6px;
  54. -webkit-border-radius: 0 0 6px 6px;
  55. }
  56. div.jqi .jqibuttons button{
  57. margin: 0;
  58. padding: 5px 20px;
  59. background-color: transparent !important;
  60. font-weight: normal;
  61. border: none;
  62. border-left: solid 1px #e4e4e4;
  63. color: #777;
  64. font-weight: bold;
  65. font-size: 12px;
  66. }
  67. div.jqi .jqibuttons button.jqidefaultbutton{
  68. color: #489afe;
  69. }
  70. div.jqi .jqibuttons button:disabled {
  71. color: #b6b6b6 !important;
  72. }
  73. div.jqi .jqibuttons button:hover,
  74. div.jqi .jqibuttons button:focus{
  75. color: #287ade;
  76. outline: none;
  77. }
  78. .jqiwarning .jqi .jqibuttons{
  79. background-color: #b95656;
  80. }
  81. /* sub states */
  82. div.jqi .jqiparentstate::after{
  83. background-color: #777;
  84. opacity: 0.6;
  85. filter: alpha(opacity=60);
  86. content: '';
  87. position: absolute;
  88. top:0;left:0;bottom:0;right:0;
  89. border-radius: 6px;
  90. -moz-border-radius: 6px;
  91. -webkit-border-radius: 6px;
  92. }
  93. div.jqi .jqisubstate{
  94. position: absolute;
  95. top:0;
  96. left: 20%;
  97. width: 60%;
  98. padding: 7px;
  99. border: solid 1px #eeeeee;
  100. border-top: none;
  101. border-radius: 0 0 6px 6px;
  102. -moz-border-radius: 0 0 6px 6px;
  103. -webkit-border-radius: 0 0 6px 6px;
  104. }
  105. div.jqi .jqisubstate .jqibuttons button{
  106. padding: 10px 18px;
  107. }
  108. /* arrows for tooltips/tours */
  109. .jqi .jqiarrow{ position: absolute; height: 0; width:0; line-height: 0; font-size: 0; border: solid 10px transparent;}
  110. .jqi .jqiarrowtl{ left: 10px; top: -20px; border-bottom-color: #ffffff; }
  111. .jqi .jqiarrowtc{ left: 50%; top: -20px; border-bottom-color: #ffffff; margin-left: -10px; }
  112. .jqi .jqiarrowtr{ right: 10px; top: -20px; border-bottom-color: #ffffff; }
  113. .jqi .jqiarrowbl{ left: 10px; bottom: -20px; border-top-color: #ffffff; }
  114. .jqi .jqiarrowbc{ left: 50%; bottom: -20px; border-top-color: #ffffff; margin-left: -10px; }
  115. .jqi .jqiarrowbr{ right: 10px; bottom: -20px; border-top-color: #ffffff; }
  116. .jqi .jqiarrowlt{ left: -20px; top: 10px; border-right-color: #ffffff; }
  117. .jqi .jqiarrowlm{ left: -20px; top: 50%; border-right-color: #ffffff; margin-top: -10px; }
  118. .jqi .jqiarrowlb{ left: -20px; bottom: 10px; border-right-color: #ffffff; }
  119. .jqi .jqiarrowrt{ right: -20px; top: 10px; border-left-color: #ffffff; }
  120. .jqi .jqiarrowrm{ right: -20px; top: 50%; border-left-color: #ffffff; margin-top: -10px; }
  121. .jqi .jqiarrowrb{ right: -20px; bottom: 10px; border-left-color: #ffffff; }