Moz selection colors

This commit is contained in:
Mo Bitar
2018-12-21 11:27:55 -06:00
parent 1de0c85e27
commit 7f7afd1a18
4 changed files with 3 additions and 9 deletions

View File

@@ -1,8 +1,3 @@
/*
The purpose of the conflict resoltion modal is to present two versions of a conflicted item,
and allow the user to choose which to keep (or to keep both.)
*/
class PrivilegesAuthModal {
constructor() {

View File

@@ -135,7 +135,6 @@ class AuthManager extends SFAuthManager {
let contentTypePredicate = new SFPredicate("content_type", "=", prefsContentType);
this.singletonManager.registerSingleton([contentTypePredicate], (resolvedSingleton) => {
// console.log("Loaded existing user prefs", resolvedSingleton.uuid);
this.userPreferences = resolvedSingleton;
this.userPreferencesDidChange();
}, (valueCallback) => {

View File

@@ -29,7 +29,7 @@ class SingletonManager {
/*
If an item alternates its uuid on registration, singletonHandlers might need to update
their local refernece to the object, since the object reference will change on uuid alternation
their local reference to the object, since the object reference will change on uuid alternation
*/
modelManager.addModelUuidChangeObserver("singleton-manager", (oldModel, newModel) => {
for(var handler of this.singletonHandlers) {

View File

@@ -74,8 +74,8 @@ a {
}
::-moz-selection {
background: var(--sn-stylekit-text-selection-color) !important; /* WebKit/Blink Browsers */
color: white;
background: var(--sn-stylekit-info-color) !important;
color: var(--sn-stylekit-info-contrast-color);
}
p {