You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
133 lines
2.1 KiB
133 lines
2.1 KiB
.p-component, .p-component * {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.p-hidden {
|
|
display: none;
|
|
}
|
|
|
|
.p-hidden-space {
|
|
visibility: hidden;
|
|
}
|
|
|
|
.p-hidden-accessible {
|
|
border: 0;
|
|
clip: rect(0 0 0 0);
|
|
height: 1px;
|
|
margin: -1px;
|
|
overflow: hidden;
|
|
padding: 0;
|
|
position: absolute;
|
|
width: 1px;
|
|
}
|
|
|
|
.p-hidden-accessible input,
|
|
.p-hidden-accessible select {
|
|
transform: scale(0);
|
|
}
|
|
|
|
.p-reset {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
outline: 0;
|
|
text-decoration: none;
|
|
font-size: 100%;
|
|
list-style: none;
|
|
}
|
|
|
|
.p-disabled, .p-disabled * {
|
|
cursor: default !important;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.p-component-overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.p-overflow-hidden {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.p-unselectable-text {
|
|
user-select: none;
|
|
}
|
|
|
|
.p-scrollbar-measure {
|
|
width: 100px;
|
|
height: 100px;
|
|
overflow: scroll;
|
|
position: absolute;
|
|
top: -9999px;
|
|
}
|
|
|
|
@-webkit-keyframes p-fadein {
|
|
0% { opacity: 0; }
|
|
100% { opacity: 1; }
|
|
}
|
|
@keyframes p-fadein {
|
|
0% { opacity: 0; }
|
|
100% { opacity: 1; }
|
|
}
|
|
|
|
input[type="button"],
|
|
input[type="submit"],
|
|
input[type="reset"],
|
|
input[type="file"]::-webkit-file-upload-button,
|
|
button {
|
|
border-radius: 0;
|
|
}
|
|
|
|
.p-link {
|
|
text-align: left;
|
|
background-color: transparent;
|
|
margin: 0;
|
|
padding: 0;
|
|
border: none;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
}
|
|
|
|
.p-link:disabled {
|
|
cursor: default;
|
|
}
|
|
|
|
.p-sr-only {
|
|
border: 0;
|
|
clip: rect(1px, 1px, 1px, 1px);
|
|
clip-path: inset(50%);
|
|
height: 1px;
|
|
margin: -1px;
|
|
overflow: hidden;
|
|
padding: 0;
|
|
position: absolute;
|
|
width: 1px;
|
|
word-wrap: normal !important;
|
|
}
|
|
|
|
/* Non ng overlay animations */
|
|
.p-connected-overlay {
|
|
opacity: 0;
|
|
transform: scaleY(0.8);
|
|
transition: transform .12s cubic-bezier(0, 0, 0.2, 1), opacity .12s cubic-bezier(0, 0, 0.2, 1);
|
|
}
|
|
|
|
.p-connected-overlay-visible {
|
|
opacity: 1;
|
|
transform: scaleY(1);
|
|
}
|
|
|
|
.p-connected-overlay-hidden {
|
|
opacity: 0;
|
|
transform: scaleY(1);
|
|
transition: opacity .1s linear;
|
|
}
|
|
|
|
.p-toggleable-content.ng-animating {
|
|
overflow: hidden;
|
|
}
|
|
|