theme: adjust padding in calendar popover

https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/904
This commit is contained in:
Sam Hewitt 2019-12-19 10:48:32 -05:00 committed by Florian Müllner
parent 891f2201c5
commit d50e06dcce
7 changed files with 16 additions and 26 deletions

1
.gitignore vendored
View File

@ -21,6 +21,7 @@ data/org.gnome.shell.gschema.valid
data/org.gnome.Shell.PortalHelper.desktop
data/org.gnome.Shell.PortalHelper.service
data/theme/.sass-cache
data/theme/*.css.map
docs/reference/*/*.args
docs/reference/*/*.bak
docs/reference/*/*.hierarchy

View File

@ -197,12 +197,14 @@ stage {
.datemenu-calendar-column {
spacing: 0;
border: 0 solid black;
padding: 10px;
padding: 12px;
padding-bottom: 3em;
padding-top: 0; }
.datemenu-calendar-column:ltr {
margin-right: 8px;
border-left-width: 1px; }
.datemenu-calendar-column:rtl {
margin-left: 8px;
border-right-width: 1px; }
.datemenu-calendar-column .datemenu-today-button {
padding: 9px;
@ -1282,7 +1284,7 @@ StEntry {
padding: 0 12px; }
.message-list-sections {
margin: 0;
margin: 4px;
spacing: 6px; }
.message-list-section,
@ -1295,7 +1297,7 @@ StEntry {
padding: 0; }
.message-list-clear-button {
margin: 4px; }
margin: 4px 8px; }
.message .message-title {
color: #fff;

File diff suppressed because one or more lines are too long

View File

@ -10,13 +10,12 @@
.datemenu-calendar-column {
spacing: 0;
border: 0 solid $bubble_borders_color;
padding: $base_padding + $base_margin;
padding: $base_padding * 2;
padding-bottom: 3em; // account for the notifications clear button
padding-top:0;
&:ltr { border-left-width: 1px; }
&:rtl { border-right-width: 1px; }
&:ltr {margin-right: $base_margin * 2; border-left-width: 1px; }
&:rtl {margin-left: $base_margin * 2; border-right-width: 1px; }
// today button (the date)
.datemenu-today-button {

View File

@ -8,7 +8,7 @@
}
.message-list-sections {
margin:0;
margin:$base_margin;
spacing: $base_spacing;
}
@ -24,7 +24,7 @@
// clear button
.message-list-clear-button {
margin:$base_margin;
margin:$base_margin $base_margin*2;
.button {
@extend %button;
}

View File

@ -197,12 +197,14 @@ stage {
.datemenu-calendar-column {
spacing: 0;
border: 0 solid #2d2d2d;
padding: 10px;
padding: 12px;
padding-bottom: 3em;
padding-top: 0; }
.datemenu-calendar-column:ltr {
margin-right: 8px;
border-left-width: 1px; }
.datemenu-calendar-column:rtl {
margin-left: 8px;
border-right-width: 1px; }
.datemenu-calendar-column .datemenu-today-button {
padding: 9px;
@ -1285,7 +1287,7 @@ StEntry {
padding: 0 12px; }
.message-list-sections {
margin: 0;
margin: 4px;
spacing: 6px; }
.message-list-section,
@ -1298,7 +1300,7 @@ StEntry {
padding: 0; }
.message-list-clear-button {
margin: 4px; }
margin: 4px 8px; }
.message .message-title {
color: #eeeeec;

File diff suppressed because one or more lines are too long