net-request.css 982 B

123456789101112131415161718192021222324252627282930313233343536
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. /******************************************************************************/
  5. /* General */
  6. :root {
  7. --net-border: #d7d7d7;
  8. }
  9. :root.theme-dark {
  10. --net-border: #5f7387;
  11. }
  12. /******************************************************************************/
  13. /* Network log */
  14. /* No background if a Net log is opened */
  15. .netRequest.message.opened,
  16. .netRequest.message.opened:hover {
  17. background: transparent !important;
  18. }
  19. /******************************************************************************/
  20. /* Themes */
  21. .theme-dark .netRequest.opened:hover,
  22. .theme-dark .netRequest.opened {
  23. background: transparent;
  24. }
  25. .theme-firebug .netRequest.message.opened:hover {
  26. background-image: linear-gradient(rgba(214, 233, 246, 0.8), rgba(255, 255, 255, 1.6)) !important;
  27. }