Commit 50e04769 authored by hannajones's avatar hannajones Committed by hjones@mozilla.com
Browse files

Bug 1606785 - Format android CSS files with Prettier r=geckoview-reviewers,hiro

parent 6d60b340
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -16,8 +16,8 @@ body {
  /* background-size: 64px 32px; */
  background-repeat: repeat-x;

  background-color: #363B40;
  color: #FFFFFF;
  background-color: #363b40;
  color: #ffffff;
  padding: 0 20px;

  font-weight: 300;
@@ -65,8 +65,8 @@ button {
  border: none;
  padding: 1rem;
  font-family: sans-serif;
  background-color: #00A4DC;
  color: #FFFFFF;
  background-color: #00a4dc;
  color: #ffffff;
  font-weight: 300;
  border-radius: 2px;
  background-image: none;
@@ -81,7 +81,7 @@ button {
  padding: 1rem;
  font-family: sans-serif;
  background-color: rgba(249, 249, 250, 0.1);
  color: #FFFFFF;
  color: #ffffff;
  font-weight: 300;
  border-radius: 2px;
  background-image: none;
+2 −2
Original line number Diff line number Diff line
@@ -80,7 +80,7 @@ button {

button::after {
  background-color: var(--primary-button-color);
  content: '';
  content: "";
  border-radius: 5px;
  display: block;
  position: absolute;
+6 −6
Original line number Diff line number Diff line
@@ -18,8 +18,8 @@ body {
  /* background-size: 64px 32px; */
  background-repeat: repeat-x;

  background-color: #363B40;
  color: #FFFFFF;
  background-color: #363b40;
  color: #ffffff;
  padding: 0 20px;

  font-weight: 300;
@@ -67,8 +67,8 @@ button {
  border: none;
  padding: 1rem;
  font-family: sans-serif;
  background-color: #00A4DC;
  color: #FFFFFF;
  background-color: #00a4dc;
  color: #ffffff;
  font-weight: 300;
  border-radius: 2px;
  background-image: none;
@@ -83,7 +83,7 @@ button {
  padding: 1rem;
  font-family: sans-serif;
  background-color: rgba(249, 249, 250, 0.1);
  color: #FFFFFF;
  color: #ffffff;
  font-weight: 300;
  border-radius: 2px;
  background-image: none;
+23 −22
Original line number Diff line number Diff line
@@ -2,9 +2,10 @@
 * 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/. */

body, html {
    background: #221F1F;
    color: #FFFFFF;
body,
html {
  background: #221f1f;
  color: #ffffff;
  font-family: sans-serif;
  line-height: 24px;
  font-size: 14px;
@@ -18,17 +19,17 @@ body{
}

a {
    color: #0A9AF4;
  color: #0a9af4;
}

/* Make only about page links ("learn more") white */
.about a {
    color: #FFFFFF;
  color: #ffffff;
}

p.subtitle {
  text-align: center;
    opacity: .7;
  opacity: 0.7;
  margin: 0;
}

+209 −205
Original line number Diff line number Diff line
@@ -72,7 +72,7 @@ body {

#filter-container:focus-within {
  background-color: var(--searchbar-focused-background-color);
    box-shadow: 0 1px 6px rgba(0,0,0,.1);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}

#filter-input {
@@ -163,7 +163,7 @@ body {
  width: 100%;
  margin: 0;
  background-color: var(--background-color);
    box-shadow: 0 5px 18px rgba(0,0,0,.2);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  overflow-x: hidden;
  max-width: 40em;
@@ -288,7 +288,7 @@ body {
}

.pref-item.selected {
    background-color: hsla(0,0%,60%,.2);
  background-color: hsla(0, 0%, 60%, 0.2);
}

.pref-button {
@@ -317,7 +317,7 @@ body {

.pref-button:active,
#new-pref-type:active {
    background-color: hsla(0,0%,60%,.4);
  background-color: hsla(0, 0%, 60%, 0.4);
}

.pref-button[disabled] {
@@ -374,6 +374,10 @@ body {
}

@keyframes spin {
    from { transform: none; }
    to { transform: rotate(360deg); }
  from {
    transform: none;
  }
  to {
    transform: rotate(360deg);
  }
}
+2 −2

File changed.

Contains only whitespace changes.

Loading