Contains the Concourse pipeline definition for building a line-server container
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
579 B

  1. .linenumbers {
  2. border-left: 1px solid #ccc;
  3. margin-left: 36px;
  4. position: relative;
  5. }
  6. .linenumbers code {
  7. counter-reset: linenumbers;
  8. }
  9. .linenumbers code div:before {
  10. content: counter(linenumbers);
  11. counter-increment: linenumbers;
  12. left: -36px;
  13. width: 28px;
  14. position: absolute;
  15. text-align: right;
  16. padding-right: 5px;
  17. color: #999;
  18. overflow-wrap: normal;
  19. -webkit-touch-callout: none;
  20. -webkit-user-select: none;
  21. -khtml-user-select: none;
  22. -moz-user-select: none;
  23. -ms-user-select: none;
  24. user-select: none;
  25. }