breakpointsList.css 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. /*
  2. * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
  3. * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. *
  9. * 1. Redistributions of source code must retain the above copyright
  10. * notice, this list of conditions and the following disclaimer.
  11. * 2. Redistributions in binary form must reproduce the above copyright
  12. * notice, this list of conditions and the following disclaimer in the
  13. * documentation and/or other materials provided with the distribution.
  14. * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
  15. * its contributors may be used to endorse or promote products derived
  16. * from this software without specific prior written permission.
  17. *
  18. * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
  19. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  20. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  21. * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
  22. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  23. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  24. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  25. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  26. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  27. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  28. */
  29. .sidebar-pane > .body .breakpoint-condition {
  30. display: block;
  31. margin-top: 4px;
  32. margin-bottom: 4px;
  33. margin-left: 23px;
  34. margin-right: 8px;
  35. }
  36. #breakpoint-condition-input {
  37. display: block;
  38. margin-left: 0;
  39. margin-right: 0;
  40. outline: none !important;
  41. border: 1px solid rgb(66%, 66%, 66%);
  42. }
  43. ol.breakpoint-list {
  44. -webkit-padding-start: 0;
  45. list-style: none;
  46. margin: 0;
  47. padding-bottom: 3px;
  48. }
  49. .breakpoints-list-deactivated {
  50. background-color: rgb(245, 245, 245);
  51. opacity: 0.3;
  52. }
  53. .breakpoint-list li {
  54. white-space: nowrap;
  55. text-overflow: ellipsis;
  56. overflow: hidden;
  57. padding: 2px 0;
  58. }
  59. .breakpoint-list li:hover {
  60. background-color: rgba(56, 121, 217, 0.2);
  61. }
  62. .breakpoint-list .checkbox-elem {
  63. font-size: 10px;
  64. margin: 0 4px;
  65. vertical-align: top;
  66. position: relative;
  67. z-index: 1;
  68. top: 3px;
  69. }
  70. .breakpoint-list .source-text {
  71. white-space: nowrap;
  72. text-overflow: ellipsis;
  73. overflow: hidden;
  74. margin: 2px 0 0 20px;
  75. }
  76. .sidebar-pane .breakpoint-hit {
  77. background-color: rgb(255, 255, 194);
  78. }
  79. li.breakpoint-hit .breakpoint-hit-marker {
  80. background-color: rgb(255, 255, 194);
  81. height: 18px;
  82. left: 0;
  83. margin-top: -16px;
  84. position: absolute;
  85. right: 0;
  86. z-index: -1;
  87. }
  88. .event-listener-breakpoints.properties-tree .children li {
  89. margin-left: 12px;
  90. height: 16px;
  91. }
  92. .event-listener-breakpoints .checkbox-elem {
  93. float: left;
  94. top: -2px;
  95. position: relative;
  96. left: -1px;
  97. font-size: 10px;
  98. }