/hudson-war/src/main/webapp/scripts/yui/logger/assets/logger.css

http://github.com/hudson/hudson · CSS · 57 lines · 30 code · 8 blank · 19 comment · 0 complexity · 827bd73f841baca462687ab1da3b9a17 MD5 · raw file

  1. /*
  2. Copyright (c) 2008, Yahoo! Inc. All rights reserved.
  3. Code licensed under the BSD License:
  4. http://developer.yahoo.net/yui/license.txt
  5. version: 2.5.1
  6. */
  7. /* logger default styles */
  8. /* default width: 31em */
  9. /* default font-size 77% */
  10. .yui-log {padding:1em;width:31em;background-color:#AAA;color:#000;border:1px solid black;font-family:monospace;font-size:77%;text-align:left;z-index:9000;}
  11. /* for containers built from scratch */
  12. .yui-log-container {position:absolute;top:1em;right:1em;}
  13. /* buttons */
  14. .yui-log input {
  15. margin:0;padding:0;
  16. font-family:arial;
  17. font-size:100%;
  18. font-weight:normal;
  19. }
  20. .yui-log .yui-log-btns {position:relative;float:right;bottom:.25em;}
  21. /* header */
  22. .yui-log .yui-log-hd {margin-top:1em;padding:.5em;background-color:#575757;}
  23. .yui-log .yui-log-hd h4 {margin:0;padding:0;font-size:107%;font-weight:bold;color:#FFF;}
  24. /* body */
  25. .yui-log .yui-log-bd {width:100%;height:20em;background-color:#FFF;border:1px solid gray;overflow:auto;} /* height is controlled here: default 20em*/
  26. .yui-log p {margin:1px;padding:.1em;}
  27. .yui-log pre {margin:0;padding:0;}
  28. /* for pre to respect newlines yet wrap long lines */
  29. /* http://www.longren.org/2006/09/27/wrapping-text-inside-pre-tags/ */
  30. .yui-log pre.yui-log-verbose {
  31. white-space: pre-wrap; /* css-3 */
  32. white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
  33. white-space: -pre-wrap; /* Opera 4-6 */
  34. white-space: -o-pre-wrap; /* Opera 7 */
  35. word-wrap: break-word; /* Internet Explorer 5.5+ */
  36. }
  37. /* footer */
  38. .yui-log .yui-log-ft {margin-top:.5em;}
  39. .yui-log .yui-log-ft .yui-log-categoryfilters {}
  40. .yui-log .yui-log-ft .yui-log-sourcefilters {width:100%;border-top:1px solid #575757;margin-top:.75em;padding-top:.75em;}
  41. .yui-log .yui-log-filtergrp {margin-right:.5em;}
  42. /*.yui-log .yui-log-ft ul {margin:0;padding:0;line-height:1.8}
  43. .yui-log .yui-log-ft li {list-style:none;display:inline;white-space:nowrap;}*/
  44. /* logs */
  45. .yui-log .info {background-color:#A7CC25;} /* A7CC25 green */
  46. .yui-log .warn {background-color:#F58516;} /* F58516 orange */
  47. .yui-log .error {background-color:#E32F0B;} /* E32F0B red */
  48. .yui-log .time {background-color:#A6C9D7;} /* A6C9D7 blue */
  49. .yui-log .window {background-color:#F2E886;} /* F2E886 tan */