[gnome-boxes] gtk-style: Rename .boxes-bg to .transparent-bg



commit 407d644a46bd97f4ae4ad1c5d1d833798d8cae7f
Author: Lasse Schuirmann <lasse schuirmann gmail com>
Date:   Mon Aug 18 12:05:51 2014 +0200

    gtk-style: Rename .boxes-bg to .transparent-bg
    
    The new name describes way better that the class just makes the
    background transparent.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=731952

 data/gtk-style.css            |    2 +-
 data/ui/properties-sidebar.ui |    2 +-
 data/ui/wizard-summary.ui     |    2 +-
 src/notificationbar.vala      |    2 +-
 src/properties.vala           |    2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/data/gtk-style.css b/data/gtk-style.css
index 854fda9..e2a0fc7 100644
--- a/data/gtk-style.css
+++ b/data/gtk-style.css
@@ -46,7 +46,7 @@ BoxesMiniGraph {
     font-weight: bold;
 }
 
-.boxes-bg {
+.transparent-bg {
     background-color: transparent;
     background-image: none;
 }
diff --git a/data/ui/properties-sidebar.ui b/data/ui/properties-sidebar.ui
index 92c38aa..32aecb9 100644
--- a/data/ui/properties-sidebar.ui
+++ b/data/ui/properties-sidebar.ui
@@ -15,7 +15,7 @@
         <property name="model">model_filter</property>
         <signal name="row_activated" handler="on_row_activated"/>
         <style>
-          <class name="boxes-bg"/>
+          <class name="transparent-bg"/>
         </style>
 
         <child>
diff --git a/data/ui/wizard-summary.ui b/data/ui/wizard-summary.ui
index c400465..78c94d2 100644
--- a/data/ui/wizard-summary.ui
+++ b/data/ui/wizard-summary.ui
@@ -6,7 +6,7 @@
     <property name="row-spacing">10</property>
     <property name="column-spacing">20</property>
     <style>
-      <class name="boxes-bg"/>
+      <class name="transparent-bg"/>
     </style>
   </template>
 </interface>
diff --git a/src/notificationbar.vala b/src/notificationbar.vala
index 462322c..9a3e9f8 100644
--- a/src/notificationbar.vala
+++ b/src/notificationbar.vala
@@ -11,7 +11,7 @@ private class Boxes.Notificationbar: Gtk.Grid {
     construct {
         valign = Gtk.Align.START;
         halign = Gtk.Align.CENTER;
-        get_style_context ().add_class ("boxes-bg");
+        get_style_context ().add_class ("transparent-bg");
 
         show ();
 
diff --git a/src/properties.vala b/src/properties.vala
index d281ab9..9a49d40 100644
--- a/src/properties.vala
+++ b/src/properties.vala
@@ -59,7 +59,7 @@ private class Boxes.Properties: Gtk.Stack, Boxes.UI {
             }
 
             get_style_context ().add_class ("properties");
-            get_style_context ().add_class ("boxes-bg");
+            get_style_context ().add_class ("transparent-bg");
 
             grid = new Gtk.Grid ();
             grid.margin = 20;


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]