Bug 1637617 - Adjusted message margins to prevent panel closing; added panel header to main view panel r=andreio

Differential Revision: https://phabricator.services.mozilla.com/D76162
This commit is contained in:
emcminn 2020-06-02 16:50:30 +00:00
Родитель c297f6ed8b
Коммит a0c89255b5
2 изменённых файлов: 15 добавлений и 5 удалений

Просмотреть файл

@ -975,6 +975,9 @@
<panelview id="PanelUI-whatsNew" class="PanelUI-subView"> <panelview id="PanelUI-whatsNew" class="PanelUI-subView">
<vbox class="panel-subview-body"> <vbox class="panel-subview-body">
<box id="PanelUI-whatsNew-title" class="panel-header">
<label data-l10n-id="cfr-whatsnew-panel-header"/>
</box>
<toolbaritem id="PanelUI-whatsNew-content" <toolbaritem id="PanelUI-whatsNew-content"
orient="vertical" orient="vertical"
smoothscroll="false"> smoothscroll="false">

Просмотреть файл

@ -1856,6 +1856,11 @@ panelview[mainview] #PanelUI-whatsNew-content {
height: 43em; height: 43em;
} }
/* Hide the What's New header when the panel is a subview */
panelview:not([mainview]) #PanelUI-whatsNew-title {
display: none;
}
#PanelUI-whatsNew .panel-subview-body { #PanelUI-whatsNew .panel-subview-body {
padding-top: 0; padding-top: 0;
} }
@ -1899,7 +1904,7 @@ panelview[mainview] #PanelUI-whatsNew-content {
border: 1px solid #A9A9A9; border: 1px solid #A9A9A9;
border-radius: 2px; border-radius: 2px;
margin: 0; margin: 0;
margin-inline-end: 10px; margin-inline-end: 6px;
background-color: #FFF; background-color: #FFF;
background-position: center; background-position: center;
background-repeat: no-repeat; background-repeat: no-repeat;
@ -1915,7 +1920,7 @@ panelview[mainview] #PanelUI-whatsNew-content {
#PanelUI-whatsNew .whatsNew-message { #PanelUI-whatsNew .whatsNew-message {
cursor: pointer; cursor: pointer;
margin: 0 12px; margin: 0;
padding: 0; padding: 0;
} }
@ -1940,12 +1945,14 @@ panelview[mainview] #PanelUI-whatsNew-content {
font-size: .85em; font-size: .85em;
margin: -12px; margin: -12px;
margin-top: 0; margin-top: 0;
margin-inline-start: 0;
padding: 6px 16px; padding: 6px 16px;
background: var(--arrowpanel-dimmed); background: var(--arrowpanel-dimmed);
} }
#PanelUI-whatsNew .whatsNew-message-body { #PanelUI-whatsNew .whatsNew-message-body {
padding: 6px 6px 10px; padding: 5px 0 10px;
margin-inline-start: 12px;
text-align: inherit; text-align: inherit;
text-decoration: none; text-decoration: none;
color: inherit; color: inherit;
@ -1970,7 +1977,7 @@ panelview[mainview] #PanelUI-whatsNew-content {
inset-inline-end: 6px; inset-inline-end: 6px;
height: 32px; height: 32px;
position: absolute; position: absolute;
top: 22px; top: 24px;
width: 32px; width: 32px;
} }
@ -1999,7 +2006,7 @@ panelview[mainview] #PanelUI-whatsNew-content {
#PanelUI-whatsNew .whatsNew-message-content { #PanelUI-whatsNew .whatsNew-message-content {
display: block; display: block;
margin: 10px 0; margin: 5px 0 10px;
} }
#PanelUI-whatsNew .text-link { #PanelUI-whatsNew .text-link {