/*
* Copyright 2023 The Chromium Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
* The default style sheet used to render <permission> elements
* (require PermissionElement enabled).
*/
@namespace "http://www.w3.org/1999/xhtml";
permission {
background-color:#efefef;
box-sizing: border-box !important;
border-radius: 3px;
color: #000000;
cursor: pointer !important;
display: inline-block;
font-weight: normal;
font-style: normal;
height: 1.2em;
outline: solid 1px #767676;
width: 188px;
word-spacing: normal;
}
permission:granted {
background-color: white;
}
permission::-internal-permission-text {
align-items: center;
display: flex;
font-family: Arial, Helvetica, sans-serif;
font-size: inherit;
font-style: inherit;
font-weight: inherit;
height: 100%;
hyphenate-character: auto;
line-height: normal;
margin: auto;
min-height: inherit;
outline: none;
user-select:none;
white-space:nowrap;
width: fit-content;
word-wrap: normal;
word-spacing: inherit;
}