Gnome-Shell: Update 3.36.5

This commit is contained in:
Daniel Ruiz de Alegría 2020-09-03 16:40:55 +02:00
parent 6d3739abcf
commit 0eb9f99905
8 changed files with 49 additions and 24 deletions

View File

@ -309,8 +309,11 @@ StScrollBar {
border-bottom: 1px solid rgba(13, 14, 17, 0.8); }
.popup-menu-ornament {
text-align: right;
width: 1.2em; }
.popup-menu-ornament:ltr {
text-align: right; }
.popup-menu-ornament:rtl {
text-align: left; }
.popup-separator-menu-item {
padding: 0; }
@ -588,8 +591,11 @@ StScrollBar {
font-weight: bold;
color: #eeeeec;
font-feature-settings: "tnum";
font-size: 11pt;
font-size: 11pt; }
.world-clocks-button .world-clocks-time:ltr {
text-align: right; }
.world-clocks-button .world-clocks-time:rtl {
text-align: left; }
.world-clocks-button .world-clocks-timezone {
color: #bebeb6;
font-feature-settings: "tnum";
@ -722,9 +728,12 @@ StScrollBar {
.message .message-secondary-bin > .event-time {
color: rgba(238, 238, 236, 0.5);
font-size: 9pt;
text-align: right;
/* HACK: the label should be baseline-aligned with a 1em label, fake this with some bottom padding */
padding-bottom: 0.13em; }
.message .message-secondary-bin > .event-time:ltr {
text-align: right; }
.message .message-secondary-bin > .event-time:rtl {
text-align: left; }
.message .message-close-button {
color: white; }
.message .message-close-button:hover {
@ -1340,7 +1349,7 @@ StScrollBar {
.icon-grid {
-shell-grid-horizontal-item-size: 144px;
-shell-grid-vertical-item-size: 144px;
spacing: 36px; }
spacing: 24px; }
.icon-grid .overview-icon {
icon-size: 96px; }
@ -2014,12 +2023,13 @@ StScrollBar {
.user-widget.horizontal .user-widget-label {
font-size: 13pt;
font-weight: bold;
text-align: left;
padding-left: 15px; }
.user-widget.horizontal .user-widget-label:ltr {
padding-left: 14px; }
padding-left: 14px;
text-align: left; }
.user-widget.horizontal .user-widget-label:rtl {
padding-right: 14px; }
padding-right: 14px;
text-align: right; }
.user-widget.vertical .user-widget-label {
font-size: 16pt;

View File

@ -309,8 +309,11 @@ StScrollBar {
border-bottom: 1px solid rgba(217, 217, 217, 0.8); }
.popup-menu-ornament {
text-align: right;
width: 1.2em; }
.popup-menu-ornament:ltr {
text-align: right; }
.popup-menu-ornament:rtl {
text-align: left; }
.popup-separator-menu-item {
padding: 0; }
@ -587,8 +590,11 @@ StScrollBar {
font-weight: bold;
color: #5c616c;
font-feature-settings: "tnum";
font-size: 11pt;
font-size: 11pt; }
.world-clocks-button .world-clocks-time:ltr {
text-align: right; }
.world-clocks-button .world-clocks-time:rtl {
text-align: left; }
.world-clocks-button .world-clocks-timezone {
color: #2d3035;
font-feature-settings: "tnum";
@ -721,9 +727,12 @@ StScrollBar {
.message .message-secondary-bin > .event-time {
color: rgba(92, 97, 108, 0.5);
font-size: 9pt;
text-align: right;
/* HACK: the label should be baseline-aligned with a 1em label, fake this with some bottom padding */
padding-bottom: 0.13em; }
.message .message-secondary-bin > .event-time:ltr {
text-align: right; }
.message .message-secondary-bin > .event-time:rtl {
text-align: left; }
.message .message-close-button {
color: #818794; }
.message .message-close-button:hover {
@ -1339,7 +1348,7 @@ StScrollBar {
.icon-grid {
-shell-grid-horizontal-item-size: 144px;
-shell-grid-vertical-item-size: 144px;
spacing: 36px; }
spacing: 24px; }
.icon-grid .overview-icon {
icon-size: 96px; }
@ -2010,12 +2019,13 @@ StScrollBar {
.user-widget.horizontal .user-widget-label {
font-size: 13pt;
font-weight: bold;
text-align: left;
padding-left: 15px; }
.user-widget.horizontal .user-widget-label:ltr {
padding-left: 14px; }
padding-left: 14px;
text-align: left; }
.user-widget.horizontal .user-widget-label:rtl {
padding-right: 14px; }
padding-right: 14px;
text-align: right; }
.user-widget.vertical .user-widget-label {
font-size: 16pt;

View File

@ -7,7 +7,7 @@ $app_icon_padding: 24px;
.icon-grid {
-shell-grid-horizontal-item-size: $app_icon_size + $app_icon_padding * 2;
-shell-grid-vertical-item-size: $app_icon_size + $app_icon_padding * 2;
spacing: $base_spacing * 6;
spacing: $base_spacing * 4;
.overview-icon {
icon-size: $app_icon_size;

View File

@ -206,7 +206,9 @@
color: $fg_color;
font-feature-settings: "tnum";
@include fontsize($base_font_size);
text-align: right;
&:ltr { text-align: right; }
&:rtl { text-align: left; }
}
// timezone offset label

View File

@ -138,11 +138,10 @@
.user-widget.horizontal .user-widget-label {
@include fontsize($base_font_size + 2);
font-weight: bold;
text-align: left;
padding-left: 15px;
&:ltr { padding-left: 14px; }
&:rtl { padding-right: 14px; }
&:ltr { padding-left: 14px; text-align: left; }
&:rtl { padding-right: 14px; text-align: right; }
}
.user-widget.vertical .user-widget-label {

View File

@ -71,9 +71,11 @@
> .event-time {
color: transparentize($fg_color, 0.5);
@include fontsize($base_font_size - 2);
text-align: right;
/* HACK: the label should be baseline-aligned with a 1em label, fake this with some bottom padding */
padding-bottom: 0.13em;
&:ltr { text-align: right };
&:rtl { text-align: left };
}
}

View File

@ -76,8 +76,10 @@ $popover_arrow_height: 12px;
// container for radio and check boxes
.popup-menu-ornament {
text-align: right;
width: 1.2em;
&:ltr { text-align: right };
&:rtl { text-align: left };
}
// separator

View File

@ -4,7 +4,7 @@ GREEN='\033[0;32m'
YELLOW='\033[0;33m'
RESET='\033[0m'
VERSION=3.36.4
VERSION=3.36.5
echo
echo -e " $YELLOW[ i ]$RESET Upstream version $VERSION"