Advertisement
Guest User

Untitled

a guest
Feb 16th, 2020
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.27 KB | None | 0 0
  1. .contentSearchSuggestionTable {
  2. background-color: hsla(0,0%,100%,.99);
  3. border: 1px solid hsla(0, 0%, 0%, .2);
  4. border-top: none;
  5. box-shadow: 0 5px 10px hsla(0, 0%, 0%, .1);
  6. position: absolute;
  7. left: 0;
  8. z-index: 1001;
  9. -moz-user-select: none;
  10. cursor: default;
  11. }
  12.  
  13. .contentSearchSuggestionTable:dir(rtl) {
  14. left: auto;
  15. right: 0;
  16. }
  17.  
  18. .contentSearchSuggestionsList {
  19. border-bottom: 1px solid hsl(0, 0%, 92%);
  20. width: 100%;
  21. height: 100%;
  22. }
  23.  
  24. .contentSearchSuggestionTable,
  25. .contentSearchSuggestionsList {
  26. border-spacing: 0;
  27. overflow: hidden;
  28. padding: 0;
  29. margin: 0;
  30. text-align: start;
  31. }
  32.  
  33. .contentSearchHeaderRow,
  34. .contentSearchSuggestionRow {
  35. margin: 0;
  36. max-width: inherit;
  37. padding: 0;
  38. }
  39.  
  40. .contentSearchHeaderRow > td > img,
  41. .contentSearchSuggestionRow > td > .historyIcon {
  42. margin-inline-end: 8px;
  43. margin-bottom: -3px;
  44. }
  45.  
  46. .contentSearchSuggestionTable .historyIcon {
  47. width: 16px;
  48. height: 16px;
  49. display: inline-block;
  50. background-image: url("chrome://browser/skin/history.svg");
  51. -moz-context-properties: fill;
  52. fill: graytext;
  53. }
  54.  
  55. .contentSearchSuggestionRow.selected > td > .historyIcon {
  56. fill: HighlightText;
  57. }
  58.  
  59. .contentSearchHeader > img {
  60. height: 16px;
  61. width: 16px;
  62. margin: 0;
  63. padding: 0;
  64. }
  65.  
  66. .contentSearchSuggestionRow.remote > td > .historyIcon {
  67. visibility: hidden;
  68. }
  69.  
  70. .contentSearchSuggestionRow.selected {
  71. background-color: Highlight;
  72. color: HighlightText;
  73. }
  74.  
  75. .contentSearchHeader,
  76. .contentSearchSuggestionEntry {
  77. margin: 0;
  78. max-width: inherit;
  79. overflow: hidden;
  80. padding: 4px 10px;
  81. text-overflow: ellipsis;
  82. white-space: nowrap;
  83. font-size: 75%;
  84. }
  85.  
  86. .contentSearchHeader {
  87. background-color: hsl(0, 0%, 97%);
  88. color: #666;
  89. border-bottom: 1px solid hsl(0, 0%, 92%);
  90. }
  91.  
  92. .contentSearchSuggestionsContainer {
  93. margin: 0;
  94. padding: 0;
  95. border-spacing: 0;
  96. width: 100%;
  97. }
  98.  
  99. .contentSearchSearchWithHeaderSearchText {
  100. white-space: pre;
  101. font-weight: bold;
  102. }
  103.  
  104. .contentSearchOneOffItem {
  105. -moz-appearance: none;
  106. height: 32px;
  107. margin: 0;
  108. padding: 0;
  109. border: none;
  110. background: none;
  111. background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAWCAYAAAABxvaqAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3gofECQNNVW2/AAAABBJREFUGFdjOHPmzH8GehEA/KpKg9YTf4AAAAAASUVORK5CYII=');
  112. background-repeat: no-repeat;
  113. background-position: right center;
  114. }
  115.  
  116. .contentSearchOneOffItem:dir(rtl) {
  117. background-position: left center;
  118. }
  119.  
  120. .contentSearchOneOffItem > img {
  121. width: 16px;
  122. height: 16px;
  123. margin-bottom: -2px;
  124. pointer-events: none;
  125. }
  126.  
  127. .contentSearchOneOffItem:not(.last-row) {
  128. border-bottom: 1px solid hsl(0, 0%, 92%);
  129. }
  130.  
  131. .contentSearchOneOffItem.end-of-row {
  132. background-image: none;
  133. }
  134.  
  135. .contentSearchOneOffItem.selected {
  136. background-color: Highlight;
  137. background-image: none;
  138. }
  139.  
  140. .contentSearchOneOffsTable {
  141. width: 100%;
  142. }
  143.  
  144. .contentSearchSettingsButton {
  145. margin: 0;
  146. padding: 0;
  147. height: 32px;
  148. border: none;
  149. border-top: 1px solid hsla(0, 0%, 0%, .08);
  150. text-align: center;
  151. width: 100%;
  152. }
  153.  
  154. .contentSearchSettingsButton.selected {
  155. background-color: hsl(0, 0%, 90%);
  156. }
  157.  
  158. .contentSearchSettingsButton:active {
  159. background-color: hsl(0, 0%, 85%);
  160. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement