Commit 86c60b6f authored by David Walsh's avatar David Walsh Committed by Jason Laster
Browse files

Bug 1520957 - [release 119] Restore search's loader, previous, and next icons (#7739). r=dwalsh

parent 400cedc0
Loading
Loading
Loading
Loading
+14 −1
Original line number Diff line number Diff line
@@ -1632,9 +1632,14 @@ html[dir="rtl"] .arrow,
  width: 22px;
}

.search-field i.loader {
.search-field .img.loader {
  padding-top: 4px;
  margin-right: 8px;
  mask-image: url("resource://devtools/client/debugger/new/images/loader.svg");
  mask-size: 100%;
  width: 20px;
  height: 20px;
  margin-top: 6px;
}

.search-field input {
@@ -1722,6 +1727,14 @@ html[dir="rtl"] .arrow,
  padding-right: 5px;
}

.search-field .search-nav-buttons .img.arrow-up {
  mask: url("resource://devtools/client/debugger/new/images/arrow-up.svg") no-repeat;
}

.search-field .search-nav-buttons .img.arrow-down {
  mask: url("resource://devtools/client/debugger/new/images/arrow-down.svg") no-repeat;
}

.search-field .search-nav-buttons .nav-btn:hover {
  background: var(--theme-toolbar-background-hover);
}
+6 −0
Original line number Diff line number Diff line
<!-- This Source Code Form is subject to the terms of the Mozilla Public
   - License, v. 2.0. If a copy of the MPL was not distributed with this
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 1792 1792">
  <path d="M1395 736q0 13-10 23l-466 466q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l393 393 393-393q10-10 23-10t23 10l50 50q10 10 10 23z" fill="#696969"/>
</svg>
+6 −0
Original line number Diff line number Diff line
<!-- This Source Code Form is subject to the terms of the Mozilla Public
   - License, v. 2.0. If a copy of the MPL was not distributed with this
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 1792 1792">
  <path d="M1395 1184q0 13-10 23l-50 50q-10 10-23 10t-23-10l-393-393-393 393q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l466 466q10 10 10 23z" fill="#696969"/>
</svg>
+13 −0
Original line number Diff line number Diff line
<!-- This Source Code Form is subject to the terms of the Mozilla Public
   - License, v. 2.0. If a copy of the MPL was not distributed with this
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<svg version="1.1" id="loader-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
  width="40px" height="40px" viewBox="0 0 40 40" enable-background="new 0 0 40 40" xml:space="preserve">
  <path opacity="0.2" fill="#000" d="M20.201,5.169c-8.254,0-14.946,6.692-14.946,14.946c0,8.255,6.692,14.946,14.946,14.946
    s14.946-6.691,14.946-14.946C35.146,11.861,28.455,5.169,20.201,5.169z M20.201,31.749c-6.425,0-11.634-5.208-11.634-11.634
    c0-6.425,5.209-11.634,11.634-11.634c6.425,0,11.633,5.209,11.633,11.634C31.834,26.541,26.626,31.749,20.201,31.749z"/>
  <path fill="#000" d="M26.013,10.047l1.654-2.866c-2.198-1.272-4.743-2.012-7.466-2.012h0v3.312h0
    C22.32,8.481,24.301,9.057,26.013,10.047z">
  </path>
</svg>
+3 −0
Original line number Diff line number Diff line
@@ -8,6 +8,8 @@
DevToolsModules(
    'aframe.svg',
    'angular.svg',
    'arrow-down.svg',
    'arrow-up.svg',
    'arrow.svg',
    'babel.svg',
    'backbone.svg',
@@ -31,6 +33,7 @@ DevToolsModules(
    'immutable.svg',
    'javascript.svg',
    'jquery.svg',
    'loader.svg',
    'lodash.svg',
    'magnifying-glass.svg',
    'marko.svg',
Loading