/*!
 * This file is part of the Semantic MediaWiki Extension
 * @see https://semantic-mediawiki.org/
 *
 * @section LICENSE
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
 *
 * Schema content related CSS
 *
 * @file
 * @ingroup semantic-mediawiki
 *
 * @license GNU GPL v2+
 * @since 3.1
 *
 * @author mwjames
 */

.smw-jsonview-button-group {
    float: right;
    margin-left: 10px;
    margin-top: 0px;
    margin-right: 0px;
    clear: right;
    display: inline-flex;
}

.smw-jsonview-button {
    cursor: pointer;
    width: 40px;
    height: 28px;
    background-color: #337ab7;
    border: none;
    color: white;
    padding: 0 14px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    font-family: monospace;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.smw-jsonview-button:first-child {
    border-radius: 2px 0 0 2px;
    border-right: 1px solid #fff;
}

.smw-jsonview-button:last-child {
    border-radius: 0 2px 2px 0;
}

.smw-jsonview-button:hover {
    background-color: #008CBA;
    color: white;
}

.smw-jsonview-button:focus {
    outline:0;
}

.jsonview .collapsible {
    list-style: unset;
}

.smw-jsonview-clipboard {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cdefs id='defs3051'%3E%3Cstyle type='text/css' id='current-color-scheme'%3E .ColorScheme-Text %7B color:%23fff; %7D %3C/style%3E%3C/defs%3E%3Cpath style='fill:currentColor;fill-opacity:1;stroke:none' d='M19,2h-4.2c-0.4-1.2-1.5-2-2.8-2S9.6,0.8,9.2,2H5C3.9,2,3,2.9,3,4v16c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V4 C21,2.9,20.1,2,19,2z M12,2c0.6,0,1,0.4,1,1c0,0.6-0.4,1-1,1s-1-0.4-1-1C11,2.4,11.4,2,12,2z M19,20H5V4h2v2h10V4h2V20z' class='ColorScheme-Text' /%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    height: 12px;
    width: 16px;
    display: inline-block;
    padding-top: 1px;
    margin-top: 1px;
}
