Skip to content

Commit a292740

Browse files
committed
minor symfony#31055 Remove redundant box-sizing prefixes (MartijnCuppens)
This PR was submitted for the 4.2 branch but it was merged into the 3.4 branch instead (closes symfony#31055). Discussion ---------- Remove redundant `box-sizing` prefixes | Q | A | ------------- | --- | Branch? | 4.2 <!-- see below --> | Bug fix? | no | New feature? | no <!-- don't forget to update src/**/CHANGELOG.md files --> | BC breaks? | no <!-- see https://symfony.com/bc --> | Deprecations? | no <!-- don't forget to update UPGRADE-*.md and src/**/CHANGELOG.md files --> | Tests pass? | / <!-- please add some, will be required by reviewers --> | Fixed tickets | / <!-- #-prefixed issue number(s), if any --> | License | MIT | Doc PR | / <!-- required for new features --> The `-webkit-` and `-moz-` prefixes are redundant and Symfony is not prefixing it on other places in the file, eg: https://github.com/symfony/symfony/blob/2243bf5bc11e3908f975f92551bd869a61211999/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/toolbar.css.twig#L395-L401 Not sure what branch I should target for PRs like these, just let me know if I need to change anything. Greetings, Martijn from the [Bootstrap](https://github.com/orgs/twbs/people) team Commits ------- 0cf3227 Remove redundant `box-sizing` prefixes
2 parents fd1408b + 0cf3227 commit a292740

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/toolbar.css.twig

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
background-color: #222;
66
border-top-left-radius: 4px;
77
bottom: 0;
8-
-webkit-box-sizing: border-box;
9-
-moz-box-sizing: border-box;
108
box-sizing: border-box;
119
display: none;
1210
height: 36px;
@@ -36,8 +34,6 @@
3634
}
3735

3836
.sf-toolbarreset * {
39-
-webkit-box-sizing: content-box;
40-
-moz-box-sizing: content-box;
4137
box-sizing: content-box;
4238
vertical-align: baseline;
4339
letter-spacing: normal;

0 commit comments

Comments
 (0)