8d8b63ccb199200d995f4ed264e9b041e3f74349sean oneill/*
8d8b63ccb199200d995f4ed264e9b041e3f74349sean oneill* The contents of this file are subject to the terms of the Common Development and
8d8b63ccb199200d995f4ed264e9b041e3f74349sean oneill* Distribution License (the License). You may not use this file except in compliance with the
8d8b63ccb199200d995f4ed264e9b041e3f74349sean oneill* License.
8d8b63ccb199200d995f4ed264e9b041e3f74349sean oneill*
8d8b63ccb199200d995f4ed264e9b041e3f74349sean oneill* You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
8d8b63ccb199200d995f4ed264e9b041e3f74349sean oneill* specific language governing permission and limitations under the License.
8d8b63ccb199200d995f4ed264e9b041e3f74349sean oneill*
8d8b63ccb199200d995f4ed264e9b041e3f74349sean oneill* When distributing Covered Software, include this CDDL Header Notice in each file and include
8d8b63ccb199200d995f4ed264e9b041e3f74349sean oneill* the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
8d8b63ccb199200d995f4ed264e9b041e3f74349sean oneill* Header, with the fields enclosed by brackets [] replaced by your own identifying
8d8b63ccb199200d995f4ed264e9b041e3f74349sean oneill* information: "Portions copyright [year] [name of copyright owner]".
8d8b63ccb199200d995f4ed264e9b041e3f74349sean oneill*
8d8b63ccb199200d995f4ed264e9b041e3f74349sean oneill* Copyright 2015 ForgeRock AS.
8d8b63ccb199200d995f4ed264e9b041e3f74349sean oneill*/
8d8b63ccb199200d995f4ed264e9b041e3f74349sean oneill
8d8b63ccb199200d995f4ed264e9b041e3f74349sean oneill// selectize uses token like block elements for each entry. Some entries are too long and are displayed cut off.
8d8b63ccb199200d995f4ed264e9b041e3f74349sean oneill// This CSS breaks the entry across multiple lines and maintains the inline-block nature of the entries.
8d8b63ccb199200d995f4ed264e9b041e3f74349sean oneill.selectize-input>.item {
8d8b63ccb199200d995f4ed264e9b041e3f74349sean oneill max-width: 100%;
8d8b63ccb199200d995f4ed264e9b041e3f74349sean oneill word-wrap: break-word;
8d8b63ccb199200d995f4ed264e9b041e3f74349sean oneill}