Advertisement
bisonn

Untitled

Jan 14th, 2020
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.49 KB | None | 0 0
  1. html, body {
  2.     margin: 0px; padding: 0px;
  3.     background-color: #4A4A4F;
  4. }
  5. /* Contains a panel */
  6. #container {
  7.     background-color: #4A4A4F;
  8. }
  9. /* Pop-up list of bookmarks by itself */
  10. .panel {
  11.     font-size: 14px; padding: 0 0 0 0;
  12.     background-color: #4A4A4F;
  13. /*    position:absolute; top: 0; left: 0;
  14.     width: fit-content;
  15.     height: fit-content;
  16.     overflow-x: hidden; overflow-y: auto;
  17.     max-height: 575px;
  18.     min-height: 575px;
  19. */
  20.     max-width: 160px;
  21.     min-width: 160px;
  22. }
  23. /* Top toolbar with the settings button */
  24. .toolbar {
  25.     display:none
  26. }
  27. /* Pop-up list of bookmarks is represented as a table. Every row matches a bookmark, or a folder. Every row contains 3 columns: an icon, a title, and optionally arrow`s image (for folder items). */
  28. table {
  29.     border-spacing: 0px;
  30.     margin: 0px; padding: 0px;
  31. }
  32. td {
  33.     margin: 0px; padding: 1px 1px 1px 1px;
  34. }
  35. /* An arrow`s image in folder item */
  36. td.arrow {
  37.     padding: 1px 5px 1px 1px;
  38. }
  39. /* Bookmark icon */
  40. td.icon img,
  41. td.subfolder-icon img {
  42.     border: none; width: 16px; height: 16px;
  43.     margin: 5px;
  44. }
  45. /* Item icon in subfolder */
  46. td.subfolder-icon img {
  47.     margin-left: 14px; /* Attention: this parameter is bound with width of the `div.return_box` */
  48. }
  49. /* Item title */
  50. td.title span,
  51. td.folder span,
  52. /* Subfolder item title */
  53. td.subfolder-title span,
  54. td.subfolder span {
  55.     display: inline-block;
  56.     margin: 5px;
  57.     white-space: nowrap;
  58.     overflow: hidden;
  59.     text-overflow: ellipsis;
  60.     cursor: default;
  61.     max-width: 369px;
  62.     min-width: 369px;
  63.     font-family:Segoe UI;
  64.     font-size:14px;
  65.     color:white;
  66. }
  67. /* Folder title */
  68. td.folder span {
  69.     font-weight: bold;
  70. }
  71. /* Subfolder title */
  72. td.subfolder span {
  73.     font-weight: bold;
  74. }
  75. /* Actives when you hover mouse pointer on item */
  76. tr:hover {
  77.     background-color: #5C5C61;
  78. }
  79. /* Horizontal line, that separates list items */
  80. div.splitter {
  81.     width: inherit; height: 1px; background-color: #5C5C61;
  82. }
  83. /* A block on left side in subfolders for returning to parent folder */
  84. div.return_box {
  85.     position:fixed; left: 0px; width: 14px;
  86.     background-color: #fbfbfb; border: 0px solid #c0c0c0;
  87.     border-left: none;
  88. }
  89. /* Actives when you hover mouse pointer on the return box */
  90. div.return_box:hover {
  91.     background-color: #badeff;
  92. }
  93. /* This sets style of arrows image in the return box */
  94. div.return_box img {
  95.     margin-left: 4px;
  96. }
  97. /* An empty item (with "...") */
  98. span.empty {
  99.     color: #aaa;
  100. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement