<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 *
 * ADOBE CONFIDENTIAL
 * ___________________
 *
 * Copyright 2016 Adobe Systems Incorporated
 * All Rights Reserved.
 *
 * NOTICE:  All information contained herein is, and remains
 * the property of Adobe Systems Incorporated and its suppliers,
 * if any.  The intellectual and technical concepts contained
 * herein are proprietary to Adobe Systems Incorporated and its
 * suppliers and are protected by trade secret or copyright law.
 * Dissemination of this information or reproduction of this material
 * is strictly forbidden unless prior written permission is obtained
 * from Adobe Systems Incorporated.
 */

/** do not combine following as ::selection is not supported in firefox
 *  and ::-moz-selection is not supported in chrome
 *  so in a combined rule, the rule itself is invalidated
 */
[data-adobesigntype]::selection {
    color: rgba(0,0,0,0);
}

[data-adobesigntype]::-moz-selection {
    color: rgba(0,0,0,0);
}

[data-adobesigntype] {
    width: 6rem;
    display: inline-block;
    color: rgba(0,0,0,0);
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: rgba(0,0,0,.3);
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
}

[data-adobesigntype='radio'],
[data-adobesigntype='checkbox'] {
    border-bottom-width: 0px;
    background-repeat: no-repeat;
    background-position: left center;
    width: 3rem;
}

[data-adobesigntype='radio'] {
    background-image: url("common/resources/images/radiobutton.svg");
}

[data-adobesigntype='checkbox'] {
    background-image: url("common/resources/images/checkbox.svg");
}

[data-adobesigntype='dropdown'] {
    background-image: url("common/resources/images/dropdown_chevron.svg");
    background-repeat: no-repeat;
    background-position: right center;
}
</pre></body></html>