Fix theming issue with "Arctic apricity" theme on ApricityOS, fixes: #94.

merge-requests/218/head v1.0
Jens Lody 9 years ago
parent 73fa689bfb
commit 6337eb2f01
  1. 2
      data/stylesheet.css
  2. 4
      src/extension.js

@ -63,6 +63,7 @@ padding-left: 5px;
.openweather-current-databox-captions { .openweather-current-databox-captions {
text-align: right; text-align: right;
padding-right: 5px; padding-right: 5px;
spacing: 0;
} }
.openweather-forecast-icon { .openweather-forecast-icon {
@ -79,6 +80,7 @@ min-width: 140px;
.openweather-forecast-day { .openweather-forecast-day {
font-size: 90%; font-size: 90%;
spacing: 0;
} }
.openweather-forecast-iconbox { .openweather-forecast-iconbox {

@ -1373,7 +1373,7 @@ const OpenweatherMenuButton = new Lang.Class({
}); });
let rb_captions = new St.BoxLayout({ let rb_captions = new St.BoxLayout({
vertical: true, vertical: true,
style_class: 'popup-status-menu-item openweather-current-databox-captions' style_class: 'popup-menu-item popup-status-menu-item openweather-current-databox-captions'
}); });
let rb_values = new St.BoxLayout({ let rb_values = new St.BoxLayout({
vertical: true, vertical: true,
@ -1466,7 +1466,7 @@ const OpenweatherMenuButton = new Lang.Class({
style_class: 'system-menu-action openweather-forecast-icon' style_class: 'system-menu-action openweather-forecast-icon'
}); });
forecastWeather.Day = new St.Label({ forecastWeather.Day = new St.Label({
style_class: 'popup-status-menu-item openweather-forecast-day' style_class: 'popup-menu-item popup-status-menu-item openweather-forecast-day'
}); });
forecastWeather.Summary = new St.Label({ forecastWeather.Summary = new St.Label({
style_class: 'system-menu-action openweather-forecast-summary' style_class: 'system-menu-action openweather-forecast-summary'

Loading…
Cancel
Save