-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
💄 Improve and refine styles for tooltips
- Loading branch information
1 parent
7113cc8
commit 98a04e7
Showing
6 changed files
with
66 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* 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/. */ | ||
|
||
export class DotUAStylesChild extends JSWindowActorChild { | ||
/** | ||
* Loads a stylesheet into the browser frame | ||
* @param {string} uri | ||
*/ | ||
loadSheet(uri) { | ||
const { windowUtils } = this.contentWindow; | ||
|
||
try { | ||
windowUtils.loadSheetUsingURIString(uri, windowUtils.AGENT_SHEET); | ||
} catch (e) {} | ||
} | ||
|
||
init() { | ||
this.loadSheet("chrome://dot/skin/tooltip.css"); | ||
} | ||
|
||
handleEvent(event) { | ||
switch (event.type) { | ||
case "DOMDocElementInserted": | ||
case "DOMContentLoaded": | ||
this.init(); | ||
break; | ||
} | ||
} | ||
} |
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
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,19 @@ | ||
/* 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/. */ | ||
|
||
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | ||
@namespace html url("http://www.w3.org/1999/xhtml"); | ||
|
||
tooltip, | ||
html|tooltip { | ||
appearance: none; | ||
|
||
padding: 8px 10px; | ||
|
||
background-color: InfoBackground; | ||
color: InfoText; | ||
|
||
border-radius: 10px; | ||
border: 1px solid color-mix(in srgb, currentColor 20%, transparent 100%); | ||
} |