Theme: Too many values for border-radius property.

GNOME Shell throws the following warning message:
'St-WARNING **: Too many values for border-radius property.'

Was fixed with just remove the last '0' on the 'border-radius'
property in the '.tile-preview-left.on-primary' class on both files:
gnome-shell.css and gnome-shell-high-contrast.css.

https://bugzilla.gnome.org/show_bug.cgi?id=744900
This commit is contained in:
Miguel Vaello Martínez 2015-02-21 18:20:52 +01:00 committed by Florian Müllner
parent a23f87de5e
commit 7d2690ac5a
3 changed files with 3 additions and 3 deletions

View File

@ -534,7 +534,7 @@ StScrollBar {
border: 1px solid #215d9c; }
.tile-preview-left.on-primary {
border-radius: 6px 6px 0 0 0; }
border-radius: 6px 6px 0 0; }
.tile-preview-right.on-primary {
border-radius: 0 6px 0 0; }

@ -1 +1 @@
Subproject commit 9f3b4d407b0a89ab53d2c3d7ea722547e443db3e
Subproject commit 1087927ea0aef09b0d9478a6f42da49204e943ed

View File

@ -534,7 +534,7 @@ StScrollBar {
border: 1px solid #215d9c; }
.tile-preview-left.on-primary {
border-radius: 6px 6px 0 0 0; }
border-radius: 6px 6px 0 0; }
.tile-preview-right.on-primary {
border-radius: 0 6px 0 0; }