input.css 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. :root {
  2. --bytm-auto-like-btn-color: #c47df4;
  3. --bytm-auto-like-btn-bg-color: rgba(201, 122, 254, 0.25);
  4. }
  5. .bytm-auto-like-channel-row-left-cont {
  6. display: flex;
  7. align-items: center;
  8. gap: 10px;
  9. }
  10. .bytm-auto-like-channel-row {
  11. display: flex;
  12. justify-content: space-between;
  13. align-items: center;
  14. padding: 8px 15px;
  15. transition: background-color 0.15s ease-out;
  16. }
  17. .bytm-auto-like-channels-desc {
  18. padding: 0px 15px;
  19. white-space: pre-wrap;
  20. font-size: 1.6rem;
  21. margin-bottom: 15px;
  22. }
  23. #bytm-auto-like-channels-add-new {
  24. padding: 4px 15px;
  25. margin-top: 20px;
  26. margin-bottom: 10px;
  27. }
  28. .bytm-auto-like-channel-row:hover {
  29. background-color: var(--bytm-menu-bg-highlight);
  30. }
  31. .bytm-auto-like-channel-row .bytm-toggle-input-wrapper.bytm-auto-like-channel-toggle {
  32. --toggle-height: 18px !important;
  33. --toggle-width: 36px !important;
  34. }
  35. .bytm-auto-like-channel-row .bytm-generic-btn {
  36. --bytm-generic-btn-width: 30px;
  37. --bytm-generic-btn-height: 30px;
  38. }
  39. .bytm-auto-like-channel-name-label {
  40. display: flex;
  41. flex-direction: row;
  42. align-items: center;
  43. }
  44. .bytm-auto-like-channel-id {
  45. cursor: text;
  46. font-size: 1.1rem;
  47. color: #aaa;
  48. margin-left: 10px;
  49. }
  50. .bytm-auto-like-toggle-btn {
  51. margin-right: 8px;
  52. border: 1px solid var(--bytm-auto-like-btn-color);
  53. box-sizing: border-box;
  54. }
  55. .bytm-auto-like-toggle-btn:active {
  56. background-color: var(--bytm-auto-like-btn-bg-color);
  57. }
  58. .bytm-auto-like-toggle-btn.toggled {
  59. background-color: var(--bytm-auto-like-btn-bg-color, rgba(255, 255, 255, 0.25));
  60. }
  61. .bytm-auto-like-toggle-btn .bytm-generic-long-btn-txt {
  62. color: var(--bytm-auto-like-btn-color);
  63. }
  64. .bytm-auto-like-toggle-btn svg path {
  65. fill: var(--bytm-auto-like-btn-color);
  66. }