dev-toolbar.less 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. .dev-toolbar {
  2. position: fixed;
  3. bottom: 0;
  4. left: 0;
  5. right: 0;
  6. z-index: 100;
  7. height: 40px;
  8. background-color: @neutral-90;
  9. padding: 5px 12px;
  10. button.widget {
  11. color: @neutral-10;
  12. margin: 0 4px;
  13. padding: 0 4px;
  14. border: none;
  15. text-decoration: none;
  16. }
  17. }
  18. .dev-toolbar-tooltip {
  19. a {
  20. color: @blue-20;
  21. &.btn {
  22. color: @neutral-10;
  23. }
  24. }
  25. &.tooltip.top {
  26. margin-top: -10px;
  27. opacity: 1;
  28. }
  29. .tooltip-inner {
  30. padding: 2px 8px 8px 8px;
  31. text-align: left;
  32. min-width: 300px;
  33. max-height: 800px;
  34. overflow-y: auto;
  35. }
  36. .title {
  37. margin-top: 4px;
  38. }
  39. .test-card {
  40. text-align: left;
  41. color: @neutral-10;
  42. padding: 6px;
  43. border: 2px solid @neutral-70;
  44. background-color: @neutral-80;
  45. border-radius: 4px;
  46. margin-top: 8px;
  47. &.override {
  48. border-color: @blue-40;
  49. }
  50. .test-name {
  51. font-family: monospace;
  52. font-size: @font-size-extra-small;
  53. font-weight: bold;
  54. }
  55. ul {
  56. li.variant-row {
  57. line-height: 24px;
  58. }
  59. }
  60. }
  61. .actions {
  62. margin-top: 8px;
  63. text-align: right;
  64. }
  65. ul {
  66. margin-bottom: 0;
  67. }
  68. }