Bug 1575238 - Remove tabs-newtab-button class. r=mikedeboer

Differential Revision: https://phabricator.services.mozilla.com/D42656

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Dão Gottwald 2019-08-28 13:45:21 +00:00
Родитель bf5ea4cb2d
Коммит cb8c8ab22c
5 изменённых файлов: 7 добавлений и 7 удалений

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

@ -139,9 +139,9 @@ panelview[mainview] > .panel-header {
#tabbrowser-tabs:not([overflow="true"]):not([hashiddentabs]) ~ #alltabs-button,
#tabbrowser-tabs[hasadjacentnewtabbutton]:not([overflow="true"]) ~ #new-tab-button,
#tabbrowser-tabs[overflow="true"] > .tabbrowser-arrowscrollbox > .tabs-newtab-button,
#tabbrowser-tabs:not([hasadjacentnewtabbutton]) > .tabbrowser-arrowscrollbox > .tabs-newtab-button,
#TabsToolbar[customizing="true"] #tabbrowser-tabs > .tabbrowser-arrowscrollbox > .tabs-newtab-button {
#tabbrowser-tabs[overflow="true"] > .tabbrowser-arrowscrollbox > #tabs-newtab-button,
#tabbrowser-tabs:not([hasadjacentnewtabbutton]) > .tabbrowser-arrowscrollbox > #tabs-newtab-button,
#TabsToolbar[customizing="true"] #tabs-newtab-button {
visibility: collapse;
}

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

@ -736,7 +736,7 @@
<arrowscrollbox orient="horizontal" flex="1" style="min-width: 1px;" clicktoscroll="true" class="tabbrowser-arrowscrollbox" scrolledtostart="true" scrolledtoend="true">
<tab is="tabbrowser-tab" class="tabbrowser-tab" selected="true" visuallyselected="true" fadein="true"/>
<toolbarbutton id="tabs-newtab-button"
class="tabs-newtab-button toolbarbutton-1"
class="toolbarbutton-1"
command="cmd_newNavigatorTab"
onclick="checkForMiddleClick(this, event);"
tooltip="dynamic-shortcut-tooltip"/>

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

@ -906,7 +906,7 @@
}
get newTabButton() {
return this.querySelector(".tabs-newtab-button");
return this.querySelector("#tabs-newtab-button");
}
// Accessor for tabs. arrowScrollbox has two non-tab elements at the

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

@ -706,7 +706,7 @@
/* New tab button */
.tabs-newtab-button,
#tabs-newtab-button,
#TabsToolbar #new-tab-button {
list-style-image: url(chrome://browser/skin/add.svg);
}

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

@ -36,7 +36,7 @@ class TabBar(UIBaseLib):
:returns: Reference to the new tab button.
"""
return self.toolbar.find_element(By.CLASS_NAME, 'tabs-newtab-button')
return self.toolbar.find_element(By.ID, 'tabs-newtab-button')
@property
def tabs(self):