Last active
November 26, 2021 12:32
-
-
Save anhtran/2cadad3613abf6a63846d7c0b445a342 to your computer and use it in GitHub Desktop.
Custom Firefox Quantum Dev Tools (Network tab)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* https://www.userchrome.org/what-is-userchrome-css.html */ | |
/* Preview: https://imgur.com/kZmJ75T */ | |
.requests-list-file.requests-list-column { | |
background-color: #48654b1a !important; | |
color: #ddd !important; | |
min-width: 300px !important; | |
direction: rtl !important; | |
} | |
.requests-list-file.requests-list-column[title*='/web-api'] { | |
color: #5177ff !important; | |
} | |
.requests-list-method.requests-list-column { | |
min-width: 45px !important; | |
width: 45px !important; | |
font-size: 8px !important; | |
} | |
.requests-list-status.requests-list-column { | |
min-width: 35px !important; | |
width: 35px !important; | |
} | |
.requests-list-domain.requests-list-column { | |
min-width: 100px !important; | |
width: 100px !important; | |
} | |
.requests-list-transferred.requests-list-column { | |
min-width: 60px !important; | |
width: 60px !important; | |
} | |
.requests-list-size.requests-list-column { | |
min-width: 60px !important; | |
width: 60px !important; | |
color: #467209; | |
} | |
.requests-list-type.requests-list-column[title^='text/html'] { | |
color: #91acf2 !important; | |
} | |
.requests-list-type.requests-list-column[title^='application/javascript'] { | |
color: #c260e5 !important; | |
} | |
.requests-list-type.requests-list-column[title^='text/css'] { | |
color: #e86d30 !important; | |
} | |
.requests-list-type.requests-list-column[title^='application/json'] { | |
color: #9be82f !important; | |
} | |
.requests-list-type.requests-list-column[title^='image/'] { | |
color: #d3ca61 !important; | |
} | |
.requests-list-cause.requests-list-column[title='xhr'] { | |
color: #d3ca61 !important; | |
} | |
#requests-list-status-header-box, | |
#requests-list-method-header-box | |
{ | |
text-indent: -9999px !important; | |
overflow: hidden !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment