mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-10 10:18:38 +09:00
62 lines
3.1 KiB
CSS
62 lines
3.1 KiB
CSS
%if 0
|
|
/* 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/. */
|
|
%endif
|
|
|
|
@selectorPrefix@#identity-icon@selectorSuffix@ {
|
|
list-style-image: url(chrome://browser/skin/identity-icon.svg#normal@iconVariant@);
|
|
}
|
|
|
|
@selectorPrefix@#identity-box:hover > #identity-icon:not(.no-hover)@selectorSuffix@,
|
|
@selectorPrefix@#identity-box[open=true] > #identity-icon@selectorSuffix@ {
|
|
list-style-image: url(chrome://browser/skin/identity-icon.svg#hover@iconVariant@);
|
|
}
|
|
|
|
@selectorPrefix@#identity-box.grantedPermissions > #identity-icon@selectorSuffix@ {
|
|
list-style-image: url(chrome://browser/skin/identity-icon.svg#notice@iconVariant@);
|
|
}
|
|
|
|
@selectorPrefix@#identity-box.grantedPermissions:hover > #identity-icon:not(.no-hover)@selectorSuffix@,
|
|
@selectorPrefix@#identity-box.grantedPermissions[open=true] > #identity-icon@selectorSuffix@ {
|
|
list-style-image: url(chrome://browser/skin/identity-icon.svg#notice-hover@iconVariant@);
|
|
}
|
|
|
|
@selectorPrefix@#urlbar[pageproxystate="valid"] > #identity-box.chromeUI > #identity-icon@selectorSuffix@ {
|
|
list-style-image: url(chrome://branding/content/identity-icons-brand.svg);
|
|
}
|
|
|
|
|
|
@selectorPrefix@#tracking-protection-icon@selectorSuffix@ {
|
|
list-style-image: url(chrome://browser/skin/tracking-protection-16.svg#enabled@iconVariant@);
|
|
}
|
|
|
|
@selectorPrefix@#tracking-protection-icon[state="loaded-tracking-content"]@selectorSuffix@ {
|
|
list-style-image: url(chrome://browser/skin/tracking-protection-16.svg#disabled@iconVariant@);
|
|
}
|
|
|
|
|
|
@selectorPrefix@#urlbar[pageproxystate="valid"] > #identity-box.verifiedDomain > #connection-icon@selectorSuffix@,
|
|
@selectorPrefix@#urlbar[pageproxystate="valid"] > #identity-box.verifiedIdentity > #connection-icon@selectorSuffix@,
|
|
@selectorPrefix@#urlbar[pageproxystate="valid"] > #identity-box.mixedActiveBlocked > #connection-icon@selectorSuffix@ {
|
|
list-style-image: url(chrome://browser/skin/connection-secure.svg);
|
|
visibility: visible;
|
|
}
|
|
|
|
@selectorPrefix@#urlbar[pageproxystate="valid"] > #identity-box.certUserOverridden > #connection-icon@selectorSuffix@ {
|
|
list-style-image: url(chrome://browser/skin/connection-mixed-passive-loaded.svg#icon@iconVariant@);
|
|
visibility: visible;
|
|
}
|
|
|
|
@selectorPrefix@#urlbar[pageproxystate="valid"] > #identity-box.insecureLoginForms > #connection-icon@selectorSuffix@,
|
|
@selectorPrefix@#urlbar[pageproxystate="valid"] > #identity-box.mixedActiveContent > #connection-icon@selectorSuffix@ {
|
|
list-style-image: url(chrome://browser/skin/connection-mixed-active-loaded.svg#icon@iconVariant@);
|
|
visibility: visible;
|
|
}
|
|
|
|
@selectorPrefix@#urlbar[pageproxystate="valid"] > #identity-box.weakCipher > #connection-icon@selectorSuffix@,
|
|
@selectorPrefix@#urlbar[pageproxystate="valid"] > #identity-box.mixedDisplayContent > #connection-icon@selectorSuffix@,
|
|
@selectorPrefix@#urlbar[pageproxystate="valid"] > #identity-box.mixedDisplayContentLoadedActiveBlocked > #connection-icon@selectorSuffix@ {
|
|
list-style-image: url(chrome://browser/skin/connection-mixed-passive-loaded.svg#icon@iconVariant@);
|
|
visibility: visible;
|
|
}
|