-
Notifications
You must be signed in to change notification settings - Fork 223
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* OBS-388: transpile LESS files to CSS * OBS-389: replace transpile hard-code LESS vars with CSS custom properties * OBS-391: Remove the LESS compiler and all associated code
- Loading branch information
Showing
82 changed files
with
4,492 additions
and
3,338 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/* 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/. */ | ||
p.url { | ||
margin: 15px; | ||
font-size: 1.6em; | ||
} | ||
p.url code { | ||
padding-left: 25px; | ||
} | ||
div.run-test { | ||
text-align: right; | ||
margin: 10px; | ||
} | ||
a.collapse-list, | ||
a.expand-list { | ||
text-decoration: none; | ||
font-weight: bold; | ||
padding: 3px; | ||
} | ||
input.error { | ||
border: 2px solid var(--red); | ||
} | ||
/* things that are hidden by default */ | ||
div.test-drive, | ||
button.close, | ||
.status-error, | ||
img.loading-ajax, | ||
.binary-response-warning { | ||
display: none; | ||
} | ||
.status-error { | ||
color: var(--red); | ||
font-weight: bold; | ||
} | ||
p.helptext { | ||
background-color: #ffffff; | ||
padding: 6px; | ||
} | ||
.title h2 a { | ||
text-decoration: none; | ||
} | ||
p.required-permission { | ||
float: right; | ||
margin: 0; | ||
} | ||
/* These are the little widgets for boolean choices */ | ||
form.testdrive td ul li { | ||
display: inline; | ||
margin-right: 10px; | ||
} | ||
.deprecation-warning { | ||
font-weight: bold; | ||
color: var(--orange); | ||
} | ||
p.deprecation-warning { | ||
text-transform: uppercase; | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.