Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

contact_list.css 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. * Copyright @ 2015 Atlassian Pty Ltd
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #contactlist {
  17. background-color: black;
  18. cursor: default;
  19. }
  20. #contactlist>ul {
  21. margin: 0px;
  22. padding: 0px;
  23. }
  24. #contactlist>ul>li {
  25. list-style-type: none;
  26. text-align: left;
  27. color: #FFF;
  28. font-size: 10pt;
  29. padding: 7px 10px;
  30. margin: 2px;
  31. }
  32. #contactlist>ul>li>p {
  33. display: inline-block;
  34. vertical-align: middle;
  35. margin: 0px;
  36. }
  37. #contactlist>ul>li.title {
  38. color: #00ccff;
  39. font-size: 11pt;
  40. border-bottom: 1px solid #676767;
  41. }
  42. .avatar {
  43. padding: 0px;
  44. margin-right: 10px;
  45. vertical-align: middle;
  46. font-size: 22pt;
  47. border-radius: 20px;
  48. }
  49. #contactlist .clickable {
  50. cursor: pointer;
  51. }