Changeset 14713 for main/kofacustom.dspou/trunk
- Timestamp:
- 7 Jul 2017, 05:51:45 (7 years ago)
- Location:
- main/kofacustom.dspou/trunk
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.dspou/trunk/layout/static/custom.css
r12303 r14713 1 1 a { 2 color: # 930303;2 color: #0b6200; 3 3 } 4 4 5 5 a:hover { 6 color: # 5f0500;6 color: #0c4505; 7 7 } 8 8 … … 12 12 13 13 .navbar-inverse { 14 background-color: # 5f0500;15 background-image: -webkit-linear-gradient(top, # 5f0500 0%, #930303100%);16 background-image: linear-gradient(to bottom, # 5f0500 0%, #930303100%);14 background-color: #0c4505; 15 background-image: -webkit-linear-gradient(top, #0c4505 0%, #0b6200 100%); 16 background-image: linear-gradient(to bottom, #0c4505 0%, #0b6200 100%); 17 17 background-repeat: repeat-x; 18 18 } … … 28 28 .navbar-inverse .navbar-nav > .active > a:focus { 29 29 color: #ffffff; 30 background-color: # 930303;30 background-color: #0b6200; 31 31 background-image: none; 32 32 background-image: none; … … 37 37 38 38 .navbar-inverse .navbar-toggle { 39 border-color: # 930303;39 border-color: #0b6200; 40 40 } 41 41 42 42 .navbar-inverse .navbar-toggle:hover, 43 43 .navbar-inverse .navbar-toggle:focus { 44 background-color: # 930303;44 background-color: #0b6200; 45 45 } 46 46 … … 48 48 .navbar-inverse .navbar-nav > .open > a:hover, 49 49 .navbar-inverse .navbar-nav > .open > a:focus { 50 background-color: # 930303;50 background-color: #0b6200; 51 51 color: #fff; 52 52 } -
main/kofacustom.dspou/trunk/src/kofacustom/dspou/browser/pdf.py
r10765 r14713 27 27 """ 28 28 29 #header_logo_path = os.path.join(30 #os.path.dirname(__file__), 'static', 'pdf_logo.jpg')31 #watermark_path = os.path.join(32 #os.path.dirname(__file__), 'static', 'pdf_watermark.jpg')29 header_logo_path = os.path.join( 30 os.path.dirname(__file__), 'static', 'pdf_logo.jpg') 31 watermark_path = os.path.join( 32 os.path.dirname(__file__), 'static', 'pdf_watermark.jpg') 33 33 34 watermark_pos = [ -25, 100]35 logo_pos = [5 07, 720, 40]34 watermark_pos = [95, 150] 35 logo_pos = [520, 710, 40]
Note: See TracChangeset for help on using the changeset viewer.