page_notes.css 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. #pageNotesHost {
  2. font-size: 12px;
  3. color:#4a4a4a;
  4. height: 100%;
  5. }
  6. #pageNotesHostBtn a {
  7. background: url('images/notes_on.png');
  8. background: url('images/notes_on.svg'),linear-gradient(transparent, transparent);
  9. }
  10. .hashover #pageNotesHostBtn a:hover {
  11. background: url('images/notes_hover.png');
  12. background: url('images/notes_hover.svg'),linear-gradient(transparent, transparent);
  13. }
  14. #pageNotesHostBtn a.selected, #pageNotesHostBtn a.selected:hover {
  15. background: url('images/notes_off.png');
  16. background: url('images/notes_off.svg'),linear-gradient(transparent, transparent);
  17. }
  18. #footnotesButton {
  19. background: url('images/footnotes.png') no-repeat center center;
  20. background: url('images/footnotes.svg') no-repeat center center,linear-gradient(transparent, transparent);
  21. }
  22. #footnotesButton:hover {
  23. background: url('images/footnotes_hover.png') no-repeat center center;
  24. background: url('images/footnotes_hover.svg') no-repeat center center,linear-gradient(transparent, transparent);
  25. }
  26. #footnotesButton.sitemapToolbarButtonSelected, #footnotesButton.sitemapToolbarButtonSelected:hover {
  27. background: url('images/footnotes_on.png') no-repeat center center;
  28. background: url('images/footnotes_on.svg') no-repeat center center,linear-gradient(transparent, transparent);
  29. }
  30. .nextPageButton {
  31. background: url('images/forward.png') no-repeat center center;
  32. background: url('images/forward.svg') no-repeat center center,linear-gradient(transparent, transparent);
  33. }
  34. .nextPageButton:hover {
  35. background: url('images/forward_hover.png') no-repeat center center;
  36. background: url('images/forward_hover.svg') no-repeat center center,linear-gradient(transparent, transparent);
  37. }
  38. .prevPageButton {
  39. background: url('images/back.png') no-repeat center center;
  40. background: url('images/back.svg') no-repeat center center,linear-gradient(transparent, transparent);
  41. }
  42. .prevPageButton:hover {
  43. background: url('images/back_hover.png') no-repeat center center;
  44. background: url('images/back_hover.svg') no-repeat center center,linear-gradient(transparent, transparent);
  45. }
  46. #pageNotesScrollContainer
  47. {
  48. overflow: auto;
  49. width: 100%;
  50. /*height: 100%;*/
  51. -webkit-overflow-scrolling: touch;
  52. }
  53. #pageNotesContainer
  54. {
  55. /*padding: 10px 10px 10px 12px;*/
  56. }
  57. #pageNotesContent
  58. {
  59. overflow: visible;
  60. }
  61. .pageNoteContainer
  62. {
  63. padding: 10px;
  64. }
  65. .pageNoteName
  66. {
  67. font-family: 'Trebuchet MS';
  68. font-size: 14px;
  69. font-weight: bold;
  70. margin-bottom: 5px;
  71. /*text-decoration: underline;*/
  72. white-space: nowrap;
  73. }
  74. .pageNote
  75. {
  76. line-height: 21px;
  77. /*margin-bottom: 20px;*/
  78. }
  79. .widgetNoteContainer {
  80. padding: 10px;
  81. border-bottom: 1px solid transparent;
  82. border-top: 1px solid transparent;
  83. cursor: pointer;
  84. }
  85. .widgetNoteContainerSelected {
  86. background-color: white;
  87. border-bottom: 1px solid #c2c2c2;
  88. border-top: 1px solid #c2c2c2;
  89. }
  90. /*.widgetNoteContainer:hover {
  91. background-color: white;
  92. //border-bottom: 1px solid #c2c2c2;
  93. //border-top: 1px solid #c2c2c2;
  94. }*/
  95. .widgetNoteFootnote {
  96. display: inline-block;
  97. /*vertical-align: top;
  98. margin: 2px 5px 10px 0px;
  99. padding: 1px 6px;
  100. font-size: 10px;
  101. color: #ffffff;
  102. background-color: #0a6cd6;*/
  103. width: 13px;
  104. height: 12px;
  105. padding-top: 1px;
  106. text-align: center;
  107. background-color: #138CDD;
  108. /*-moz-box-shadow: 1px 1px 3px #aaa;
  109. -webkit-box-shadow: 1px 1px 3px #aaa;
  110. box-shadow: 1px 1px 3px #aaa;*/
  111. font-size: 0px;
  112. margin-right: 8px;
  113. }
  114. div.annnoteline {
  115. display: inline-block;
  116. width: 9px;
  117. height: 1px;
  118. border-bottom: 1px solid white;
  119. margin-top: 1px;
  120. }
  121. .widgetNoteLabel {
  122. display: inline-block;
  123. vertical-align: top;
  124. font-family: 'Trebuchet MS';
  125. font-size: 14px;
  126. font-weight: bold;
  127. margin-bottom: 5px;
  128. }
  129. .noteLink {
  130. text-decoration: inherit;
  131. color: inherit;
  132. }
  133. .noteLink:hover {
  134. background-color: white;
  135. }