Blame SOURCES/0001-data-drop-app-icon-styling.patch

bc3989
From 524bc0710f6dbbbb6b8135253f03ce5e0059da02 Mon Sep 17 00:00:00 2001
bc3989
From: rpm-build <rpm-build>
bc3989
Date: Tue, 4 Sep 2018 09:58:57 -0400
bc3989
Subject: [PATCH] data: drop app icon styling
bc3989
bc3989
classic session doesn't show an app icon in the app menu, so
bc3989
putting a drop shadow around where it would be creates screen
bc3989
artifacts.
bc3989
bc3989
This commit drops the styling of the app icon that doesn't exist.
bc3989
---
bc3989
 data/gnome-shell-sass/_common.scss | 10 ----------
bc3989
 1 file changed, 10 deletions(-)
bc3989
bc3989
diff --git a/data/gnome-shell-sass/_common.scss b/data/gnome-shell-sass/_common.scss
bc3989
index 1ceadf4..3cce6c1 100644
bc3989
--- a/data/gnome-shell-sass/_common.scss
bc3989
+++ b/data/gnome-shell-sass/_common.scss
bc3989
@@ -742,140 +742,130 @@ StScrollBar {
bc3989
 
bc3989
   #panelLeft, #panelCenter { // spacing between activities<>app menu and such
bc3989
     spacing: 4px;
bc3989
   }
bc3989
 
bc3989
   .panel-corner {
bc3989
     -panel-corner-radius: $panel-corner-radius;
bc3989
     -panel-corner-background-color: rgba(0, 0, 0, 0.35);
bc3989
     -panel-corner-border-width: 2px;
bc3989
     -panel-corner-border-color: transparent;
bc3989
 
bc3989
     &:active, &:overview, &:focus {
bc3989
       -panel-corner-border-color: lighten($selected_bg_color,5%);
bc3989
     }
bc3989
 
bc3989
     &.lock-screen, &.login-screen, &.unlock-screen {
bc3989
       -panel-corner-radius: 0;
bc3989
       -panel-corner-background-color: transparent;
bc3989
       -panel-corner-border-color: transparent;
bc3989
     }
bc3989
   }
bc3989
 
bc3989
   .panel-button {
bc3989
     -natural-hpadding: 12px;
bc3989
     -minimum-hpadding: 6px;
bc3989
     font-weight: bold;
bc3989
     color: #eee;
bc3989
     text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.9);
bc3989
     transition-duration: 100ms;
bc3989
 
bc3989
-    .app-menu-icon {
bc3989
-      -st-icon-style: symbolic;
bc3989
-      margin-left: 4px;
bc3989
-      margin-right: 4px;
bc3989
-      //dimensions of the icon are hardcoded
bc3989
-    }
bc3989
-
bc3989
     .panel-logo-icon {
bc3989
       padding-right: .4em;
bc3989
       icon-size: 1em;
bc3989
     }
bc3989
 
bc3989
     .system-status-icon,
bc3989
-    .app-menu-icon > StIcon,
bc3989
     .popup-menu-arrow {
bc3989
       icon-shadow: 0px 1px 2px rgba(0, 0, 0, 0.9);
bc3989
     }
bc3989
 
bc3989
     &:hover {
bc3989
       color: lighten($fg_color, 10%);
bc3989
       text-shadow: 0px 1px 6px rgba(0, 0, 0, 1);
bc3989
 
bc3989
       .system-status-icon,
bc3989
-      .app-menu-icon > StIcon,
bc3989
       .popup-menu-arrow {
bc3989
         icon-shadow: 0px 1px 6px rgba(0, 0, 0, 1);
bc3989
       }
bc3989
     }
bc3989
 
bc3989
     &:active, &:overview, &:focus, &:checked {
bc3989
       // Trick due to St limitations. It needs a background to draw
bc3989
       // a box-shadow
bc3989
       background-color: rgba(0, 0, 0, 0.01);
bc3989
       box-shadow: inset 0 -2px 0px lighten($selected_bg_color,5%);
bc3989
       color: lighten($fg_color,10%);
bc3989
 
bc3989
       & > .system-status-icon { icon-shadow: black 0 2px 2px; }
bc3989
     }
bc3989
 
bc3989
     .system-status-icon { icon-size: 1.09em; padding: 0 5px; }
bc3989
     .unlock-screen &,
bc3989
     .login-screen &,
bc3989
     .lock-screen & {
bc3989
       color: lighten($fg_color, 10%);
bc3989
       &:focus, &:hover, &:active { color: lighten($fg_color, 10%); }
bc3989
     }
bc3989
   }
bc3989
 
bc3989
   .panel-status-indicators-box,
bc3989
   .panel-status-menu-box {
bc3989
     spacing: 2px;
bc3989
   }
bc3989
 
bc3989
   // spacing between power icon and (optional) percentage label
bc3989
   .power-status.panel-status-indicators-box {
bc3989
     spacing: 0;
bc3989
   }
bc3989
 
bc3989
   .screencast-indicator { color: $warning_color; }
bc3989
 
bc3989
   &.solid {
bc3989
     background-color: black;
bc3989
     /* transition from transparent to solid */
bc3989
     transition-duration: 300ms;
bc3989
 
bc3989
     .panel-corner {
bc3989
       -panel-corner-background-color: black;
bc3989
     }
bc3989
 
bc3989
     .panel-button {
bc3989
       color: #ccc;
bc3989
       text-shadow: none;
bc3989
 
bc3989
       &:hover, &:active, &:overview, &:focus, &:checked {
bc3989
         color: lighten($fg_color, 10%);
bc3989
       }
bc3989
     }
bc3989
 
bc3989
     .system-status-icon,
bc3989
-    .app-menu-icon > StIcon,
bc3989
     .popup-menu-arrow {
bc3989
       icon-shadow: none;
bc3989
     }
bc3989
   }
bc3989
 }
bc3989
 
bc3989
   // calendar popover
bc3989
   #calendarArea {
bc3989
     padding: 0.75em 1.0em;
bc3989
   }
bc3989
 
bc3989
   .calendar {
bc3989
     margin-bottom: 1em;
bc3989
   }
bc3989
 
bc3989
     .calendar,
bc3989
     .datemenu-today-button,
bc3989
     .datemenu-displays-box,
bc3989
     .message-list-sections {
bc3989
       margin: 0 1.5em;
bc3989
     }
bc3989
 
bc3989
     .datemenu-calendar-column { spacing: 0.5em; }
bc3989
     .datemenu-displays-section { padding-bottom: 3em; }
bc3989
     .datemenu-displays-box { spacing: 1em; }
bc3989
 
bc3989
     .datemenu-calendar-column {
bc3989
       border: 0 solid lighten($bg_color,5%);
bc3989
       &:ltr { border-left-width: 1px; }
bc3989
       &:rtl { border-right-width: 1px; }
bc3989
-- 
bc3989
2.17.1
bc3989