123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- #pageNotesHost {
- font-size: 12px;
- color:#4a4a4a;
- height: 100%;
- }
- #pageNotesHostBtn a {
- background: url('images/notes_on.png');
- background: url('images/notes_on.svg'),linear-gradient(transparent, transparent);
- }
- .hashover #pageNotesHostBtn a:hover {
- background: url('images/notes_hover.png');
- background: url('images/notes_hover.svg'),linear-gradient(transparent, transparent);
- }
- #pageNotesHostBtn a.selected, #pageNotesHostBtn a.selected:hover {
- background: url('images/notes_off.png');
- background: url('images/notes_off.svg'),linear-gradient(transparent, transparent);
- }
- #footnotesButton {
- background: url('images/footnotes.png') no-repeat center center;
- background: url('images/footnotes.svg') no-repeat center center,linear-gradient(transparent, transparent);
- }
- #footnotesButton:hover {
- background: url('images/footnotes_hover.png') no-repeat center center;
- background: url('images/footnotes_hover.svg') no-repeat center center,linear-gradient(transparent, transparent);
- }
- #footnotesButton.sitemapToolbarButtonSelected, #footnotesButton.sitemapToolbarButtonSelected:hover {
- background: url('images/footnotes_on.png') no-repeat center center;
- background: url('images/footnotes_on.svg') no-repeat center center,linear-gradient(transparent, transparent);
- }
- .nextPageButton {
- background: url('images/forward.png') no-repeat center center;
- background: url('images/forward.svg') no-repeat center center,linear-gradient(transparent, transparent);
- }
- .nextPageButton:hover {
- background: url('images/forward_hover.png') no-repeat center center;
- background: url('images/forward_hover.svg') no-repeat center center,linear-gradient(transparent, transparent);
- }
- .prevPageButton {
- background: url('images/back.png') no-repeat center center;
- background: url('images/back.svg') no-repeat center center,linear-gradient(transparent, transparent);
- }
- .prevPageButton:hover {
- background: url('images/back_hover.png') no-repeat center center;
- background: url('images/back_hover.svg') no-repeat center center,linear-gradient(transparent, transparent);
- }
- #pageNotesScrollContainer
- {
- overflow: auto;
- width: 100%;
- /*height: 100%;*/
- -webkit-overflow-scrolling: touch;
- }
- #pageNotesContainer
- {
- /*padding: 10px 10px 10px 12px;*/
- }
- #pageNotesContent
- {
- overflow: visible;
- }
- .pageNoteContainer
- {
- padding: 10px;
- }
- .pageNoteName
- {
- font-family: 'Trebuchet MS';
- font-size: 14px;
- font-weight: bold;
- margin-bottom: 5px;
- /*text-decoration: underline;*/
- white-space: nowrap;
- }
- .pageNote
- {
- line-height: 21px;
- /*margin-bottom: 20px;*/
- }
- .widgetNoteContainer {
- padding: 10px;
- border-bottom: 1px solid transparent;
- border-top: 1px solid transparent;
- cursor: pointer;
- }
- .widgetNoteContainerSelected {
- background-color: white;
- border-bottom: 1px solid #c2c2c2;
- border-top: 1px solid #c2c2c2;
- }
- /*.widgetNoteContainer:hover {
- background-color: white;
- //border-bottom: 1px solid #c2c2c2;
- //border-top: 1px solid #c2c2c2;
- }*/
- .widgetNoteFootnote {
- display: inline-block;
- /*vertical-align: top;
- margin: 2px 5px 10px 0px;
- padding: 1px 6px;
- font-size: 10px;
- color: #ffffff;
- background-color: #0a6cd6;*/
- width: 13px;
- height: 12px;
- padding-top: 1px;
- text-align: center;
- background-color: #138CDD;
- /*-moz-box-shadow: 1px 1px 3px #aaa;
- -webkit-box-shadow: 1px 1px 3px #aaa;
- box-shadow: 1px 1px 3px #aaa;*/
- font-size: 0px;
- margin-right: 8px;
- }
- div.annnoteline {
- display: inline-block;
- width: 9px;
- height: 1px;
- border-bottom: 1px solid white;
- margin-top: 1px;
- }
- .widgetNoteLabel {
- display: inline-block;
- vertical-align: top;
- font-family: 'Trebuchet MS';
- font-size: 14px;
- font-weight: bold;
- margin-bottom: 5px;
- }
- .noteLink {
- text-decoration: inherit;
- color: inherit;
- }
- .noteLink:hover {
- background-color: white;
- }
|