2021-03-26 00:54:36 +09:00
|
|
|
/* Copyright 2021 Mozilla Foundation
|
2021-03-19 18:11:40 +09:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2021-06-20 22:38:58 +09:00
|
|
|
.xfaPrintOnly {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2021-03-19 18:11:40 +09:00
|
|
|
.xfaLayer {
|
|
|
|
position: absolute;
|
2021-06-22 19:56:46 +09:00
|
|
|
text-align: initial;
|
2021-03-19 18:11:40 +09:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 200;
|
|
|
|
transform-origin: 0 0;
|
2021-06-23 18:10:20 +09:00
|
|
|
line-height: 1.2;
|
2021-03-19 18:11:40 +09:00
|
|
|
}
|
2021-03-25 21:02:39 +09:00
|
|
|
|
|
|
|
.xfaLayer * {
|
|
|
|
color: inherit;
|
|
|
|
font: inherit;
|
2021-05-19 18:09:21 +09:00
|
|
|
font-style: inherit;
|
|
|
|
font-weight: inherit;
|
2021-03-25 21:02:39 +09:00
|
|
|
font-kerning: inherit;
|
|
|
|
letter-spacing: inherit;
|
2021-03-31 22:42:21 +09:00
|
|
|
text-align: inherit;
|
2021-03-25 21:02:39 +09:00
|
|
|
text-decoration: inherit;
|
|
|
|
vertical-align: inherit;
|
2021-03-31 22:42:21 +09:00
|
|
|
box-sizing: border-box;
|
2021-03-26 00:54:36 +09:00
|
|
|
background: transparent;
|
2021-06-07 22:20:29 +09:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2021-06-03 02:14:41 +09:00
|
|
|
pointer-events: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.xfaLayer div {
|
|
|
|
pointer-events: none;
|
2021-03-25 21:02:39 +09:00
|
|
|
}
|
|
|
|
|
2021-05-19 18:09:21 +09:00
|
|
|
.xfaLayer a {
|
|
|
|
color: blue;
|
|
|
|
}
|
|
|
|
|
|
|
|
.xfaRich li {
|
|
|
|
margin-left: 3em;
|
|
|
|
}
|
|
|
|
|
2021-03-25 21:02:39 +09:00
|
|
|
.xfaFont {
|
|
|
|
color: black;
|
|
|
|
font-weight: normal;
|
|
|
|
font-kerning: none;
|
|
|
|
font-size: 10px;
|
|
|
|
font-style: normal;
|
|
|
|
letter-spacing: 0;
|
|
|
|
text-decoration: none;
|
|
|
|
vertical-align: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.xfaDraw {
|
2021-03-26 00:54:36 +09:00
|
|
|
z-index: 100;
|
2021-03-25 21:02:39 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.xfaExclgroup {
|
2021-03-26 00:54:36 +09:00
|
|
|
z-index: 200;
|
2021-03-25 21:02:39 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.xfaField {
|
|
|
|
z-index: 300;
|
|
|
|
}
|
|
|
|
|
2021-03-26 00:54:36 +09:00
|
|
|
.xfaRich {
|
|
|
|
z-index: 300;
|
|
|
|
}
|
|
|
|
|
2021-03-25 21:02:39 +09:00
|
|
|
.xfaSubform {
|
2021-03-26 00:54:36 +09:00
|
|
|
z-index: 200;
|
2021-03-31 22:42:21 +09:00
|
|
|
}
|
|
|
|
|
2021-06-03 02:14:41 +09:00
|
|
|
.xfaCaption {
|
|
|
|
overflow: hidden;
|
|
|
|
flex: 0 1 auto;
|
|
|
|
}
|
|
|
|
|
2021-06-10 22:30:19 +09:00
|
|
|
.xfaCaptionForCheckButton {
|
|
|
|
overflow: hidden;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
|
2021-03-31 22:42:21 +09:00
|
|
|
.xfaLabel {
|
2021-06-03 02:14:41 +09:00
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.xfaLeft {
|
2021-03-31 22:42:21 +09:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2021-06-10 22:30:19 +09:00
|
|
|
.xfaLeft > .xfaCaption,
|
|
|
|
.xfaLeft > .xfaCaptionForCheckButton {
|
2021-06-03 02:14:41 +09:00
|
|
|
max-height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.xfaTop {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-06-09 15:17:36 +09:00
|
|
|
align-items: flex-start;
|
2021-06-03 02:14:41 +09:00
|
|
|
}
|
|
|
|
|
2021-06-10 22:30:19 +09:00
|
|
|
.xfaTop > .xfaCaption,
|
|
|
|
.xfaTop > .xfaCaptionForCheckButton {
|
2021-06-24 17:25:41 +09:00
|
|
|
width: 100%;
|
2021-06-03 02:14:41 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.xfaBorder {
|
2021-05-19 18:09:21 +09:00
|
|
|
background: transparent;
|
|
|
|
position: absolute;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.xfaWrapper {
|
|
|
|
display: flex;
|
2021-06-03 02:14:41 +09:00
|
|
|
align-items: stretch;
|
|
|
|
}
|
|
|
|
|
|
|
|
.xfaWrapped {
|
|
|
|
flex: 1 1 auto;
|
2021-05-19 18:09:21 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.xfaContentArea {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.xfaTextfield,
|
|
|
|
.xfaSelect {
|
|
|
|
background-color: rgba(0, 54, 255, 0.13);
|
|
|
|
}
|
|
|
|
|
|
|
|
.xfaTextfield:focus,
|
|
|
|
.xfaSelect:focus {
|
|
|
|
background-color: transparent;
|
2021-06-11 16:25:14 +09:00
|
|
|
outline: none;
|
2021-05-19 18:09:21 +09:00
|
|
|
}
|
|
|
|
|
2021-03-31 22:42:21 +09:00
|
|
|
.xfaTextfield,
|
|
|
|
.xfaSelect {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2021-06-03 02:14:41 +09:00
|
|
|
flex: 1 1 0;
|
2021-03-31 22:42:21 +09:00
|
|
|
border: none;
|
2021-03-26 00:54:36 +09:00
|
|
|
resize: none;
|
2021-03-31 22:42:21 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.xfaButton {
|
|
|
|
cursor: pointer;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
border: none;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.xfaButton:hover {
|
|
|
|
background: Highlight;
|
|
|
|
}
|
|
|
|
|
2021-05-28 00:44:55 +09:00
|
|
|
.xfaCheckbox,
|
|
|
|
.xfaRadio {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2021-06-10 22:30:19 +09:00
|
|
|
flex: 0 0 auto;
|
2021-05-28 00:44:55 +09:00
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2021-03-26 00:54:36 +09:00
|
|
|
.xfaRich {
|
|
|
|
white-space: pre-wrap;
|
|
|
|
}
|
|
|
|
|
2021-05-19 18:09:21 +09:00
|
|
|
.xfaImage {
|
2021-03-26 00:54:36 +09:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2021-05-19 18:09:21 +09:00
|
|
|
.xfaRich {
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.xfaLrTb,
|
|
|
|
.xfaRlTb,
|
|
|
|
.xfaTb {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: stretch;
|
|
|
|
}
|
|
|
|
|
|
|
|
.xfaLr,
|
|
|
|
.xfaRl,
|
|
|
|
.xfaTb > div {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
|
2021-06-03 02:14:41 +09:00
|
|
|
.xfaLr {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: stretch;
|
2021-05-19 18:09:21 +09:00
|
|
|
}
|
|
|
|
|
2021-06-03 02:14:41 +09:00
|
|
|
.xfaRl {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row-reverse;
|
|
|
|
align-items: stretch;
|
2021-05-19 18:09:21 +09:00
|
|
|
}
|
|
|
|
|
2021-06-03 02:14:41 +09:00
|
|
|
.xfaTb > div {
|
|
|
|
justify-content: left;
|
2021-05-19 18:09:21 +09:00
|
|
|
}
|
|
|
|
|
2021-03-31 22:42:21 +09:00
|
|
|
.xfaPosition {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2021-03-26 00:54:36 +09:00
|
|
|
.xfaArea {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2021-03-31 22:42:21 +09:00
|
|
|
.xfaValignMiddle {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.xfaTable {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-06-03 02:14:41 +09:00
|
|
|
align-items: stretch;
|
|
|
|
}
|
|
|
|
|
|
|
|
.xfaTable > div {
|
|
|
|
flex: 1 1 auto;
|
2021-03-31 22:42:21 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.xfaTable .xfaRow {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2021-06-03 02:14:41 +09:00
|
|
|
align-items: stretch;
|
2021-03-31 22:42:21 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.xfaTable .xfaRow > div {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.xfaTable .xfaRlRow {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row-reverse;
|
2021-06-03 02:14:41 +09:00
|
|
|
align-items: stretch;
|
2021-03-31 22:42:21 +09:00
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.xfaTable .xfaRlRow > div {
|
|
|
|
flex: 1;
|
2021-03-25 21:02:39 +09:00
|
|
|
}
|
2021-05-27 23:56:31 +09:00
|
|
|
|
2021-06-21 01:56:14 +09:00
|
|
|
.xfaDisabled input,
|
|
|
|
.xfaDisabled textarea,
|
|
|
|
.xfaReadOnly input,
|
|
|
|
.xfaReadOnly textarea {
|
|
|
|
background: initial;
|
|
|
|
}
|
|
|
|
|
2021-05-27 23:56:31 +09:00
|
|
|
@media print {
|
|
|
|
.xfaTextfield,
|
|
|
|
.xfaSelect {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
2021-06-09 22:37:15 +09:00
|
|
|
|
|
|
|
.xfaSelect {
|
|
|
|
appearance: none;
|
|
|
|
text-indent: 1px;
|
|
|
|
text-overflow: "";
|
|
|
|
}
|
2021-05-27 23:56:31 +09:00
|
|
|
}
|