8000 Fix `!important` in VarDumper stylesheet by mul14 · Pull Request #28118 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

Fix !important in VarDumper stylesheet #28118

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix !important in VarDumper stylesheet
Signed-off-by: Mulia Arifandi Nasution <mul14.net@gmail.com>
  • Loading branch information
mul14 committed Aug 2, 2018
commit d8bc4f5245e5f8cc89d771ba84baadb484676052
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ pre.sf-dump {
margin-bottom: 0;
}
.hidden {
display: none; !important
display: none !important;
}
.dumped-tag > .sf-dump {
display: inline-block;
Expand Down
0