File tree Expand file tree Collapse file tree 2 files changed +9
-5
lines changed
data/theme/cinnamon-sass/widgets Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -92,5 +92,5 @@ $ws_dot_inactive: $ws_indicator_height / 6;
9292.resize-popup {
9393 @extend %osd_base ;
9494
95- padding : $base_padding ;
95+ padding : $base_padding * 2 ;
9696}
Original file line number Diff line number Diff line change @@ -275,10 +275,14 @@ var ResizePopup = GObject.registerClass(
275275class ResizePopup extends St . Widget {
276276 _init ( ) {
277277 super . _init ( { layout_manager : new Clutter . BinLayout ( ) } ) ;
278- this . _label = new St . Label ( { style_class : 'info-osd' ,
279- x_align : Clutter . ActorAlign . CENTER ,
280- y_align : Clutter . ActorAlign . CENTER ,
281- x_expand : true , y_expand : true } ) ;
278+ this . _label = new St . Label ( {
279+ style_class : 'resize-popup' ,
280+ important : true ,
281+ x_align : Clutter . ActorAlign . CENTER ,
282+ y_align : Clutter . ActorAlign . CENTER ,
283+ x_expand : true ,
284+ y_expand : true
285+ } ) ;
282286 this . add_child ( this . _label ) ;
283287 Main . uiGroup . add_actor ( this ) ;
284288 }
You can’t perform that action at this time.
0 commit comments