m (test)
 
(2 intermediate revisions by the same user not shown)
Line 53: Line 53:
 
body.skin-gmwfreeblue div.mw-geshi {
 
body.skin-gmwfreeblue div.mw-geshi {
 
   padding: 1em;
 
   padding: 1em;
   border: 1px dashed #2f6fab;
+
   border: none;
 
   color: black;
 
   color: black;
   background-color: #f9f9f9;
+
   background-color: #f6f9f9;
 
   line-height: 1.1em;
 
   line-height: 1.1em;
 
   font-size:15px;
 
   font-size:15px;
 +
}
 +
 +
 +
.c.source-c .coMULTI {
 +
color: #ffffff;
 +
font-style: italic;
 
}
 
}

Latest revision as of 19:13, 28 December 2014

  1. /* Overrides to colors used for highlighting
  2. See http://en.wikipedia.org/wiki/MediaWiki:Geshi.css
  3. */
  4.  
  5. /* This css will override styles used by the GeSHi syntax highlighting,
  6. such that less awful colors for the highlighting can be chosen. */
  7.  
  8. /**
  9. * Language code: "vb" *
  10. * Overrides colors used for keywords from that horrible gold
  11. * to more tolerable blue. Other colors left as default at present time.
  12. */
  13. .source-vb .kw1 {color: #006 !important }
  14.  
  15. /**
  16. * Language code: "cpp" *
  17. * Color fix for member variables
  18. */
  19. .source-cpp .me1 { color:#499; }
  20. .source-cpp .me2 { color:#499; }
  21.  
  22. /* Reinstating borders */
  23. body.skin-monobook div.mw-geshi {
  24. padding: 1em; border: 1px dashed #2f6fab;
  25. color: black; background-color: #f9f9f9;
  26. line-height: 1.1em;
  27. }
  28. body.skin-modern div.mw-geshi {
  29. border: solid 1px #3c78b5;
  30. padding: 0.4em;
  31. background-color: #f0f0f0;
  32. }
  33. body.skin-simple div.mw-geshi {
  34. margin: 2em;
  35. border: solid 1px black;
  36. }
  37. body.skin-chick div.mw-geshi {
  38. padding: 1em;
  39. border: 1px dashed #2f6fab;
  40. color: black;
  41. background-color: #f9f9f9;
  42. line-height: 1.1em;
  43. }
  44. body.skin-vector div.mw-geshi {
  45. padding: 1em;
  46. border: 1px dashed #2f6fab;
  47. color: black;
  48. background-color: #f9f9f9;
  49. line-height: 1.1em;
  50. font-size:15px;
  51. }
  52.  
  53. body.skin-gmwfreeblue div.mw-geshi {
  54. padding: 1em;
  55. border: none;
  56. color: black;
  57. background-color: #f6f9f9;
  58. line-height: 1.1em;
  59. font-size:15px;
  60. }
  61.  
  62.  
  63. .c.source-c .coMULTI {
  64. color: #ffffff;
  65. font-style: italic;
  66. }