You are here

livechat.css in LiveChat 7

#edit-choose-form {
  position: relative;
}
#lc_logo {
  position: absolute;
  top: 12px;
  right: 10px;
  width: 102px;
  height: 58px;
  background: url(../images/logo.png) no-repeat 0 0;
}

ul#choose_form {
  margin-left: 0;
  padding-left: 0;
}
ul#choose_form li {
  padding-left: 0;
  margin-left: 0;
  background: 0;
  list-style: none;
}
ul#choose_form li label {
  display: inline;
}
div.installed_ok {
  background: #e1fdc5 url(../images/tick.png) no-repeat 5px 1em;
  padding-left: 28px;
  border-color: #6ac611;
}
div.installed_pending {
  background: #fcfce8 url(../images/warn.png) no-repeat 5px 1em;
  padding-left: 28px;
  border-color: #e5e58f;
}
div.info {
  background: #fcfce8 url(../images/info.png) no-repeat 5px 1em;
  padding-left: 28px;
  border-color: #e5e58f;
}

#livechat-admin-settings-form .description {
  display: inline;
  padding-left: 5px;
}

.ajax_message {
  display: none;
  background: url(../images/ajax_loader.gif) no-repeat 5px 60%;
  padding: 0;
  margin-top: 1em;
}
.ajax_message.wait,
.ajax_message.message {
  display: block;
}
.ajax_message.wait {
  text-indent: 28px;
}
.ajax_message.message {
  background-image: none;
  text-indent: 0px;
}

.btn a:link,
.btn a:visited {
  display: inline-block;
  padding: 3px 10px;
  color: white;
  text-decoration: none;
  font-weight: normal;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  text-shadow: 1px 1px 0 106a;
  border-top: 1px solid #4bf;
  border-bottom: 1px solid #39f;
  -moz-box-shadow: 0 1px 0 #39d, 0 -1px 0 #39d, 1px 0 0 #39d, -1px 0 0 #39d;
  -webkit-box-shadow: 0 1px 0 #39d, 0 -1px 0 #39d, 1px 0 0 #39d, -1px 0 0 #39d;
  box-shadow: 0 1px 0 #39d, 0 -1px 0 #39d, 1px 0 0 #39d, -1px 0 0 #39d;
  background: #4ae;
  background: -moz-linear-gradient(top,  #4ae,  #28d);
  background: -webkit-gradient(linear, left top, left bottom, from(#4ae), to(#28d));
}
.btn a:hover {
  text-decoration: none;
  border-top-color: #5cf;
  border-bottom-color: #3af;
  color: white;
  -moz-box-shadow: 0 1px 0 #4ae, 0 -1px 0 #4ae, 1px 0 0 #4ae, -1px 0 0 #4ae;
  -webkit-box-shadow: 0 1px 0 #4ae, 0 -1px 0 #4ae, 1px 0 0 #4ae, -1px 0 0 #4ae;
  box-shadow: 0 1px 0 #4ae, 0 -1px 0 #4ae, 1px 0 0 #4ae, -1px 0 0 #4ae;
  background: #4bf;
  background: -moz-linear-gradient(top,  #4bf,  #39d);
  background: -webkit-gradient(linear, left top, left bottom, from(#4bf), to(#39d));
}
.btn a:active,
.btn a:focus {
  /* margin-top: 1px did not work as intended under Chrome */
  position: relative;
  top: 1px;
}

File

admin/css/livechat.css
View source
  1. #edit-choose-form {
  2. position: relative;
  3. }
  4. #lc_logo {
  5. position: absolute;
  6. top: 12px;
  7. right: 10px;
  8. width: 102px;
  9. height: 58px;
  10. background: url(../images/logo.png) no-repeat 0 0;
  11. }
  12. ul#choose_form {
  13. margin-left: 0;
  14. padding-left: 0;
  15. }
  16. ul#choose_form li {
  17. padding-left: 0;
  18. margin-left: 0;
  19. background: 0;
  20. list-style: none;
  21. }
  22. ul#choose_form li label {
  23. display: inline;
  24. }
  25. div.installed_ok {
  26. background: #e1fdc5 url(../images/tick.png) no-repeat 5px 1em;
  27. padding-left: 28px;
  28. border-color: #6ac611;
  29. }
  30. div.installed_pending {
  31. background: #fcfce8 url(../images/warn.png) no-repeat 5px 1em;
  32. padding-left: 28px;
  33. border-color: #e5e58f;
  34. }
  35. div.info {
  36. background: #fcfce8 url(../images/info.png) no-repeat 5px 1em;
  37. padding-left: 28px;
  38. border-color: #e5e58f;
  39. }
  40. #livechat-admin-settings-form .description {
  41. display: inline;
  42. padding-left: 5px;
  43. }
  44. .ajax_message {
  45. display: none;
  46. background: url(../images/ajax_loader.gif) no-repeat 5px 60%;
  47. padding: 0;
  48. margin-top: 1em;
  49. }
  50. .ajax_message.wait,
  51. .ajax_message.message {
  52. display: block;
  53. }
  54. .ajax_message.wait {
  55. text-indent: 28px;
  56. }
  57. .ajax_message.message {
  58. background-image: none;
  59. text-indent: 0px;
  60. }
  61. .btn a:link,
  62. .btn a:visited {
  63. display: inline-block;
  64. padding: 3px 10px;
  65. color: white;
  66. text-decoration: none;
  67. font-weight: normal;
  68. -moz-border-radius: 3px;
  69. -webkit-border-radius: 3px;
  70. border-radius: 3px;
  71. text-shadow: 1px 1px 0 106a;
  72. border-top: 1px solid #4bf;
  73. border-bottom: 1px solid #39f;
  74. -moz-box-shadow: 0 1px 0 #39d, 0 -1px 0 #39d, 1px 0 0 #39d, -1px 0 0 #39d;
  75. -webkit-box-shadow: 0 1px 0 #39d, 0 -1px 0 #39d, 1px 0 0 #39d, -1px 0 0 #39d;
  76. box-shadow: 0 1px 0 #39d, 0 -1px 0 #39d, 1px 0 0 #39d, -1px 0 0 #39d;
  77. background: #4ae;
  78. background: -moz-linear-gradient(top, #4ae, #28d);
  79. background: -webkit-gradient(linear, left top, left bottom, from(#4ae), to(#28d));
  80. }
  81. .btn a:hover {
  82. text-decoration: none;
  83. border-top-color: #5cf;
  84. border-bottom-color: #3af;
  85. color: white;
  86. -moz-box-shadow: 0 1px 0 #4ae, 0 -1px 0 #4ae, 1px 0 0 #4ae, -1px 0 0 #4ae;
  87. -webkit-box-shadow: 0 1px 0 #4ae, 0 -1px 0 #4ae, 1px 0 0 #4ae, -1px 0 0 #4ae;
  88. box-shadow: 0 1px 0 #4ae, 0 -1px 0 #4ae, 1px 0 0 #4ae, -1px 0 0 #4ae;
  89. background: #4bf;
  90. background: -moz-linear-gradient(top, #4bf, #39d);
  91. background: -webkit-gradient(linear, left top, left bottom, from(#4bf), to(#39d));
  92. }
  93. .btn a:active,
  94. .btn a:focus {
  95. /* margin-top: 1px did not work as intended under Chrome */
  96. position: relative;
  97. top: 1px;
  98. }