diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2019-07-11 11:49:07 -0400 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2019-10-17 19:07:20 -0400 |
commit | e435ac40f10b059fa6f157404770f9937cdffd13 (patch) | |
tree | ff439d0f0872563c94efd1ee12c42beb68df4238 /org/output_xmls_css.org | |
parent | html scroll toc backmatter (url/link) fix (diff) |
xmls, css, user-select on object-numbers & seg minitoc
- unselectable (copy & past of text)
- object-numbers
- html segments minitoc
- implemented differently across browsers
Diffstat (limited to 'org/output_xmls_css.org')
-rw-r--r-- | org/output_xmls_css.org | 36 |
1 files changed, 34 insertions, 2 deletions
diff --git a/org/output_xmls_css.org b/org/output_xmls_css.org index 192dc61..18eaa86 100644 --- a/org/output_xmls_css.org +++ b/org/output_xmls_css.org @@ -144,9 +144,13 @@ template DocReformCss() { text-decoration : none; } a.lnkocn:visited { - color : #003399; + color : #32CD32; text-decoration : none; } + a.lnkocn:hover { + color : #777777; + font-size : 15px; + } a:hover img { background-color : #FFFFFF; } @@ -483,6 +487,12 @@ template DocReformCss() { margin-right : 5px; text-align : right; color : %s; + -khtml-user-select : none; + -moz-user-select : none; + -ms-user-select : none; + -o-user-select : none; + -webkit-user-select : none; + user-select : none; } table { display : block; @@ -704,6 +714,12 @@ template DocReformCss() { margin-bottom : 0px; padding-left : 0em; text-indent : 0em; + -khtml-user-select : none; + -moz-user-select : none; + -ms-user-select : none; + -o-user-select : none; + -webkit-user-select : none; + user-select : none; } #+END_SRC @@ -1004,9 +1020,13 @@ Consider what if anything should be used here text-decoration : none; } a.lnkocn:visited { - color : #FFFFFF; + color : #9ACD32; text-decoration : none; } + a.lnkocn:hover { + color : #BBBBBB; + font-size : 15px; + } a:hover img { background-color : #000000; } @@ -1340,6 +1360,12 @@ Consider what if anything should be used here margin-right : 5px; text-align : right; color : %s; + -khtml-user-select : none; + -moz-user-select : none; + -ms-user-select : none; + -o-user-select : none; + -webkit-user-select : none; + user-select : none; } table { display : block; @@ -1562,6 +1588,12 @@ Consider what if anything should be used here margin-bottom : 0px; padding-left : 0em; text-indent : 0em; + -khtml-user-select : none; + -moz-user-select : none; + -ms-user-select : none; + -o-user-select : none; + -webkit-user-select : none; + user-select : none; } #+END_SRC |