_debugLog.scss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. .debug-log {
  2. &.modal {
  3. padding: 50px;
  4. .content {
  5. margin: 0;
  6. max-width: 100%;
  7. width: 100%;
  8. height: 100%;
  9. display: flex;
  10. flex-direction: column;
  11. textarea {
  12. flex-grow: 1;
  13. width: 100%;
  14. resize: none;
  15. min-height: 100px;
  16. }
  17. }
  18. }
  19. .result {
  20. $link-max-width: 400px;
  21. $open-width: 72px;
  22. $open-height: 36px;
  23. text-align: center;
  24. $group-max-width: $link-max-width + $open-width;
  25. .input-group {
  26. display: inline-block;
  27. width: 100%;
  28. max-width: $group-max-width;
  29. }
  30. $open-pad-x: ($open-width - $button-height - 2) / 2;
  31. $open-pad-y: ($open-height - $button-height - 2) / 2;
  32. .open {
  33. float: left;
  34. display: inline-block;
  35. width: $open-width;
  36. height: $open-height;
  37. padding: $open-pad-y $open-pad-x;
  38. cursor: pointer;
  39. border: solid 1px #ccc;
  40. border-radius: 0 $border-radius $border-radius 0;
  41. background: $grey_l;
  42. &:before {
  43. content: '';
  44. display: block;
  45. width: $button-height;
  46. height: $button-height;
  47. @include header-icon-black('/images/open_link.svg');
  48. }
  49. }
  50. .link {
  51. border-radius: $border-radius 0 0 $border-radius;
  52. float: left;
  53. width: calc(100% - #{$open-width});
  54. max-width: $link-max-width;
  55. height: $open-height;
  56. padding: 0 10px;
  57. outline-offset: -4px;
  58. border: solid 1px #ccc;
  59. border-right: none;
  60. }
  61. }
  62. }