summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--shell/app-icon.c2
-rw-r--r--shell/clock.c2
-rw-r--r--shell/launcher.c6
-rw-r--r--shell/panel.c6
-rw-r--r--shell/style.css18
-rw-r--r--shell/vertical-clock.c4
6 files changed, 19 insertions, 19 deletions
diff --git a/shell/app-icon.c b/shell/app-icon.c
index af23fd8..ab857ef 100644
--- a/shell/app-icon.c
+++ b/shell/app-icon.c
@@ -30,7 +30,7 @@ maynard_app_icon_init (MaynardAppIcon *self)
{
gtk_style_context_add_class (
gtk_widget_get_style_context (GTK_WIDGET (self)),
- "wgs-apps");
+ "maynard-apps");
gtk_style_context_remove_class (
gtk_widget_get_style_context (GTK_WIDGET (self)),
diff --git a/shell/clock.c b/shell/clock.c
index 4026e13..8f75451 100644
--- a/shell/clock.c
+++ b/shell/clock.c
@@ -78,7 +78,7 @@ maynard_clock_constructed (GObject *object)
gtk_style_context_add_class (
gtk_widget_get_style_context (GTK_WIDGET (self)),
- "wgs-clock");
+ "maynard-clock");
self->priv->label = gtk_label_new ("");
gtk_label_set_justify (GTK_LABEL (self->priv->label), GTK_JUSTIFY_CENTER);
diff --git a/shell/launcher.c b/shell/launcher.c
index ef23bde..0a6f0f7 100644
--- a/shell/launcher.c
+++ b/shell/launcher.c
@@ -166,7 +166,7 @@ app_launcher_new_from_desktop_info (MaynardLauncher *self,
/* we need an ebox to catch enter and leave events */
ebox = gtk_event_box_new ();
gtk_style_context_add_class (gtk_widget_get_style_context (ebox),
- "wgs-grid-item");
+ "maynard-grid-item");
/* we use an overlay so we can have the app icon showing but use a
* GtkRevealer to show a label of the app's name. */
@@ -192,7 +192,7 @@ app_launcher_new_from_desktop_info (MaynardLauncher *self,
/* app name */
label = gtk_label_new (g_app_info_get_display_name (G_APP_INFO (info)));
gtk_label_set_ellipsize (GTK_LABEL (label), PANGO_ELLIPSIZE_END);
- gtk_style_context_add_class (gtk_widget_get_style_context (label), "wgs-grid-label");
+ gtk_style_context_add_class (gtk_widget_get_style_context (label), "maynard-grid-label");
gtk_container_add (GTK_CONTAINER (revealer), label);
/* icon button to load the app */
@@ -290,7 +290,7 @@ maynard_launcher_constructed (GObject *object)
/* make it black and slightly alpha */
gtk_style_context_add_class (
gtk_widget_get_style_context (GTK_WIDGET (self)),
- "wgs-grid");
+ "maynard-grid");
/* scroll it */
self->priv->scrolled_window = gtk_scrolled_window_new (NULL, NULL);
diff --git a/shell/panel.c b/shell/panel.c
index 605ef1e..2d5bf6b 100644
--- a/shell/panel.c
+++ b/shell/panel.c
@@ -92,7 +92,7 @@ maynard_panel_constructed (GObject *object)
/* make it black and slightly alpha */
gtk_style_context_add_class (
gtk_widget_get_style_context (GTK_WIDGET (self)),
- "wgs-panel");
+ "maynard-panel");
/* main vbox */
main_box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
@@ -134,14 +134,14 @@ maynard_panel_constructed (GObject *object)
image = gtk_image_new_from_icon_name ("network-wireless-signal-excellent-symbolic",
GTK_ICON_SIZE_LARGE_TOOLBAR);
gtk_style_context_add_class (gtk_widget_get_style_context (image),
- "wgs-wifi");
+ "maynard-wifi");
gtk_box_pack_start (GTK_BOX (buttons_box), image, FALSE, FALSE, 0);
/* sound button */
image = gtk_image_new_from_icon_name ("audio-volume-high-symbolic",
GTK_ICON_SIZE_LARGE_TOOLBAR);
gtk_style_context_add_class (gtk_widget_get_style_context (image),
- "wgs-audio");
+ "maynard-audio");
gtk_box_pack_start (GTK_BOX (buttons_box), image, FALSE, FALSE, 0);
/* revealer for the vertical clock */
diff --git a/shell/style.css b/shell/style.css
index b623430..405d172 100644
--- a/shell/style.css
+++ b/shell/style.css
@@ -1,40 +1,40 @@
-.wgs-panel {
+.maynard-panel {
background-color: alpha(black, 0.7);
}
-.wgs-wifi {
+.maynard-wifi {
background-color: #6d6d6d;
color: white;
padding: 16px;
}
-.wgs-audio {
+.maynard-audio {
background-color: #b4b4b4;
color: white;
padding: 16px;
}
-.wgs-apps {
+.maynard-apps {
color: #bebebe;
}
-.wgs-apps:hover {
+.maynard-apps:hover {
-GtkWidget-focus-line-width: 0px;
background-color: #1c1c1c;
background-image: none;
color: white;
}
-.wgs-clock {
+.maynard-clock {
background-color: #929292;
color: white;
}
-.wgs-grid {
+.maynard-grid {
background-color: alpha(white, 0.5);
}
-.wgs-grid-item {
+.maynard-grid-item {
background-color: alpha(black, 0.7);
color: white;
font: Droid Sans 12;
@@ -44,6 +44,6 @@
border-radius: 1px;
}
-.wgs-grid-label {
+.maynard-grid-label {
background-color: #929292;
} \ No newline at end of file
diff --git a/shell/vertical-clock.c b/shell/vertical-clock.c
index ef3efcc..ed9f9f0 100644
--- a/shell/vertical-clock.c
+++ b/shell/vertical-clock.c
@@ -89,14 +89,14 @@ maynard_vertical_clock_constructed (GObject *object)
padding = gtk_label_new ("");
gtk_style_context_add_class (gtk_widget_get_style_context (padding),
- "wgs-clock");
+ "maynard-clock");
gtk_widget_set_size_request (padding, width, -1);
gtk_box_pack_start (GTK_BOX (self), padding, FALSE, FALSE, 0);
/* the actual clock label */
self->priv->label = gtk_label_new ("");
gtk_style_context_add_class (gtk_widget_get_style_context (self->priv->label),
- "wgs-clock");
+ "maynard-clock");
gtk_label_set_justify (GTK_LABEL (self->priv->label), GTK_JUSTIFY_CENTER);
gtk_widget_set_size_request (self->priv->label,
MAYNARD_VERTICAL_CLOCK_WIDTH, -1);